From f7cd6d0c8e595ab70f56c3a17a805c453f0144de Mon Sep 17 00:00:00 2001 From: Ivan Minchev Date: Fri, 31 Oct 2025 14:42:32 +0200 Subject: [PATCH 01/43] refactor(cell-merging): change data for hgrid custom strategy sample --- .../src/MultiColumnsExportData.json | 97 ++++++++++++++++++- 1 file changed, 96 insertions(+), 1 deletion(-) diff --git a/samples/grids/hierarchical-grid/cell-merge-custom-sample/src/MultiColumnsExportData.json b/samples/grids/hierarchical-grid/cell-merge-custom-sample/src/MultiColumnsExportData.json index 483f76e929..88d6830fb7 100644 --- a/samples/grids/hierarchical-grid/cell-merge-custom-sample/src/MultiColumnsExportData.json +++ b/samples/grids/hierarchical-grid/cell-merge-custom-sample/src/MultiColumnsExportData.json @@ -362,6 +362,101 @@ "PostalCode": "10100", "Country": "Italy", "Phone": "011-4988260", - "Fax": "011-4988261" + "Fax": "011-4988261", + "ChildCompanies": [ + { + "ID": "ITSR1", + "CompanyName": "Italia Sourcing", + "ContactName": "Luca Rossi", + "ContactTitle": "Sales Representative", + "Address": "Via Roma 1", + "City": "Rome", + "Region": "Lazio", + "PostalCode": "00100", + "Country": "Italy", + "Phone": "06-555-0101", + "Fax": "06-555-0102" + }, + { + "ID": "ITSR2", + "CompanyName": "Roma Exports", + "ContactName": "Chiara Conti", + "ContactTitle": "Sales Representative", + "Address": "Piazza Navona 5", + "City": "Rome", + "Region": "Lazio", + "PostalCode": "00186", + "Country": "Italy", + "Phone": "06-555-0201", + "Fax": "06-555-0202" + }, + { + "ID": "ITOWN1", + "CompanyName": "Milano Retail", + "ContactName": "Marco Neri", + "ContactTitle": "Owner", + "Address": "Corso Buenos Aires 12", + "City": "Milan", + "Region": "Lombardia", + "PostalCode": "20100", + "Country": "Italy", + "Phone": "02-555-0101", + "Fax": "02-555-0102" + } + ] + }, + { + "ID": "FRNS2", + "CompanyName": "Franchi Logistics", + "ContactName": "Giulia Bianchi", + "ContactTitle": "Sales Representative", + "Address": "Via Po 12", + "City": "Torino", + "Region": "Torino", + "PostalCode": "10121", + "Country": "Italy", + "Phone": "011-4988262", + "Fax": "011-4988263", + "ChildCompanies": [ + { + "ID": "ITSR3", + "CompanyName": "Torino Foods", + "ContactName": "Alessia Greco", + "ContactTitle": "Sales Representative", + "Address": "Via Garibaldi 3", + "City": "Torino", + "Region": "Piemonte", + "PostalCode": "10121", + "Country": "Italy", + "Phone": "011-555-0001", + "Fax": "011-555-0002" + }, + { + "ID": "ITSR4", + "CompanyName": "Torino Traders", + "ContactName": "Fabio De Luca", + "ContactTitle": "Sales Representative", + "Address": "Via Roma 25", + "City": "Torino", + "Region": "Piemonte", + "PostalCode": "10123", + "Country": "Italy", + "Phone": "011-555-0003", + "Fax": "011-555-0004" + }, + { + "ID": "ITSA1", + "CompanyName": "Liguria Supplies", + "ContactName": "Gianni Marino", + "ContactTitle": "Sales Agent", + "Address": "Via XX Settembre 15", + "City": "Genova", + "Region": "Liguria", + "PostalCode": "16121", + "Country": "Italy", + "Phone": "010-555-0101", + "Fax": "010-555-0102" + } + ] } ] From 2db0e2485bee5f349e757c75e82a6389b62290ae Mon Sep 17 00:00:00 2001 From: Ivan Minchev Date: Fri, 31 Oct 2025 14:43:33 +0200 Subject: [PATCH 02/43] fix(cell-merging): fix child grid not loading data in hgrid sample --- .../hierarchical-grid/cell-merge-custom-sample/src/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/samples/grids/hierarchical-grid/cell-merge-custom-sample/src/index.tsx b/samples/grids/hierarchical-grid/cell-merge-custom-sample/src/index.tsx index 3dc44b74c4..d2e88a63d5 100644 --- a/samples/grids/hierarchical-grid/cell-merge-custom-sample/src/index.tsx +++ b/samples/grids/hierarchical-grid/cell-merge-custom-sample/src/index.tsx @@ -33,6 +33,7 @@ export default function App() {
Date: Tue, 4 Nov 2025 14:30:20 +0200 Subject: [PATCH 03/43] refactor(row-drag-base): change tgrid and hgrid samples to mimic angular samples --- .../row-drag-base/src/index.css | 20 ++- .../row-drag-base/src/index.tsx | 135 +++++------------- .../tree-grid/row-drag-base/src/index.css | 20 ++- .../tree-grid/row-drag-base/src/index.tsx | 112 +++++---------- 4 files changed, 102 insertions(+), 185 deletions(-) diff --git a/samples/grids/hierarchical-grid/row-drag-base/src/index.css b/samples/grids/hierarchical-grid/row-drag-base/src/index.css index 1fcfe3aac1..6280a6f59e 100644 --- a/samples/grids/hierarchical-grid/row-drag-base/src/index.css +++ b/samples/grids/hierarchical-grid/row-drag-base/src/index.css @@ -2,6 +2,22 @@ /* https://static.infragistics.com/xplatform/css/samples */ .wrapper { - justify-content: space-evenly; - margin: 1rem; + justify-content: space-evenly; + margin: 1rem; + align-items: center; +} + +.drop-area { + width: 240px; + height: 220px; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + gap: 0.5rem; + border: 1px dashed rgba(0, 0, 0, 0.5); + border-radius: 2px; + background: #dcdcdc; + color: #111; + text-align: center; } diff --git a/samples/grids/hierarchical-grid/row-drag-base/src/index.tsx b/samples/grids/hierarchical-grid/row-drag-base/src/index.tsx index 07b74e65e6..5a198e1373 100644 --- a/samples/grids/hierarchical-grid/row-drag-base/src/index.tsx +++ b/samples/grids/hierarchical-grid/row-drag-base/src/index.tsx @@ -8,42 +8,52 @@ import { IgrRowIsland, IgrRowDragEndEventArgs, } from "igniteui-react-grids"; +import { IgrIcon } from "igniteui-react"; import { SingersData } from "./SingersData"; import "igniteui-react-grids/grids/themes/light/bootstrap.css"; export default function App() { const singersData = new SingersData(); - const rightHGridRef = useRef(null); + const treeGridRef = useRef(null); - const RowDragEnd = (evt: IgrRowDragEndEventArgs) => { - const leftGrid = evt.target as IgrHierarchicalGrid; + const onRowDragEnd = (evt: IgrRowDragEndEventArgs) => { const ghostElement = evt.detail.dragDirective.ghostElement; if (ghostElement != null) { const dragElementPos = ghostElement.getBoundingClientRect(); - const gridPosition = document.getElementById("hierarchicalGrid2").getBoundingClientRect(); + const dropAreaPosition = document + .getElementById("dropArea") + .getBoundingClientRect(); - const withinXBounds = dragElementPos.x >= gridPosition.x && dragElementPos.x <= gridPosition.x + gridPosition.width; - const withinYBounds = dragElementPos.y >= gridPosition.y && dragElementPos.y <= gridPosition.y + gridPosition.height; + const withinXBounds = + dragElementPos.x >= dropAreaPosition.x && + dragElementPos.x <= dropAreaPosition.x + dropAreaPosition.width; + const withinYBounds = + dragElementPos.y >= dropAreaPosition.y && + dragElementPos.y <= dropAreaPosition.y + dropAreaPosition.height; if (withinXBounds && withinYBounds) { - leftGrid.deleteRow(evt.detail.dragData.key); - rightHGridRef.current.addRow(evt.detail.dragData.data); + treeGridRef.current.deleteRow(evt.detail.dragData.key); } } - } + }; return (
+
+ delete +
Drag a row here to delete it
+
+ - - - - - - - - - - - - - - - - - - - - - - - - - - - + (null); const employeesData = new EmployeesNestedTreeData(); - const rightTGridRef = useRef(null); - // Recursive function to add the row and its children - const addRowAndChildren = (row: EmployeesNestedTreeDataItem, newData: EmployeesNestedTreeDataItem[]) => { - if (newData.includes(row)) { - return; - } - newData.push(row); - const children = employeesData.filter(emp => emp.ParentID === row.ID); - children.forEach(child => addRowAndChildren(child, newData)); - } - - const RowDragEnd = (evt: IgrRowDragEndEventArgs) => { - const leftGrid = evt.target as IgrTreeGrid; + const onRowDragEnd = (evt: IgrRowDragEndEventArgs) => { const ghostElement = evt.detail.dragDirective.ghostElement; + if (ghostElement != null) { const dragElementPos = ghostElement.getBoundingClientRect(); - const gridPosition = document.getElementById("treeGrid2").getBoundingClientRect(); + const dropAreaPosition = document + .getElementById("dropArea") + .getBoundingClientRect(); - const withinXBounds = dragElementPos.x >= gridPosition.x && dragElementPos.x <= gridPosition.x + gridPosition.width; - const withinYBounds = dragElementPos.y >= gridPosition.y && dragElementPos.y <= gridPosition.y + gridPosition.height; + const withinXBounds = + dragElementPos.x >= dropAreaPosition.x && + dragElementPos.x <= dropAreaPosition.x + dropAreaPosition.width; + const withinYBounds = + dragElementPos.y >= dropAreaPosition.y && + dragElementPos.y <= dropAreaPosition.y + dropAreaPosition.height; if (withinXBounds && withinYBounds) { - const newData = [...rightTGridRef.current.data]; - const draggedRowData = evt.detail.dragData.data; - - addRowAndChildren(draggedRowData, newData); - rightTGridRef.current.data = newData; - leftGrid.deleteRow(evt.detail.dragData.key); + treeGridRef.current.deleteRow(evt.detail.dragData.key); } } - } + }; return (
+
+ delete +
Drag a row here to delete it
+
+ - - - - - - - - - - - - + editable={true} + > - + editable={true} + > - + editable={true} + > - + editable={true} + >
From 9e290de899b76517e3f2a8c6b419f83e7b205103 Mon Sep 17 00:00:00 2001 From: Ivan Minchev Date: Tue, 4 Nov 2025 17:06:18 +0200 Subject: [PATCH 04/43] fix(row-drag-base): change sizings so samples fit in iframes --- .../grids/hierarchical-grid/row-drag-base/src/index.css | 7 +++++-- .../grids/hierarchical-grid/row-drag-base/src/index.tsx | 3 ++- samples/grids/tree-grid/row-drag-base/src/index.css | 7 +++++-- samples/grids/tree-grid/row-drag-base/src/index.tsx | 3 ++- 4 files changed, 14 insertions(+), 6 deletions(-) diff --git a/samples/grids/hierarchical-grid/row-drag-base/src/index.css b/samples/grids/hierarchical-grid/row-drag-base/src/index.css index 6280a6f59e..d3985cd442 100644 --- a/samples/grids/hierarchical-grid/row-drag-base/src/index.css +++ b/samples/grids/hierarchical-grid/row-drag-base/src/index.css @@ -2,9 +2,12 @@ /* https://static.infragistics.com/xplatform/css/samples */ .wrapper { - justify-content: space-evenly; - margin: 1rem; + display: flex; + flex-wrap: nowrap; + justify-content: flex-start; align-items: center; + gap: 2rem; + margin: 1rem; } .drop-area { diff --git a/samples/grids/hierarchical-grid/row-drag-base/src/index.tsx b/samples/grids/hierarchical-grid/row-drag-base/src/index.tsx index 5a198e1373..eee3f7626d 100644 --- a/samples/grids/hierarchical-grid/row-drag-base/src/index.tsx +++ b/samples/grids/hierarchical-grid/row-drag-base/src/index.tsx @@ -51,7 +51,8 @@ export default function App() { autoGenerate={false} data={singersData} primaryKey="ID" - width="40%" + height="480px" + width="70%" rowDraggable={true} onRowDragEnd={onRowDragEnd} > diff --git a/samples/grids/tree-grid/row-drag-base/src/index.css b/samples/grids/tree-grid/row-drag-base/src/index.css index 6280a6f59e..d3985cd442 100644 --- a/samples/grids/tree-grid/row-drag-base/src/index.css +++ b/samples/grids/tree-grid/row-drag-base/src/index.css @@ -2,9 +2,12 @@ /* https://static.infragistics.com/xplatform/css/samples */ .wrapper { - justify-content: space-evenly; - margin: 1rem; + display: flex; + flex-wrap: nowrap; + justify-content: flex-start; align-items: center; + gap: 2rem; + margin: 1rem; } .drop-area { diff --git a/samples/grids/tree-grid/row-drag-base/src/index.tsx b/samples/grids/tree-grid/row-drag-base/src/index.tsx index 4331e6c231..0cf3a385b7 100644 --- a/samples/grids/tree-grid/row-drag-base/src/index.tsx +++ b/samples/grids/tree-grid/row-drag-base/src/index.tsx @@ -51,7 +51,8 @@ export default function App() { data={employeesData} primaryKey="ID" foreignKey="ParentID" - width="40%" + height="480px" + width="70%" autoGenerate={false} moving={true} rowDraggable={true} From 798a50890a3eb7fbc1e9d1cdb398cfe0c2f780fb Mon Sep 17 00:00:00 2001 From: Riva Ivanova <49126110+RivaIvanova@users.noreply.github.com> Date: Thu, 27 Nov 2025 14:52:27 +0200 Subject: [PATCH 05/43] fix(text-area): add gap to resize sample (#971) --- samples/inputs/textarea/resize/src/index.css | 8 +++++++- samples/inputs/textarea/resize/src/index.tsx | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/samples/inputs/textarea/resize/src/index.css b/samples/inputs/textarea/resize/src/index.css index 0fe9368715..a0ecf1b7f2 100644 --- a/samples/inputs/textarea/resize/src/index.css +++ b/samples/inputs/textarea/resize/src/index.css @@ -1,2 +1,8 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +.container { + display: flex; + flex-direction: column; + gap: 1rem; +} \ No newline at end of file diff --git a/samples/inputs/textarea/resize/src/index.tsx b/samples/inputs/textarea/resize/src/index.tsx index 1d13935d3b..298e0161b6 100644 --- a/samples/inputs/textarea/resize/src/index.tsx +++ b/samples/inputs/textarea/resize/src/index.tsx @@ -7,7 +7,7 @@ import 'igniteui-webcomponents/themes/light/bootstrap.css'; export default function TextAreaResize() { return ( -
+

This textarea does not resize and uses a scroll bar to show overflow text.

From 1cc6b4533c8ac2b0e0aabae52714dcb800ec69c1 Mon Sep 17 00:00:00 2001 From: Ivan Minchev Date: Thu, 27 Nov 2025 16:19:28 +0200 Subject: [PATCH 06/43] refactor(grids): change button text in column pinning both side samples --- .../grids/grid/column-pinning-both-sides/src/index.tsx | 10 +++++----- .../column-pinning-both-sides/src/index.tsx | 8 ++++---- .../tree-grid/column-pinning-both-sides/src/index.tsx | 8 ++++---- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/samples/grids/grid/column-pinning-both-sides/src/index.tsx b/samples/grids/grid/column-pinning-both-sides/src/index.tsx index be088f9bc1..7a3f40a11d 100644 --- a/samples/grids/grid/column-pinning-both-sides/src/index.tsx +++ b/samples/grids/grid/column-pinning-both-sides/src/index.tsx @@ -86,13 +86,13 @@ export default function App() { - Unpin Column + Unpin Selected Columns - Pin Left + Pin Selected Left - Pin Right + Pin Selected Right @@ -115,5 +115,5 @@ export default function App() { } // rendering above component in the React DOM -const root = ReactDOM.createRoot(document.getElementById('root')); -root.render(); \ No newline at end of file +const root = ReactDOM.createRoot(document.getElementById("root")); +root.render(); diff --git a/samples/grids/hierarchical-grid/column-pinning-both-sides/src/index.tsx b/samples/grids/hierarchical-grid/column-pinning-both-sides/src/index.tsx index d89d49303c..0830e8f57e 100644 --- a/samples/grids/hierarchical-grid/column-pinning-both-sides/src/index.tsx +++ b/samples/grids/hierarchical-grid/column-pinning-both-sides/src/index.tsx @@ -71,13 +71,13 @@ export default function App() { - Unpin Column + Unpin Selected Columns - Pin Left + Pin Selected Left - Pin Right + Pin Selected Right @@ -192,5 +192,5 @@ export default function App() { } // rendering above component in the React DOM -const root = ReactDOM.createRoot(document.getElementById('root')); +const root = ReactDOM.createRoot(document.getElementById("root")); root.render(); diff --git a/samples/grids/tree-grid/column-pinning-both-sides/src/index.tsx b/samples/grids/tree-grid/column-pinning-both-sides/src/index.tsx index 62e62f468a..12e84785ea 100644 --- a/samples/grids/tree-grid/column-pinning-both-sides/src/index.tsx +++ b/samples/grids/tree-grid/column-pinning-both-sides/src/index.tsx @@ -72,13 +72,13 @@ export default function App() { - Unpin Column + Unpin Selected Columns - Pin Left + Pin Selected Left - Pin Right + Pin Selected Right @@ -127,5 +127,5 @@ export default function App() { } // rendering above component in the React DOM -const root = ReactDOM.createRoot(document.getElementById('root')); +const root = ReactDOM.createRoot(document.getElementById("root")); root.render(); From 702d2e7801b53d159ccc9af2268aaa6282a8d0fb Mon Sep 17 00:00:00 2001 From: Bozhidara Pachilova <35433937+ddaribo@users.noreply.github.com> Date: Mon, 1 Dec 2025 10:03:33 +0200 Subject: [PATCH 07/43] fix(calendar-formatting): set radio value to state (#977) --- samples/scheduling/calendar/formatting/src/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/scheduling/calendar/formatting/src/index.tsx b/samples/scheduling/calendar/formatting/src/index.tsx index 039418fa5d..538691503c 100644 --- a/samples/scheduling/calendar/formatting/src/index.tsx +++ b/samples/scheduling/calendar/formatting/src/index.tsx @@ -25,7 +25,7 @@ export default class CalendarFormatting extends React.Component { public render(): JSX.Element { return (
- + EN From 0a4b89ac2ab3152f23e2eafcb4d9f1618d77d32e Mon Sep 17 00:00:00 2001 From: MonikaKirkova <47036441+MonikaKirkova@users.noreply.github.com> Date: Tue, 2 Dec 2025 17:06:59 +0200 Subject: [PATCH 08/43] Add handleChipRemove for all chip samples (#980) * fix(chip): add handleChipRemove for all chip samples * chore(chip): apply review suggestions --- samples/inputs/chip/multiple/src/index.tsx | 9 +++++++-- samples/inputs/chip/overview/src/index.tsx | 7 ++++++- samples/inputs/chip/size/src/index.tsx | 11 ++++++++--- samples/inputs/chip/styling/src/index.tsx | 7 ++++++- samples/inputs/chip/variants/src/index.tsx | 15 ++++++++++----- 5 files changed, 37 insertions(+), 12 deletions(-) diff --git a/samples/inputs/chip/multiple/src/index.tsx b/samples/inputs/chip/multiple/src/index.tsx index 601c4712f7..c18a64e808 100644 --- a/samples/inputs/chip/multiple/src/index.tsx +++ b/samples/inputs/chip/multiple/src/index.tsx @@ -32,11 +32,16 @@ export default class ChipMultiple extends React.Component { ); } + private handleChipRemove = (event: CustomEvent) => { + const chip = event.target as IgrChip; + chip.remove(); + } + public render(): JSX.Element { return (
- + @@ -45,7 +50,7 @@ export default class ChipMultiple extends React.Component { - + diff --git a/samples/inputs/chip/overview/src/index.tsx b/samples/inputs/chip/overview/src/index.tsx index 0a127f6bb0..3434f50dd9 100644 --- a/samples/inputs/chip/overview/src/index.tsx +++ b/samples/inputs/chip/overview/src/index.tsx @@ -10,10 +10,15 @@ export default class ChipOverview extends React.Component { super(props); } + private handleChipRemove = (event: CustomEvent) => { + const chip = event.target as IgrChip; + chip.remove(); + } + public render(): JSX.Element { return (
- + Chip
diff --git a/samples/inputs/chip/size/src/index.tsx b/samples/inputs/chip/size/src/index.tsx index b5934d2f12..d1814fa8db 100644 --- a/samples/inputs/chip/size/src/index.tsx +++ b/samples/inputs/chip/size/src/index.tsx @@ -10,16 +10,21 @@ export default class ChipSize extends React.Component { super(props); } + private handleChipRemove = (event: CustomEvent) => { + const chip = event.target as IgrChip; + chip.remove(); + } + public render(): JSX.Element { return (
- + Chip - + Chip - + Chip
diff --git a/samples/inputs/chip/styling/src/index.tsx b/samples/inputs/chip/styling/src/index.tsx index 8bf0e56de2..3023f4721f 100644 --- a/samples/inputs/chip/styling/src/index.tsx +++ b/samples/inputs/chip/styling/src/index.tsx @@ -11,10 +11,15 @@ export default class ChipStyling extends React.Component { super(props); } + private handleChipRemove = (event: CustomEvent) => { + const chip = event.target as IgrChip; + chip.remove(); + } + public render(): JSX.Element { return (
- + Chip
diff --git a/samples/inputs/chip/variants/src/index.tsx b/samples/inputs/chip/variants/src/index.tsx index 376c79ea36..2369b4eb7f 100644 --- a/samples/inputs/chip/variants/src/index.tsx +++ b/samples/inputs/chip/variants/src/index.tsx @@ -10,22 +10,27 @@ export default class ChipVariants extends React.Component { super(props); } + private handleChipRemove = (event: CustomEvent) => { + const chip = event.target as IgrChip; + chip.remove(); + } + public render(): JSX.Element { return (
- + Primary - + Info - + Success - + Warning - + Danger
From 2b020b9b05555d295feb0110d14979a0a12e0c76 Mon Sep 17 00:00:00 2001 From: tfsbuild Date: Fri, 5 Dec 2025 14:34:13 +0200 Subject: [PATCH 09/43] Adding changes from build igniteui-xplat-examples-output+PRs_2025.12.5.2 --- .../advanced-filtering-style/src/index.css | 8 +- .../grid/binding-nested-data-1/src/index.tsx | 3 +- .../column-collapsible-groups/src/index.tsx | 8 +- .../grid/column-moving-options/src/index.tsx | 6 +- .../grid/column-moving-styles/src/index.tsx | 6 +- .../grid/column-pinning-options/src/index.tsx | 6 +- samples/grids/grid/paste/src/index.css | 6 + samples/grids/grid/paste/src/index.tsx | 54 +- samples/grids/grid/row-reorder/src/index.tsx | 3 + .../advanced-filtering-style/src/index.css | 60 +- .../src/HierarchicalCustomersData.json | 50398 ++++++---------- .../src/HierarchicalCustomers.json | 50192 ++++++--------- .../column-moving-options/src/index.tsx | 6 +- .../src/HierarchicalCustomers.json | 50192 ++++++--------- .../column-moving-styles/src/index.tsx | 6 +- .../src/HierarchicalCustomersData.json | 50398 ++++++---------- .../column-pinning-options/src/index.tsx | 6 +- .../src/HierarchicalCustomersData.json | 50398 ++++++---------- .../src/HierarchicalCustomersData.json | 50398 ++++++---------- .../src/HierarchicalCustomersData.json | 50398 ++++++---------- .../src/HierarchicalCustomers.json | 50192 ++++++--------- .../src/HierarchicalCustomers.json | 50192 ++++++--------- .../src/HierarchicalCustomers.json | 50192 ++++++--------- .../src/HierarchicalCustomers.json | 50192 ++++++--------- .../src/HierarchicalCustomers.json | 50192 ++++++--------- .../row-reorder/src/index.tsx | 3 + .../advanced-filtering-style/src/index.css | 8 +- .../column-moving-options/src/index.tsx | 6 +- .../column-moving-styles/src/index.tsx | 20 +- .../column-pinning-options/src/index.tsx | 6 +- .../column-pinning-styles/src/index.tsx | 6 +- .../grids/tree-grid/row-reorder/src/index.tsx | 3 + 32 files changed, 237081 insertions(+), 366483 deletions(-) diff --git a/samples/grids/grid/advanced-filtering-style/src/index.css b/samples/grids/grid/advanced-filtering-style/src/index.css index 397fba0990..9743ad5499 100644 --- a/samples/grids/grid/advanced-filtering-style/src/index.css +++ b/samples/grids/grid/advanced-filtering-style/src/index.css @@ -2,7 +2,11 @@ /* https://static.infragistics.com/xplatform/css/samples */ #grid { - --ig-grid-filtering-row-background: #ffcd0f; - --ig-grid-filtering-background-or: #d83434; + --ig-query-builder-header-foreground: #512da8; + --ig-query-builder-color-expression-group-and: #eb0000; + --ig-query-builder-color-expression-group-or: #0000f3; + --ig-query-builder-subquery-header-background: var(--ig-gray-300); + --ig-query-builder-subquery-border-color: var(--ig-warn-500); + --ig-query-builder-subquery-border-radius: 4px; } diff --git a/samples/grids/grid/binding-nested-data-1/src/index.tsx b/samples/grids/grid/binding-nested-data-1/src/index.tsx index 1e4841d7b4..35a37d6769 100644 --- a/samples/grids/grid/binding-nested-data-1/src/index.tsx +++ b/samples/grids/grid/binding-nested-data-1/src/index.tsx @@ -59,7 +59,8 @@ export default class Sample extends React.Component { field="Employees" header="Employees" bodyTemplate={this.webGridNestedDataCellTemplate} - width="20%"> + width="20%" + minWidth="275px"> { expanded={false}> + header="Name"> + header="Unit Price"> { visibleWhenCollapsed={false}> diff --git a/samples/grids/grid/column-moving-options/src/index.tsx b/samples/grids/grid/column-moving-options/src/index.tsx index 9f7e972d35..4fd453d4d0 100644 --- a/samples/grids/grid/column-moving-options/src/index.tsx +++ b/samples/grids/grid/column-moving-options/src/index.tsx @@ -157,9 +157,9 @@ export default class Sample extends React.Component { public webGridPinHeaderTemplate = (props: {dataContext: IgrColumnTemplateContext}) => { const column = (props.dataContext as any).column; return ( -
- {column.field} - this.toggleColumnPin(column.field)}>📌 +
+ {column.field} + this.toggleColumnPin(column.field)}>📌
); } diff --git a/samples/grids/grid/column-moving-styles/src/index.tsx b/samples/grids/grid/column-moving-styles/src/index.tsx index 728984eaae..e7289ab61a 100644 --- a/samples/grids/grid/column-moving-styles/src/index.tsx +++ b/samples/grids/grid/column-moving-styles/src/index.tsx @@ -151,9 +151,9 @@ export default class Sample extends React.Component { public webGridPinHeaderTemplate = (props: {dataContext: IgrColumnTemplateContext}) => { const column = (props.dataContext as any).column; return ( -
- {column.field} - this.toggleColumnPin(column.field)}>📌 +
+ {column.field} + this.toggleColumnPin(column.field)}>📌
); } diff --git a/samples/grids/grid/column-pinning-options/src/index.tsx b/samples/grids/grid/column-pinning-options/src/index.tsx index 9f25207a4e..7c8a09942d 100644 --- a/samples/grids/grid/column-pinning-options/src/index.tsx +++ b/samples/grids/grid/column-pinning-options/src/index.tsx @@ -116,9 +116,9 @@ export default class Sample extends React.Component { public webGridPinHeaderTemplate = (props: {dataContext: IgrColumnTemplateContext}) => { const column = (props.dataContext as any).column; return ( -
- {column.field} - this.toggleColumnPin(column.field)}>📌 +
+ {column.field} + this.toggleColumnPin(column.field)}>📌
); } diff --git a/samples/grids/grid/paste/src/index.css b/samples/grids/grid/paste/src/index.css index 98682b8543..89ff45c856 100644 --- a/samples/grids/grid/paste/src/index.css +++ b/samples/grids/grid/paste/src/index.css @@ -1,2 +1,8 @@ /* shared styles are loaded from: */ /* https://static.infragistics.com/xplatform/css/samples */ + + .edited { + font-style: italic; + color: gray; + } + diff --git a/samples/grids/grid/paste/src/index.tsx b/samples/grids/grid/paste/src/index.tsx index 5280a0e29c..d145947bd5 100644 --- a/samples/grids/grid/paste/src/index.tsx +++ b/samples/grids/grid/paste/src/index.tsx @@ -9,6 +9,7 @@ import { IgrGrid, IgrGridToolbar, IgrGridToolbarActions, IgrGridToolbarExporter, import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebGridDescriptionModule } from 'igniteui-react-core'; import { InvoicesDataItem, InvoicesData } from './InvoicesData'; import { IgrPropertyEditorPropertyDescriptionChangedEventArgs } from 'igniteui-react-layouts'; +import { IgrRowType } from 'igniteui-react-grids'; import 'igniteui-react-grids/grids/themes/light/bootstrap.css'; import 'igniteui-webcomponents/themes/light/bootstrap.css'; @@ -67,6 +68,7 @@ export default class Sample extends React.Component { autoGenerate={false} data={this.invoicesData} onRendered={this.webGridPasteFromExcel} + rowClasses={this.webGridEditedRowClassesHandler} ref={this.gridRef} id="grid" primaryKey="OrderID"> @@ -157,6 +159,7 @@ export default class Sample extends React.Component { private txtArea: any; public pasteMode = "Paste starting from active cell"; + public updatedRecsPK: any[] = []; public get textArea() { if(!this.txtArea) { @@ -202,7 +205,6 @@ export default class Sample extends React.Component { const grid = this.grid as any; const columns = grid.visibleColumns; const pk = grid.primaryKey; - const addedData: any[] = []; for (const curentDataRow of processedData) { const rowData = {} as any; for (const col of columns) { @@ -211,22 +213,12 @@ export default class Sample extends React.Component { } // generate PK rowData[pk] = grid.data.length + 1; + this.updatedRecsPK.push(rowData[pk]); grid.addRow(rowData); - addedData.push(rowData); } // scroll to last added row grid.navigateTo(grid.data.length - 1, 0, () => { - this.clearStyles(); - for (const data of addedData) { - const row = grid.getRowByKey(data[pk]); - if (row) { - const rowNative = this.getNative(row) as any; - if (rowNative) { - rowNative.style["font-style"] = "italic"; - rowNative.style.color = "gray"; - } - } - } + grid.cdr.detectChanges(); }); } public updateRecords(processedData: any[]) { @@ -238,7 +230,6 @@ export default class Sample extends React.Component { const columns = grid.visibleColumns; const cellIndex = grid.visibleColumns.indexOf(cell.column); let index = 0; - const updatedRecsPK: any[] = []; for (const curentDataRow of processedData) { const rowData = {} as any; const dataRec = grid.data[rowIndex + index]; @@ -258,36 +249,10 @@ export default class Sample extends React.Component { grid.addRow(rowData); continue; } + this.updatedRecsPK.push(rowPkValue); grid.updateRow(rowData, rowPkValue); - updatedRecsPK.push(rowPkValue); index++; } - - this.clearStyles(); - for (const pkVal of updatedRecsPK) { - const row = grid.getRowByKey(pkVal); - if (row) { - const rowNative = this.getNative(row) as any; - if (rowNative) { - rowNative.style["font-style"] = "italic"; - rowNative.style.color = "gray"; - } - } - } - } - - protected clearStyles() { - const rows = [...(document.getElementsByTagName("igx-grid-row") as any)]; - for (const rowNative of rows) { - rowNative.style["font-style"] = ""; - rowNative.style.color = ""; - } - } - - protected getNative(row: any) { - const rows = [...(document.getElementsByTagName("igx-grid-row") as any)]; - const dataInd = row.index.toString(); - return rows.find(x => (x.attributes as any)["data-rowindex"] .value === dataInd); } public processData(data: any) { @@ -308,6 +273,13 @@ export default class Sample extends React.Component { return pasteData; } + public webGridEditedRowClassesHandler = { + edited: (row: IgrRowType) => { + const grid = this.grid as any; + return this.updatedRecsPK.indexOf(row.data[grid.primaryKey]) !== -1; + } + }; + } // rendering above component in the React DOM diff --git a/samples/grids/grid/row-reorder/src/index.tsx b/samples/grids/grid/row-reorder/src/index.tsx index 27f51a4fb1..3372ba4dbf 100644 --- a/samples/grids/grid/row-reorder/src/index.tsx +++ b/samples/grids/grid/row-reorder/src/index.tsx @@ -103,6 +103,9 @@ export default class Sample extends React.Component { public webGridReorderRowHandler(args: IgrRowDragEndEventArgs): void { const ghostElement = args.detail.dragDirective.ghostElement; + if (!ghostElement) { + return; + } const dragElementPos = ghostElement.getBoundingClientRect(); const grid = this.grid; const rows = Array.prototype.slice.call(document.getElementsByTagName("igx-grid-row")); diff --git a/samples/grids/hierarchical-grid/advanced-filtering-style/src/index.css b/samples/grids/hierarchical-grid/advanced-filtering-style/src/index.css index 9259d94790..2a1297d0b9 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-style/src/index.css +++ b/samples/grids/hierarchical-grid/advanced-filtering-style/src/index.css @@ -2,59 +2,11 @@ /* https://static.infragistics.com/xplatform/css/samples */ #hierarchicalGrid1 { - - --ig-button-background: #292826; - --ig-button-foreground:#ffcd0f; - --ig-button-hover-foreground:#292826; - --ig-button-hover-background:#ffcd0f; - --ig-button-focus-foreground:#ffcd0f; - --ig-button-focus-background:#292826; - --ig-button-active-background:#ffcd0f; - --ig-button-active-foreground:#292826; - --ig-button-border-color:#ffcd0f; - --ig-button-hover-border-color:#ffcd0f; - --ig-button-focus-border-color:#ffcd0f; - --ig-button-active-border-color:#ffcd0f; - - --ig-button-group-item-background: #292826; - --ig-button-group-item-text-color: #ffcd0f; - --ig-button-group-item-border-color: #ffcd0f; - --ig-button-group-item-selected-background: #ffcd0f; - --ig-button-group-item-hover-background: #ffcd0f; - --ig-button-group-item-selected-hover-background: #ffcd0f; - --ig-button-group-item-disabled-border: #ffcd0f; - --ig-button-group-item-selected-border-color: #ffcd0f; - - --ig-input-group-idle-text-color: #ffcd0f; - --ig-input-group-focused-text-color: #ffcd0f; - --ig-input-group-filled-text-color: #ffcd0f; - --ig-input-group-idle-bottom-line-color: #ffe482; - --ig-input-group-focused-secondary-color: #ffcd0f; - - --ig-chip-background: #ffcd0f; - --ig-chip-text-color: #292826; - - --ig-drop-down-background-color: #292826; - --ig-drop-down-item-text-color: #ffcd0f; - --ig-drop-down-hover-item-background: #ffcd0f; - --ig-drop-down-hover-item-text-color: #292826; - --ig-drop-down-focused-item-background: #ffcd0f; - --ig-drop-down-focused-item-text-color: #292826; - --ig-drop-down-selected-item-background: #ffcd0f; - --ig-drop-down-selected-item-text-color: #292826; - --ig-drop-down-selected-focus-item-background: #ffcd0f; - --ig-drop-down-selected-focus-item-text-color: #292826; - --ig-drop-down-selected-hover-item-background: #ffcd0f; - --ig-drop-down-selected-hover-item-text-color: #292826; - - --ig-query-builder-header-foreground: #EDEDED; - --ig-query-builder-header-background: gray; - --ig-query-builder-background: #292826; - --ig-query-builder-foreground: #ffcd0f; -} - -* { - --background-or: red; - --filtering-row-background: #292826; + --ig-query-builder-header-foreground: #512da8; + --ig-query-builder-color-expression-group-and: #eb0000; + --ig-query-builder-color-expression-group-or: #0000f3; + --ig-query-builder-subquery-header-background: var(--ig-gray-300); + --ig-query-builder-subquery-border-color: var(--ig-warn-500); + --ig-query-builder-subquery-border-radius: 4px; } diff --git a/samples/grids/hierarchical-grid/column-collapsible-groups/src/HierarchicalCustomersData.json b/samples/grids/hierarchical-grid/column-collapsible-groups/src/HierarchicalCustomersData.json index 8c1cb2c4ac..956627e3f6 100644 --- a/samples/grids/hierarchical-grid/column-collapsible-groups/src/HierarchicalCustomersData.json +++ b/samples/grids/hierarchical-grid/column-collapsible-groups/src/HierarchicalCustomersData.json @@ -53,6 +53,112 @@ "TotalPrice": 220.25 } ] + }, + { + "OrderID": 10274, + "EmployeeID": 6, + "OrderDate": "1996-08-06T00:00:00", + "RequiredDate": "1996-09-03T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 1, + "Freight": 6.01, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 7, + "Discount": 0 + } + ] + }, + { + "OrderID": 10295, + "EmployeeID": 2, + "OrderDate": "1996-09-02T00:00:00", + "RequiredDate": "1996-09-30T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", + "ShipVia": 2, + "Freight": 1.15, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 10737, + "EmployeeID": 2, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 7.79, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10739, + "EmployeeID": 3, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-17T00:00:00", + "ShipVia": 3, + "Freight": 11.08, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 18, + "Discount": 0 + } + ] } ] }, @@ -101,267 +207,155 @@ "TotalPrice": 225.75 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Madrid", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10250, - "EmployeeID": 4, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-12T00:00:00", + "OrderID": 10438, + "EmployeeID": 3, + "OrderDate": "1997-02-06T00:00:00", + "RequiredDate": "1997-03-06T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", "ShipVia": 2, - "Freight": 65.83, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 8.24, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0, - "Weight": 2.9, - "Length": 26.9, - "TotalPrice": 233.5 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 35, - "Discount": 0.16, - "Weight": 3.5, - "Length": 27.4, - "TotalPrice": 261.25 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 15, - "Discount": 0.16, - "Weight": 2.2, - "Length": 30.2, - "TotalPrice": 249.75 + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10251, - "EmployeeID": 3, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", + "OrderID": 10446, + "EmployeeID": 6, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-02-19T00:00:00", "ShipVia": 1, - "Freight": 41.34, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 14.68, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.06, - "Weight": 2.6, - "Length": 26.8, - "TotalPrice": 226.5 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.06, - "Weight": 3.1, - "Length": 24.3, - "TotalPrice": 219.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0, - "Weight": 2.4, - "Length": 23.7, - "TotalPrice": 207 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 + }, + { + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10252, - "EmployeeID": 4, - "OrderDate": "1996-07-09T00:00:00", - "RequiredDate": "1996-08-06T00:00:00", - "ShippedDate": "1996-07-11T00:00:00", + "OrderID": 10548, + "EmployeeID": 3, + "OrderDate": "1997-05-26T00:00:00", + "RequiredDate": "1997-06-23T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", "ShipVia": 2, - "Freight": 51.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 1.43, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 40, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10254, - "EmployeeID": 5, - "OrderDate": "1996-07-11T00:00:00", - "RequiredDate": "1996-08-08T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderID": 10608, + "EmployeeID": 4, + "OrderDate": "1997-07-23T00:00:00", + "RequiredDate": "1997-08-20T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 22.98, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 27.79, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 21, - "Discount": 0.16 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10255, - "EmployeeID": 9, - "OrderDate": "1996-07-12T00:00:00", - "RequiredDate": "1996-08-09T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", - "ShipVia": 3, - "Freight": 148.33, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10967, + "EmployeeID": 2, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 62.22, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 25, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 40, "Discount": 0 } ] @@ -369,1393 +363,1191 @@ ] }, { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, + "CustomerID": "HANAR", + "Company": "Hanari Carnes", + "ContactName": "Mario Pontes", + "ContactTitle": "Accounting Manager", + "Address": "Rua do Paço, 67", + "City": "Madrid", + "Region": "RJ", + "PostalCode": 5454, "Country": "Brazil", - "Phone": "(14) 555-8122", + "Phone": "(21) 555-0091", + "Fax": "(21) 555-8765", "Orders": [ { - "OrderID": 10256, - "EmployeeID": 3, - "OrderDate": "1996-07-15T00:00:00", - "RequiredDate": "1996-08-12T00:00:00", - "ShippedDate": "1996-07-17T00:00:00", + "OrderID": 10250, + "EmployeeID": 4, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-12T00:00:00", "ShipVia": 2, - "Freight": 13.97, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, + "Freight": 65.83, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, + "Discount": 0, + "Weight": 2.9, + "Length": 26.9, + "TotalPrice": 233.5 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 35, + "Discount": 0.16, + "Weight": 3.5, + "Length": 27.4, + "TotalPrice": 261.25 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.16, + "Weight": 2.2, + "Length": 30.2, + "TotalPrice": 249.75 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10257, - "EmployeeID": 4, - "OrderDate": "1996-07-16T00:00:00", - "RequiredDate": "1996-08-13T00:00:00", - "ShippedDate": "1996-07-22T00:00:00", - "ShipVia": 3, - "Freight": 81.91, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10541, + "EmployeeID": 2, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-05-29T00:00:00", + "ShipVia": 1, + "Freight": 68.65, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 25, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.1 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 9, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10645, + "EmployeeID": 4, + "OrderDate": "1997-08-26T00:00:00", + "RequiredDate": "1997-09-23T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", + "ShipVia": 1, + "Freight": 12.41, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10258, + "OrderID": 10690, "EmployeeID": 1, - "OrderDate": "1996-07-17T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderDate": "1997-10-02T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", "ShipVia": 1, - "Freight": 140.51, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 15.8, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 65, - "Discount": 0.2 - }, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10770, + "EmployeeID": 8, + "OrderDate": "1997-12-09T00:00:00", + "RequiredDate": "1998-01-06T00:00:00", + "ShippedDate": "1997-12-17T00:00:00", + "ShipVia": 3, + "Freight": 5.32, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "CENTC", - "Company": "Centro comercial Moctezuma", - "ContactName": "Francisco Chang", - "ContactTitle": "Marketing Manager", - "Address": "Sierras de Granada 9993", - "City": "México D.F.", - "PostalCode": 5022, - "Country": "Mexico", - "Phone": "(5) 555-3392", - "Fax": "(5) 555-7293", - "Orders": [ + }, { - "OrderID": 10259, + "OrderID": 10783, "EmployeeID": 4, - "OrderDate": "1996-07-18T00:00:00", - "RequiredDate": "1996-08-15T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", - "ShipVia": 3, - "Freight": 3.25, - "ShipName": "Centro comercial Moctezuma", - "ShipAddress": "Sierras de Granada 9993", - "ShipCity": "México D.F.", - "ShipPostalCode": 5022, - "ShipCountry": "Mexico", + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 124.98, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 10, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 1, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10260, - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-29T00:00:00", + "OrderID": 10886, + "EmployeeID": 1, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", "ShipVia": 1, - "Freight": 55.09, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 4.99, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 16, - "Discount": 0.25 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 50, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10261, - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-30T00:00:00", - "ShipVia": 2, - "Freight": 3.05, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "OrderID": 10903, + "EmployeeID": 3, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 3, + "Freight": 36.71, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", "ShipCity": "Lyon", "ShipRegion": "RJ", - "ShipPostalCode": 2389, + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 20, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10262, - "EmployeeID": 8, - "OrderDate": "1996-07-22T00:00:00", - "RequiredDate": "1996-08-19T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", + "OrderID": 10922, + "EmployeeID": 5, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", "ShipVia": 3, - "Freight": 48.29, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 62.74, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 12, - "Discount": 0.2 - }, - { - "ProductID": 7, - "UnitPrice": 24, + "ProductID": 17, + "UnitPrice": 39, "Quantity": 15, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 2, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10263, - "EmployeeID": 9, - "OrderDate": "1996-07-23T00:00:00", - "RequiredDate": "1996-08-20T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", - "ShipVia": 3, - "Freight": 146.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10925, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 1, + "Freight": 2.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0.16 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 36000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10264, - "EmployeeID": 6, - "OrderDate": "1996-07-24T00:00:00", - "RequiredDate": "1996-08-21T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", - "ShipVia": 3, - "Freight": 3.67, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 15000, - "ShipCountry": "Sweden", + "OrderID": 10981, + "EmployeeID": 1, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 193.37, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 35, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 25, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10265, - "EmployeeID": 2, - "OrderDate": "1996-07-25T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", - "ShipVia": 1, - "Freight": 55.28, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 11022, + "EmployeeID": 9, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 30, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10266, + "OrderID": 11052, "EmployeeID": 3, - "OrderDate": "1996-07-26T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", - "ShipVia": 3, - "Freight": 25.73, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 67.26, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", + "CustomerID": "VICTE", + "Company": "Victuailles en stock", + "ContactName": "Mary Saveley", + "ContactTitle": "Sales Agent", + "Address": "2, rue du Commerce", + "City": "Lyon", + "PostalCode": 69004, + "Country": "France", + "Phone": "78.32.54.86", + "Fax": "78.32.54.87", "Orders": [ { - "OrderID": 10267, - "EmployeeID": 4, - "OrderDate": "1996-07-29T00:00:00", - "RequiredDate": "1996-08-26T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", + "OrderID": 10251, + "EmployeeID": 3, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", "ShipVia": 1, - "Freight": 208.58, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 41.34, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, - "Discount": 0 + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 6, + "Discount": 0.06, + "Weight": 2.6, + "Length": 26.8, + "TotalPrice": 226.5 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 15, + "Discount": 0.06, + "Weight": 3.1, + "Length": 24.3, + "TotalPrice": 219.25 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0, + "Weight": 2.4, + "Length": 23.7, + "TotalPrice": 207 } ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10268, + "OrderID": 10334, "EmployeeID": 8, - "OrderDate": "1996-07-30T00:00:00", - "RequiredDate": "1996-08-27T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 3, - "Freight": 66.29, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", + "OrderDate": "1996-10-21T00:00:00", + "RequiredDate": "1996-11-18T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", + "ShipVia": 2, + "Freight": 8.56, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 10, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 4, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10269, - "EmployeeID": 5, - "OrderDate": "1996-07-31T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", - "ShipVia": 1, - "Freight": 4.56, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10450, + "EmployeeID": 8, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-19T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", + "ShipVia": 2, + "Freight": 7.23, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 6, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10270, - "EmployeeID": 1, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 1, - "Freight": 136.54, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10459, + "EmployeeID": 4, + "OrderDate": "1997-02-27T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 25.09, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 25, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10271, - "EmployeeID": 6, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", - "ShipVia": 2, - "Freight": 4.54, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 10478, + "EmployeeID": 2, + "OrderDate": "1997-03-18T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-26T00:00:00", + "ShipVia": 3, + "Freight": 4.81, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 24, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10272, - "EmployeeID": 6, - "OrderDate": "1996-08-02T00:00:00", - "RequiredDate": "1996-08-30T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", - "ShipVia": 2, - "Freight": 98.03, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10546, + "EmployeeID": 1, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-05-27T00:00:00", + "ShipVia": 3, + "Freight": 194.72, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 6, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 24, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10273, + "OrderID": 10806, "EmployeeID": 3, - "OrderDate": "1996-08-05T00:00:00", - "RequiredDate": "1996-09-02T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", - "ShipVia": 3, - "Freight": 76.07, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 2, + "Freight": 22.11, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 24, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.06 - }, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 2, + "Discount": 0 + }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10814, + "EmployeeID": 3, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 3, + "Freight": 130.94, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 33, - "Discount": 0.06 + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 8, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10274, - "EmployeeID": 6, - "OrderDate": "1996-08-06T00:00:00", - "RequiredDate": "1996-09-03T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", + "OrderID": 10843, + "EmployeeID": 4, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", + "ShipVia": 2, + "Freight": 9.26, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 4, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10850, + "EmployeeID": 1, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 6.01, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, + "Freight": 49.19, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, + "ProductID": 25, + "UnitPrice": 14, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 4, + "Discount": 0.16 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "SUPRD", + "Company": "Suprêmes délices", + "ContactName": "Pascale Cartrain", + "ContactTitle": "Accounting Manager", + "Address": "Boulevard Tirou, 255", + "City": "Charleroi", + "PostalCode": 6000, + "Country": "Belgium", + "Phone": "(071) 23 67 22 20", + "Fax": "(071) 23 67 22 21", "Orders": [ { - "OrderID": 10275, - "EmployeeID": 1, - "OrderDate": "1996-08-07T00:00:00", - "RequiredDate": "1996-09-04T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", - "ShipVia": 1, - "Freight": 26.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10252, + "EmployeeID": 4, + "OrderDate": "1996-07-09T00:00:00", + "RequiredDate": "1996-08-06T00:00:00", + "ShippedDate": "1996-07-11T00:00:00", + "ShipVia": 2, + "Freight": 51.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 40, "Discount": 0.06 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 6, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 25, "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10276, - "EmployeeID": 8, - "OrderDate": "1996-08-08T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-14T00:00:00", - "ShipVia": 3, - "Freight": 13.84, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10302, + "EmployeeID": 4, + "OrderDate": "1996-09-10T00:00:00", + "RequiredDate": "1996-10-08T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 15, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10277, - "EmployeeID": 2, - "OrderDate": "1996-08-09T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-08-13T00:00:00", + "OrderID": 10458, + "EmployeeID": 7, + "OrderDate": "1997-02-26T00:00:00", + "RequiredDate": "1997-03-26T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", "ShipVia": 3, - "Freight": 125.77, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 147.06, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, + "Discount": 0 + }, { "ProductID": 28, "UnitPrice": 36.4, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 12, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10278, - "EmployeeID": 8, - "OrderDate": "1996-08-12T00:00:00", - "RequiredDate": "1996-09-09T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 2, - "Freight": 92.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 26000, - "ShipCountry": "Sweden", + "OrderID": 10463, + "EmployeeID": 5, + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-06T00:00:00", + "ShipVia": 3, + "Freight": 14.78, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 16, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 50, "Discount": 0 + } + ] + }, + { + "OrderID": 10475, + "EmployeeID": 9, + "OrderDate": "1997-03-14T00:00:00", + "RequiredDate": "1997-04-11T00:00:00", + "ShippedDate": "1997-04-04T00:00:00", + "ShipVia": 1, + "Freight": 68.52, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 8, - "Discount": 0 + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, + "Discount": 0.16 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 42, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10279, - "EmployeeID": 8, - "OrderDate": "1996-08-13T00:00:00", - "RequiredDate": "1996-09-10T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 2, - "Freight": 25.83, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10767, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 3, + "Freight": 1.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 2, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 34000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10280, - "EmployeeID": 2, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-09-11T00:00:00", - "ShippedDate": "1996-09-12T00:00:00", - "ShipVia": 1, - "Freight": 8.98, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 50000, - "ShipCountry": "Sweden", + "OrderID": 10841, + "EmployeeID": 5, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", + "ShipVia": 2, + "Freight": 424.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 20, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10281, - "EmployeeID": 4, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-08-28T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 2.94, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10846, + "EmployeeID": 2, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 56.46, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 1, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 6, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 } ] }, { - "OrderID": 10282, - "EmployeeID": 4, - "OrderDate": "1996-08-15T00:00:00", - "RequiredDate": "1996-09-12T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10283, - "EmployeeID": 3, - "OrderDate": "1996-08-16T00:00:00", - "RequiredDate": "1996-09-13T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", + "OrderID": 10885, + "EmployeeID": 6, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 3, - "Freight": 84.81, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 5.64, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 12.4, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 20, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 35, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 3, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10284, + "OrderID": 10930, "EmployeeID": 4, - "OrderDate": "1996-08-19T00:00:00", - "RequiredDate": "1996-09-16T00:00:00", - "ShippedDate": "1996-08-27T00:00:00", - "ShipVia": 1, - "Freight": 76.56, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 3, + "Freight": 15.55, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 21, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 67, - "UnitPrice": 11.2, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10285, - "EmployeeID": 1, - "OrderDate": "1996-08-20T00:00:00", - "RequiredDate": "1996-09-17T00:00:00", - "ShippedDate": "1996-08-26T00:00:00", + "OrderID": 11035, + "EmployeeID": 2, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", "ShipVia": 2, - "Freight": 76.83, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 0.17, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 45, - "Discount": 0.2 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.2 + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 36, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, + "Discount": 0 } ] }, { - "OrderID": 10286, - "EmployeeID": 8, - "OrderDate": "1996-08-21T00:00:00", - "RequiredDate": "1996-09-18T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", - "ShipVia": 3, - "Freight": 229.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 11038, + "EmployeeID": 1, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", + "ShipVia": 2, + "Freight": 29.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 100, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, + "Discount": 0.2 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] @@ -1763,327 +1555,272 @@ ] }, { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", + "CustomerID": "CHOPS", + "Company": "Chop-suey Chinese", + "ContactName": "Yang Wang", + "ContactTitle": "Owner", + "Address": "Hauptstr. 29", + "City": "Bern", + "PostalCode": 3012, + "Country": "Switzerland", + "Phone": "0452-076545", "Orders": [ { - "OrderID": 10287, - "EmployeeID": 8, - "OrderDate": "1996-08-22T00:00:00", - "RequiredDate": "1996-09-19T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", - "ShipVia": 3, - "Freight": 12.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10254, + "EmployeeID": 5, + "OrderDate": "1996-07-11T00:00:00", + "RequiredDate": "1996-08-08T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 2, + "Freight": 22.98, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, "Discount": 0.16 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 21, + "Discount": 0.16 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10288, - "EmployeeID": 4, - "OrderDate": "1996-08-23T00:00:00", - "RequiredDate": "1996-09-20T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", - "ShipVia": 1, - "Freight": 7.45, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10370, + "EmployeeID": 6, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-27T00:00:00", + "ShipVia": 2, + "Freight": 1.17, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10289, - "EmployeeID": 7, - "OrderDate": "1996-08-26T00:00:00", - "RequiredDate": "1996-09-23T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", + "OrderID": 10519, + "EmployeeID": 6, + "OrderDate": "1997-04-28T00:00:00", + "RequiredDate": "1997-05-26T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", "ShipVia": 3, - "Freight": 22.77, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 18000, - "ShipCountry": "UK", + "Freight": 91.76, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 9, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10290, - "EmployeeID": 8, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", + "OrderID": 10731, + "EmployeeID": 7, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", "ShipVia": 1, - "Freight": 79.7, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 96.65, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10746, + "EmployeeID": 1, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 3, + "Freight": 31.43, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10291, - "EmployeeID": 6, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-04T00:00:00", - "ShipVia": 2, - "Freight": 6.4, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10966, + "EmployeeID": 4, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 27.19, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10292, - "EmployeeID": 1, - "OrderDate": "1996-08-28T00:00:00", - "RequiredDate": "1996-09-25T00:00:00", - "ShippedDate": "1996-09-02T00:00:00", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "OrderID": 11029, + "EmployeeID": 4, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 47.84, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10293, - "EmployeeID": 1, - "OrderDate": "1996-08-29T00:00:00", - "RequiredDate": "1996-09-26T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 3, - "Freight": 21.18, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 11041, + "EmployeeID": 3, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", + "ShipVia": 2, + "Freight": 48.22, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 }, { "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, + "UnitPrice": 43.9, + "Quantity": 30, "Discount": 0 } ] @@ -2091,1519 +1828,1223 @@ ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "RICSU", + "Company": "Richter Supermarkt", + "ContactName": "Michael Holz", + "ContactTitle": "Sales Manager", + "Address": "Grenzacherweg 237", + "City": "Genève", + "PostalCode": 1203, + "Country": "Switzerland", + "Phone": "0897-034214", "Orders": [ { - "OrderID": 10294, - "EmployeeID": 4, - "OrderDate": "1996-08-30T00:00:00", - "RequiredDate": "1996-09-27T00:00:00", - "ShippedDate": "1996-09-05T00:00:00", - "ShipVia": 2, - "Freight": 147.26, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10255, + "EmployeeID": 9, + "OrderDate": "1996-07-12T00:00:00", + "RequiredDate": "1996-08-09T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", + "ShipVia": 3, + "Freight": 148.33, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 15, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 21, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10295, - "EmployeeID": 2, - "OrderDate": "1996-09-02T00:00:00", - "RequiredDate": "1996-09-30T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", + "OrderID": 10419, + "EmployeeID": 4, + "OrderDate": "1997-01-20T00:00:00", + "RequiredDate": "1997-02-17T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", "ShipVia": 2, - "Freight": 1.15, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 137.35, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 4, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10296, - "EmployeeID": 6, - "OrderDate": "1996-09-03T00:00:00", - "RequiredDate": "1996-10-01T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", + "OrderID": 10537, + "EmployeeID": 1, + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", "ShipVia": 1, - "Freight": 0.12, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 78.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 12, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 30, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10297, - "EmployeeID": 5, - "OrderDate": "1996-09-04T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", + "OrderID": 10666, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", "ShipVia": 2, - "Freight": 5.74, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 232.42, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 60, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, - "Discount": 0 - } + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0 + } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10298, - "EmployeeID": 6, - "OrderDate": "1996-09-05T00:00:00", - "RequiredDate": "1996-10-03T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 2, - "Freight": 168.22, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10751, + "EmployeeID": 3, + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-12-03T00:00:00", + "ShipVia": 3, + "Freight": 130.79, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 39.4, + "ProductID": 73, + "UnitPrice": 15, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10299, - "EmployeeID": 4, - "OrderDate": "1996-09-06T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-13T00:00:00", - "ShipVia": 2, - "Freight": 29.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10758, + "EmployeeID": 3, + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-04T00:00:00", + "ShipVia": 3, + "Freight": 138.17, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 60, "Discount": 0 }, { "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, + "UnitPrice": 15, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10300, - "EmployeeID": 2, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", + "OrderID": 10931, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 17.68, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 13.6, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 30, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 42, + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10301, - "EmployeeID": 8, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", + "OrderID": 10951, + "EmployeeID": 9, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", "ShipVia": 2, - "Freight": 45.08, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 30.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10302, - "EmployeeID": 4, - "OrderDate": "1996-09-10T00:00:00", - "RequiredDate": "1996-10-08T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 11033, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 84.74, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 28, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 36, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10303, - "EmployeeID": 7, - "OrderDate": "1996-09-11T00:00:00", - "RequiredDate": "1996-10-09T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", + "OrderID": 11075, + "EmployeeID": 8, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", "ShipVia": 2, - "Freight": 107.83, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 6.19, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 46, + "UnitPrice": 12, "Quantity": 30, - "Discount": 0.1 + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", + "CustomerID": "WELLI", + "Company": "Wellington Importadora", + "ContactName": "Paula Parente", + "ContactTitle": "Sales Manager", + "Address": "Rua do Mercado, 12", + "City": "Resende", + "Region": "SP", + "PostalCode": 8737, + "Country": "Brazil", + "Phone": "(14) 555-8122", "Orders": [ { - "OrderID": 10304, - "EmployeeID": 1, - "OrderDate": "1996-09-12T00:00:00", - "RequiredDate": "1996-10-10T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", + "OrderID": 10256, + "EmployeeID": 3, + "OrderDate": "1996-07-15T00:00:00", + "RequiredDate": "1996-08-12T00:00:00", + "ShippedDate": "1996-07-17T00:00:00", "ShipVia": 2, - "Freight": 63.79, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 13.97, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 10, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10305, - "EmployeeID": 8, - "OrderDate": "1996-09-13T00:00:00", - "RequiredDate": "1996-10-11T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 3, - "Freight": 257.62, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10420, + "EmployeeID": 3, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 1, + "Freight": 44.12, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 25, + "ProductID": 9, + "UnitPrice": 77.6, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 25, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 2, "Discount": 0.1 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 30, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10306, - "EmployeeID": 1, - "OrderDate": "1996-09-16T00:00:00", - "RequiredDate": "1996-10-14T00:00:00", - "ShippedDate": "1996-09-23T00:00:00", - "ShipVia": 3, - "Freight": 7.56, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10585, + "EmployeeID": 7, + "OrderDate": "1997-07-01T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", + "ShipVia": 1, + "Freight": 13.41, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 5, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10307, - "EmployeeID": 2, - "OrderDate": "1996-09-17T00:00:00", - "RequiredDate": "1996-10-15T00:00:00", - "ShippedDate": "1996-09-25T00:00:00", + "OrderID": 10644, + "EmployeeID": 3, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 0.14, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ - { - "OrderID": 10308, - "EmployeeID": 7, - "OrderDate": "1996-09-18T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-24T00:00:00", - "ShipVia": 3, - "Freight": 1.61, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 1, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 70, + "ProductID": 46, "UnitPrice": 12, - "Quantity": 5, - "Discount": 0 + "Quantity": 21, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10309, - "EmployeeID": 3, - "OrderDate": "1996-09-19T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", + "OrderID": 10803, + "EmployeeID": 4, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-06T00:00:00", "ShipVia": 1, - "Freight": 47.3, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 55.23, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 24, + "Discount": 0.06 }, { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 30, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 2, - "Discount": 0 - }, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 15, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10809, + "EmployeeID": 7, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", + "ShipVia": 1, + "Freight": 4.87, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 43, - "UnitPrice": 36.8, + "ProductID": 52, + "UnitPrice": 7, "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 3, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10310, - "EmployeeID": 8, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-18T00:00:00", - "ShippedDate": "1996-09-27T00:00:00", + "OrderID": 10900, + "EmployeeID": 1, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 2, - "Freight": 17.52, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "Freight": 1.66, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 10, - "Discount": 0 - }, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10905, + "EmployeeID": 9, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 13.72, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 5, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10311, - "EmployeeID": 1, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-26T00:00:00", + "OrderID": 10935, + "EmployeeID": 4, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 3, - "Freight": 24.69, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 47.59, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 6, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.25 + }, + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 8, + "Discount": 0.25 } ] } ] }, { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", + "CustomerID": "HILAA", + "Company": "HILARION-Abastos", + "ContactName": "Carlos Hernández", "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", + "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", "Orders": [ { - "OrderID": 10312, - "EmployeeID": 2, - "OrderDate": "1996-09-23T00:00:00", - "RequiredDate": "1996-10-21T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", - "ShipVia": 2, - "Freight": 40.26, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10257, + "EmployeeID": 4, + "OrderDate": "1996-07-16T00:00:00", + "RequiredDate": "1996-08-13T00:00:00", + "ShippedDate": "1996-07-22T00:00:00", + "ShipVia": 3, + "Freight": 81.91, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 4, + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 24, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10395, + "EmployeeID": 6, + "OrderDate": "1996-12-26T00:00:00", + "RequiredDate": "1997-01-23T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 1, + "Freight": 184.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 28, + "Discount": 0.1 }, { "ProductID": 53, "UnitPrice": 26.2, - "Quantity": 20, - "Discount": 0 + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10313, - "EmployeeID": 2, - "OrderDate": "1996-09-24T00:00:00", - "RequiredDate": "1996-10-22T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", - "ShipVia": 2, - "Freight": 1.96, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10476, + "EmployeeID": 8, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", + "ShipVia": 3, + "Freight": 4.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 12, "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10314, + "OrderID": 10486, "EmployeeID": 1, - "OrderDate": "1996-09-25T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", "ShipVia": 2, - "Freight": 74.16, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 30.53, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 10.6, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 16, + "Discount": 0 + } + ] + }, + { + "OrderID": 10490, + "EmployeeID": 7, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-03T00:00:00", + "ShipVia": 2, + "Freight": 210.19, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, "Quantity": 30, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 36, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 42000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10315, - "EmployeeID": 4, - "OrderDate": "1996-09-26T00:00:00", - "RequiredDate": "1996-10-24T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", + "OrderID": 10498, + "EmployeeID": 8, + "OrderDate": "1997-04-07T00:00:00", + "RequiredDate": "1997-05-05T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 2, - "Freight": 41.76, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40301, - "ShipPostalCode": 32000, - "ShipCountry": "UK", + "Freight": 29.75, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 14, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10316, - "EmployeeID": 1, - "OrderDate": "1996-09-27T00:00:00", - "RequiredDate": "1996-10-25T00:00:00", - "ShippedDate": "1996-10-08T00:00:00", - "ShipVia": 3, - "Freight": 150.15, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10552, + "EmployeeID": 2, + "OrderDate": "1997-05-29T00:00:00", + "RequiredDate": "1997-06-26T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 1, + "Freight": 83.22, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 70, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10317, - "EmployeeID": 6, - "OrderDate": "1996-09-30T00:00:00", - "RequiredDate": "1996-10-28T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", + "OrderID": 10601, + "EmployeeID": 7, + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 58.3, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 20, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10318, - "EmployeeID": 8, - "OrderDate": "1996-10-01T00:00:00", - "RequiredDate": "1996-10-29T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderID": 10613, + "EmployeeID": 4, + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 4.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 30575, - "ShipPostalCode": 43000, - "ShipCountry": "UK", + "Freight": 8.11, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 6, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10319, - "EmployeeID": 7, - "OrderDate": "1996-10-02T00:00:00", - "RequiredDate": "1996-10-30T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", - "ShipVia": 3, - "Freight": 64.5, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10641, + "EmployeeID": 4, + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 2, + "Freight": 179.61, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 14, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10320, - "EmployeeID": 5, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-18T00:00:00", - "ShipVia": 3, - "Freight": 34.57, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10705, + "EmployeeID": 9, + "OrderDate": "1997-10-15T00:00:00", + "RequiredDate": "1997-11-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 3.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10321, + "OrderID": 10796, "EmployeeID": 3, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-31T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", - "ShipVia": 2, - "Freight": 3.43, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 80331, - "ShipPostalCode": 24000, - "ShipCountry": "UK", + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 1, + "Freight": 26.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 21, + "Discount": 0.2 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10322, - "EmployeeID": 7, - "OrderDate": "1996-10-04T00:00:00", - "RequiredDate": "1996-11-01T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", - "ShipVia": 3, - "Freight": 0.4, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 24, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10323, + "OrderID": 10863, "EmployeeID": 4, - "OrderDate": "1996-10-07T00:00:00", - "RequiredDate": "1996-11-04T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 1, - "Freight": 4.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 30.26, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 12.4, - "Quantity": 5, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 4, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 12, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10901, + "EmployeeID": 4, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", + "ShipVia": 1, + "Freight": 62.09, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10324, - "EmployeeID": 9, - "OrderDate": "1996-10-08T00:00:00", - "RequiredDate": "1996-11-05T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", - "ShipVia": 1, - "Freight": 214.27, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10957, + "EmployeeID": 8, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 105.36, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.16 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 70, - "Discount": 0.16 + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 30, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 8, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10960, + "EmployeeID": 3, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 2.08, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 80, - "Discount": 0.16 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10325, + "OrderID": 10976, "EmployeeID": 1, - "OrderDate": "1996-10-09T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 3, - "Freight": 64.86, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 1, + "Freight": 37.97, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 6, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 11055, + "EmployeeID": 7, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", + "ShipVia": 2, + "Freight": 120.92, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 12, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 9, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ - { - "OrderID": 10326, - "EmployeeID": 4, - "OrderDate": "1996-10-10T00:00:00", - "RequiredDate": "1996-11-07T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 2, - "Freight": 77.92, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 24, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 16, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 50, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] @@ -3611,1149 +3052,787 @@ ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 31000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", "Orders": [ { - "OrderID": 10327, - "EmployeeID": 2, - "OrderDate": "1996-10-11T00:00:00", - "RequiredDate": "1996-11-08T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", + "OrderID": 10258, + "EmployeeID": 1, + "OrderDate": "1996-07-17T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", "ShipVia": 1, - "Freight": 63.36, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", + "Freight": 140.51, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 11, - "UnitPrice": 16.8, "Quantity": 50, "Discount": 0.2 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 35, + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 65, "Discount": 0.2 }, { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10328, - "EmployeeID": 4, - "OrderDate": "1996-10-14T00:00:00", - "RequiredDate": "1996-11-11T00:00:00", - "ShippedDate": "1996-10-17T00:00:00", + "OrderID": 10263, + "EmployeeID": 9, + "OrderDate": "1996-07-23T00:00:00", + "RequiredDate": "1996-08-20T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", "ShipVia": 3, - "Freight": 87.03, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 146.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 36, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10329, - "EmployeeID": 4, - "OrderDate": "1996-10-15T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", - "ShipVia": 2, - "Freight": 191.67, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 10351, + "EmployeeID": 1, + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 162.33, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 10, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 20, "Discount": 0.06 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 13, + "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 20, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 77, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 12, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 10, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10330, - "EmployeeID": 3, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", - "ShipVia": 1, - "Freight": 12.75, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10368, + "EmployeeID": 2, + "OrderDate": "1996-11-29T00:00:00", + "RequiredDate": "1996-12-27T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 101.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 5, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 13, + "Discount": 0.1 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 25, - "Discount": 0.16 + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10331, - "EmployeeID": 9, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-27T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", + "OrderID": 10382, + "EmployeeID": 4, + "OrderDate": "1996-12-13T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1996-12-16T00:00:00", "ShipVia": 1, - "Freight": 10.19, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 94.77, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 32, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 49000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10332, - "EmployeeID": 3, - "OrderDate": "1996-10-17T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", - "ShipVia": 2, - "Freight": 52.84, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { "ProductID": 18, "UnitPrice": 50, - "Quantity": 40, - "Discount": 0.2 + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 16, - "Discount": 0.2 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10333, - "EmployeeID": 5, - "OrderDate": "1996-10-18T00:00:00", - "RequiredDate": "1996-11-15T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", - "ShipVia": 3, - "Freight": 0.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10390, + "EmployeeID": 6, + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-26T00:00:00", + "ShipVia": 1, + "Freight": 126.38, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 40, "Discount": 0.1 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 40, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10334, + "OrderID": 10402, "EmployeeID": 8, - "OrderDate": "1996-10-21T00:00:00", - "RequiredDate": "1996-11-18T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", + "OrderDate": "1997-01-02T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", "ShipVia": 2, - "Freight": 8.56, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 67.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 8, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 65, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10335, - "EmployeeID": 7, - "OrderDate": "1996-10-22T00:00:00", - "RequiredDate": "1996-11-19T00:00:00", - "ShippedDate": "1996-10-24T00:00:00", - "ShipVia": 2, - "Freight": 42.11, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10430, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-03T00:00:00", + "ShipVia": 1, + "Freight": 458.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 7, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 45, "Discount": 0.2 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 48, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10336, - "EmployeeID": 7, - "OrderDate": "1996-10-23T00:00:00", - "RequiredDate": "1996-11-20T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", + "OrderID": 10442, + "EmployeeID": 3, + "OrderDate": "1997-02-11T00:00:00", + "RequiredDate": "1997-03-11T00:00:00", + "ShippedDate": "1997-02-18T00:00:00", "ShipVia": 2, - "Freight": 15.51, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "Freight": 47.94, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 80, + "Discount": 0 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10337, - "EmployeeID": 4, - "OrderDate": "1996-10-24T00:00:00", - "RequiredDate": "1996-11-21T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", - "ShipVia": 3, - "Freight": 108.26, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10514, + "EmployeeID": 3, + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 2, + "Freight": 789.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 39, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 24, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 20, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 28, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 39, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10338, - "EmployeeID": 4, - "OrderDate": "1996-10-25T00:00:00", - "RequiredDate": "1996-11-22T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", + "OrderID": 10571, + "EmployeeID": 8, + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 3, - "Freight": 84.21, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 20, - "Discount": 0 + "Freight": 26.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 11, + "Discount": 0.16 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 15, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 46000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10339, + "OrderID": 10595, "EmployeeID": 2, - "OrderDate": "1996-10-28T00:00:00", - "RequiredDate": "1996-11-25T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 15.66, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 40000, - "ShipCountry": "Canada", + "OrderDate": "1997-07-10T00:00:00", + "RequiredDate": "1997-08-07T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 1, + "Freight": 96.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 120, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 28, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 65, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10340, - "EmployeeID": 1, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", + "OrderID": 10633, + "EmployeeID": 7, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-18T00:00:00", "ShipVia": 3, - "Freight": 166.31, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 477.9, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 13, + "Discount": 0.16 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 80, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10341, + "OrderID": 10667, "EmployeeID": 7, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", - "ShipVia": 3, - "Freight": 26.78, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 78.09, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 8, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 14, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10342, + "OrderID": 10698, "EmployeeID": 4, - "OrderDate": "1996-10-30T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 54.83, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-17T00:00:00", + "ShipVia": 1, + "Freight": 272.47, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 24, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 56, - "Discount": 0.2 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.06 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 65, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 8, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10343, - "EmployeeID": 4, - "OrderDate": "1996-10-31T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-11-06T00:00:00", - "ShipVia": 1, - "Freight": 110.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10764, + "EmployeeID": 6, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 3, + "Freight": 145.45, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 68, + "ProductID": 3, "UnitPrice": 10, - "Quantity": 4, - "Discount": 0.06 + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 130, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10344, - "EmployeeID": 4, - "OrderDate": "1996-11-01T00:00:00", - "RequiredDate": "1996-11-29T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", + "OrderID": 10771, + "EmployeeID": 9, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", "ShipVia": 2, - "Freight": 23.29, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 11.19, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 35, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 16, "Discount": 0 - }, - { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10345, - "EmployeeID": 2, - "OrderDate": "1996-11-04T00:00:00", - "RequiredDate": "1996-12-02T00:00:00", - "ShippedDate": "1996-11-11T00:00:00", - "ShipVia": 2, - "Freight": 249.06, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10773, + "EmployeeID": 1, + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1998-01-08T00:00:00", + "ShippedDate": "1997-12-16T00:00:00", + "ShipVia": 3, + "Freight": 96.43, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 33, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 80, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 70, + "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 9, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 7, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10346, - "EmployeeID": 3, - "OrderDate": "1996-11-05T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", + "OrderID": 10776, + "EmployeeID": 1, + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1998-01-12T00:00:00", + "ShippedDate": "1997-12-18T00:00:00", "ShipVia": 3, - "Freight": 142.08, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 351.53, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 36, - "Discount": 0.1 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10347, - "EmployeeID": 4, - "OrderDate": "1996-11-06T00:00:00", - "RequiredDate": "1996-12-04T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 3.1, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 4, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 27, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 120, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10348, - "EmployeeID": 4, - "OrderDate": "1996-11-07T00:00:00", - "RequiredDate": "1996-12-05T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", + "OrderID": 10795, + "EmployeeID": 8, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-20T00:00:00", "ShipVia": 2, - "Freight": 0.78, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 126.66, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 65, + "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 25, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10349, + "OrderID": 10836, "EmployeeID": 7, - "OrderDate": "1996-11-08T00:00:00", - "RequiredDate": "1996-12-06T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", "ShipVia": 1, - "Freight": 8.63, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 411.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 52, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, "Quantity": 24, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10350, - "EmployeeID": 6, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", - "ShipVia": 2, - "Freight": 64.19, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ + }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10351, - "EmployeeID": 1, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 162.33, + "OrderID": 10854, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-05T00:00:00", + "ShipVia": 2, + "Freight": 100.22, "ShipName": "Ernst Handel", "ShipAddress": "Kirchgasse 6", "ShipCity": "Graz", @@ -4761,450 +3840,329 @@ "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 100, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 13, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 77, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 65, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10352, + "OrderID": 10895, "EmployeeID": 3, - "OrderDate": "1996-11-12T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-18T00:00:00", - "ShipVia": 3, - "Freight": 1.3, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", + "ShipVia": 1, + "Freight": 162.75, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, + "UnitPrice": 4.5, + "Quantity": 110, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 91, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 100, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10353, - "EmployeeID": 7, - "OrderDate": "1996-11-13T00:00:00", - "RequiredDate": "1996-12-11T00:00:00", - "ShippedDate": "1996-11-25T00:00:00", + "OrderID": 10968, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-01T00:00:00", "ShipVia": 3, - "Freight": 360.63, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, + "Freight": 74.6, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10354, + "OrderID": 10979, "EmployeeID": 8, - "OrderDate": "1996-11-14T00:00:00", - "RequiredDate": "1996-12-12T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 3, - "Freight": 53.8, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-03-31T00:00:00", + "ShipVia": 2, + "Freight": 353.07, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 12, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 4, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 19000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10355, - "EmployeeID": 6, - "OrderDate": "1996-11-15T00:00:00", - "RequiredDate": "1996-12-13T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 41.95, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 37000, - "ShipCountry": "UK", - "OrderDetails": [ + }, { "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, + "UnitPrice": 4.5, + "Quantity": 80, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10356, - "EmployeeID": 6, - "OrderDate": "1996-11-18T00:00:00", - "RequiredDate": "1996-12-16T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 2, - "Freight": 36.71, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10990, + "EmployeeID": 2, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 3, + "Freight": 117.61, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 31, + "ProductID": 21, "UnitPrice": 10, - "Quantity": 30, + "Quantity": 65, "Discount": 0 }, + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 60, + "Discount": 0.16 + }, { "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 12, - "Discount": 0 + "UnitPrice": 24, + "Quantity": 65, + "Discount": 0.16 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 66, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10357, - "EmployeeID": 1, - "OrderDate": "1996-11-19T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 11008, + "EmployeeID": 7, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", "ShipVia": 3, - "Freight": 34.88, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 79.46, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 16, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 90, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 8, - "Discount": 0.2 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10358, - "EmployeeID": 5, - "OrderDate": "1996-11-20T00:00:00", - "RequiredDate": "1996-12-18T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 1, - "Freight": 19.64, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 11017, + "EmployeeID": 9, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 2, + "Freight": 754.26, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 110, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10359, - "EmployeeID": 5, - "OrderDate": "1996-11-21T00:00:00", - "RequiredDate": "1996-12-19T00:00:00", - "ShippedDate": "1996-11-26T00:00:00", - "ShipVia": 3, - "Freight": 288.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "OrderID": 11072, + "EmployeeID": 4, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShipVia": 2, + "Freight": 258.64, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 56, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 22, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 130, + "Discount": 0 } ] } ] }, { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", + "CustomerID": "CENTC", + "Company": "Centro comercial Moctezuma", + "ContactName": "Francisco Chang", "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", + "Address": "Sierras de Granada 9993", + "City": "México D.F.", + "PostalCode": 5022, + "Country": "Mexico", + "Phone": "(5) 555-3392", + "Fax": "(5) 555-7293", "Orders": [ { - "OrderID": 10360, + "OrderID": 10259, "EmployeeID": 4, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderDate": "1996-07-18T00:00:00", + "RequiredDate": "1996-08-15T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", "ShipVia": 3, - "Freight": 131.7, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 3.25, + "ShipName": "Centro comercial Moctezuma", + "ShipAddress": "Sierras de Granada 9993", + "ShipCity": "México D.F.", + "ShipPostalCode": 5022, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 210.8, + "ProductID": 21, + "UnitPrice": 8, "Quantity": 10, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 28, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 1, "Discount": 0 } ] @@ -5212,815 +4170,636 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, + "CustomerID": "OTTIK", + "Company": "Ottilies Käseladen", + "ContactName": "Henriette Pfalzheim", + "ContactTitle": "Owner", + "Address": "Mehrheimerstr. 369", + "City": "Köln", + "PostalCode": 50739, "Country": "Germany", - "Phone": "0372-035188", + "Phone": "0221-0644327", + "Fax": "0221-0765721", "Orders": [ { - "OrderID": 10361, - "EmployeeID": 1, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", - "ShipVia": 2, - "Freight": 183.17, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, + "OrderID": 10260, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-29T00:00:00", + "ShipVia": 1, + "Freight": 55.09, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 54, - "Discount": 0.1 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 16, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 55, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10362, - "EmployeeID": 3, - "OrderDate": "1996-11-25T00:00:00", - "RequiredDate": "1996-12-23T00:00:00", - "ShippedDate": "1996-11-28T00:00:00", - "ShipVia": 1, - "Freight": 96.04, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 11.2, + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 50, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10363, - "EmployeeID": 4, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1996-12-24T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", - "ShipVia": 3, - "Freight": 30.54, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, + "OrderID": 10407, + "EmployeeID": 2, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-04T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", + "ShipVia": 2, + "Freight": 91.48, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 12, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, "Discount": 0 }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ - { - "OrderID": 10364, - "EmployeeID": 1, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", - "ShipVia": 1, - "Freight": 71.97, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 20000, - "ShipCountry": "UK", - "OrderDetails": [ { "ProductID": 69, "UnitPrice": 28.8, - "Quantity": 30, + "Quantity": 15, "Discount": 0 }, { "ProductID": 71, "UnitPrice": 17.2, - "Quantity": 5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10365, - "EmployeeID": 3, - "OrderDate": "1996-11-27T00:00:00", - "RequiredDate": "1996-12-25T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 10508, + "EmployeeID": 1, + "OrderDate": "1997-04-16T00:00:00", + "RequiredDate": "1997-05-14T00:00:00", + "ShippedDate": "1997-05-13T00:00:00", "ShipVia": 2, - "Freight": 22, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "Freight": 4.99, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 24, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10366, - "EmployeeID": 8, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1996-12-30T00:00:00", - "ShipVia": 2, - "Freight": 10.14, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 10554, + "EmployeeID": 4, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 3, + "Freight": 120.97, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 5, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 }, { "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, - "Discount": 0 + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10367, - "EmployeeID": 7, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1996-12-26T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 10580, + "EmployeeID": 4, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-01T00:00:00", "ShipVia": 3, - "Freight": 13.55, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 75.89, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 36, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 18, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, + "Discount": 0.06 }, { "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0 + "UnitPrice": 21.05, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10368, - "EmployeeID": 2, - "OrderDate": "1996-11-29T00:00:00", - "RequiredDate": "1996-12-27T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 2, - "Freight": 101.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10684, + "EmployeeID": 3, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 1, + "Freight": 145.63, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 13, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10369, - "EmployeeID": 8, - "OrderDate": "1996-12-02T00:00:00", - "RequiredDate": "1996-12-30T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 2, - "Freight": 195.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 10766, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 157.55, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 20, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10370, + "OrderID": 10833, "EmployeeID": 6, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-27T00:00:00", + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 2, - "Freight": 1.17, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 71.49, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 9, + "Discount": 0.1 }, { - "ProductID": 74, - "UnitPrice": 8, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 9, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10999, + "EmployeeID": 6, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-01T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 96.35, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 21, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10371, - "EmployeeID": 1, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", - "ShipVia": 1, - "Freight": 0.45, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 11020, + "EmployeeID": 2, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 2, + "Freight": 43.3, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 24, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", + "CustomerID": "QUEDE", + "Company": "Que Delícia", + "ContactName": "Bernardo Batista", + "ContactTitle": "Accounting Manager", + "Address": "Rua da Panificadora, 12", "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, + "Region": "RJ", + "PostalCode": 2389, "Country": "Brazil", - "Phone": "(11) 555-1189", + "Phone": "(21) 555-4252", + "Fax": "(21) 555-4545", "Orders": [ { - "OrderID": 10372, - "EmployeeID": 5, - "OrderDate": "1996-12-04T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", + "OrderID": 10261, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-30T00:00:00", "ShipVia": 2, - "Freight": 890.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, + "Freight": 3.05, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 12, - "Discount": 0.25 - }, - { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 70, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 42, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10373, - "EmployeeID": 4, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-11T00:00:00", - "ShipVia": 3, - "Freight": 124.12, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10291, + "EmployeeID": 6, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-04T00:00:00", + "ShipVia": 2, + "Freight": 6.4, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 80, - "Discount": 0.2 + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 24, + "Discount": 0.1 + }, + { + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10374, - "EmployeeID": 1, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 3, - "Freight": 3.94, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10379, + "EmployeeID": 2, + "OrderDate": "1996-12-11T00:00:00", + "RequiredDate": "1997-01-08T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 1, + "Freight": 45.03, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 15, - "Discount": 0 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 16, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10375, - "EmployeeID": 3, - "OrderDate": "1996-12-06T00:00:00", - "RequiredDate": "1997-01-03T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 2, - "Freight": 20.12, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "OrderID": 10421, + "EmployeeID": 8, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-03-04T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 1, + "Freight": 99.23, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 15, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 4, + "Discount": 0.16 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0.16 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, "Quantity": 10, - "Discount": 0 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 34000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10376, + "OrderID": 10587, "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 2, - "Freight": 20.39, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 11000, - "ShipCountry": "Canada", + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 1, + "Freight": 62.52, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 42, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 13000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10377, - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 22.21, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 41000, - "ShipCountry": "UK", + "OrderID": 10647, + "EmployeeID": 4, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 2, + "Freight": 45.54, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 39, - "UnitPrice": 14.4, + "UnitPrice": 18, "Quantity": 20, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 27000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10378, - "EmployeeID": 5, - "OrderDate": "1996-12-10T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-19T00:00:00", - "ShipVia": 3, - "Freight": 5.44, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "OrderID": 10720, + "EmployeeID": 8, + "OrderDate": "1997-10-28T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 2, + "Freight": 9.53, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 + }, { "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 6, + "UnitPrice": 21.5, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10379, + "OrderID": 10794, + "EmployeeID": 6, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 1, + "Freight": 21.49, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, + "Discount": 0.2 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10989, "EmployeeID": 2, - "OrderDate": "1996-12-11T00:00:00", - "RequiredDate": "1997-01-08T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", "ShipVia": 1, - "Freight": 45.03, + "Freight": 34.76, "ShipName": "Que Delícia", "ShipAddress": "Rua da Panificadora, 12", "ShipCity": "Lyon", @@ -6029,982 +4808,767 @@ "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 16, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, + "Discount": 0 } ] } ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", "Orders": [ { - "OrderID": 10380, + "OrderID": 10262, "EmployeeID": 8, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderDate": "1996-07-22T00:00:00", + "RequiredDate": "1996-08-19T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", "ShipVia": 3, - "Freight": 35.03, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 48.29, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10381, - "EmployeeID": 3, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 7.99, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10272, + "EmployeeID": 6, + "OrderDate": "1996-08-02T00:00:00", + "RequiredDate": "1996-08-30T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", + "ShipVia": 2, + "Freight": 98.03, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 14, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10382, + "OrderID": 10294, "EmployeeID": 4, - "OrderDate": "1996-12-13T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1996-12-16T00:00:00", - "ShipVia": 1, - "Freight": 94.77, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderDate": "1996-08-30T00:00:00", + "RequiredDate": "1996-09-27T00:00:00", + "ShippedDate": "1996-09-05T00:00:00", + "ShipVia": 2, + "Freight": 147.26, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 32, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 9, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 14, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 50, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 25000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10383, - "EmployeeID": 8, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-18T00:00:00", - "ShipVia": 3, - "Freight": 34.24, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 36000, - "ShipCountry": "UK", + "OrderID": 10314, + "EmployeeID": 1, + "OrderDate": "1996-09-25T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 74.16, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 25, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 13000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10384, - "EmployeeID": 3, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", + "OrderID": 10316, + "EmployeeID": 1, + "OrderDate": "1996-09-27T00:00:00", + "RequiredDate": "1996-10-25T00:00:00", + "ShippedDate": "1996-10-08T00:00:00", "ShipVia": 3, - "Freight": 168.64, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 33000, - "ShipCountry": "Sweden", + "Freight": 150.15, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 28, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 70, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10385, - "EmployeeID": 1, - "OrderDate": "1996-12-17T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1996-12-23T00:00:00", - "ShipVia": 2, - "Freight": 30.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, + "OrderID": 10346, + "EmployeeID": 3, + "OrderDate": "1996-11-05T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 142.08, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 36, + "Discount": 0.1 }, { - "ProductID": 60, - "UnitPrice": 27.2, + "ProductID": 56, + "UnitPrice": 30.4, "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 8, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10386, - "EmployeeID": 9, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-25T00:00:00", - "ShipVia": 3, - "Freight": 13.99, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10401, + "EmployeeID": 1, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", + "ShipVia": 1, + "Freight": 12.51, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10387, - "EmployeeID": 1, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-15T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 2, - "Freight": 93.63, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10479, + "EmployeeID": 3, + "OrderDate": "1997-03-19T00:00:00", + "RequiredDate": "1997-04-16T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", + "ShipVia": 3, + "Freight": 708.95, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 6, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 28, "Discount": 0 }, { "ProductID": 59, "UnitPrice": 44, - "Quantity": 12, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 12000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10388, - "EmployeeID": 2, - "OrderDate": "1996-12-19T00:00:00", - "RequiredDate": "1997-01-16T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 1, - "Freight": 34.86, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 45000, - "ShipCountry": "UK", + "OrderID": 10564, + "EmployeeID": 4, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-08T00:00:00", + "ShippedDate": "1997-06-16T00:00:00", + "ShipVia": 3, + "Freight": 13.75, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 7.6, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10569, + "EmployeeID": 5, + "OrderDate": "1997-06-16T00:00:00", + "RequiredDate": "1997-07-14T00:00:00", + "ShippedDate": "1997-07-11T00:00:00", + "ShipVia": 1, + "Freight": 58.98, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0.2 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 40, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 26000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10389, - "EmployeeID": 4, - "OrderDate": "1996-12-20T00:00:00", - "RequiredDate": "1997-01-17T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", - "ShipVia": 2, - "Freight": 47.42, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10598, + "EmployeeID": 1, + "OrderDate": "1997-07-14T00:00:00", + "RequiredDate": "1997-08-11T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", + "ShipVia": 3, + "Freight": 44.42, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 16, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 15, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 9, "Discount": 0 + } + ] + }, + { + "OrderID": 10761, + "EmployeeID": 5, + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 2, + "Freight": 18.66, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 20, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10820, + "EmployeeID": 3, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 37.52, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 12, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10390, - "EmployeeID": 6, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-26T00:00:00", + "OrderID": 10852, + "EmployeeID": 8, + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 126.38, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 174.05, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 45, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 50, + "Discount": 0 + } + ] + }, + { + "OrderID": 10889, + "EmployeeID": 9, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", + "ShipVia": 3, + "Freight": 280.61, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10391, + "OrderID": 10988, "EmployeeID": 3, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-31T00:00:00", - "ShipVia": 3, - "Freight": 5.45, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 61.14, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 18, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10392, + "OrderID": 11000, "EmployeeID": 2, - "OrderDate": "1996-12-24T00:00:00", - "RequiredDate": "1997-01-21T00:00:00", - "ShippedDate": "1997-01-01T00:00:00", - "ShipVia": 3, - "Freight": 122.46, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10393, - "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", "ShipVia": 3, - "Freight": 126.56, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "Freight": 55.12, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, + "ProductID": 4, + "UnitPrice": 22, "Quantity": 25, "Discount": 0.25 }, { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 42, - "Discount": 0.25 - }, - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 7, - "Discount": 0.25 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 70, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 32, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10394, + "OrderID": 11077, "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 3, - "Freight": 30.34, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShipVia": 2, + "Freight": 8.53, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 24, + "Discount": 0.2 + }, + { + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 1, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10395, - "EmployeeID": 6, - "OrderDate": "1996-12-26T00:00:00", - "RequiredDate": "1997-01-23T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 1, - "Freight": 184.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ + }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 1, + "Discount": 0.02 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 70, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 1, + "Discount": 0.06 + }, + { + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 2, "Discount": 0.1 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 8, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 1, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10396, - "EmployeeID": 1, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1997-01-06T00:00:00", - "ShipVia": 3, - "Freight": 135.35, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ + }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 2, + "Discount": 0.06 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 21, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 1, + "Discount": 0.04 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 2, + "Discount": 0.04 + }, + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 1, + "Discount": 0.04 + }, + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 2, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ - { - "OrderID": 10397, - "EmployeeID": 5, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-24T00:00:00", - "ShippedDate": "1997-01-02T00:00:00", - "ShipVia": 1, - "Freight": 60.26, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", - "OrderDetails": [ + }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 1, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 18, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10398, - "EmployeeID": 2, - "OrderDate": "1996-12-30T00:00:00", - "RequiredDate": "1997-01-27T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 89.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.06 + }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 30, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10399, - "EmployeeID": 8, - "OrderDate": "1996-12-31T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", - "ShipVia": 3, - "Freight": 27.36, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 3, + "Discount": 0.02 + }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 35, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 2, + "Discount": 0.04 + }, + { + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 2, + "Discount": 0.0099999998 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 4, "Discount": 0 }, { "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 14, + "UnitPrice": 13, + "Quantity": 2, "Discount": 0 } ] @@ -7012,1094 +5576,932 @@ ] }, { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 47000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 36000, + "Country": "Sweden", + "Phone": "0695-34 67 21", "Orders": [ { - "OrderID": 10400, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderID": 10264, + "EmployeeID": 6, + "OrderDate": "1996-07-24T00:00:00", + "RequiredDate": "1996-08-21T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", "ShipVia": 3, - "Freight": 83.93, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "Freight": 3.67, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 15000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 35, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10401, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", + "OrderID": 10327, + "EmployeeID": 2, + "OrderDate": "1996-10-11T00:00:00", + "RequiredDate": "1996-11-08T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", "ShipVia": 1, - "Freight": 12.51, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 63.36, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 70, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 50, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 35, + "Discount": 0.2 }, + { + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10378, + "EmployeeID": 5, + "OrderDate": "1996-12-10T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-19T00:00:00", + "ShipVia": 3, + "Freight": 5.44, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", + "OrderDetails": [ { "ProductID": 71, "UnitPrice": 17.2, - "Quantity": 60, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10402, - "EmployeeID": 8, - "OrderDate": "1997-01-02T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", + "OrderID": 10434, + "EmployeeID": 3, + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-02-13T00:00:00", "ShipVia": 2, - "Freight": 67.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 17.92, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 10000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 60, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 65, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 18, + "Discount": 0.16 } ] }, { - "OrderID": 10403, - "EmployeeID": 4, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 73.79, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10460, + "EmployeeID": 8, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 1, + "Freight": 16.27, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 44000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, + "ProductID": 68, + "UnitPrice": 10, "Quantity": 21, - "Discount": 0.16 + "Discount": 0.25 }, { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 4, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10404, - "EmployeeID": 2, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", + "OrderID": 10533, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-22T00:00:00", "ShipVia": 1, - "Freight": 155.97, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 188.04, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, "Discount": 0.06 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 24, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10405, - "EmployeeID": 1, - "OrderDate": "1997-01-06T00:00:00", - "RequiredDate": "1997-02-03T00:00:00", - "ShippedDate": "1997-01-22T00:00:00", - "ShipVia": 1, - "Freight": 34.82, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10406, - "EmployeeID": 7, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-13T00:00:00", - "ShipVia": 1, - "Freight": 108.04, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10561, + "EmployeeID": 2, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 2, + "Freight": 242.21, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 18000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, + "ProductID": 44, + "UnitPrice": 19.45, "Quantity": 10, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 42, - "Discount": 0.1 - }, - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10407, - "EmployeeID": 2, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-04T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", + "OrderID": 10703, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-10-20T00:00:00", "ShipVia": 2, - "Freight": 91.48, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 152.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 22000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10408, - "EmployeeID": 8, - "OrderDate": "1997-01-08T00:00:00", - "RequiredDate": "1997-02-05T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", + "OrderID": 10762, + "EmployeeID": 3, + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", "ShipVia": 1, - "Freight": 11.26, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 328.74, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10409, - "EmployeeID": 3, - "OrderDate": "1997-01-09T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", + "OrderID": 10774, + "EmployeeID": 4, + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", "ShipVia": 1, - "Freight": 29.83, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 48.2, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 20000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 12, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 2, + "Discount": 0.25 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 12, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 28000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10410, - "EmployeeID": 3, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", - "ShipVia": 3, - "Freight": 2.4, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 30000, - "ShipCountry": "Canada", + "OrderID": 10824, + "EmployeeID": 8, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 1.23, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 23000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 49, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 16, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 9, "Discount": 0 } ] }, { - "OrderID": 10411, - "EmployeeID": 9, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-21T00:00:00", - "ShipVia": 3, - "Freight": 23.65, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 10000, - "ShipCountry": "Canada", + "OrderID": 10880, + "EmployeeID": 7, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 88.01, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 26000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 25, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 40, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 50, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10412, + "OrderID": 10902, + "EmployeeID": 1, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", + "ShipVia": 1, + "Freight": 44.15, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 33000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 6, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10955, "EmployeeID": 8, - "OrderDate": "1997-01-13T00:00:00", - "RequiredDate": "1997-02-10T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 3.77, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 3.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 47000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10413, - "EmployeeID": 3, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", - "ShipVia": 2, - "Freight": 95.66, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10977, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 3, + "Freight": 208.5, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 24, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 14, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10414, - "EmployeeID": 2, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-17T00:00:00", - "ShipVia": 3, - "Freight": 21.48, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10980, + "EmployeeID": 4, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 1, + "Freight": 1.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, - "Discount": 0.06 - }, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10993, + "EmployeeID": 7, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 3, + "Freight": 8.81, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 15000, + "ShipCountry": "Sweden", + "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11001, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 2, + "Freight": 197.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 14000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] + }, + { + "OrderID": 11050, + "EmployeeID": 8, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", + "ShipVia": 2, + "Freight": 59.41, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.1 + } + ] } ] }, { - "CustomerID": "HUNGC", - "Company": "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": "BLONP", + "Company": "Blondesddsl père et fils", + "ContactName": "Frédérique Citeaux", + "ContactTitle": "Marketing Manager", + "Address": "24, place Kléber", + "City": "Strasbourg", + "PostalCode": 67000, + "Country": "France", + "Phone": "88.60.15.31", + "Fax": "88.60.15.32", "Orders": [ { - "OrderID": 10415, - "EmployeeID": 3, - "OrderDate": "1997-01-15T00:00:00", - "RequiredDate": "1997-02-12T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", + "OrderID": 10265, + "EmployeeID": 2, + "OrderDate": "1996-07-25T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", "ShipVia": 1, - "Freight": 0.2, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "Freight": 55.28, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 17, "UnitPrice": 31.2, - "Quantity": 2, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 70, + "UnitPrice": 12, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10416, - "EmployeeID": 8, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 3, - "Freight": 22.72, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10297, + "EmployeeID": 5, + "OrderDate": "1996-09-04T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", + "ShipVia": 2, + "Freight": 5.74, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, + "ProductID": 72, + "UnitPrice": 27.8, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10417, + "OrderID": 10360, "EmployeeID": 4, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-28T00:00:00", + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", "ShipVia": 3, - "Freight": 70.29, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 131.7, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, + "ProductID": 49, + "UnitPrice": 16, "Quantity": 35, "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 28, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10418, - "EmployeeID": 4, - "OrderDate": "1997-01-17T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", - "ShipVia": 1, - "Freight": 17.55, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10436, + "EmployeeID": 3, + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-11T00:00:00", + "ShipVia": 2, + "Freight": 156.66, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 60, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 55, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 24, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10449, + "EmployeeID": 3, + "OrderDate": "1997-02-18T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-27T00:00:00", + "ShipVia": 2, + "Freight": 53.3, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 16, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10419, - "EmployeeID": 4, - "OrderDate": "1997-01-20T00:00:00", - "RequiredDate": "1997-02-17T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", - "ShipVia": 2, - "Freight": 137.35, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10559, + "EmployeeID": 6, + "OrderDate": "1997-06-05T00:00:00", + "RequiredDate": "1997-07-03T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 1, + "Freight": 8.05, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 60, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 18, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10420, - "EmployeeID": 3, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10566, + "EmployeeID": 9, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", "ShipVia": 1, - "Freight": 44.12, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 88.4, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 77.6, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 18, + "Discount": 0.16 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10421, - "EmployeeID": 8, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-03-04T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10584, + "EmployeeID": 4, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 1, - "Freight": 99.23, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 59.14, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 4, - "Discount": 0.16 - }, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10628, + "EmployeeID": 4, + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 30.36, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 10, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10422, - "EmployeeID": 2, - "OrderDate": "1997-01-22T00:00:00", - "RequiredDate": "1997-02-19T00:00:00", - "ShippedDate": "1997-01-31T00:00:00", - "ShipVia": 1, - "Freight": 3.02, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10679, + "EmployeeID": 8, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 27.94, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 2, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10423, + "OrderID": 10826, "EmployeeID": 6, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", - "ShipVia": 3, - "Freight": 24.5, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 1, + "Freight": 7.09, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 31, - "UnitPrice": 10, - "Quantity": 14, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 20, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 } ] @@ -8107,599 +6509,459 @@ ] }, { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 11000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", + "CustomerID": "WARTH", + "Company": "Wartian Herkku", + "ContactName": "Pirkko Koskitalo", + "ContactTitle": "Accounting Manager", + "Address": "Torikatu 38", + "City": "Oulu", + "PostalCode": 90110, + "Country": "Finland", + "Phone": "981-443655", + "Fax": "981-443655", "Orders": [ { - "OrderID": 10424, - "EmployeeID": 7, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-20T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 2, - "Freight": 370.61, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "OrderID": 10266, + "EmployeeID": 3, + "OrderDate": "1996-07-26T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 25.73, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0.2 - }, + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 12, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10270, + "EmployeeID": 1, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 1, + "Freight": 136.54, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 49, - "Discount": 0.2 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10425, - "EmployeeID": 6, - "OrderDate": "1997-01-24T00:00:00", - "RequiredDate": "1997-02-21T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 7.93, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10320, + "EmployeeID": 5, + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-18T00:00:00", + "ShipVia": 3, + "Freight": 34.57, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 10, - "Discount": 0.25 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10426, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-02-06T00:00:00", - "ShipVia": 1, - "Freight": 18.69, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 10333, + "EmployeeID": 5, + "OrderDate": "1996-10-18T00:00:00", + "RequiredDate": "1996-11-15T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", + "ShipVia": 3, + "Freight": 0.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 5, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 7, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 40, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10427, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 10412, + "EmployeeID": 8, + "OrderDate": "1997-01-13T00:00:00", + "RequiredDate": "1997-02-10T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", "ShipVia": 2, - "Freight": 31.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 3.77, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { "ProductID": 14, "UnitPrice": 18.6, - "Quantity": 35, - "Discount": 0 + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10428, - "EmployeeID": 7, - "OrderDate": "1997-01-28T00:00:00", - "RequiredDate": "1997-02-25T00:00:00", - "ShippedDate": "1997-02-04T00:00:00", - "ShipVia": 1, - "Freight": 11.09, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10416, + "EmployeeID": 8, + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 3, + "Freight": 22.72, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10429, - "EmployeeID": 3, - "OrderDate": "1997-01-29T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", - "ShipVia": 2, - "Freight": 56.63, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ + }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 40, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10430, - "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-03T00:00:00", + "OrderID": 10437, + "EmployeeID": 8, + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-12T00:00:00", "ShipVia": 1, - "Freight": 458.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 19.97, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10455, + "EmployeeID": 8, + "OrderDate": "1997-02-24T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 2, + "Freight": 180.45, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 53, + "UnitPrice": 26.2, "Quantity": 50, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.2 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 46000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10431, + "OrderID": 10526, "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-15T00:00:00", "ShipVia": 2, - "Freight": 44.17, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 16000, - "ShipCountry": "Canada", + "Freight": 58.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 7.6, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10432, - "EmployeeID": 3, - "OrderDate": "1997-01-31T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderID": 10553, + "EmployeeID": 2, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-03T00:00:00", "ShipVia": 2, - "Freight": 4.34, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 149.49, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 10, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10433, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", - "ShipVia": 3, - "Freight": 73.83, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10583, + "EmployeeID": 2, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 2, + "Freight": 7.28, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 28, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 40000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10434, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-02-13T00:00:00", - "ShipVia": 2, - "Freight": 17.92, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 10000, - "ShipCountry": "Sweden", - "OrderDetails": [ + }, { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 18, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ + }, { - "OrderID": 10435, - "EmployeeID": 8, - "OrderDate": "1997-02-04T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", - "ShipVia": 2, - "Freight": 9.21, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 38000, - "ShipCountry": "UK", + "OrderID": 10636, + "EmployeeID": 4, + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 1.15, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 12, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 10, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10436, - "EmployeeID": 3, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-11T00:00:00", - "ShipVia": 2, - "Freight": 156.66, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10750, + "EmployeeID": 9, + "OrderDate": "1997-11-21T00:00:00", + "RequiredDate": "1997-12-19T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 79.3, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 14, + "UnitPrice": 23.25, "Quantity": 5, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 30.4, + "ProductID": 45, + "UnitPrice": 9.5, "Quantity": 40, - "Discount": 0.1 + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10781, + "EmployeeID": 2, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 3, + "Freight": 73.16, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10437, - "EmployeeID": 8, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-12T00:00:00", - "ShipVia": 1, - "Freight": 19.97, + "OrderID": 11025, + "EmployeeID": 6, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 3, + "Freight": 29.17, "ShipName": "Wartian Herkku", "ShipAddress": "Torikatu 38", "ShipCity": "Oulu", @@ -8707,709 +6969,557 @@ "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", + "CustomerID": "FRANK", + "Company": "Frankenversand", + "ContactName": "Peter Franken", "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, + "Address": "Berliner Platz 43", + "City": "München", + "PostalCode": 80805, "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", + "Phone": "089-0877310", + "Fax": "089-0877451", "Orders": [ { - "OrderID": 10438, - "EmployeeID": 3, - "OrderDate": "1997-02-06T00:00:00", - "RequiredDate": "1997-03-06T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 8.24, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, + "OrderID": 10267, + "EmployeeID": 4, + "OrderDate": "1996-07-29T00:00:00", + "RequiredDate": "1996-08-26T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", + "ShipVia": 1, + "Freight": 208.58, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 15.6, + "ProductID": 76, + "UnitPrice": 14.4, "Quantity": 15, - "Discount": 0.2 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 38000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10439, - "EmployeeID": 6, - "OrderDate": "1997-02-07T00:00:00", - "RequiredDate": "1997-03-07T00:00:00", - "ShippedDate": "1997-02-10T00:00:00", + "OrderID": 10337, + "EmployeeID": 4, + "OrderDate": "1996-10-24T00:00:00", + "RequiredDate": "1996-11-21T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", "ShipVia": 3, - "Freight": 4.07, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "Freight": 108.26, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 15, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 16, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 6, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 30, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10440, + "OrderID": 10342, "EmployeeID": 4, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-10T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", + "OrderDate": "1996-10-30T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", "ShipVia": 2, - "Freight": 86.53, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 54.83, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 15.2, - "Quantity": 45, - "Discount": 0.16 + "Quantity": 24, + "Discount": 0.2 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 49, - "Discount": 0.16 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 56, + "Discount": 0.2 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 90, - "Discount": 0.16 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10441, - "EmployeeID": 3, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-24T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 2, - "Freight": 73.02, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10396, + "EmployeeID": 1, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1997-01-06T00:00:00", + "ShipVia": 3, + "Freight": 135.35, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 50, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10442, - "EmployeeID": 3, - "OrderDate": "1997-02-11T00:00:00", - "RequiredDate": "1997-03-11T00:00:00", - "ShippedDate": "1997-02-18T00:00:00", - "ShipVia": 2, - "Freight": 47.94, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10488, + "EmployeeID": 8, + "OrderDate": "1997-03-27T00:00:00", + "RequiredDate": "1997-04-24T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, + "ProductID": 59, + "UnitPrice": 44, "Quantity": 30, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 80, - "Discount": 0 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 60, - "Discount": 0 + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10443, + "OrderID": 10560, "EmployeeID": 8, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", "ShipVia": 1, - "Freight": 13.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 36.65, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 19000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10444, - "EmployeeID": 3, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-21T00:00:00", - "ShipVia": 3, - "Freight": 3.5, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 21000, - "ShipCountry": "Sweden", + "OrderID": 10623, + "EmployeeID": 8, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", + "ShipVia": 2, + "Freight": 97.18, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 10, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, + "ProductID": 19, + "UnitPrice": 9.2, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 8, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 35, + "UnitPrice": 18, "Quantity": 30, - "Discount": 0 + "Discount": 0.1 } ] }, { - "OrderID": 10445, - "EmployeeID": 3, - "OrderDate": "1997-02-13T00:00:00", - "RequiredDate": "1997-03-13T00:00:00", - "ShippedDate": "1997-02-20T00:00:00", + "OrderID": 10653, + "EmployeeID": 1, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", "ShipVia": 1, - "Freight": 9.3, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 11000, - "ShipCountry": "Sweden", + "Freight": 93.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10446, - "EmployeeID": 6, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-02-19T00:00:00", + "OrderID": 10670, + "EmployeeID": 4, + "OrderDate": "1997-09-16T00:00:00", + "RequiredDate": "1997-10-14T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", "ShipVia": 1, - "Freight": 14.68, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, + "Freight": 203.48, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 12, - "Discount": 0.1 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 32, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 15, - "Discount": 0.1 - } + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 25, + "Discount": 0 + } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10447, - "EmployeeID": 4, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-03-07T00:00:00", + "OrderID": 10675, + "EmployeeID": 5, + "OrderDate": "1997-09-19T00:00:00", + "RequiredDate": "1997-10-17T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", "ShipVia": 2, - "Freight": 68.66, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 31.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 40, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 35, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10448, - "EmployeeID": 4, - "OrderDate": "1997-02-17T00:00:00", - "RequiredDate": "1997-03-17T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", + "OrderID": 10717, + "EmployeeID": 1, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 2, - "Freight": 38.82, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 59.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 6, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 32, + "Discount": 0.06 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10449, - "EmployeeID": 3, - "OrderDate": "1997-02-18T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-27T00:00:00", + "OrderID": 10791, + "EmployeeID": 6, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-01T00:00:00", "ShipVia": 2, - "Freight": 53.3, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 16.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 14, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 52, - "UnitPrice": 5.6, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10450, - "EmployeeID": 8, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-19T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", + "OrderID": 10859, + "EmployeeID": 1, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", "ShipVia": 2, - "Freight": 7.23, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 76.1, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 40, + "Discount": 0.25 }, { "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, - "Discount": 0.2 + "UnitPrice": 7.45, + "Quantity": 35, + "Discount": 0.25 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10451, - "EmployeeID": 4, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", - "ShipVia": 3, - "Freight": 189.09, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, + "OrderID": 10929, + "EmployeeID": 6, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 1, + "Freight": 33.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 49, + "Discount": 0 }, { "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 55, - "Discount": 0.1 + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10452, - "EmployeeID": 8, - "OrderDate": "1997-02-20T00:00:00", - "RequiredDate": "1997-03-20T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", - "ShipVia": 1, - "Freight": 140.26, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11012, + "EmployeeID": 1, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 3, + "Freight": 242.95, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 15, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 100, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 36, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, "Discount": 0.06 } ] @@ -9417,8638 +7527,2449 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 44000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "CustomerID": "GROSR", + "Company": "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", "Orders": [ { - "OrderID": 10453, - "EmployeeID": 1, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", - "ShipVia": 2, - "Freight": 25.36, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 46000, - "ShipCountry": "UK", + "OrderID": 10268, + "EmployeeID": 8, + "OrderDate": "1996-07-30T00:00:00", + "RequiredDate": "1996-08-27T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 3, + "Freight": 66.29, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10454, - "EmployeeID": 4, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-25T00:00:00", + "OrderID": 10785, + "EmployeeID": 1, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", "ShipVia": 3, - "Freight": 2.74, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 1.51, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 10, - "Discount": 0.2 + "Discount": 0 } ] } ] }, { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", + "CustomerID": "WHITC", + "Company": "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", "Orders": [ { - "OrderID": 10455, - "EmployeeID": 8, - "OrderDate": "1997-02-24T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", - "ShipVia": 2, - "Freight": 180.45, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10269, + "EmployeeID": 5, + "OrderDate": "1996-07-31T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", + "ShipVia": 1, + "Freight": 4.56, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 50, - "Discount": 0 - }, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10344, + "EmployeeID": 4, + "OrderDate": "1996-11-01T00:00:00", + "RequiredDate": "1996-11-29T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", + "ShipVia": 2, + "Freight": 23.29, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 25, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10456, - "EmployeeID": 8, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 8.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10469, + "EmployeeID": 1, + "OrderDate": "1997-03-10T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 1, + "Freight": 60.18, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 40, "Discount": 0.16 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 21, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 2, "Discount": 0.16 } ] }, { - "OrderID": 10457, - "EmployeeID": 2, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-03-25T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", - "ShipVia": 1, - "Freight": 11.57, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10483, + "EmployeeID": 7, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-25T00:00:00", + "ShipVia": 2, + "Freight": 15.28, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 36, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 35, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10458, - "EmployeeID": 7, - "OrderDate": "1997-02-26T00:00:00", - "RequiredDate": "1997-03-26T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", + "OrderID": 10504, + "EmployeeID": 4, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-18T00:00:00", "ShipVia": 3, - "Freight": 147.06, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 59.13, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 15, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10459, - "EmployeeID": 4, - "OrderDate": "1997-02-27T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 25.09, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 31000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10460, + "OrderID": 10596, "EmployeeID": 8, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", "ShipVia": 1, - "Freight": 16.27, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 44000, - "ShipCountry": "Sweden", + "Freight": 16.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0.2 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 24, + "Discount": 0.2 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 4, - "Discount": 0.25 + "UnitPrice": 7.75, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10461, - "EmployeeID": 1, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-05T00:00:00", + "OrderID": 10693, + "EmployeeID": 3, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-10-10T00:00:00", "ShipVia": 3, - "Freight": 148.61, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 139.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 28, - "Discount": 0.25 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 60, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 34000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ - { - "OrderID": 10462, - "EmployeeID": 2, - "OrderDate": "1997-03-03T00:00:00", - "RequiredDate": "1997-03-31T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 1, - "Freight": 6.17, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", - "OrderDetails": [ + "Discount": 0.16 + }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 1, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 21, - "Discount": 0 + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10463, - "EmployeeID": 5, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-06T00:00:00", + "OrderID": 10696, + "EmployeeID": 8, + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", "ShipVia": 3, - "Freight": 14.78, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 102.55, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 21, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 50, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10464, - "EmployeeID": 4, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 2, - "Freight": 89, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 16, - "Discount": 0.2 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10465, - "EmployeeID": 1, - "OrderDate": "1997-03-05T00:00:00", - "RequiredDate": "1997-04-02T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 3, - "Freight": 145.04, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 45, - "UnitPrice": 7.6, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ - { - "OrderID": 10466, - "EmployeeID": 4, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-13T00:00:00", - "ShipVia": 1, - "Freight": 11.93, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10467, - "EmployeeID": 8, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10468, + "OrderID": 10723, "EmployeeID": 3, - "OrderDate": "1997-03-07T00:00:00", - "RequiredDate": "1997-04-04T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", - "ShipVia": 3, - "Freight": 44.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ - { - "OrderID": 10469, - "EmployeeID": 1, - "OrderDate": "1997-03-10T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-11-27T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", "ShipVia": 1, - "Freight": 60.18, + "Freight": 21.72, "ShipName": "White Clover Markets", "ShipAddress": "1029 - 12th Ave. S.", "ShipCity": "Seattle", "ShipRegion": "WA", "ShipPostalCode": 98124, "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 2, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10470, - "EmployeeID": 4, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 2, - "Freight": 64.56, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 8, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 26000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10471, - "EmployeeID": 2, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 3, - "Freight": 45.59, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10472, - "EmployeeID": 8, - "OrderDate": "1997-03-12T00:00:00", - "RequiredDate": "1997-04-09T00:00:00", - "ShippedDate": "1997-03-19T00:00:00", - "ShipVia": 1, - "Freight": 4.2, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 33000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 80, - "Discount": 0.06 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 41000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10473, - "EmployeeID": 1, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 3, - "Freight": 16.37, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60471, - "ShipPostalCode": 37000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10474, - "EmployeeID": 5, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-04-10T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 2, - "Freight": 83.49, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10475, - "EmployeeID": 9, - "OrderDate": "1997-03-14T00:00:00", - "RequiredDate": "1997-04-11T00:00:00", - "ShippedDate": "1997-04-04T00:00:00", - "ShipVia": 1, - "Freight": 68.52, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 42, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10476, - "EmployeeID": 8, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", - "ShipVia": 3, - "Freight": 4.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ - { - "OrderID": 10477, - "EmployeeID": 5, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", - "ShipVia": 2, - "Freight": 13.02, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 21, - "Discount": 0.25 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10478, - "EmployeeID": 2, - "OrderDate": "1997-03-18T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-26T00:00:00", - "ShipVia": 3, - "Freight": 4.81, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10479, - "EmployeeID": 3, - "OrderDate": "1997-03-19T00:00:00", - "RequiredDate": "1997-04-16T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 3, - "Freight": 708.95, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ - { - "OrderID": 10480, - "EmployeeID": 6, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ - { - "OrderID": 10481, - "EmployeeID": 8, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", - "ShipVia": 2, - "Freight": 64.33, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "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", - "Orders": [ - { - "OrderID": 10482, - "EmployeeID": 1, - "OrderDate": "1997-03-21T00:00:00", - "RequiredDate": "1997-04-18T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 7.48, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ - { - "OrderID": 10483, - "EmployeeID": 7, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-25T00:00:00", - "ShipVia": 2, - "Freight": 15.28, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 35, - "Discount": 0.06 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 30, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 46000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10484, - "EmployeeID": 3, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-01T00:00:00", - "ShipVia": 3, - "Freight": 6.88, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 31000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10485, - "EmployeeID": 4, - "OrderDate": "1997-03-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-31T00:00:00", - "ShipVia": 2, - "Freight": 64.45, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 60, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10486, - "EmployeeID": 1, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", - "ShipVia": 2, - "Freight": 30.53, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 16, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10487, - "EmployeeID": 2, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-03-28T00:00:00", - "ShipVia": 2, - "Freight": 71.07, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10488, - "EmployeeID": 8, - "OrderDate": "1997-03-27T00:00:00", - "RequiredDate": "1997-04-24T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10489, - "EmployeeID": 6, - "OrderDate": "1997-03-28T00:00:00", - "RequiredDate": "1997-04-25T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 5.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10490, - "EmployeeID": 7, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-03T00:00:00", - "ShipVia": 2, - "Freight": 210.19, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 36, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ - { - "OrderID": 10491, - "EmployeeID": 8, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-08T00:00:00", - "ShipVia": 3, - "Freight": 16.96, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 33000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ - { - "OrderID": 10492, - "EmployeeID": 3, - "OrderDate": "1997-04-01T00:00:00", - "RequiredDate": "1997-04-29T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 1, - "Freight": 62.89, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 16000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 60, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10493, - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 10.64, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 10, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ - { - "OrderID": 10494, - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 65.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 24000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ - { - "OrderID": 10495, - "EmployeeID": 3, - "OrderDate": "1997-04-03T00:00:00", - "RequiredDate": "1997-05-01T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 3, - "Freight": 4.65, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 33000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10496, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 2, - "Freight": 46.77, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10497, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 1, - "Freight": 36.21, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10498, - "EmployeeID": 8, - "OrderDate": "1997-04-07T00:00:00", - "RequiredDate": "1997-05-05T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 2, - "Freight": 29.75, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10499, - "EmployeeID": 4, - "OrderDate": "1997-04-08T00:00:00", - "RequiredDate": "1997-05-06T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 102.02, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10500, - "EmployeeID": 6, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-17T00:00:00", - "ShipVia": 1, - "Freight": 42.68, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10501, - "EmployeeID": 9, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 3, - "Freight": 8.85, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10502, - "EmployeeID": 2, - "OrderDate": "1997-04-10T00:00:00", - "RequiredDate": "1997-05-08T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 69.32, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10503, - "EmployeeID": 6, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 16.74, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ - { - "OrderID": 10504, - "EmployeeID": 4, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-18T00:00:00", - "ShipVia": 3, - "Freight": 59.13, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 47000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10505, - "EmployeeID": 3, - "OrderDate": "1997-04-14T00:00:00", - "RequiredDate": "1997-05-12T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 7.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 11000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10506, - "EmployeeID": 9, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 21.19, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 14, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10507, - "EmployeeID": 7, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-04-22T00:00:00", - "ShipVia": 1, - "Freight": 47.45, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 15, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10508, - "EmployeeID": 1, - "OrderDate": "1997-04-16T00:00:00", - "RequiredDate": "1997-05-14T00:00:00", - "ShippedDate": "1997-05-13T00:00:00", - "ShipVia": 2, - "Freight": 4.99, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10509, - "EmployeeID": 4, - "OrderDate": "1997-04-17T00:00:00", - "RequiredDate": "1997-05-15T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 0.15, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10510, - "EmployeeID": 6, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", - "ShipVia": 3, - "Freight": 367.63, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 36, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10511, - "EmployeeID": 4, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 350.64, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.16 - }, - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 50, - "Discount": 0.16 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10512, - "EmployeeID": 7, - "OrderDate": "1997-04-21T00:00:00", - "RequiredDate": "1997-05-19T00:00:00", - "ShippedDate": "1997-04-24T00:00:00", - "ShipVia": 2, - "Freight": 3.53, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.16 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 9, - "Discount": 0.16 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.16 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 12, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ - { - "OrderID": 10513, - "EmployeeID": 7, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-06-03T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", - "ShipVia": 1, - "Freight": 105.65, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.2 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, - "Discount": 0.2 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 15, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10514, - "EmployeeID": 3, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", - "ShipVia": 2, - "Freight": 789.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 39, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 39, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10515, - "EmployeeID": 2, - "OrderDate": "1997-04-23T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 1, - "Freight": 204.47, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 16, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 120, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0.16 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 84, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10516, - "EmployeeID": 2, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 62.78, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 80, - "Discount": 0.1 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 17000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ - { - "OrderID": 10517, - "EmployeeID": 3, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 3, - "Freight": 32.07, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 16000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ - { - "OrderID": 10518, - "EmployeeID": 4, - "OrderDate": "1997-04-25T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-05-05T00:00:00", - "ShipVia": 2, - "Freight": 218.15, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ - { - "OrderID": 10519, - "EmployeeID": 6, - "OrderDate": "1997-04-28T00:00:00", - "RequiredDate": "1997-05-26T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 91.76, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ - { - "OrderID": 10520, - "EmployeeID": 7, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 1, - "Freight": 13.37, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10521, - "EmployeeID": 8, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 17.22, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10522, - "EmployeeID": 4, - "OrderDate": "1997-04-30T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-06T00:00:00", - "ShipVia": 1, - "Freight": 45.33, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.2 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 12000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10523, - "EmployeeID": 7, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 2, - "Freight": 77.63, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 42000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 37000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10524, - "EmployeeID": 1, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", - "ShipVia": 2, - "Freight": 244.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10525, - "EmployeeID": 1, - "OrderDate": "1997-05-02T00:00:00", - "RequiredDate": "1997-05-30T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 11.06, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10526, - "EmployeeID": 4, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-15T00:00:00", - "ShipVia": 2, - "Freight": 58.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10527, - "EmployeeID": 7, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", - "ShipVia": 1, - "Freight": 41.9, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ - { - "OrderID": 10528, - "EmployeeID": 6, - "OrderDate": "1997-05-06T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", - "ShipVia": 2, - "Freight": 3.35, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.2 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 45000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ - { - "OrderID": 10529, - "EmployeeID": 5, - "OrderDate": "1997-05-07T00:00:00", - "RequiredDate": "1997-06-04T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", - "ShipVia": 2, - "Freight": 66.69, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10530, - "EmployeeID": 3, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", - "ShipVia": 2, - "Freight": 339.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ - { - "OrderID": 10531, - "EmployeeID": 7, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", - "ShipVia": 1, - "Freight": 8.12, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 33000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ - { - "OrderID": 10532, - "EmployeeID": 7, - "OrderDate": "1997-05-09T00:00:00", - "RequiredDate": "1997-06-06T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", - "ShipVia": 3, - "Freight": 74.46, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 45000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 10000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10533, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-22T00:00:00", - "ShipVia": 1, - "Freight": 188.04, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.06 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 24, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10534, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-14T00:00:00", - "ShipVia": 2, - "Freight": 27.94, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10535, - "EmployeeID": 4, - "OrderDate": "1997-05-13T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-21T00:00:00", - "ShipVia": 1, - "Freight": 15.64, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10536, - "EmployeeID": 3, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-06-11T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 2, - "Freight": 58.88, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ - { - "OrderID": 10537, - "EmployeeID": 1, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", - "ShipVia": 1, - "Freight": 78.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10538, - "EmployeeID": 9, - "OrderDate": "1997-05-15T00:00:00", - "RequiredDate": "1997-06-12T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", - "ShipVia": 3, - "Freight": 4.87, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 45000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 1, - "Discount": 0 - } - ] - }, - { - "OrderID": 10539, - "EmployeeID": 6, - "OrderDate": "1997-05-16T00:00:00", - "RequiredDate": "1997-06-13T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 3, - "Freight": 12.36, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 14000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10540, - "EmployeeID": 3, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 3, - "Freight": 1007.64, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10541, - "EmployeeID": 2, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-05-29T00:00:00", - "ShipVia": 1, - "Freight": 68.65, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.1 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 4, - "Discount": 0.1 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 36, - "Discount": 0.1 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10542, - "EmployeeID": 1, - "OrderDate": "1997-05-20T00:00:00", - "RequiredDate": "1997-06-17T00:00:00", - "ShippedDate": "1997-05-26T00:00:00", - "ShipVia": 3, - "Freight": 10.95, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 24, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10543, - "EmployeeID": 8, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 48.17, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ - { - "OrderID": 10544, - "EmployeeID": 4, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 24.91, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 7, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "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", - "Orders": [ - { - "OrderID": 10545, - "EmployeeID": 8, - "OrderDate": "1997-05-22T00:00:00", - "RequiredDate": "1997-06-19T00:00:00", - "ShippedDate": "1997-06-26T00:00:00", - "ShipVia": 2, - "Freight": 11.92, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10546, - "EmployeeID": 1, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-05-27T00:00:00", - "ShipVia": 3, - "Freight": 194.72, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10547, - "EmployeeID": 3, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", - "ShipVia": 2, - "Freight": 178.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 48000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 24, - "Discount": 0.16 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 60, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ - { - "OrderID": 10548, - "EmployeeID": 3, - "OrderDate": "1997-05-26T00:00:00", - "RequiredDate": "1997-06-23T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", - "ShipVia": 2, - "Freight": 1.43, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.25 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10549, - "EmployeeID": 5, - "OrderDate": "1997-05-27T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 171.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 55, - "Discount": 0.16 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 100, - "Discount": 0.16 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 48, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ - { - "OrderID": 10550, - "EmployeeID": 7, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-06-25T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 3, - "Freight": 4.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0.1 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ - { - "OrderID": 10551, - "EmployeeID": 4, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 3, - "Freight": 72.95, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10552, - "EmployeeID": 2, - "OrderDate": "1997-05-29T00:00:00", - "RequiredDate": "1997-06-26T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 1, - "Freight": 83.22, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10553, - "EmployeeID": 2, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-03T00:00:00", - "ShipVia": 2, - "Freight": 149.49, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10554, - "EmployeeID": 4, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 3, - "Freight": 120.97, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10555, - "EmployeeID": 6, - "OrderDate": "1997-06-02T00:00:00", - "RequiredDate": "1997-06-30T00:00:00", - "ShippedDate": "1997-06-04T00:00:00", - "ShipVia": 3, - "Freight": 252.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 18, - "Discount": 0.2 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ - { - "OrderID": 10556, - "EmployeeID": 2, - "OrderDate": "1997-06-03T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 9.8, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10557, - "EmployeeID": 9, - "OrderDate": "1997-06-03T00:00:00", - "RequiredDate": "1997-06-17T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 2, - "Freight": 96.72, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 10000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10558, - "EmployeeID": 1, - "OrderDate": "1997-06-04T00:00:00", - "RequiredDate": "1997-07-02T00:00:00", - "ShippedDate": "1997-06-10T00:00:00", - "ShipVia": 2, - "Freight": 72.97, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 27000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10559, - "EmployeeID": 6, - "OrderDate": "1997-06-05T00:00:00", - "RequiredDate": "1997-07-03T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 8.05, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 18, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10560, - "EmployeeID": 8, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", - "ShipVia": 1, - "Freight": 36.65, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 20000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10561, - "EmployeeID": 2, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", - "ShipVia": 2, - "Freight": 242.21, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 18000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10562, - "EmployeeID": 1, - "OrderDate": "1997-06-09T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-12T00:00:00", - "ShipVia": 1, - "Freight": 22.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ - { - "OrderID": 10563, - "EmployeeID": 2, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-06-24T00:00:00", - "ShipVia": 2, - "Freight": 60.43, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 70, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10564, - "EmployeeID": 4, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-08T00:00:00", - "ShippedDate": "1997-06-16T00:00:00", - "ShipVia": 3, - "Freight": 13.75, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.06 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 25, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 15000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10565, - "EmployeeID": 8, - "OrderDate": "1997-06-11T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", - "ShipVia": 2, - "Freight": 7.15, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 24000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 18, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10566, - "EmployeeID": 9, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", - "ShipVia": 1, - "Freight": 88.4, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 18, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10567, - "EmployeeID": 1, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-17T00:00:00", - "ShipVia": 1, - "Freight": 33.97, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 60, - "Discount": 0.2 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ - { - "OrderID": 10568, - "EmployeeID": 3, - "OrderDate": "1997-06-13T00:00:00", - "RequiredDate": "1997-07-11T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 3, - "Freight": 6.54, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10569, - "EmployeeID": 5, - "OrderDate": "1997-06-16T00:00:00", - "RequiredDate": "1997-07-14T00:00:00", - "ShippedDate": "1997-07-11T00:00:00", - "ShipVia": 1, - "Freight": 58.98, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 34000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10570, - "EmployeeID": 3, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-19T00:00:00", - "ShipVia": 3, - "Freight": 188.99, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 40000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10571, - "EmployeeID": 8, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 3, - "Freight": 26.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 11, - "Discount": 0.16 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 43000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10572, - "EmployeeID": 3, - "OrderDate": "1997-06-18T00:00:00", - "RequiredDate": "1997-07-16T00:00:00", - "ShippedDate": "1997-06-25T00:00:00", - "ShipVia": 2, - "Freight": 116.43, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 25000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10573, - "EmployeeID": 7, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-20T00:00:00", - "ShipVia": 3, - "Freight": 84.84, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "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", - "Orders": [ - { - "OrderID": 10574, - "EmployeeID": 4, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 2, - "Freight": 37.6, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ - { - "OrderID": 10575, - "EmployeeID": 5, - "OrderDate": "1997-06-20T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 1, - "Freight": 127.34, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ - { - "OrderID": 10576, - "EmployeeID": 3, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 3, - "Freight": 18.56, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "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", - "Orders": [ - { - "OrderID": 10577, - "EmployeeID": 9, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 2, - "Freight": 25.41, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 44000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10578, - "EmployeeID": 4, - "OrderDate": "1997-06-24T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", - "ShipVia": 3, - "Freight": 29.6, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 44000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ - { - "OrderID": 10579, - "EmployeeID": 1, - "OrderDate": "1997-06-25T00:00:00", - "RequiredDate": "1997-07-23T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 2, - "Freight": 13.73, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10580, - "EmployeeID": 4, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-01T00:00:00", - "ShipVia": 3, - "Freight": 75.89, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 30, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10581, - "EmployeeID": 3, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-02T00:00:00", - "ShipVia": 1, - "Freight": 3.01, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10582, - "EmployeeID": 3, - "OrderDate": "1997-06-27T00:00:00", - "RequiredDate": "1997-07-25T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 2, - "Freight": 27.71, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 14, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10583, - "EmployeeID": 2, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 2, - "Freight": 7.28, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.16 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10584, - "EmployeeID": 4, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 1, - "Freight": 59.14, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ - { - "OrderID": 10585, - "EmployeeID": 7, - "OrderDate": "1997-07-01T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 1, - "Freight": 13.41, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10586, - "EmployeeID": 9, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 1, - "Freight": 0.48, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ - { - "OrderID": 10587, - "EmployeeID": 1, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 1, - "Freight": 62.52, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10588, - "EmployeeID": 2, - "OrderDate": "1997-07-03T00:00:00", - "RequiredDate": "1997-07-31T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 3, - "Freight": 194.67, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 40, - "Discount": 0.2 - }, + "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 100, - "Discount": 0.2 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10589, - "EmployeeID": 8, - "OrderDate": "1997-07-04T00:00:00", - "RequiredDate": "1997-08-01T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 10740, + "EmployeeID": 4, + "OrderDate": "1997-11-13T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", "ShipVia": 2, - "Freight": 4.42, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, + "Freight": 81.88, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 5, + "Discount": 0.2 + }, { "ProductID": 35, "UnitPrice": 18, - "Quantity": 4, - "Discount": 0 + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 22000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10590, + "OrderID": 10861, "EmployeeID": 4, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 3, - "Freight": 44.77, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 47000, - "ShipCountry": "Canada", + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-02-27T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 14.93, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 42, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 60, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10591, - "EmployeeID": 1, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-07-21T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", - "ShipVia": 1, - "Freight": 55.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 20, + "Discount": 0 + }, { - "ProductID": 3, + "ProductID": 21, "UnitPrice": 10, - "Quantity": 14, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 50, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10592, + "OrderID": 10904, "EmployeeID": 3, - "OrderDate": "1997-07-08T00:00:00", - "RequiredDate": "1997-08-05T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", - "ShipVia": 1, - "Freight": 32.1, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 162.95, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, - "Discount": 0.06 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 35, + "Discount": 0 + } + ] + }, + { + "OrderID": 11032, + "EmployeeID": 2, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 606.19, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 30, + "Discount": 0 } ] }, { - "OrderID": 10593, + "OrderID": 11066, "EmployeeID": 7, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-08-13T00:00:00", + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", "ShipVia": 2, - "Freight": 174.2, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 44.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, - "Discount": 0.2 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 42, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 35, + "Discount": 0 } ] } ] }, { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, + "CustomerID": "SPLIR", + "Company": "Split Rail Beer & Ale", + "ContactName": "Art Braunschweiger", + "ContactTitle": "Sales Manager", + "Address": "P.O. Box 555", + "City": "Lander", + "Region": "WY", + "PostalCode": 82520, "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", + "Phone": "(307) 555-4680", + "Fax": "(307) 555-6525", "Orders": [ { - "OrderID": 10594, - "EmployeeID": 3, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", + "OrderID": 10271, + "EmployeeID": 6, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-30T00:00:00", "ShipVia": 2, - "Freight": 5.24, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "Freight": 4.54, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, + "ProductID": 33, + "UnitPrice": 2, "Quantity": 24, "Discount": 0 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10595, - "EmployeeID": 2, - "OrderDate": "1997-07-10T00:00:00", - "RequiredDate": "1997-08-07T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 1, - "Freight": 96.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10329, + "EmployeeID": 4, + "OrderDate": "1996-10-15T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 2, + "Freight": 191.67, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 120, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 65, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 12, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10596, - "EmployeeID": 8, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", + "OrderID": 10349, + "EmployeeID": 7, + "OrderDate": "1996-11-08T00:00:00", + "RequiredDate": "1996-12-06T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", "ShipVia": 1, - "Freight": 16.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, + "Freight": 8.63, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, - "Discount": 0.2 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 24, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10597, - "EmployeeID": 7, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", - "ShipVia": 3, - "Freight": 35.12, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10369, + "EmployeeID": 8, + "OrderDate": "1996-12-02T00:00:00", + "RequiredDate": "1996-12-30T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 195.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 29, + "UnitPrice": 99, "Quantity": 20, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 18, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10598, + "OrderID": 10385, "EmployeeID": 1, - "OrderDate": "1997-07-14T00:00:00", - "RequiredDate": "1997-08-11T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", - "ShipVia": 3, - "Freight": 44.42, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, + "OrderDate": "1996-12-17T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1996-12-23T00:00:00", + "ShipVia": 2, + "Freight": 30.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 50, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 45000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10599, - "EmployeeID": 6, - "OrderDate": "1997-07-15T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", - "ShipVia": 3, - "Freight": 29.98, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 21000, - "ShipCountry": "UK", + "OrderID": 10432, + "EmployeeID": 3, + "OrderDate": "1997-01-31T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 4.34, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 26, + "UnitPrice": 24.9, "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10600, - "EmployeeID": 4, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-13T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", - "ShipVia": 1, - "Freight": 45.13, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "OrderID": 10756, + "EmployeeID": 8, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-02T00:00:00", + "ShipVia": 2, + "Freight": 73.21, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 4, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 21, + "Discount": 0.2 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.2 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10601, - "EmployeeID": 7, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", + "OrderID": 10821, + "EmployeeID": 1, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-15T00:00:00", "ShipVia": 1, - "Freight": 58.3, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 36.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 60, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10602, - "EmployeeID": 8, - "OrderDate": "1997-07-17T00:00:00", - "RequiredDate": "1997-08-14T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", - "ShipVia": 2, - "Freight": 2.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderID": 10974, + "EmployeeID": 3, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 12.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 10, + "Discount": 0 } ] } ] }, { - "CustomerID": "SAVEA", - "Company": "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", + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", "Orders": [ { - "OrderID": 10603, - "EmployeeID": 8, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", - "ShipVia": 2, - "Freight": 48.77, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10273, + "EmployeeID": 3, + "OrderDate": "1996-08-05T00:00:00", + "RequiredDate": "1996-09-02T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", + "ShipVia": 3, + "Freight": 76.07, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 48, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 24, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 33, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10604, + "OrderID": 10285, "EmployeeID": 1, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", - "ShipVia": 1, - "Freight": 7.46, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderDate": "1996-08-20T00:00:00", + "RequiredDate": "1996-09-17T00:00:00", + "ShippedDate": "1996-08-26T00:00:00", + "ShipVia": 2, + "Freight": 76.83, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 36, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 12000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10605, - "EmployeeID": 1, - "OrderDate": "1997-07-21T00:00:00", - "RequiredDate": "1997-08-18T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", + "OrderID": 10313, + "EmployeeID": 2, + "OrderDate": "1996-09-24T00:00:00", + "RequiredDate": "1996-10-22T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", "ShipVia": 2, - "Freight": 379.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 43000, - "ShipCountry": "Canada", + "Freight": 1.96, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10345, + "EmployeeID": 2, + "OrderDate": "1996-11-04T00:00:00", + "RequiredDate": "1996-12-02T00:00:00", + "ShippedDate": "1996-11-11T00:00:00", + "ShipVia": 2, + "Freight": 249.06, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 80, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10606, - "EmployeeID": 4, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-31T00:00:00", - "ShipVia": 3, - "Freight": 79.4, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "OrderID": 10361, + "EmployeeID": 1, + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 183.17, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 54, + "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 55, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10607, - "EmployeeID": 5, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", + "OrderID": 10418, + "EmployeeID": 4, + "OrderDate": "1997-01-17T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", "ShipVia": 1, - "Freight": 200.24, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 17.55, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 100, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 42, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 12, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10608, + "OrderID": 10451, "EmployeeID": 4, - "OrderDate": "1997-07-23T00:00:00", - "RequiredDate": "1997-08-20T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 27.79, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 189.09, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 120, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, "Quantity": 28, - "Discount": 0 + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 55, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10609, - "EmployeeID": 7, - "OrderDate": "1997-07-24T00:00:00", - "RequiredDate": "1997-08-21T00:00:00", - "ShippedDate": "1997-07-30T00:00:00", - "ShipVia": 2, - "Freight": 1.85, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10515, + "EmployeeID": 2, + "OrderDate": "1997-04-23T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 1, + "Freight": 204.47, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 16, + "Discount": 0.16 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 120, "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, + "Discount": 0.16 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 84, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10610, - "EmployeeID": 8, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", + "OrderID": 10527, + "EmployeeID": 7, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", "ShipVia": 1, - "Freight": 26.78, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 41.9, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, + "Discount": 0.1 + }, { "ProductID": 36, "UnitPrice": 19, - "Quantity": 21, - "Discount": 0.25 + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10611, - "EmployeeID": 6, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 80.65, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10540, + "EmployeeID": 3, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 3, + "Freight": 1007.64, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 6, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10612, - "EmployeeID": 1, - "OrderDate": "1997-07-28T00:00:00", - "RequiredDate": "1997-08-25T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 544.08, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10549, + "EmployeeID": 5, + "OrderDate": "1997-05-27T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 171.24, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 55, + "Discount": 0.16 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 100, + "Discount": 0.16 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 48, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10588, + "EmployeeID": 2, + "OrderDate": "1997-07-03T00:00:00", + "RequiredDate": "1997-07-31T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", + "ShipVia": 3, + "Freight": 194.67, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 100, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10658, + "EmployeeID": 4, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 1, + "Freight": 364.15, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 55, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 18, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 70, + "Discount": 0.06 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 40, - "Discount": 0 + "Quantity": 55, + "Discount": 0.06 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 70, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10613, - "EmployeeID": 4, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderID": 10691, + "EmployeeID": 2, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-10-22T00:00:00", "ShipVia": 2, - "Freight": 8.11, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 810.05, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 48, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10614, + "OrderID": 10694, "EmployeeID": 8, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-11-03T00:00:00", + "ShippedDate": "1997-10-09T00:00:00", "ShipVia": 3, - "Freight": 1.93, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, + "Freight": 398.36, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 14, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 90, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 8, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 5, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10615, - "EmployeeID": 2, - "OrderDate": "1997-07-30T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", + "OrderID": 10721, + "EmployeeID": 5, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-11-26T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", "ShipVia": 3, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 48.92, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 5, - "Discount": 0 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 50, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10616, - "EmployeeID": 1, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-05T00:00:00", - "ShipVia": 2, - "Freight": 116.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderID": 10745, + "EmployeeID": 9, + "OrderDate": "1997-11-18T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 1, + "Freight": 3.52, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 45, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 7, + "Discount": 0 } ] }, { - "OrderID": 10617, - "EmployeeID": 4, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-04T00:00:00", - "ShipVia": 2, - "Freight": 18.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderID": 10765, + "EmployeeID": 3, + "OrderDate": "1997-12-04T00:00:00", + "RequiredDate": "1998-01-01T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 3, + "Freight": 42.74, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 80, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 45000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10618, + "OrderID": 10788, "EmployeeID": 1, - "OrderDate": "1997-08-01T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 42.7, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10845, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 154.68, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 49000, - "ShipCountry": "Canada", + "Freight": 212.98, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, + "ProductID": 23, + "UnitPrice": 9, "Quantity": 70, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 42, + "Discount": 0.1 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 60, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 48, "Discount": 0 } ] }, { - "OrderID": 10619, - "EmployeeID": 3, - "OrderDate": "1997-08-04T00:00:00", - "RequiredDate": "1997-09-01T00:00:00", - "ShippedDate": "1997-08-07T00:00:00", - "ShipVia": 3, - "Freight": 91.05, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 20000, - "ShipCountry": "Canada", + "OrderID": 10865, + "EmployeeID": 2, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 348.14, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 42, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 48000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ + }, { - "OrderID": 10620, - "EmployeeID": 2, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", - "ShipVia": 3, - "Freight": 0.94, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 15000, - "ShipCountry": "Canada", + "OrderID": 10878, + "EmployeeID": 4, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 46.69, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10938, + "EmployeeID": 3, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 31.89, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0.25 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0.25 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 49, + "Discount": 0.25 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10621, - "EmployeeID": 4, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", + "OrderID": 10962, + "EmployeeID": 8, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", "ShipVia": 2, - "Freight": 23.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 90304, - "ShipPostalCode": 28000, - "ShipCountry": "UK", + "Freight": 275.79, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 10, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 77, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 53, + "UnitPrice": 32.8, "Quantity": 20, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 44, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10622, - "EmployeeID": 4, - "OrderDate": "1997-08-06T00:00:00", - "RequiredDate": "1997-09-03T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", - "ShipVia": 3, - "Freight": 50.97, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10991, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 1, + "Freight": 38.51, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.2 + }, + { + "ProductID": 70, + "UnitPrice": 15, "Quantity": 20, - "Discount": 0 + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 90, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10623, - "EmployeeID": 8, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", + "OrderID": 10996, + "EmployeeID": 4, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 2, - "Freight": 97.18, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, + "Freight": 1.12, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 21, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0 + } + ] + }, + { + "OrderID": 11021, + "EmployeeID": 3, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 1, + "Freight": 297.18, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 11, + "Discount": 0.25 }, { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 20, + "UnitPrice": 81, "Quantity": 15, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 63, + "Discount": 0 }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 44, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "MAGAA", + "Company": "Magazzini Alimentari Riuniti", + "ContactName": "Giovanni Rovelli", + "ContactTitle": "Marketing Manager", + "Address": "Via Ludovico il Moro 22", + "City": "Bergamo", + "PostalCode": 24100, + "Country": "Italy", + "Phone": "035-640230", + "Fax": "035-640231", + "Orders": [ + { + "OrderID": 10275, + "EmployeeID": 1, + "OrderDate": "1996-08-07T00:00:00", + "RequiredDate": "1996-09-04T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", + "ShipVia": 1, + "Freight": 26.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 3, - "Discount": 0 + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 6, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10624, - "EmployeeID": 4, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", + "OrderID": 10300, + "EmployeeID": 2, + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", "ShipVia": 2, - "Freight": 94.8, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "Freight": 17.68, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 6, + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10625, - "EmployeeID": 3, - "OrderDate": "1997-08-08T00:00:00", - "RequiredDate": "1997-09-05T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", + "OrderID": 10404, + "EmployeeID": 2, + "OrderDate": "1997-01-03T00:00:00", + "RequiredDate": "1997-01-31T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", "ShipVia": 1, - "Freight": 43.9, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 155.97, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, + "Discount": 0.06 }, { "ProductID": 42, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 + "UnitPrice": 11.2, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 47000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10626, - "EmployeeID": 1, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-08T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", + "OrderID": 10467, + "EmployeeID": 8, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", "ShipVia": 2, - "Freight": 138.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 39000, - "ShipCountry": "Sweden", + "Freight": 4.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 12, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 12, "Discount": 0 + } + ] + }, + { + "OrderID": 10635, + "EmployeeID": 8, + "OrderDate": "1997-08-18T00:00:00", + "RequiredDate": "1997-09-15T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 47.46, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 20, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10627, - "EmployeeID": 8, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10754, + "EmployeeID": 6, + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", "ShipVia": 3, - "Freight": 107.46, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 2.38, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 3, "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10628, + "OrderID": 10784, "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", "ShipVia": 3, - "Freight": 30.36, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 70.09, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10629, - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", + "OrderID": 10818, + "EmployeeID": 7, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", "ShipVia": 3, - "Freight": 85.46, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 65.48, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 32, + "UnitPrice": 32, "Quantity": 20, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 9, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10630, - "EmployeeID": 1, - "OrderDate": "1997-08-13T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", + "OrderID": 10939, + "EmployeeID": 2, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 2, - "Freight": 32.35, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 76.33, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10631, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-15T00:00:00", - "ShipVia": 1, - "Freight": 0.87, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10632, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 1, - "Freight": 41.38, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10950, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-13T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 2.5, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "TORTU", + "Company": "Tortuga Restaurante", + "ContactName": "Miguel Angel Paolino", + "ContactTitle": "Owner", + "Address": "Avda. Azteca 123", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 555-2933", "Orders": [ { - "OrderID": 10633, - "EmployeeID": 7, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-18T00:00:00", + "OrderID": 10276, + "EmployeeID": 8, + "OrderDate": "1996-08-08T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-14T00:00:00", "ShipVia": 3, - "Freight": 477.9, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 13.84, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 15, + "Discount": 0 }, { "ProductID": 13, - "UnitPrice": 6, - "Quantity": 13, - "Discount": 0.16 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 80, - "Discount": 0.16 + "UnitPrice": 4.8, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10634, - "EmployeeID": 4, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10293, + "EmployeeID": 1, + "OrderDate": "1996-08-29T00:00:00", + "RequiredDate": "1996-09-26T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 3, - "Freight": 487.38, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 21.18, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 50, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 15, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 5, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 7.75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0 + } + ] + }, + { + "OrderID": 10304, + "EmployeeID": 1, + "OrderDate": "1996-09-12T00:00:00", + "RequiredDate": "1996-10-10T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", + "ShipVia": 2, + "Freight": 63.79, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10635, - "EmployeeID": 8, - "OrderDate": "1997-08-18T00:00:00", - "RequiredDate": "1997-09-15T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10319, + "EmployeeID": 7, + "OrderDate": "1996-10-02T00:00:00", + "RequiredDate": "1996-10-30T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", "ShipVia": 3, - "Freight": 47.46, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 64.5, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10636, + "OrderID": 10518, "EmployeeID": 4, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 1.15, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderDate": "1997-04-25T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-05-05T00:00:00", + "ShipVia": 2, + "Freight": 218.15, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10637, - "EmployeeID": 6, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 201.29, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10576, + "EmployeeID": 3, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", + "ShipVia": 3, + "Freight": 18.56, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10638, - "EmployeeID": 3, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", - "ShipVia": 1, - "Freight": 158.44, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10676, + "EmployeeID": 2, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-29T00:00:00", + "ShipVia": 2, + "Freight": 2.01, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 60, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10639, - "EmployeeID": 7, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-08-27T00:00:00", + "OrderID": 10842, + "EmployeeID": 1, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 3, - "Freight": 38.64, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 54.42, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10640, - "EmployeeID": 4, - "OrderDate": "1997-08-21T00:00:00", - "RequiredDate": "1997-09-18T00:00:00", - "ShippedDate": "1997-08-28T00:00:00", - "ShipVia": 1, - "Freight": 23.55, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10915, + "EmployeeID": 2, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", + "ShipVia": 2, + "Freight": 3.51, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10641, - "EmployeeID": 4, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", + "OrderID": 11069, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", "ShipVia": 2, - "Freight": 179.61, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 15.67, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] @@ -18056,182 +9977,158 @@ ] }, { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", + "CustomerID": "MORGK", + "Company": "Morgenstern Gesundkost", + "ContactName": "Alexander Feuer", + "ContactTitle": "Marketing Assistant", + "Address": "Heerstr. 22", + "City": "Leipzig", + "PostalCode": 4179, + "Country": "Germany", + "Phone": "0342-023176", "Orders": [ { - "OrderID": 10642, - "EmployeeID": 7, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-09-05T00:00:00", + "OrderID": 10277, + "EmployeeID": 2, + "OrderDate": "1996-08-09T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-08-13T00:00:00", "ShipVia": 3, - "Freight": 41.89, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 125.77, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10643, - "EmployeeID": 6, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", + "OrderID": 10575, + "EmployeeID": 5, + "OrderDate": "1997-06-20T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 1, - "Freight": 29.46, - "ShipName": "Alfreds Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, + "Freight": 127.34, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10644, + "OrderID": 10699, "EmployeeID": 3, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", - "ShipVia": 2, - "Freight": 0.14, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", + "ShipVia": 3, + "Freight": 0.58, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 4, - "Discount": 0.1 - }, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10779, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 2, + "Freight": 58.13, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 43, - "UnitPrice": 46, + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 20, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0.1 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10645, + "OrderID": 10945, "EmployeeID": 4, - "OrderDate": "1997-08-26T00:00:00", - "RequiredDate": "1997-09-23T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-04-09T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 1, - "Freight": 12.41, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 10.22, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, + "ProductID": 13, + "UnitPrice": 6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 15, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 } ] @@ -18239,376 +10136,273 @@ ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 32000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", "Orders": [ { - "OrderID": 10646, - "EmployeeID": 9, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 3, - "Freight": 142.33, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10278, + "EmployeeID": 8, + "OrderDate": "1996-08-12T00:00:00", + "RequiredDate": "1996-09-09T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 92.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 26000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 16, + "Discount": 0 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10647, - "EmployeeID": 4, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 2, - "Freight": 45.54, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10280, + "EmployeeID": 2, + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-09-11T00:00:00", + "ShippedDate": "1996-09-12T00:00:00", + "ShipVia": 1, + "Freight": 8.98, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 50000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, + "ProductID": 55, + "UnitPrice": 19.2, "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ - { - "OrderID": 10648, - "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-09T00:00:00", - "ShipVia": 2, - "Freight": 14.25, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 43000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10649, - "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-09-25T00:00:00", - "ShippedDate": "1997-08-29T00:00:00", - "ShipVia": 3, - "Freight": 6.2, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 21000, - "ShipCountry": "Belgium", + "OrderID": 10384, + "EmployeeID": 3, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", + "ShipVia": 3, + "Freight": 168.64, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 33000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, + "ProductID": 60, + "UnitPrice": 27.2, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10650, - "EmployeeID": 5, - "OrderDate": "1997-08-29T00:00:00", - "RequiredDate": "1997-09-26T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", + "OrderID": 10444, + "EmployeeID": 3, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-21T00:00:00", "ShipVia": 3, - "Freight": 176.81, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "Freight": 3.5, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 21000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10651, - "EmployeeID": 8, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", + "OrderID": 10524, + "EmployeeID": 1, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", "ShipVia": 2, - "Freight": 20.6, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 244.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 2, + "Discount": 0 }, - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 10652, - "EmployeeID": 4, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", - "ShipVia": 2, - "Freight": 7.14, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", - "OrderDetails": [ { "ProductID": 30, "UnitPrice": 25.89, - "Quantity": 2, - "Discount": 0.25 + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10653, - "EmployeeID": 1, - "OrderDate": "1997-09-02T00:00:00", - "RequiredDate": "1997-09-30T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 1, - "Freight": 93.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10572, + "EmployeeID": 3, + "OrderDate": "1997-06-18T00:00:00", + "RequiredDate": "1997-07-16T00:00:00", + "ShippedDate": "1997-06-25T00:00:00", + "ShipVia": 2, + "Freight": 116.43, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 25000, + "ShipCountry": "Sweden", "OrderDetails": [ { "ProductID": 16, "UnitPrice": 17.45, - "Quantity": 30, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 15, "Discount": 0.1 + } + ] + }, + { + "OrderID": 10626, + "EmployeeID": 1, + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-08T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 2, + "Freight": 138.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 39000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 12, + "Discount": 0 }, { "ProductID": 60, "UnitPrice": 34, "Quantity": 20, - "Discount": 0.1 + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 28000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { "OrderID": 10654, "EmployeeID": 5, @@ -18642,838 +10436,738 @@ "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10655, - "EmployeeID": 1, - "OrderDate": "1997-09-03T00:00:00", + "OrderID": 10672, + "EmployeeID": 9, + "OrderDate": "1997-09-17T00:00:00", "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", "ShipVia": 2, - "Freight": 4.41, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ - { - "OrderID": 10656, - "EmployeeID": 6, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", - "ShipVia": 1, - "Freight": 57.15, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 95.75, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 16000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0.1 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 28, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, "Discount": 0.1 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10657, - "EmployeeID": 2, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", + "OrderID": 10689, + "EmployeeID": 1, + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-29T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", "ShipVia": 2, - "Freight": 352.69, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 13.42, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 24000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 45, - "Discount": 0 - }, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10733, + "EmployeeID": 1, + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-10T00:00:00", + "ShipVia": 3, + "Freight": 110.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 27000, + "ShipCountry": "Sweden", + "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 10, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 45, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10658, - "EmployeeID": 4, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", + "OrderID": 10778, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", "ShipVia": 1, - "Freight": 364.15, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 6.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 13000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10837, + "EmployeeID": 9, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 13.32, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 44000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, "Discount": 0 }, { "ProductID": 40, "UnitPrice": 18.4, - "Quantity": 70, - "Discount": 0.06 + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 55, - "Discount": 0.06 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10659, - "EmployeeID": 7, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", + "OrderID": 10857, + "EmployeeID": 8, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", "ShipVia": 2, - "Freight": 105.81, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 188.85, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 43000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 24, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10660, - "EmployeeID": 8, - "OrderDate": "1997-09-08T00:00:00", - "RequiredDate": "1997-10-06T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", + "OrderID": 10866, + "EmployeeID": 5, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-03T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", "ShipVia": 1, - "Freight": 111.29, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "Freight": 109.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10661, - "EmployeeID": 7, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", - "ShipVia": 3, - "Freight": 17.55, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ + "Discount": 0.25 + }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 6, + "Discount": 0.25 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 49, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 40, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10662, - "EmployeeID": 3, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", + "OrderID": 10875, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", "ShipVia": 2, - "Freight": 1.28, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 32.37, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 37000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0.1 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10663, - "EmployeeID": 2, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-09-24T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", + "OrderID": 10924, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", "ShipVia": 2, - "Freight": 113.15, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 151.52, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 42, - "UnitPrice": 14, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 30, - "Discount": 0.06 + "Discount": 0.1 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 6, + "Discount": 0 } ] } ] }, { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", + "CustomerID": "LEHMS", + "Company": "Lehmanns Marktstand", + "ContactName": "Renate Messner", + "ContactTitle": "Sales Representative", + "Address": "Magazinweg 7", + "City": "Frankfurt a.M.", + "PostalCode": 60528, + "Country": "Germany", + "Phone": "069-0245984", + "Fax": "069-0245874", "Orders": [ { - "OrderID": 10664, - "EmployeeID": 1, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 3, - "Freight": 1.27, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10279, + "EmployeeID": 8, + "OrderDate": "1996-08-13T00:00:00", + "RequiredDate": "1996-09-10T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 25.83, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10284, + "EmployeeID": 4, + "OrderDate": "1996-08-19T00:00:00", + "RequiredDate": "1996-09-16T00:00:00", + "ShippedDate": "1996-08-27T00:00:00", + "ShipVia": 1, + "Freight": 76.56, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0.25 + }, + { + "ProductID": 67, + "UnitPrice": 11.2, + "Quantity": 5, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10665, - "EmployeeID": 1, - "OrderDate": "1997-09-11T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-17T00:00:00", - "ShipVia": 2, - "Freight": 26.31, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10343, + "EmployeeID": 4, + "OrderDate": "1996-10-31T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-11-06T00:00:00", + "ShipVia": 1, + "Freight": 110.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 1, - "Discount": 0 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 4, + "Discount": 0.06 }, { "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "UnitPrice": 14.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10666, + "OrderID": 10497, "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", - "ShipVia": 2, - "Freight": 232.42, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", + "ShipVia": 1, + "Freight": 36.21, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10667, - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", + "OrderID": 10522, + "EmployeeID": 4, + "OrderDate": "1997-04-30T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-06T00:00:00", "ShipVia": 1, - "Freight": 78.09, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 45.33, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 45, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 14, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10668, - "EmployeeID": 1, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", + "OrderID": 10534, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-14T00:00:00", "ShipVia": 2, - "Freight": 47.22, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, + "Freight": 27.94, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ - { - "OrderID": 10669, - "EmployeeID": 2, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", - "ShipVia": 1, - "Freight": 24.39, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10670, - "EmployeeID": 4, - "OrderDate": "1997-09-16T00:00:00", - "RequiredDate": "1997-10-14T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", - "ShipVia": 1, - "Freight": 203.48, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, + "OrderID": 10536, + "EmployeeID": 3, + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-06-11T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 2, + "Freight": 58.88, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 32, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 60, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 25, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10557, + "EmployeeID": 9, + "OrderDate": "1997-06-03T00:00:00", + "RequiredDate": "1997-06-17T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 2, + "Freight": 96.72, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 25, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10671, - "EmployeeID": 1, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-09-24T00:00:00", + "OrderID": 10592, + "EmployeeID": 3, + "OrderDate": "1997-07-08T00:00:00", + "RequiredDate": "1997-08-05T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", "ShipVia": 1, - "Freight": 30.34, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 32.1, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 10, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 5, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10772, + "EmployeeID": 3, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 91.28, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10862, + "EmployeeID": 8, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 53.23, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10672, - "EmployeeID": 9, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", + "OrderID": 10891, + "EmployeeID": 7, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", "ShipVia": 2, - "Freight": 95.75, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 16000, - "ShipCountry": "Sweden", + "Freight": 20.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, + "ProductID": 30, + "UnitPrice": 25.89, "Quantity": 15, - "Discount": 0.1 + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10934, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 3, + "Freight": 32.01, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 11070, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShipVia": 1, + "Freight": 136, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.16 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 } ] @@ -19481,275 +11175,177 @@ ] }, { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", + "CustomerID": "ROMEY", + "Company": "Romero y tomillo", + "ContactName": "Alejandra Camino", + "ContactTitle": "Accounting Manager", + "Address": "Gran Vía, 1", + "City": "Madrid", + "PostalCode": 28001, + "Country": "Spain", + "Phone": "(91) 745 6200", + "Fax": "(91) 745 6210", "Orders": [ { - "OrderID": 10673, - "EmployeeID": 2, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 1, - "Freight": 22.76, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10281, + "EmployeeID": 4, + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-08-28T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 2.94, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, + "ProductID": 24, + "UnitPrice": 3.6, "Quantity": 6, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10674, + "OrderID": 10282, "EmployeeID": 4, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 2, - "Freight": 0.9, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60688, - "ShipPostalCode": 25000, - "ShipCountry": "UK", + "OrderDate": "1996-08-15T00:00:00", + "RequiredDate": "1996-09-12T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 5, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10675, - "EmployeeID": 5, - "OrderDate": "1997-09-19T00:00:00", - "RequiredDate": "1997-10-17T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", - "ShipVia": 2, - "Freight": 31.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10306, + "EmployeeID": 1, + "OrderDate": "1996-09-16T00:00:00", + "RequiredDate": "1996-10-14T00:00:00", + "ShippedDate": "1996-09-23T00:00:00", + "ShipVia": 3, + "Freight": 7.56, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 10, "Discount": 0 }, { "ProductID": 53, - "UnitPrice": 32.8, + "UnitPrice": 26.2, "Quantity": 10, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10676, - "EmployeeID": 2, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-29T00:00:00", + "OrderID": 10917, + "EmployeeID": 4, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", "ShipVia": 2, - "Freight": 2.01, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 8.29, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10677, - "EmployeeID": 1, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", - "ShipVia": 3, - "Freight": 4.03, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10678, - "EmployeeID": 7, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", - "ShipVia": 3, - "Freight": 388.98, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11013, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 32.99, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 100, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 120, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 2, "Discount": 0 } ] @@ -19757,1581 +11353,1417 @@ ] }, { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", + "CustomerID": "LILAS", + "Company": "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", "Orders": [ { - "OrderID": 10679, - "EmployeeID": 8, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", + "OrderID": 10283, + "EmployeeID": 3, + "OrderDate": "1996-08-16T00:00:00", + "RequiredDate": "1996-09-13T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", "ShipVia": 3, - "Freight": 27.94, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 84.81, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10680, - "EmployeeID": 1, - "OrderDate": "1997-09-24T00:00:00", - "RequiredDate": "1997-10-22T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", + "OrderID": 10296, + "EmployeeID": 6, + "OrderDate": "1996-09-03T00:00:00", + "RequiredDate": "1996-10-01T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 1, - "Freight": 26.61, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 0.12, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10681, + "OrderID": 10330, "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 3, - "Freight": 76.13, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", + "ShipVia": 1, + "Freight": 12.75, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0.1 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 28, - "Discount": 0 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10682, - "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 2, - "Freight": 36.13, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + }, + { + "OrderID": 10357, + "EmployeeID": 1, + "OrderDate": "1996-11-19T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 34.88, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, + "ProductID": 10, + "UnitPrice": 24.8, "Quantity": 30, - "Discount": 0 + "Discount": 0.2 }, { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 4, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10683, - "EmployeeID": 2, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 1, - "Freight": 4.4, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10381, + "EmployeeID": 3, + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 7.99, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 9, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10684, - "EmployeeID": 3, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 1, - "Freight": 145.63, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "OrderID": 10461, + "EmployeeID": 1, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-05T00:00:00", + "ShipVia": 3, + "Freight": 148.61, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 28, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10685, + "OrderID": 10499, "EmployeeID": 4, - "OrderDate": "1997-09-29T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", + "OrderDate": "1997-04-08T00:00:00", + "RequiredDate": "1997-05-06T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", "ShipVia": 2, - "Freight": 33.75, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 102.02, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 25, "Discount": 0 + } + ] + }, + { + "OrderID": 10543, + "EmployeeID": 8, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 2, + "Freight": 48.17, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10686, + "OrderID": 10780, "EmployeeID": 2, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-08T00:00:00", - "ShipVia": 1, - "Freight": 96.5, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-25T00:00:00", + "ShipVia": 1, + "Freight": 42.13, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, + "ProductID": 77, + "UnitPrice": 13, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10687, - "EmployeeID": 9, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-30T00:00:00", + "OrderID": 10823, + "EmployeeID": 5, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", "ShipVia": 2, - "Freight": 296.43, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 163.97, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10688, - "EmployeeID": 4, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", + "OrderID": 10899, + "EmployeeID": 5, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", + "ShipVia": 3, + "Freight": 1.21, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10997, + "EmployeeID": 8, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 299.09, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 73.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 14, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 21000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10689, - "EmployeeID": 1, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-29T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", - "ShipVia": 2, - "Freight": 13.42, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 24000, - "ShipCountry": "Sweden", + "OrderID": 11065, + "EmployeeID": 8, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShipVia": 1, + "Freight": 12.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 35, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 4, + "Discount": 0.25 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10690, - "EmployeeID": 1, - "OrderDate": "1997-10-02T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", - "ShipVia": 1, - "Freight": 15.8, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + }, + { + "OrderID": 11071, + "EmployeeID": 1, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShipVia": 1, + "Freight": 0.93, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", + "CustomerID": "RICAR", + "Company": "Ricardo Adocicados", + "ContactName": "Janete Limeira", + "ContactTitle": "Sales Associate", + "Address": "Av. Copacabana, 267", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-3412", "Orders": [ { - "OrderID": 10691, - "EmployeeID": 2, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-10-22T00:00:00", - "ShipVia": 2, - "Freight": 810.05, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10287, + "EmployeeID": 8, + "OrderDate": "1996-08-22T00:00:00", + "RequiredDate": "1996-09-19T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", + "ShipVia": 3, + "Freight": 12.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, + "ProductID": 16, + "UnitPrice": 13.9, "Quantity": 40, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 24, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 48, - "Discount": 0 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10692, + "OrderID": 10299, "EmployeeID": 4, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-10-31T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", + "OrderDate": "1996-09-06T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-13T00:00:00", "ShipVia": 2, - "Freight": 61.02, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 29.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10693, - "EmployeeID": 3, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-10-10T00:00:00", - "ShipVia": 3, - "Freight": 139.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10447, + "EmployeeID": 4, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-03-07T00:00:00", + "ShipVia": 2, + "Freight": 68.66, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 6, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10694, + "OrderID": 10481, "EmployeeID": 8, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-11-03T00:00:00", - "ShippedDate": "1997-10-09T00:00:00", - "ShipVia": 3, - "Freight": 398.36, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", + "ShipVia": 2, + "Freight": 64.33, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 90, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10563, + "EmployeeID": 2, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-06-24T00:00:00", + "ShipVia": 2, + "Freight": 60.43, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, "Quantity": 25, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 70, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10695, - "EmployeeID": 7, - "OrderDate": "1997-10-07T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 1, - "Freight": 16.72, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10622, + "EmployeeID": 4, + "OrderDate": "1997-08-06T00:00:00", + "RequiredDate": "1997-09-03T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 3, + "Freight": 50.97, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 4, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10648, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-09T00:00:00", + "ShipVia": 2, + "Freight": 14.25, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 15, "Discount": 0 }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0 + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10696, - "EmployeeID": 8, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 3, - "Freight": 102.55, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10813, + "EmployeeID": 1, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 1, + "Freight": 47.38, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 12, + "Discount": 0.2 }, { "ProductID": 46, "UnitPrice": 12, - "Quantity": 18, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10697, - "EmployeeID": 3, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-05T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", + "OrderID": 10851, + "EmployeeID": 5, + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-23T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", "ShipVia": 1, - "Freight": 45.52, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", + "Freight": 160.55, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, - "Discount": 0.25 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, + "Discount": 0.06 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 9, - "Discount": 0.25 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 58, - "UnitPrice": 13.25, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10877, + "EmployeeID": 1, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 1, + "Freight": 38.06, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 30, "Discount": 0.25 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10698, - "EmployeeID": 4, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-17T00:00:00", - "ShipVia": 1, - "Freight": 272.47, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 11059, + "EmployeeID": 2, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-06-10T00:00:00", + "ShipVia": 2, + "Freight": 85.8, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 30, "Discount": 0 }, { "ProductID": 17, "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 65, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 8, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0 } ] } ] }, { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", + "CustomerID": "REGGC", + "Company": "Reggiani Caseifici", + "ContactName": "Maurizio Moroni", + "ContactTitle": "Sales Associate", + "Address": "Strada Provinciale 124", + "City": "Reggio Emilia", + "PostalCode": 42100, + "Country": "Italy", + "Phone": "0522-556721", + "Fax": "0522-556722", "Orders": [ { - "OrderID": 10699, - "EmployeeID": 3, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", - "ShipVia": 3, - "Freight": 0.58, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "OrderID": 10288, + "EmployeeID": 4, + "OrderDate": "1996-08-23T00:00:00", + "RequiredDate": "1996-09-20T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", + "ShipVia": 1, + "Freight": 7.45, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 12, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10428, + "EmployeeID": 7, + "OrderDate": "1997-01-28T00:00:00", + "RequiredDate": "1997-02-25T00:00:00", + "ShippedDate": "1997-02-04T00:00:00", + "ShipVia": 1, + "Freight": 11.09, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10700, - "EmployeeID": 3, - "OrderDate": "1997-10-10T00:00:00", - "RequiredDate": "1997-11-07T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", + "OrderID": 10443, + "EmployeeID": 8, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", "ShipVia": 1, - "Freight": 65.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 13.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 5, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 34, - "UnitPrice": 14, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 12, - "Discount": 0.2 + "Discount": 0 + } + ] + }, + { + "OrderID": 10562, + "EmployeeID": 1, + "OrderDate": "1997-06-09T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-12T00:00:00", + "ShipVia": 1, + "Freight": 22.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 40, - "Discount": 0.2 - }, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10586, + "EmployeeID": 9, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 1, + "Freight": 0.48, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10655, + "EmployeeID": 1, + "OrderDate": "1997-09-03T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 4.41, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10701, - "EmployeeID": 6, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-10-27T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", - "ShipVia": 3, - "Freight": 220.31, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10727, + "EmployeeID": 2, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-12-01T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 89.9, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10702, - "EmployeeID": 4, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", + "OrderID": 10812, + "EmployeeID": 5, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", "ShipVia": 1, - "Freight": 23.94, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 59.78, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 16, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 47000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10703, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-10-20T00:00:00", + "OrderID": 10908, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", "ShipVia": 2, - "Freight": 152.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 22000, - "ShipCountry": "Sweden", + "Freight": 32.96, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 14, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10704, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", - "ShipVia": 1, - "Freight": 4.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10942, + "EmployeeID": 9, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 3, + "Freight": 17.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 28, + "Discount": 0 + } + ] + }, + { + "OrderID": 11010, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 28.71, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 6, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, "Discount": 0 }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 24, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10705, - "EmployeeID": 9, - "OrderDate": "1997-10-15T00:00:00", - "RequiredDate": "1997-11-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 11062, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", "ShipVia": 2, - "Freight": 3.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 29.93, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 4, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 12, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", + "CustomerID": "BSBEV", + "Company": "B's Beverages", + "ContactName": "Victoria Ashworth", "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", + "Address": "Fauntleroy Circus", + "City": "London", + "PostalCode": 20000, + "Country": "UK", + "Phone": "(171) 555-1212", "Orders": [ { - "OrderID": 10706, - "EmployeeID": 8, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-11-13T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", + "OrderID": 10289, + "EmployeeID": 7, + "OrderDate": "1996-08-26T00:00:00", + "RequiredDate": "1996-09-23T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", "ShipVia": 3, - "Freight": 135.63, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 22.77, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 18000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 10471, + "EmployeeID": 2, + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 3, + "Freight": 45.59, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 8, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 14000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10707, - "EmployeeID": 4, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", + "OrderID": 10484, + "EmployeeID": 3, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-01T00:00:00", "ShipVia": 3, - "Freight": 21.74, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 29000, + "Freight": 6.88, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 31000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 21, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 40, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ - { - "OrderID": 10708, - "EmployeeID": 6, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 2.96, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + }, + { + "OrderID": 10538, + "EmployeeID": 9, + "OrderDate": "1997-05-15T00:00:00", + "RequiredDate": "1997-06-12T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 3, + "Freight": 4.87, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 45000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 4, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 5, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 1, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10709, - "EmployeeID": 1, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-11-20T00:00:00", + "OrderID": 10578, + "EmployeeID": 4, + "OrderDate": "1997-06-24T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", "ShipVia": 3, - "Freight": 210.8, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 29.6, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 44000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 28, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10710, - "EmployeeID": 1, - "OrderDate": "1997-10-20T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", - "ShipVia": 1, - "Freight": 4.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10599, + "EmployeeID": 6, + "OrderDate": "1997-07-15T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", + "ShipVia": 3, + "Freight": 29.98, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 21000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10711, - "EmployeeID": 5, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", + "OrderID": 10943, + "EmployeeID": 4, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 52.41, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 2.17, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 42, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 120, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10712, + "OrderID": 10947, "EmployeeID": 3, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", - "ShipVia": 1, - "Freight": 89.93, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 13000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11023, + "EmployeeID": 1, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 123.83, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 43, + "UnitPrice": 46, "Quantity": 30, "Discount": 0 } @@ -21340,191 +12772,158 @@ ] }, { - "CustomerID": "SAVEA", - "Company": "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", + "CustomerID": "COMMI", + "Company": "Comércio Mineiro", + "ContactName": "Pedro Afonso", + "ContactTitle": "Sales Associate", + "Address": "Av. dos Lusíadas, 23", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5432, + "Country": "Brazil", + "Phone": "(11) 555-7647", "Orders": [ { - "OrderID": 10713, - "EmployeeID": 1, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-24T00:00:00", + "OrderID": 10290, + "EmployeeID": 8, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", "ShipVia": 1, - "Freight": 167.05, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 79.7, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 110, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 24, + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, "Discount": 0 } ] }, { - "OrderID": 10714, - "EmployeeID": 5, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", - "ShipVia": 3, - "Freight": 24.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10466, + "EmployeeID": 4, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-13T00:00:00", + "ShipVia": 1, + "Freight": 11.93, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 27, - "Discount": 0.25 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 50, - "Discount": 0.25 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10715, - "EmployeeID": 3, - "OrderDate": "1997-10-23T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 1, - "Freight": 63.2, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10494, + "EmployeeID": 4, + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", + "ShipVia": 2, + "Freight": 65.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, + "ProductID": 56, + "UnitPrice": 30.4, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10716, - "EmployeeID": 4, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", + "OrderID": 10969, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", "ShipVia": 2, - "Freight": 22.57, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 0.21, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11042, + "EmployeeID": 2, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 29.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 7, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 15, "Discount": 0 }, { "ProductID": 61, "UnitPrice": 28.5, - "Quantity": 10, + "Quantity": 4, "Discount": 0 } ] @@ -21532,900 +12931,820 @@ ] }, { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", + "CustomerID": "TRADH", + "Company": "Tradição Hipermercados", + "ContactName": "Anabela Domingues", + "ContactTitle": "Sales Representative", + "Address": "Av. Inês de Castro, 414", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5634, + "Country": "Brazil", + "Phone": "(11) 555-2167", + "Fax": "(11) 555-2168", "Orders": [ { - "OrderID": 10717, + "OrderID": 10292, "EmployeeID": 1, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", + "OrderDate": "1996-08-28T00:00:00", + "RequiredDate": "1996-09-25T00:00:00", + "ShippedDate": "1996-09-02T00:00:00", "ShipVia": 2, - "Freight": 59.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 1.35, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10496, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", + "ShipVia": 2, + "Freight": 46.77, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 31, "UnitPrice": 10, - "Quantity": 32, + "Quantity": 20, "Discount": 0.06 + } + ] + }, + { + "OrderID": 10606, + "EmployeeID": 4, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-31T00:00:00", + "ShipVia": 3, + "Freight": 79.4, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10718, - "EmployeeID": 1, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 3, - "Freight": 170.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10830, + "EmployeeID": 4, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 2, + "Freight": 81.83, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10719, - "EmployeeID": 8, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 51.44, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10834, + "EmployeeID": 1, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 3, + "Freight": 29.78, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 8, + "Discount": 0.06 }, { "ProductID": 30, "UnitPrice": 25.89, - "Quantity": 3, - "Discount": 0.25 + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10839, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-22T00:00:00", + "ShipVia": 3, + "Freight": 35.43, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", "Orders": [ { - "OrderID": 10720, - "EmployeeID": 8, - "OrderDate": "1997-10-28T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", + "OrderID": 10298, + "EmployeeID": 6, + "OrderDate": "1996-09-05T00:00:00", + "RequiredDate": "1996-10-03T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 2, - "Freight": 9.53, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 168.22, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 8, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.25 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10721, - "EmployeeID": 5, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-11-26T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", - "ShipVia": 3, - "Freight": 48.92, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10309, + "EmployeeID": 3, + "OrderDate": "1996-09-19T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 1, + "Freight": 47.3, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10722, - "EmployeeID": 8, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-04T00:00:00", - "ShipVia": 1, - "Freight": 74.58, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10335, + "EmployeeID": 7, + "OrderDate": "1996-10-22T00:00:00", + "RequiredDate": "1996-11-19T00:00:00", + "ShippedDate": "1996-10-24T00:00:00", + "ShipVia": 2, + "Freight": 42.11, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { "ProductID": 2, - "UnitPrice": 19, - "Quantity": 3, - "Discount": 0 + "UnitPrice": 15.2, + "Quantity": 7, + "Discount": 0.2 }, { "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0 + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 45, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 42, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 48, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10723, - "EmployeeID": 3, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-11-27T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", - "ShipVia": 1, - "Freight": 21.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10373, + "EmployeeID": 4, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-11T00:00:00", + "ShipVia": 3, + "Freight": 124.12, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 15, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 80, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 31000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10724, + "OrderID": 10380, "EmployeeID": 8, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 57.75, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 39000, - "ShipCountry": "Canada", + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 3, + "Freight": 35.03, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 6, + "Discount": 0.1 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10725, - "EmployeeID": 4, - "OrderDate": "1997-10-31T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 3, - "Freight": 10.83, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10429, + "EmployeeID": 3, + "OrderDate": "1997-01-29T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 56.63, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10503, + "EmployeeID": 6, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 2, + "Freight": 16.74, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 18000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10726, - "EmployeeID": 4, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", - "ShipVia": 1, - "Freight": 16.56, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 21000, - "ShipCountry": "UK", + "OrderID": 10516, + "EmployeeID": 2, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 62.78, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 18, + "UnitPrice": 62.5, "Quantity": 25, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 80, + "Discount": 0.1 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10727, - "EmployeeID": 2, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-12-01T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", + "OrderID": 10567, + "EmployeeID": 1, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-17T00:00:00", "ShipVia": 1, - "Freight": 89.9, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0.06 + "Freight": 33.97, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, + "Discount": 0 }, { "ProductID": 59, "UnitPrice": 55, - "Quantity": 10, - "Discount": 0.06 + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10728, - "EmployeeID": 4, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-11-11T00:00:00", - "ShipVia": 2, - "Freight": 58.33, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10646, + "EmployeeID": 9, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 142.33, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 15, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 12, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10729, - "EmployeeID": 8, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", + "OrderID": 10661, + "EmployeeID": 7, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", "ShipVia": 3, - "Freight": 141.06, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 17.55, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 40, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 49, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10730, - "EmployeeID": 5, - "OrderDate": "1997-11-05T00:00:00", - "RequiredDate": "1997-12-03T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", - "ShipVia": 1, - "Freight": 20.12, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10687, + "EmployeeID": 9, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-30T00:00:00", + "ShipVia": 2, + "Freight": 296.43, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 50, + "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 3, - "Discount": 0.06 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10731, - "EmployeeID": 7, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", - "ShipVia": 1, - "Freight": 96.65, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10701, + "EmployeeID": 6, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-10-27T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 3, + "Freight": 220.31, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.16 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10732, + "OrderID": 10712, "EmployeeID": 3, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", "ShipVia": 1, - "Freight": 16.97, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 89.93, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 29000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10733, - "EmployeeID": 1, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-10T00:00:00", - "ShipVia": 3, - "Freight": 110.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 27000, - "ShipCountry": "Sweden", + "OrderID": 10736, + "EmployeeID": 9, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 44.1, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 16, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 25, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10734, - "EmployeeID": 2, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-12T00:00:00", - "ShipVia": 3, - "Freight": 1.63, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 10897, + "EmployeeID": 3, + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-25T00:00:00", + "ShipVia": 2, + "Freight": 603.54, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 80, "Discount": 0 }, { "ProductID": 30, "UnitPrice": 25.89, - "Quantity": 15, + "Quantity": 36, "Discount": 0 + } + ] + }, + { + "OrderID": 10912, + "EmployeeID": 2, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 580.91, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10735, - "EmployeeID": 6, - "OrderDate": "1997-11-10T00:00:00", - "RequiredDate": "1997-12-08T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 2, - "Freight": 45.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10985, + "EmployeeID": 2, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 91.51, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 36, "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 35, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10736, - "EmployeeID": 9, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderID": 11063, + "EmployeeID": 3, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", "ShipVia": 2, - "Freight": 44.1, + "Freight": 81.73, "ShipName": "Hungry Owl All-Night Grocers", "ShipAddress": "8 Johnstown Road", "ShipCity": "Cork", @@ -22433,315 +13752,351 @@ "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 40, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", + "CustomerID": "WANDK", + "Company": "Die Wandernde Kuh", + "ContactName": "Rita Müller", + "ContactTitle": "Sales Representative", + "Address": "Adenauerallee 900", + "City": "Stuttgart", + "PostalCode": 70563, + "Country": "Germany", + "Phone": "0711-020361", + "Fax": "0711-035428", "Orders": [ { - "OrderID": 10737, - "EmployeeID": 2, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10301, + "EmployeeID": 8, + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", "ShipVia": 2, - "Freight": 7.79, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 45.08, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 4, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 10738, + "OrderID": 10312, "EmployeeID": 2, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 1, - "Freight": 2.91, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "OrderDate": "1996-09-23T00:00:00", + "RequiredDate": "1996-10-21T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 40.26, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10739, - "EmployeeID": 3, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-17T00:00:00", - "ShipVia": 3, - "Freight": 11.08, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "OrderID": 10348, + "EmployeeID": 4, + "OrderDate": "1996-11-07T00:00:00", + "RequiredDate": "1996-12-05T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 2, + "Freight": 0.78, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 18, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10740, - "EmployeeID": 4, - "OrderDate": "1997-11-13T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", - "ShipVia": 2, - "Freight": 81.88, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10356, + "EmployeeID": 6, + "OrderDate": "1996-11-18T00:00:00", + "RequiredDate": "1996-12-16T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", + "ShipVia": 2, + "Freight": 36.71, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 5, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10513, + "EmployeeID": 7, + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-06-03T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", + "ShipVia": 1, + "Freight": 105.65, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, "Quantity": 40, "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 15, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10741, - "EmployeeID": 4, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 3, - "Freight": 10.96, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 13000, - "ShipCountry": "UK", + "OrderID": 10632, + "EmployeeID": 8, + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 1, + "Freight": 41.38, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 19, - "Quantity": 15, - "Discount": 0.2 + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 14000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10742, - "EmployeeID": 3, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-12-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 3, - "Freight": 243.73, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 25000, - "ShipCountry": "Canada", + "OrderID": 10640, + "EmployeeID": 4, + "OrderDate": "1997-08-21T00:00:00", + "RequiredDate": "1997-09-18T00:00:00", + "ShippedDate": "1997-08-28T00:00:00", + "ShipVia": 1, + "Freight": 23.55, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, + "ProductID": 69, + "UnitPrice": 36, "Quantity": 20, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10651, + "EmployeeID": 8, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 20.6, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, - "Discount": 0 + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10743, + "OrderID": 10668, "EmployeeID": 1, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 48000, - "ShipCountry": "UK", + "Freight": 47.22, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 15, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11046, + "EmployeeID": 8, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 71.64, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 28, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 18, "Discount": 0.06 } ] @@ -22749,394 +14104,328 @@ ] }, { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", + "CustomerID": "GODOS", + "Company": "Godos Cocina Típica", + "ContactName": "José Pedro Freyre", "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", + "Address": "C/ Romero, 33", + "City": "Sevilla", + "PostalCode": 41101, + "Country": "Spain", + "Phone": "(95) 555 82 82", "Orders": [ { - "OrderID": 10744, - "EmployeeID": 6, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", - "ShipVia": 1, - "Freight": 69.19, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderID": 10303, + "EmployeeID": 7, + "OrderDate": "1996-09-11T00:00:00", + "RequiredDate": "1996-10-09T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 107.83, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0.2 + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10745, - "EmployeeID": 9, - "OrderDate": "1997-11-18T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 1, - "Freight": 3.52, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10550, + "EmployeeID": 7, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-06-25T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 3, + "Freight": 4.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 24, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 45, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10746, - "EmployeeID": 1, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderID": 10629, + "EmployeeID": 4, + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", "ShipVia": 3, - "Freight": 31.43, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 85.46, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 64, + "UnitPrice": 33.25, "Quantity": 9, "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 40, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10747, - "EmployeeID": 6, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-26T00:00:00", - "ShipVia": 1, - "Freight": 117.33, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10872, + "EmployeeID": 5, + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 2, + "Freight": 175.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 9, - "Discount": 0 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10748, - "EmployeeID": 3, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", - "ShipVia": 1, - "Freight": 232.55, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10874, + "EmployeeID": 5, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", + "ShipVia": 2, + "Freight": 19.58, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 44, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 36000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10749, - "EmployeeID": 4, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", + "OrderID": 10888, + "EmployeeID": 1, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 2, - "Freight": 61.53, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40198, - "ShipPostalCode": 33000, - "ShipCountry": "UK", + "Freight": 51.87, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 6, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10750, - "EmployeeID": 9, - "OrderDate": "1997-11-21T00:00:00", - "RequiredDate": "1997-12-19T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", + "OrderID": 10911, + "EmployeeID": 3, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", "ShipVia": 1, - "Freight": 79.3, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 38.19, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 5, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10751, + "OrderID": 10948, "EmployeeID": 3, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-12-03T00:00:00", + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 3, - "Freight": 130.79, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 23.39, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11009, + "EmployeeID": 2, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 59.11, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 18, + "Discount": 0.25 }, { - "ProductID": 73, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 11037, + "EmployeeID": 7, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 3.2, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 70, "UnitPrice": 15, - "Quantity": 15, + "Quantity": 4, "Discount": 0 } ] @@ -23144,721 +14433,563 @@ ] }, { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 15000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", + "CustomerID": "OLDWO", + "Company": "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", "Orders": [ { - "OrderID": 10752, - "EmployeeID": 2, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", + "OrderID": 10305, + "EmployeeID": 8, + "OrderDate": "1996-09-13T00:00:00", + "RequiredDate": "1996-10-11T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", "ShipVia": 3, - "Freight": 1.39, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "Freight": 257.62, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 3, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10753, - "EmployeeID": 3, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 1, - "Freight": 7.7, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10338, + "EmployeeID": 4, + "OrderDate": "1996-10-25T00:00:00", + "RequiredDate": "1996-11-22T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", + "ShipVia": 3, + "Freight": 84.21, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 4, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10754, - "EmployeeID": 6, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 3, - "Freight": 2.38, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10441, + "EmployeeID": 3, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-24T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 2, + "Freight": 73.02, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 3, + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10755, - "EmployeeID": 4, - "OrderDate": "1997-11-26T00:00:00", - "RequiredDate": "1997-12-24T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", + "OrderID": 10594, + "EmployeeID": 3, + "OrderDate": "1997-07-09T00:00:00", + "RequiredDate": "1997-08-06T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", "ShipVia": 2, - "Freight": 16.71, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 5.24, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 58, + "UnitPrice": 13.25, "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10680, + "EmployeeID": 1, + "OrderDate": "1997-09-24T00:00:00", + "RequiredDate": "1997-10-22T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 1, + "Freight": 26.61, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 14, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0.25 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 25, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10756, + "OrderID": 10706, "EmployeeID": 8, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-02T00:00:00", - "ShipVia": 2, - "Freight": 73.21, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-11-13T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 3, + "Freight": 135.63, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10757, - "EmployeeID": 6, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 1, - "Freight": 8.19, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "OrderID": 10808, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 45.53, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 30, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 24, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10758, + "OrderID": 10855, "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-04T00:00:00", - "ShipVia": 3, - "Freight": 138.17, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 170.97, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 60, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 24, "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10759, - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", + "OrderID": 10965, + "EmployeeID": 6, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", "ShipVia": 3, - "Freight": 11.99, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 144.38, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 38000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10760, - "EmployeeID": 4, - "OrderDate": "1997-12-01T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1997-12-10T00:00:00", + "OrderID": 11034, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", "ShipVia": 1, - "Freight": 155.64, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 12000, - "ShipCountry": "Belgium", + "Freight": 40.32, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 40, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 6, + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, + "CustomerID": "LONEP", + "Company": "Lonesome Pine Restaurant", + "ContactName": "Fran Wilson", + "ContactTitle": "Sales Manager", + "Address": "89 Chiaroscuro Rd.", + "City": "Portland", + "Region": "OR", + "PostalCode": 97219, "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "Phone": "(503) 555-9573", + "Fax": "(503) 555-9646", "Orders": [ { - "OrderID": 10761, - "EmployeeID": 5, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", + "OrderID": 10307, + "EmployeeID": 2, + "OrderDate": "1996-09-17T00:00:00", + "RequiredDate": "1996-10-15T00:00:00", + "ShippedDate": "1996-09-25T00:00:00", "ShipVia": 2, - "Freight": 18.66, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, + "Freight": 0.56, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 18, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 34000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10762, - "EmployeeID": 3, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", + "OrderID": 10317, + "EmployeeID": 6, + "OrderDate": "1996-09-30T00:00:00", + "RequiredDate": "1996-10-28T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", "ShipVia": 1, - "Freight": 328.74, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", + "Freight": 12.69, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 16, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10544, + "EmployeeID": 4, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 24.91, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 28, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 7, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10662, + "EmployeeID": 3, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 2, + "Freight": 1.28, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10763, - "EmployeeID": 3, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", - "ShipVia": 3, - "Freight": 37.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "OrderID": 10665, + "EmployeeID": 1, + "OrderDate": "1997-09-11T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-17T00:00:00", + "ShipVia": 2, + "Freight": 26.31, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 6, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10764, + "OrderID": 10867, "EmployeeID": 6, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", - "ShipVia": 3, - "Freight": 145.45, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", + "ShipVia": 1, + "Freight": 1.93, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 130, - "Discount": 0.1 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10765, - "EmployeeID": 3, - "OrderDate": "1997-12-04T00:00:00", - "RequiredDate": "1998-01-01T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", + "OrderID": 10883, + "EmployeeID": 8, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 3, - "Freight": 42.74, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 0.53, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 80, - "Discount": 0.1 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10766, + "OrderID": 11018, "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 1, - "Freight": 157.55, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 2, + "Freight": 11.65, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, "Discount": 0 }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10767, - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 3, - "Freight": 1.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 2, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, "Discount": 0 } ] @@ -23866,108 +14997,137 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 43000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "CustomerID": "ANATR", + "Company": "Ana Trujillo Emparedados y helados", + "ContactName": "Ana Trujillo", + "ContactTitle": "Owner", + "Address": "Avda. de la Constitución 2222", + "City": "México D.F.", + "PostalCode": 5021, + "Country": "Mexico", + "Phone": "(5) 555-4729", + "Fax": "(5) 555-3745", "Orders": [ { - "OrderID": 10768, - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 2, - "Freight": 146.32, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 32000, - "ShipCountry": "UK", + "OrderID": 10308, + "EmployeeID": 7, + "OrderDate": "1996-09-18T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-24T00:00:00", + "ShipVia": 3, + "Freight": 1.61, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 4, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10625, + "EmployeeID": 3, + "OrderDate": "1997-08-08T00:00:00", + "RequiredDate": "1997-09-05T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", + "ShipVia": 1, + "Freight": 43.9, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10769, + "OrderID": 10759, "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 65.06, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "ShipVia": 3, + "Freight": 11.99, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10926, + "EmployeeID": 4, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 39.92, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, "Discount": 0 } ] @@ -23975,115 +15135,123 @@ ] }, { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", + "CustomerID": "THEBI", + "Company": "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", "Orders": [ { - "OrderID": 10770, + "OrderID": 10310, "EmployeeID": 8, - "OrderDate": "1997-12-09T00:00:00", - "RequiredDate": "1998-01-06T00:00:00", - "ShippedDate": "1997-12-17T00:00:00", - "ShipVia": 3, - "Freight": 5.32, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-18T00:00:00", + "ShippedDate": "1996-09-27T00:00:00", + "ShipVia": 2, + "Freight": 17.52, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 5, + "Discount": 0 + } + ] + }, { - "OrderID": 10771, - "EmployeeID": 9, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", + "OrderID": 10708, + "EmployeeID": 6, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 11.19, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 2.96, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10772, - "EmployeeID": 3, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 2, - "Freight": 91.28, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10805, + "EmployeeID": 2, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 237.34, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 18, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10992, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 4.27, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 2, "Discount": 0 } ] @@ -24091,132 +15259,131 @@ ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "DUMON", + "Company": "Du monde entier", + "ContactName": "Janine Labrune", + "ContactTitle": "Owner", + "Address": "67, rue des Cinquante Otages", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.67.88.88", + "Fax": "40.67.89.89", "Orders": [ { - "OrderID": 10773, + "OrderID": 10311, "EmployeeID": 1, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1998-01-08T00:00:00", - "ShippedDate": "1997-12-16T00:00:00", + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-26T00:00:00", "ShipVia": 3, - "Freight": 96.43, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 24.69, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 33, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 70, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 69, + "UnitPrice": 28.8, "Quantity": 7, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 18000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10774, - "EmployeeID": 4, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 48.2, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 20000, - "ShipCountry": "Sweden", + "OrderID": 10609, + "EmployeeID": 7, + "OrderDate": "1997-07-24T00:00:00", + "RequiredDate": "1997-08-21T00:00:00", + "ShippedDate": "1997-07-30T00:00:00", + "ShipVia": 2, + "Freight": 1.85, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 50, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "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", - "Orders": [ + }, + { + "OrderID": 10683, + "EmployeeID": 2, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 1, + "Freight": 4.4, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 9, + "Discount": 0 + } + ] + }, { - "OrderID": 10775, + "OrderID": 10890, "EmployeeID": 7, - "OrderDate": "1997-12-12T00:00:00", - "RequiredDate": "1998-01-09T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 1, - "Freight": 20.25, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "Freight": 32.76, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 6, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 67, + "ProductID": 34, "UnitPrice": 14, - "Quantity": 3, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, "Discount": 0 } ] @@ -24224,1031 +15391,791 @@ ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "ISLAT", + "Company": "Island Trading", + "ContactName": "Helen Bennett", + "ContactTitle": "Marketing Manager", + "Address": "Garden House Crowther Way", + "City": "Cowes", + "Region": "Northeast", + "PostalCode": 42000, + "Country": "UK", + "Phone": "(198) 555-8888", "Orders": [ { - "OrderID": 10776, - "EmployeeID": 1, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1998-01-12T00:00:00", - "ShippedDate": "1997-12-18T00:00:00", - "ShipVia": 3, - "Freight": 351.53, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10315, + "EmployeeID": 4, + "OrderDate": "1996-09-26T00:00:00", + "RequiredDate": "1996-10-24T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 41.76, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40301, + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 27, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 120, - "Discount": 0.06 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10777, - "EmployeeID": 7, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", + "OrderID": 10318, + "EmployeeID": 8, + "OrderDate": "1996-10-01T00:00:00", + "RequiredDate": "1996-10-29T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", "ShipVia": 2, - "Freight": 3.01, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 4.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 30575, + "ShipPostalCode": 43000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 18000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10778, + "OrderID": 10321, "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 1, - "Freight": 6.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 13000, - "ShipCountry": "Sweden", + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-31T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 2, + "Freight": 3.43, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 80331, + "ShipPostalCode": 24000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, + "ProductID": 35, + "UnitPrice": 14.4, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10779, - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 2, - "Freight": 58.13, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "OrderID": 10473, + "EmployeeID": 1, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", + "ShipVia": 3, + "Freight": 16.37, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60471, + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10780, - "EmployeeID": 2, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-25T00:00:00", - "ShipVia": 1, - "Freight": 42.13, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10621, + "EmployeeID": 4, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 2, + "Freight": 23.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 90304, + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 35, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10781, - "EmployeeID": 2, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 3, - "Freight": 73.16, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 35, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10782, - "EmployeeID": 9, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 1.1, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10674, + "EmployeeID": 4, + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 2, + "Freight": 0.9, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60688, + "ShipPostalCode": 25000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 1, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10783, + "OrderID": 10749, "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", "ShippedDate": "1997-12-19T00:00:00", "ShipVia": 2, - "Freight": 124.98, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 61.53, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40198, + "ShipPostalCode": 33000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10784, - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 70.09, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10798, + "EmployeeID": 2, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 1, + "Freight": 2.33, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 50129, + "ShipPostalCode": 12000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 2, - "Discount": 0.16 + "Discount": 0 }, { "ProductID": 72, "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0.16 + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10785, - "EmployeeID": 1, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 3, - "Freight": 1.51, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", + "OrderID": 10829, + "EmployeeID": 9, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-10T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 1, + "Freight": 154.72, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 20759, + "ShipPostalCode": 13000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 10, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10786, - "EmployeeID": 8, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-16T00:00:00", - "ShippedDate": "1997-12-23T00:00:00", - "ShipVia": 1, - "Freight": 110.87, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10933, + "EmployeeID": 6, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 3, + "Freight": 54.15, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40216, + "ShipPostalCode": 24000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 42, - "Discount": 0.2 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0 } ] } ] }, { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", + "CustomerID": "PERIC", + "Company": "Pericles Comidas clásicas", + "ContactName": "Guillermo Fernández", + "ContactTitle": "Sales Representative", + "Address": "Calle Dr. Jorge Cash 321", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 552-3745", + "Fax": "(5) 545-3745", "Orders": [ { - "OrderID": 10787, - "EmployeeID": 2, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 249.93, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10322, + "EmployeeID": 7, + "OrderDate": "1996-10-04T00:00:00", + "RequiredDate": "1996-11-01T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 3, + "Freight": 0.4, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 52, + "UnitPrice": 5.6, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10788, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 42.7, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10354, + "EmployeeID": 8, + "OrderDate": "1996-11-14T00:00:00", + "RequiredDate": "1996-12-12T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 3, + "Freight": 53.8, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10789, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", + "OrderID": 10474, + "EmployeeID": 5, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-04-10T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", "ShipVia": 2, - "Freight": 100.6, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 83.49, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 30, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 15, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10790, - "EmployeeID": 6, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", + "OrderID": 10502, + "EmployeeID": 2, + "OrderDate": "1997-04-10T00:00:00", + "RequiredDate": "1997-05-08T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 1, - "Freight": 28.23, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 69.32, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 3, - "Discount": 0.16 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10995, + "EmployeeID": 1, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", + "ShipVia": 3, + "Freight": 46, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 51, + "UnitPrice": 53, "Quantity": 20, - "Discount": 0.16 + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10791, - "EmployeeID": 6, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-01T00:00:00", + "OrderID": 11073, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", "ShipVia": 2, - "Freight": 16.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 24.95, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, - "Discount": 0.06 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 } ] } ] }, { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", + "CustomerID": "KOENE", + "Company": "Königlich Essen", + "ContactName": "Philip Cramer", + "ContactTitle": "Sales Associate", + "Address": "Maubelstr. 90", + "City": "Brandenburg", + "PostalCode": 14776, + "Country": "Germany", + "Phone": "0555-09876", "Orders": [ { - "OrderID": 10792, - "EmployeeID": 1, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 3, - "Freight": 23.79, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10323, + "EmployeeID": 4, + "OrderDate": "1996-10-07T00:00:00", + "RequiredDate": "1996-11-04T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 4.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 18000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10793, - "EmployeeID": 3, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", + "OrderID": 10325, + "EmployeeID": 1, + "OrderDate": "1996-10-09T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", "ShipVia": 3, - "Freight": 4.52, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "Freight": 64.86, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 12, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ - { - "OrderID": 10794, - "EmployeeID": 6, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 1, - "Freight": 21.49, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ + }, { "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.2 + "UnitPrice": 18.6, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10795, + "OrderID": 10456, "EmployeeID": 8, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-20T00:00:00", + "OrderDate": "1997-02-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", "ShipVia": 2, - "Freight": 126.66, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 8.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 65, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 21, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10796, + "OrderID": 10468, "EmployeeID": 3, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 1, - "Freight": 26.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderDate": "1997-03-07T00:00:00", + "RequiredDate": "1997-04-04T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 44.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 21, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10506, + "EmployeeID": 9, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 21.19, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 14, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10542, + "EmployeeID": 1, + "OrderDate": "1997-05-20T00:00:00", + "RequiredDate": "1997-06-17T00:00:00", + "ShippedDate": "1997-05-26T00:00:00", + "ShipVia": 3, + "Freight": 10.95, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 24, - "Discount": 0.2 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10797, - "EmployeeID": 7, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", + "OrderID": 10630, + "EmployeeID": 1, + "OrderDate": "1997-08-13T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", "ShipVia": 2, - "Freight": 33.35, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, + "Freight": 32.35, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10798, - "EmployeeID": 2, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 1, - "Freight": 2.33, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 50129, - "ShipPostalCode": 12000, - "ShipCountry": "UK", + "OrderID": 10718, + "EmployeeID": 1, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 3, + "Freight": 170.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 2, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { "OrderID": 10799, "EmployeeID": 9, @@ -25282,723 +16209,469 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10800, - "EmployeeID": 1, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 3, - "Freight": 137.44, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 50000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 7, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ - { - "OrderID": 10801, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 2, - "Freight": 97.09, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10802, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", + "OrderID": 10817, + "EmployeeID": 3, + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", "ShipVia": 2, - "Freight": 257.26, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 306.07, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 38, + "UnitPrice": 263.5, "Quantity": 30, - "Discount": 0.25 + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 40, + "UnitPrice": 18.4, "Quantity": 60, - "Discount": 0.25 + "Discount": 0.16 }, { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 5, - "Discount": 0.25 + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10803, - "EmployeeID": 4, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-06T00:00:00", - "ShipVia": 1, - "Freight": 55.23, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderID": 10849, + "EmployeeID": 9, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 2, + "Freight": 0.56, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 24, - "Discount": 0.06 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 49, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 18, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10804, - "EmployeeID": 6, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", + "OrderID": 10893, + "EmployeeID": 9, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 2, - "Freight": 27.33, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 20000, - "ShipCountry": "UK", + "Freight": 77.78, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 36, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 24, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 4, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ - { - "OrderID": 10805, - "EmployeeID": 2, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 3, - "Freight": 237.34, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", - "OrderDetails": [ + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 24, + "Discount": 0 + }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 10, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10806, - "EmployeeID": 3, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 2, - "Freight": 22.11, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 11028, + "EmployeeID": 2, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 1, + "Freight": 29.59, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 2, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 24, + "Discount": 0 } ] } ] }, { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", + "CustomerID": "SAVEA", + "Company": "Save-a-lot Markets", + "ContactName": "Jose Pavarotti", "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", + "Address": "187 Suffolk Ln.", + "City": "Boise", + "Region": "ID", + "PostalCode": 83720, + "Country": "USA", + "Phone": "(208) 555-8097", "Orders": [ { - "OrderID": 10807, - "EmployeeID": 4, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10324, + "EmployeeID": 9, + "OrderDate": "1996-10-08T00:00:00", + "RequiredDate": "1996-11-05T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "Freight": 214.27, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 1, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 21, + "Discount": 0.16 + }, + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 70, + "Discount": 0.16 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 80, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10808, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", + "OrderID": 10393, + "EmployeeID": 1, + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", "ShipVia": 3, - "Freight": 45.53, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "Freight": 126.56, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 42, + "Discount": 0.25 + }, + { + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 7, + "Discount": 0.25 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 70, + "Discount": 0.25 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 32, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10809, - "EmployeeID": 7, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 1, - "Freight": 4.87, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderID": 10398, + "EmployeeID": 2, + "OrderDate": "1996-12-30T00:00:00", + "RequiredDate": "1997-01-27T00:00:00", + "ShippedDate": "1997-01-09T00:00:00", + "ShipVia": 3, + "Freight": 89.16, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 120, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 42000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ + }, { - "OrderID": 10810, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 3, - "Freight": 4.33, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10440, + "EmployeeID": 4, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-10T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 86.53, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 45, + "Discount": 0.16 + }, + { + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 49, + "Discount": 0.16 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 5, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 90, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10811, + "OrderID": 10452, "EmployeeID": 8, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", + "OrderDate": "1997-02-20T00:00:00", + "RequiredDate": "1997-03-20T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", "ShipVia": 1, - "Freight": 31.22, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 140.26, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 15, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 100, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10812, - "EmployeeID": 5, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 1, - "Freight": 59.78, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10510, + "EmployeeID": 6, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", + "ShipVia": 3, + "Freight": 367.63, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.1 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 40, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 36, "Discount": 0.1 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10813, - "EmployeeID": 1, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 1, - "Freight": 47.38, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10555, + "EmployeeID": 6, + "OrderDate": "1997-06-02T00:00:00", + "RequiredDate": "1997-06-30T00:00:00", + "ShippedDate": "1997-06-04T00:00:00", + "ShipVia": 3, + "Freight": 252.49, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 46, - "UnitPrice": 12, + "ProductID": 19, + "UnitPrice": 9.2, "Quantity": 35, - "Discount": 0 + "Discount": 0.2 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 18, + "Discount": 0.2 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10814, - "EmployeeID": 3, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 130.94, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10603, + "EmployeeID": 8, + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 2, + "Freight": 48.77, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 48, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 8, - "Discount": 0.16 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10815, - "EmployeeID": 2, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 14.62, + "OrderID": 10607, + "EmployeeID": 5, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 1, + "Freight": 200.24, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -26006,2194 +16679,1895 @@ "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 100, + "Discount": 0 + }, { "ProductID": 33, "UnitPrice": 2.5, - "Quantity": 16, + "Quantity": 14, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ - { - "OrderID": 10816, - "EmployeeID": 4, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-02-03T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 2, - "Freight": 719.78, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 42, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10817, - "EmployeeID": 3, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", + "OrderID": 10612, + "EmployeeID": 1, + "OrderDate": "1997-07-28T00:00:00", + "RequiredDate": "1997-08-25T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 306.07, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 544.08, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0.16 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 40, + "Discount": 0 }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0 + } + ] + }, + { + "OrderID": 10627, + "EmployeeID": 8, + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 107.46, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 25, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10818, - "EmployeeID": 7, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 3, - "Freight": 65.48, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10657, + "EmployeeID": 2, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", + "ShipVia": 2, + "Freight": 352.69, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 50, "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 20, + "Quantity": 24, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10819, - "EmployeeID": 2, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 19.76, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ + }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 7, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10820, - "EmployeeID": 3, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 37.52, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ + }, { "ProductID": 56, "UnitPrice": 38, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10821, - "EmployeeID": 1, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-15T00:00:00", - "ShipVia": 1, - "Freight": 36.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, + "OrderID": 10678, + "EmployeeID": 7, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", + "ShipVia": 3, + "Freight": 388.98, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 100, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 6, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "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", - "Orders": [ - { - "OrderID": 10822, - "EmployeeID": 6, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 7, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 120, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10823, - "EmployeeID": 5, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 163.97, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10700, + "EmployeeID": 3, + "OrderDate": "1997-10-10T00:00:00", + "RequiredDate": "1997-11-07T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", + "ShipVia": 1, + "Freight": 65.1, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 40, - "Discount": 0.1 + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 46000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10824, - "EmployeeID": 8, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 1.23, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 23000, - "ShipCountry": "Sweden", + "OrderID": 10711, + "EmployeeID": 5, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 2, + "Freight": 52.41, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0 + }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 12, + "Quantity": 42, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 9, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 120, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10825, + "OrderID": 10713, "EmployeeID": 1, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", + "OrderDate": "1997-10-22T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-24T00:00:00", "ShipVia": 1, - "Freight": 79.25, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 167.05, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0 + }, { "ProductID": 26, "UnitPrice": 31.23, - "Quantity": 12, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 20, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 110, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10826, - "EmployeeID": 6, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", + "OrderID": 10722, + "EmployeeID": 8, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-04T00:00:00", "ShipVia": 1, - "Freight": 7.09, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 74.58, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 3, + "Discount": 0 + }, { "ProductID": 31, "UnitPrice": 12.5, - "Quantity": 35, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10827, - "EmployeeID": 1, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", - "ShipVia": 2, - "Freight": 63.54, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10748, + "EmployeeID": 3, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", + "ShipVia": 1, + "Freight": 232.55, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 44, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, + "Discount": 0 + } + ] + }, + { + "OrderID": 10757, + "EmployeeID": 6, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 1, + "Freight": 8.19, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 15, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10828, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 1, - "Freight": 90.85, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10815, + "EmployeeID": 2, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 3, + "Freight": 14.62, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, "Discount": 0 + } + ] + }, + { + "OrderID": 10847, + "EmployeeID": 4, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 3, + "Freight": 487.57, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.2 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 2, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0.2 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 60, + "Discount": 0.2 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 36, + "Discount": 0.2 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 45, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 55, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10829, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-10T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 1, - "Freight": 154.72, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 20759, - "ShipPostalCode": 13000, - "ShipCountry": "UK", + "OrderID": 10882, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 3, + "Freight": 23.1, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 8, - "UnitPrice": 40, + "ProductID": 49, + "UnitPrice": 20, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 32, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10894, + "EmployeeID": 1, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 1, + "Freight": 116.13, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { "ProductID": 13, "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 + "Quantity": 28, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 120, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10830, - "EmployeeID": 4, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", + "OrderID": 10941, + "EmployeeID": 7, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 81.83, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "Freight": 400.81, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 28, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 44, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 30, - "Discount": 0 + "Discount": 0.25 }, { "ProductID": 68, "UnitPrice": 12.5, - "Quantity": 24, + "Quantity": 80, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10831, - "EmployeeID": 3, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderID": 10983, + "EmployeeID": 2, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", "ShipVia": 2, - "Freight": 72.19, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 657.54, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 8, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 84, + "Discount": 0.16 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 9, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10832, - "EmployeeID": 2, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 43.26, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 11002, + "EmployeeID": 4, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 1, + "Freight": 141.16, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 13, "UnitPrice": 6, - "Quantity": 3, - "Discount": 0.2 + "Quantity": 56, + "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0.2 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 3, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10833, - "EmployeeID": 6, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderID": 11030, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", "ShipVia": 2, - "Freight": 71.49, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 830.75, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 9, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 100, + "Discount": 0.25 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 9, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10834, - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 3, - "Freight": 29.78, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 70, + "Discount": 0 + }, { "ProductID": 29, "UnitPrice": 123.79, - "Quantity": 8, - "Discount": 0.06 + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 100, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10835, + "OrderID": 11064, "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 3, - "Freight": 69.53, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 30.09, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 77, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 55, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "BOLID", + "Company": "Bólido Comidas preparadas", + "ContactName": "Martín Sommer", + "ContactTitle": "Owner", + "Address": "C/ Araquil, 67", + "City": "Madrid", + "PostalCode": 28023, + "Country": "Spain", + "Phone": "(91) 555 22 82", + "Fax": "(91) 555 91 99", "Orders": [ { - "OrderID": 10836, - "EmployeeID": 7, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 1, - "Freight": 411.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10326, + "EmployeeID": 4, + "OrderDate": "1996-10-10T00:00:00", + "RequiredDate": "1996-11-07T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 2, + "Freight": 77.92, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 52, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 6, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 24, "Discount": 0 }, { "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 24, + "UnitPrice": 15.6, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 60, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 50, "Discount": 0 + } + ] + }, + { + "OrderID": 10801, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 2, + "Freight": 97.09, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10970, + "EmployeeID": 9, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 1, + "Freight": 16.16, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 40, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "FURIB", + "Company": "Furia Bacalhau e Frutos do Mar", + "ContactName": "Lino Rodriguez", + "ContactTitle": "Sales Manager", + "Address": "Jardim das rosas n. 32", + "City": "Lisboa", + "PostalCode": 1675, + "Country": "Portugal", + "Phone": "(1) 354-2534", + "Fax": "(1) 354-2535", "Orders": [ { - "OrderID": 10837, - "EmployeeID": 9, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderID": 10328, + "EmployeeID": 4, + "OrderDate": "1996-10-14T00:00:00", + "RequiredDate": "1996-11-11T00:00:00", + "ShippedDate": "1996-10-17T00:00:00", "ShipVia": 3, - "Freight": 13.32, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 44000, - "ShipCountry": "Sweden", + "Freight": 87.03, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 65, + "UnitPrice": 16.8, "Quantity": 40, - "Discount": 0.25 + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10838, + "OrderID": 10352, "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderDate": "1996-11-12T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-18T00:00:00", "ShipVia": 3, - "Freight": 59.28, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 1.3, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10839, - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-22T00:00:00", - "ShipVia": 3, - "Freight": 35.43, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "OrderID": 10464, + "EmployeeID": 4, + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 2, + "Freight": 89, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 16, + "Discount": 0.2 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, "Quantity": 30, - "Discount": 0.1 + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10840, - "EmployeeID": 4, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", - "ShipVia": 2, - "Freight": 2.71, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10491, + "EmployeeID": 8, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-08T00:00:00", + "ShipVia": 3, + "Freight": 16.96, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10841, - "EmployeeID": 5, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 2, - "Freight": 424.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10551, + "EmployeeID": 4, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 3, + "Freight": 72.95, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 50, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 40, "Discount": 0 + } + ] + }, + { + "OrderID": 10604, + "EmployeeID": 1, + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", + "ShipVia": 1, + "Freight": 7.46, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 6, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10842, + "OrderID": 10664, "EmployeeID": 1, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", "ShipVia": 3, - "Freight": 54.42, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 1.27, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 5, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 12, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10843, - "EmployeeID": 4, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 9.26, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10963, + "EmployeeID": 9, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 3, + "Freight": 2.7, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", + "CustomerID": "BONAP", + "Company": "Bon app'", + "ContactName": "Laurence Lebihan", + "ContactTitle": "Owner", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", "Orders": [ { - "OrderID": 10844, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 25.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10331, + "EmployeeID": 9, + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-27T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", + "ShipVia": 1, + "Freight": 10.19, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 35, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10845, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 212.98, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10340, + "EmployeeID": 1, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 166.31, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.1 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 42, - "Discount": 0.1 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 48, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 40, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10846, - "EmployeeID": 2, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 56.46, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10362, + "EmployeeID": 3, + "OrderDate": "1996-11-25T00:00:00", + "RequiredDate": "1996-12-23T00:00:00", + "ShippedDate": "1996-11-28T00:00:00", + "ShipVia": 1, + "Freight": 96.04, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 21, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10847, + "OrderID": 10470, "EmployeeID": 4, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 3, - "Freight": 487.57, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 2, + "Freight": 64.56, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.2 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 60, - "Discount": 0.2 - }, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10511, + "EmployeeID": 4, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 350.64, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 36, - "Discount": 0.2 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 55, - "Discount": 0.2 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ + }, { - "OrderID": 10848, - "EmployeeID": 7, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", + "OrderID": 10525, + "EmployeeID": 1, + "OrderDate": "1997-05-02T00:00:00", + "RequiredDate": "1997-05-30T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", "ShipVia": 2, - "Freight": 38.24, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 39000, - "ShipCountry": "UK", + "Freight": 11.06, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 30, "Discount": 0 }, { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 3, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10849, - "EmployeeID": 9, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10663, + "EmployeeID": 2, + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-09-24T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 113.15, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 49, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 18, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10850, - "EmployeeID": 1, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10715, + "EmployeeID": 3, + "OrderDate": "1997-10-23T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 1, - "Freight": 49.19, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, + "Freight": 63.2, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 4, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 71, + "UnitPrice": 21.5, "Quantity": 30, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10851, + "OrderID": 10730, "EmployeeID": 5, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-23T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderDate": "1997-11-05T00:00:00", + "RequiredDate": "1997-12-03T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", "ShipVia": 1, - "Freight": 160.55, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 20.12, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, "Discount": 0.06 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 3, "Discount": 0.06 }, { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 65, + "UnitPrice": 21.05, "Quantity": 10, "Discount": 0.06 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, - "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10852, - "EmployeeID": 8, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10732, + "EmployeeID": 3, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", "ShipVia": 1, - "Freight": 174.05, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 16.97, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 + } + ] + }, + { + "OrderID": 10755, + "EmployeeID": 4, + "OrderDate": "1997-11-26T00:00:00", + "RequiredDate": "1997-12-24T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", + "ShipVia": 2, + "Freight": 16.71, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 14, + "Discount": 0.25 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 25, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10827, + "EmployeeID": 1, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 2, + "Freight": 63.54, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 50, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10853, + "OrderID": 10871, "EmployeeID": 9, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", "ShipVia": 2, - "Freight": 53.83, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "Freight": 112.27, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, - "Discount": 0 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10854, - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-05T00:00:00", - "ShipVia": 2, - "Freight": 100.22, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10876, + "EmployeeID": 7, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 60.42, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 100, - "Discount": 0.16 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10855, - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", + "OrderID": 10932, + "EmployeeID": 8, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 1, - "Freight": 170.97, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 134.64, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 16, "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0 + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 14, + "Discount": 0.1 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 24, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10940, + "EmployeeID": 8, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 3, + "Freight": 19.77, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10856, - "EmployeeID": 3, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", + "OrderID": 11076, + "EmployeeID": 4, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", "ShipVia": 2, - "Freight": 58.43, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "Freight": 38.28, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, + "Discount": 0.25 + }, + { + "ProductID": 14, + "UnitPrice": 23.25, "Quantity": 20, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, + "Discount": 0.25 } ] } ] }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 33000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "MEREP", + "Company": "Mère Paillarde", + "ContactName": "Jean Fresnière", + "ContactTitle": "Marketing Assistant", + "Address": "43 rue St. Laurent", + "City": "Montréal", + "Region": "Québec", + "PostalCode": 49000, + "Country": "Canada", + "Phone": "(514) 555-8054", + "Fax": "(514) 555-8055", "Orders": [ { - "OrderID": 10857, - "EmployeeID": 8, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", + "OrderID": 10332, + "EmployeeID": 3, + "OrderDate": "1996-10-17T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", "ShipVia": 2, - "Freight": 188.85, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 43000, - "ShipCountry": "Sweden", + "Freight": 52.84, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 36000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0.25 + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 16, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne d'abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de l'Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ + }, { - "OrderID": 10858, + "OrderID": 10339, "EmployeeID": 2, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", - "ShipVia": 1, - "Freight": 52.51, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "OrderDate": "1996-10-28T00:00:00", + "RequiredDate": "1996-11-25T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", + "ShipVia": 2, + "Freight": 15.66, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 10, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10859, + "OrderID": 10376, "EmployeeID": 1, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", "ShipVia": 2, - "Freight": 76.1, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 20.39, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 11000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 35, - "Discount": 0.25 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 42, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10860, - "EmployeeID": 3, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 3, - "Freight": 19.26, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10424, + "EmployeeID": 7, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-20T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 2, + "Freight": 370.61, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 49, + "Discount": 0.2 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10861, - "EmployeeID": 4, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-02-27T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", - "ShipVia": 2, - "Freight": 14.93, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10439, + "EmployeeID": 6, + "OrderDate": "1997-02-07T00:00:00", + "RequiredDate": "1997-03-07T00:00:00", + "ShippedDate": "1997-02-10T00:00:00", + "ShipVia": 3, + "Freight": 4.07, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 42, + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 35, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10505, + "EmployeeID": 3, + "OrderDate": "1997-04-14T00:00:00", + "RequiredDate": "1997-05-12T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 7.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 11000, + "ShipCountry": "Canada", + "OrderDetails": [ { "ProductID": 62, "UnitPrice": 49.3, @@ -28201,132 +18575,195 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10862, + "OrderID": 10565, "EmployeeID": 8, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderDate": "1997-06-11T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", "ShipVia": 2, - "Freight": 53.23, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 7.15, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 24000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 18, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10570, + "EmployeeID": 3, + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-19T00:00:00", + "ShipVia": 3, + "Freight": 188.99, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { "ProductID": 11, "UnitPrice": 21, - "Quantity": 25, - "Discount": 0 + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10863, + "OrderID": 10590, "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 3, + "Freight": 44.77, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 47000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 60, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10605, + "EmployeeID": 1, + "OrderDate": "1997-07-21T00:00:00", + "RequiredDate": "1997-08-18T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", "ShipVia": 2, - "Freight": 30.26, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 379.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 43000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 70, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10618, + "EmployeeID": 1, + "OrderDate": "1997-08-01T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 1, + "Freight": 154.68, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 49000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, "Quantity": 20, - "Discount": 0.16 + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10864, - "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", + "OrderID": 10724, + "EmployeeID": 8, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 3.04, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "Freight": 57.75, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 39000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] @@ -28334,372 +18771,367 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", + "CustomerID": "PRINI", + "Company": "Princesa Isabel Vinhos", + "ContactName": "Isabel de Castro", + "ContactTitle": "Sales Representative", + "Address": "Estrada da saúde n. 58", + "City": "Lisboa", + "PostalCode": 1756, + "Country": "Portugal", + "Phone": "(1) 356-5634", "Orders": [ { - "OrderID": 10865, - "EmployeeID": 2, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 1, - "Freight": 348.14, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10336, + "EmployeeID": 7, + "OrderDate": "1996-10-23T00:00:00", + "RequiredDate": "1996-11-20T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", + "ShipVia": 2, + "Freight": 15.51, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, - "Discount": 0.06 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 18, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10866, + "OrderID": 10397, "EmployeeID": 5, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-03T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-24T00:00:00", + "ShippedDate": "1997-01-02T00:00:00", "ShipVia": 1, - "Freight": 109.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "Freight": 60.26, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 6, - "Discount": 0.25 - }, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10433, + "EmployeeID": 3, + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 73.83, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 28, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10867, - "EmployeeID": 6, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 1, - "Freight": 1.93, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10477, + "EmployeeID": 5, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", + "ShipVia": 2, + "Freight": 13.02, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10868, - "EmployeeID": 7, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", + "OrderID": 11007, + "EmployeeID": 8, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 191.27, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 202.24, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 42, - "Discount": 0.1 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 14, + "Discount": 0 } ] } ] }, { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 34000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", + "CustomerID": "SIMOB", + "Company": "Simons bistro", + "ContactName": "Jytte Petersen", + "ContactTitle": "Owner", + "Address": "Vinbæltet 34", + "City": "Kobenhavn", + "PostalCode": 1734, + "Country": "Denmark", + "Phone": "31 12 34 56", + "Fax": "31 13 35 57", "Orders": [ { - "OrderID": 10869, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 1, - "Freight": 143.28, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "OrderID": 10341, + "EmployeeID": 7, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", + "ShipVia": 3, + "Freight": 26.78, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 - }, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10417, + "EmployeeID": 4, + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-28T00:00:00", + "ShipVia": 3, + "Freight": 70.29, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 50, "Discount": 0 }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 2, + "Discount": 0.25 + }, { "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "UnitPrice": 10, + "Quantity": 36, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10870, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", + "OrderID": 10556, + "EmployeeID": 2, + "OrderDate": "1997-06-03T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 1, + "Freight": 9.8, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10642, + "EmployeeID": 7, + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-09-05T00:00:00", "ShipVia": 3, - "Freight": 12.04, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 41.89, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10669, + "EmployeeID": 2, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", + "ShipVia": 1, + "Freight": 24.39, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 2, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10871, - "EmployeeID": 9, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", + "OrderID": 10802, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", "ShipVia": 2, - "Freight": 112.27, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 257.26, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, + "Discount": 0.25 }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ - { - "OrderID": 10872, - "EmployeeID": 5, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 2, - "Freight": 175.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", - "OrderDetails": [ { "ProductID": 55, "UnitPrice": 24, - "Quantity": 10, - "Discount": 0.06 + "Quantity": 60, + "Discount": 0.25 }, { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.06 - }, + "Quantity": 5, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11074, + "EmployeeID": 7, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShipVia": 2, + "Freight": 18.44, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, "Discount": 0.06 } ] @@ -28707,292 +19139,246 @@ ] }, { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", + "CustomerID": "FAMIA", + "Company": "Familia Arquibaldo", + "ContactName": "Aria Cruz", + "ContactTitle": "Marketing Assistant", + "Address": "Rua Orós, 92", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5442, + "Country": "Brazil", + "Phone": "(11) 555-9857", "Orders": [ { - "OrderID": 10873, + "OrderID": 10347, "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 1, - "Freight": 0.82, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderDate": "1996-11-06T00:00:00", + "RequiredDate": "1996-12-04T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 3.1, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 50, + "Discount": 0.16 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 4, "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10874, - "EmployeeID": 5, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 2, - "Freight": 19.58, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10386, + "EmployeeID": 9, + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-25T00:00:00", + "ShipVia": 3, + "Freight": 13.99, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 34, + "UnitPrice": 11.2, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10875, - "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 2, - "Freight": 32.37, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 37000, - "ShipCountry": "Sweden", + "OrderID": 10414, + "EmployeeID": 2, + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-17T00:00:00", + "ShipVia": 3, + "Freight": 21.48, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 21, - "Discount": 0.1 + "UnitPrice": 7.3, + "Quantity": 18, + "Discount": 0.06 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10876, + "OrderID": 10512, "EmployeeID": 7, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 3, - "Freight": 60.42, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderDate": "1997-04-21T00:00:00", + "RequiredDate": "1997-05-19T00:00:00", + "ShippedDate": "1997-04-24T00:00:00", + "ShipVia": 2, + "Freight": 3.53, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.16 + }, { "ProductID": 46, "UnitPrice": 12, - "Quantity": 21, - "Discount": 0 + "Quantity": 9, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, - "Discount": 0 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.16 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10877, - "EmployeeID": 1, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", + "OrderID": 10581, + "EmployeeID": 3, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-02T00:00:00", "ShipVia": 1, - "Freight": 38.06, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, + "Freight": 3.01, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10878, - "EmployeeID": 4, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 1, - "Freight": 46.69, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10650, + "EmployeeID": 5, + "OrderDate": "1997-08-29T00:00:00", + "RequiredDate": "1997-09-26T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 176.81, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, + "Discount": 0 + } + ] + }, { - "OrderID": 10879, - "EmployeeID": 3, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderID": 10725, + "EmployeeID": 4, + "OrderDate": "1997-10-31T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 3, - "Freight": 8.5, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 10.83, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 12, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] @@ -29000,1554 +19386,1463 @@ ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 41000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "LAMAI", + "Company": "La maison d'Asie", + "ContactName": "Annette Roulet", + "ContactTitle": "Sales Manager", + "Address": "1 rue Alsace-Lorraine", + "City": "Toulouse", + "PostalCode": 31000, + "Country": "France", + "Phone": "61.77.61.10", + "Fax": "61.77.61.11", "Orders": [ { - "OrderID": 10880, - "EmployeeID": 7, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", + "OrderID": 10350, + "EmployeeID": 6, + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 64.19, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 18, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10358, + "EmployeeID": 5, + "OrderDate": "1996-11-20T00:00:00", + "RequiredDate": "1996-12-18T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", "ShipVia": 1, - "Freight": 88.01, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 26000, - "ShipCountry": "Sweden", + "Freight": 19.64, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10881, - "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", + "OrderID": 10371, + "EmployeeID": 1, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", "ShipVia": 1, - "Freight": 2.84, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 0.45, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 10, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 6, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10413, + "EmployeeID": 3, + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 2, + "Freight": 95.66, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, + { + "OrderID": 10425, + "EmployeeID": 6, + "OrderDate": "1997-01-24T00:00:00", + "RequiredDate": "1997-02-21T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 2, + "Freight": 7.93, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 10, + "Discount": 0.25 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 + } + ] + }, { - "OrderID": 10882, + "OrderID": 10454, "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-25T00:00:00", "ShipVia": 3, - "Freight": 23.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 2.74, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 25, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 49, - "UnitPrice": 20, + "ProductID": 33, + "UnitPrice": 2, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 32, - "Discount": 0.16 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10883, - "EmployeeID": 8, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", + "OrderID": 10493, + "EmployeeID": 4, + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", "ShipVia": 3, - "Freight": 0.53, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 10.64, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 8, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10884, - "EmployeeID": 4, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", - "ShipVia": 2, - "Freight": 90.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10500, + "EmployeeID": 6, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-17T00:00:00", + "ShipVia": 1, + "Freight": 42.68, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 12, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 21, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, "Discount": 0.06 - }, + } + ] + }, + { + "OrderID": 10610, + "EmployeeID": 8, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 1, + "Freight": 26.78, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10885, - "EmployeeID": 6, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 3, - "Freight": 5.64, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10631, + "EmployeeID": 8, + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-15T00:00:00", + "ShipVia": 1, + "Freight": 0.87, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 8, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10787, + "EmployeeID": 2, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 249.93, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10832, + "EmployeeID": 2, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 43.26, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 25, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10886, - "EmployeeID": 1, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 1, - "Freight": 4.99, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10923, + "EmployeeID": 7, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 68.26, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 40, - "Discount": 0 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10887, - "EmployeeID": 8, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", + "OrderID": 11051, + "EmployeeID": 7, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", "ShipVia": 3, - "Freight": 1.25, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "Freight": 2.79, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", + "CustomerID": "PICCO", + "Company": "Piccolo und mehr", + "ContactName": "Georg Pipps", "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "Address": "Geislweg 14", + "City": "Salzburg", + "PostalCode": 5020, + "Country": "Austria", + "Phone": "6562-9722", + "Fax": "6562-9723", "Orders": [ { - "OrderID": 10888, - "EmployeeID": 1, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 2, - "Freight": 51.87, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10353, + "EmployeeID": 7, + "OrderDate": "1996-11-13T00:00:00", + "RequiredDate": "1996-12-11T00:00:00", + "ShippedDate": "1996-11-25T00:00:00", + "ShipVia": 3, + "Freight": 360.63, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10392, + "EmployeeID": 2, + "OrderDate": "1996-12-24T00:00:00", + "RequiredDate": "1997-01-21T00:00:00", + "ShippedDate": "1997-01-01T00:00:00", + "ShipVia": 3, + "Freight": 122.46, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 50, + "Discount": 0 + } + ] + }, + { + "OrderID": 10427, + "EmployeeID": 4, + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 2, + "Freight": 31.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10889, - "EmployeeID": 9, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 3, - "Freight": 280.61, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10489, + "EmployeeID": 6, + "OrderDate": "1997-03-28T00:00:00", + "RequiredDate": "1997-04-25T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", + "ShipVia": 2, + "Freight": 5.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10890, - "EmployeeID": 7, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 32.76, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10530, + "EmployeeID": 3, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", + "ShipVia": 2, + "Freight": 339.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 17, "UnitPrice": 39, - "Quantity": 15, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10891, + "OrderID": 10597, "EmployeeID": 7, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 20.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", + "ShipVia": 3, + "Freight": 35.12, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 46000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10892, - "EmployeeID": 4, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 120.27, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 30000, - "ShipCountry": "Belgium", + "OrderID": 10686, + "EmployeeID": 2, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-08T00:00:00", + "ShipVia": 1, + "Freight": 96.5, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10893, - "EmployeeID": 9, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 2, - "Freight": 77.78, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10747, + "EmployeeID": 6, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-26T00:00:00", + "ShipVia": 1, + "Freight": 117.33, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 24, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 35, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10844, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", + "ShipVia": 2, + "Freight": 25.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10894, - "EmployeeID": 1, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 1, - "Freight": 116.13, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11053, + "EmployeeID": 2, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 28, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 120, - "Discount": 0.06 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 25, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "AROUT", + "Company": "Around the Horn", + "ContactName": "Thomas Hardy", + "ContactTitle": "Sales Representative", + "Address": "120 Hanover Sq.", + "City": "London", + "PostalCode": 19000, + "Country": "UK", + "Phone": "(171) 555-7788", + "Fax": "(171) 555-6750", "Orders": [ { - "OrderID": 10895, - "EmployeeID": 3, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", + "OrderID": 10355, + "EmployeeID": 6, + "OrderDate": "1996-11-15T00:00:00", + "RequiredDate": "1996-12-13T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", "ShipVia": 1, - "Freight": 162.75, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 41.95, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 110, + "UnitPrice": 3.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 45, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10383, + "EmployeeID": 8, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-18T00:00:00", + "ShipVia": 3, + "Freight": 34.24, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 36000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 91, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 100, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 29000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10896, - "EmployeeID": 7, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 32.45, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 15000, - "ShipCountry": "Belgium", + "OrderID": 10453, + "EmployeeID": 1, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", + "ShipVia": 2, + "Freight": 25.36, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 46000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 48, + "UnitPrice": 10.2, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 16, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10897, - "EmployeeID": 3, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-25T00:00:00", + "OrderID": 10558, + "EmployeeID": 1, + "OrderDate": "1997-06-04T00:00:00", + "RequiredDate": "1997-07-02T00:00:00", + "ShippedDate": "1997-06-10T00:00:00", "ShipVia": 2, - "Freight": 603.54, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 72.97, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 27000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 80, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 36, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10898, + "OrderID": 10707, "EmployeeID": 4, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 1.27, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 3, + "Freight": 21.74, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10899, - "EmployeeID": 5, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", + "OrderID": 10741, + "EmployeeID": 4, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 1.21, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 10.96, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 13000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10900, + "OrderID": 10743, "EmployeeID": 1, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", "ShipVia": 2, - "Freight": 1.66, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 48000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 28, + "Discount": 0.06 + } + ] + }, { - "OrderID": 10901, - "EmployeeID": 4, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", - "ShipVia": 1, - "Freight": 62.09, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10768, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 2, + "Freight": 146.32, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 }, { "ProductID": 71, "UnitPrice": 21.5, - "Quantity": 30, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 25000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10902, - "EmployeeID": 1, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 1, - "Freight": 44.15, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 33000, - "ShipCountry": "Sweden", + "OrderID": 10793, + "EmployeeID": 3, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", + "ShipVia": 3, + "Freight": 4.52, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10903, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 36.71, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10864, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 2, + "Freight": 3.04, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10904, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 162.95, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10920, + "EmployeeID": 4, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", + "ShipVia": 2, + "Freight": 29.61, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 35, + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10905, + "OrderID": 10953, "EmployeeID": 9, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-25T00:00:00", "ShipVia": 2, - "Freight": 13.72, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 35000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10906, - "EmployeeID": 4, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 3, - "Freight": 26.29, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 11016, + "EmployeeID": 9, + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 2, + "Freight": 33.8, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 16, + "Discount": 0 } ] } ] }, { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", + "CustomerID": "SEVES", + "Company": "Seven Seas Imports", + "ContactName": "Hari Kumar", + "ContactTitle": "Sales Manager", + "Address": "90 Wadhurst Rd.", + "City": "London", + "PostalCode": 32000, + "Country": "UK", + "Phone": "(171) 555-1717", + "Fax": "(171) 555-5646", "Orders": [ { - "OrderID": 10907, - "EmployeeID": 6, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-25T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", + "OrderID": 10359, + "EmployeeID": 5, + "OrderDate": "1996-11-21T00:00:00", + "RequiredDate": "1996-12-19T00:00:00", + "ShippedDate": "1996-11-26T00:00:00", "ShipVia": 3, - "Freight": 9.19, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 288.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 14, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 56, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 70, + "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10908, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 32.96, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10377, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 22.21, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 41000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 20, - "Discount": 0.06 + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 14, - "Discount": 0.06 + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10909, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-10T00:00:00", - "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10388, + "EmployeeID": 2, + "OrderDate": "1996-12-19T00:00:00", + "RequiredDate": "1997-01-16T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", + "ShipVia": 1, + "Freight": 34.86, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 45000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 12, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 7.6, + "Quantity": 15, + "Discount": 0.2 + }, + { + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10472, + "EmployeeID": 8, + "OrderDate": "1997-03-12T00:00:00", + "RequiredDate": "1997-04-09T00:00:00", + "ShippedDate": "1997-03-19T00:00:00", + "ShipVia": 1, + "Freight": 4.2, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 33000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 80, + "Discount": 0.06 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 5, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10910, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 38.11, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10523, + "EmployeeID": 7, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 2, + "Freight": 77.63, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 42000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 10, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 6, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10911, + "OrderID": 10547, "EmployeeID": 3, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", - "ShipVia": 1, - "Freight": 38.19, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", + "ShipVia": 2, + "Freight": 178.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 48000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 12, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10912, - "EmployeeID": 2, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 2, - "Freight": 580.91, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10800, + "EmployeeID": 1, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 3, + "Freight": 137.44, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 50000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 11, "UnitPrice": 21, - "Quantity": 40, - "Discount": 0.25 + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 7, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10913, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 1, - "Freight": 33.05, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10804, + "EmployeeID": 6, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", + "ShipVia": 2, + "Freight": 27.33, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 20000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 4, + "Discount": 0.16 } ] }, { - "OrderID": 10914, - "EmployeeID": 6, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", + "OrderID": 10869, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", "ShipVia": 1, - "Freight": 21.19, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 143.28, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 25, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ - { - "OrderID": 10915, - "EmployeeID": 2, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 2, - "Freight": 3.51, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 17, - "UnitPrice": 39, + "ProductID": 11, + "UnitPrice": 21, "Quantity": 10, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 } ] @@ -30555,183 +20850,169 @@ ] }, { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", + "CustomerID": "DRACD", + "Company": "Drachenblut Delikatessen", + "ContactName": "Sven Ottlieb", + "ContactTitle": "Order Administrator", + "Address": "Walserweg 21", + "City": "Aachen", + "PostalCode": 52066, + "Country": "Germany", + "Phone": "0241-039123", + "Fax": "0241-059428", "Orders": [ { - "OrderID": 10916, - "EmployeeID": 1, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 2, - "Freight": 63.77, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10363, + "EmployeeID": 4, + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1996-12-24T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", + "ShipVia": 3, + "Freight": 30.54, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 6, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 6, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10917, - "EmployeeID": 4, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 2, - "Freight": 8.29, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10391, + "EmployeeID": 3, + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-31T00:00:00", + "ShipVia": 3, + "Freight": 5.45, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 1, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10797, + "EmployeeID": 7, + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 2, + "Freight": 33.35, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 42000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10918, - "EmployeeID": 3, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 3, - "Freight": 48.83, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10825, + "EmployeeID": 1, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 1, + "Freight": 79.25, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10919, - "EmployeeID": 2, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 2, - "Freight": 19.8, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 11036, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 3, + "Freight": 149.47, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 24, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 24, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11067, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 7.98, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 20, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, "Discount": 0 } ] @@ -30739,316 +21020,267 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", + "CustomerID": "EASTC", + "Company": "Eastern Connection", + "ContactName": "Ann Devon", + "ContactTitle": "Sales Agent", + "Address": "35 King George", "City": "London", - "PostalCode": 34000, + "PostalCode": 20000, "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Phone": "(171) 555-0297", + "Fax": "(171) 555-3373", "Orders": [ { - "OrderID": 10920, - "EmployeeID": 4, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 2, - "Freight": 29.61, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 28000, + "OrderID": 10364, + "EmployeeID": 1, + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", + "ShipVia": 1, + "Freight": 71.97, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 20000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 24, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10921, + "OrderID": 10400, "EmployeeID": 1, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 1, - "Freight": 176.48, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 3, + "Freight": 83.93, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 21, + "Discount": 0 + }, { "ProductID": 35, - "UnitPrice": 18, - "Quantity": 10, + "UnitPrice": 14.4, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 40, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10922, - "EmployeeID": 5, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", + "OrderID": 10532, + "EmployeeID": 7, + "OrderDate": "1997-05-09T00:00:00", + "RequiredDate": "1997-06-06T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", "ShipVia": 3, - "Freight": 62.74, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 74.46, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 45000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10726, + "EmployeeID": 4, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 16.56, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 21000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 15, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10923, - "EmployeeID": 7, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 3, - "Freight": 68.26, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10987, + "EmployeeID": 8, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", + "ShipVia": 1, + "Freight": 185.48, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 30000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, + "Discount": 0 }, { "ProductID": 43, "UnitPrice": 46, - "Quantity": 10, - "Discount": 0.2 + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0.2 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 11000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10924, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 2, - "Freight": 151.52, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", + "OrderID": 11024, + "EmployeeID": 4, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 74.36, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 33, + "UnitPrice": 2.5, "Quantity": 30, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 6, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10925, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 1, - "Freight": 2.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 11047, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 46.62, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 42000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 25, - "Discount": 0.16 + "Discount": 0.25 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10926, - "EmployeeID": 4, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 3, - "Freight": 39.92, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "OrderID": 11056, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 2, + "Freight": 278.96, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 39000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 } ] @@ -31056,329 +21288,226 @@ ] }, { - "CustomerID": "LACOR", - "Company": "La corne d'abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de l'Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", + "CustomerID": "ANTON", + "Company": "Antonio Moreno Taquería", + "ContactName": "Antonio Moreno", + "ContactTitle": "Owner", + "Address": "Mataderos 2312", + "City": "México D.F.", + "PostalCode": 5023, + "Country": "Mexico", + "Phone": "(5) 555-3932", "Orders": [ { - "OrderID": 10927, - "EmployeeID": 4, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 19.79, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "OrderID": 10365, + "EmployeeID": 3, + "OrderDate": "1996-11-27T00:00:00", + "RequiredDate": "1996-12-25T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 22, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10928, - "EmployeeID": 1, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10507, + "EmployeeID": 7, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-04-22T00:00:00", "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "Freight": 47.45, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0 + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10929, - "EmployeeID": 6, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", + "OrderID": 10535, + "EmployeeID": 4, + "OrderDate": "1997-05-13T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-21T00:00:00", "ShipVia": 1, - "Freight": 33.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 15.64, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 49, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 59, + "UnitPrice": 55, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10930, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10573, + "EmployeeID": 7, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-20T00:00:00", "ShipVia": 3, - "Freight": 15.55, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 84.84, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 36, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 25, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10931, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 2, - "Freight": 13.6, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10677, + "EmployeeID": 1, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 3, + "Freight": 4.03, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 42, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 30, "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10932, - "EmployeeID": 8, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", - "ShipVia": 1, - "Freight": 134.64, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10682, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 2, + "Freight": 36.13, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, + "ProductID": 33, + "UnitPrice": 2.5, "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 14, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 16, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 4, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.1 + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 22000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10933, - "EmployeeID": 6, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 3, - "Freight": 54.15, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40216, - "ShipPostalCode": 24000, - "ShipCountry": "UK", + "OrderID": 10856, + "EmployeeID": 3, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 58.43, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 2, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] @@ -31386,163 +21515,141 @@ ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "CustomerID": "GALED", + "Company": "Galería del gastrónomo", + "ContactName": "Eduardo Saavedra", + "ContactTitle": "Marketing Manager", + "Address": "Rambla de Cataluña, 23", + "City": "Barcelona", + "PostalCode": 8022, + "Country": "Spain", + "Phone": "(93) 203 4560", + "Fax": "(93) 203 4561", "Orders": [ { - "OrderID": 10934, - "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", - "ShipVia": 3, - "Freight": 32.01, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10366, + "EmployeeID": 8, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-30T00:00:00", + "ShipVia": 2, + "Freight": 10.14, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10935, + "OrderID": 10426, "EmployeeID": 4, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 47.59, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-02-06T00:00:00", + "ShipVia": 1, + "Freight": 18.69, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 8, - "Discount": 0.25 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10936, + "OrderID": 10568, "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 2, - "Freight": 33.68, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1997-06-13T00:00:00", + "RequiredDate": "1997-07-11T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 3, + "Freight": 6.54, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10937, - "EmployeeID": 7, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderID": 10887, + "EmployeeID": 8, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", "ShipVia": 3, - "Freight": 31.51, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 1.25, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10928, + "EmployeeID": 1, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 1.36, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 5, "Discount": 0 } ] @@ -31550,383 +21657,323 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", + "CustomerID": "VAFFE", + "Company": "Vaffeljernet", + "ContactName": "Palle Ibsen", + "ContactTitle": "Sales Manager", + "Address": "Smagsloget 45", + "City": "Århus", + "PostalCode": 8200, + "Country": "Denmark", + "Phone": "86 21 32 43", + "Fax": "86 22 33 44", "Orders": [ { - "OrderID": 10938, - "EmployeeID": 3, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 31.89, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10367, + "EmployeeID": 7, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1996-12-26T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 13.55, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 18, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 49, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10939, - "EmployeeID": 2, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 2, - "Freight": 76.33, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10399, + "EmployeeID": 8, + "OrderDate": "1996-12-31T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", + "ShipVia": 3, + "Freight": 27.36, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 14, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10940, - "EmployeeID": 8, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10465, + "EmployeeID": 1, + "OrderDate": "1997-03-05T00:00:00", + "RequiredDate": "1997-04-02T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 3, - "Freight": 19.77, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 145.04, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 8, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 45, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10941, - "EmployeeID": 7, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 400.81, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10591, + "EmployeeID": 1, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-07-21T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 55.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 44, - "Discount": 0.25 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 80, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10942, - "EmployeeID": 9, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 17.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10602, + "EmployeeID": 8, + "OrderDate": "1997-07-17T00:00:00", + "RequiredDate": "1997-08-14T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", + "ShipVia": 2, + "Freight": 2.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 28, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 5, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10943, + "OrderID": 10688, "EmployeeID": 4, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", "ShipVia": 2, - "Freight": 2.17, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "Freight": 299.09, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 15, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 21, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 15, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 45000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10944, + "OrderID": 10744, "EmployeeID": 6, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 3, - "Freight": 52.92, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 69.19, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10769, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 1, + "Freight": 65.06, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10945, - "EmployeeID": 4, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-04-09T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10921, + "EmployeeID": 1, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 1, - "Freight": 10.22, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 176.48, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { "OrderID": 10946, "EmployeeID": 1, @@ -31960,645 +22007,417 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 35000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10947, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 13000, - "ShipCountry": "UK", + "OrderID": 10994, + "EmployeeID": 2, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-04-09T00:00:00", + "ShipVia": 3, + "Freight": 65.53, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { "ProductID": 59, "UnitPrice": 55, - "Quantity": 4, - "Discount": 0 + "Quantity": 18, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "CustomerID": "QUEEN", + "Company": "Queen Cozinha", + "ContactName": "Lúcia Carvalho", + "ContactTitle": "Marketing Assistant", + "Address": "Alameda dos Canàrios, 891", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5487, + "Country": "Brazil", + "Phone": "(11) 555-1189", "Orders": [ { - "OrderID": 10948, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 3, - "Freight": 23.39, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10372, + "EmployeeID": 5, + "OrderDate": "1996-12-04T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 890.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 9, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 40, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 70, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 42, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 44000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10949, - "EmployeeID": 2, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-17T00:00:00", - "ShipVia": 3, - "Freight": 74.44, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderID": 10406, + "EmployeeID": 7, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-13T00:00:00", + "ShipVia": 1, + "Freight": 108.04, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 12, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 21, + "UnitPrice": 8, "Quantity": 30, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 42, + "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 60, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10950, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-13T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10487, + "EmployeeID": 2, + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-03-28T00:00:00", "ShipVia": 2, - "Freight": 2.5, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 71.07, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 5, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ - { - "OrderID": 10951, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 2, - "Freight": 30.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, - "Discount": 0.06 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10952, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "OrderID": 10637, + "EmployeeID": 6, + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", "ShipVia": 1, - "Freight": 40.42, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 201.29, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 2, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 21000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10953, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-25T00:00:00", + "OrderID": 10659, + "EmployeeID": 7, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 35000, - "ShipCountry": "UK", + "Freight": 105.81, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 50, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0.06 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 24, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10954, - "EmployeeID": 5, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 10704, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", "ShipVia": 1, - "Freight": 27.91, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 4.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 28, - "Discount": 0.16 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 48, + "UnitPrice": 12.75, "Quantity": 24, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 25000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10955, - "EmployeeID": 8, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 10728, + "EmployeeID": 4, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-11-11T00:00:00", "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 47000, - "ShipCountry": "Sweden", + "Freight": 58.33, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 12, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10956, - "EmployeeID": 6, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 44.65, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 14, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 8, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10957, + "OrderID": 10786, "EmployeeID": 8, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 3, - "Freight": 105.36, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-16T00:00:00", + "ShippedDate": "1997-12-23T00:00:00", + "ShipVia": 1, + "Freight": 110.87, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 8, + "UnitPrice": 40, "Quantity": 30, - "Discount": 0 + "Discount": 0.2 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 8, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10958, + "OrderID": 10868, "EmployeeID": 7, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 2, - "Freight": 49.56, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 191.27, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, + "ProductID": 26, + "UnitPrice": 31.23, "Quantity": 20, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 6, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 5, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 42, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10959, - "EmployeeID": 6, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", - "ShipVia": 2, - "Freight": 4.98, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", + "OrderID": 10913, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 1, + "Freight": 33.05, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", "ShipRegion": "SP", - "ShipPostalCode": 4876, + "ShipPostalCode": 5487, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10960, - "EmployeeID": 3, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 2.08, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 30, + "Discount": 0.25 + }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 40, "Discount": 0.25 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 24, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { "OrderID": 10961, "EmployeeID": 8, @@ -32615,158 +22434,271 @@ "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 + } + ] + }, + { + "OrderID": 11068, + "EmployeeID": 8, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShipVia": 2, + "Freight": 81.75, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.16 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 36, + "Discount": 0.16 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 28, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "WOLZA", + "Company": "Wolski Zajazd", + "ContactName": "Zbyszek Piestrzeniewicz", + "ContactTitle": "Owner", + "Address": "ul. Filtrowa 68", + "City": "Warszawa", + "PostalCode": 12000, + "Country": "Poland", + "Phone": "(26) 642-7012", + "Fax": "(26) 642-7012", + "Orders": [ + { + "OrderID": 10374, + "EmployeeID": 1, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 3, + "Freight": 3.94, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 60, + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10962, - "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10611, + "EmployeeID": 6, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 275.79, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 80.65, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 77, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10792, + "EmployeeID": 1, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 3, + "Freight": 23.79, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 9, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 44, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10963, - "EmployeeID": 9, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", + "OrderID": 10870, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", "ShipVia": 3, - "Freight": 2.7, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 12.04, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, "Quantity": 2, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 10964, - "EmployeeID": 3, - "OrderDate": "1998-03-20T00:00:00", + "OrderID": 10906, + "EmployeeID": 4, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", + "ShipVia": 3, + "Freight": 26.29, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10998, + "EmployeeID": 8, + "OrderDate": "1998-04-03T00:00:00", "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", "ShipVia": 2, - "Freight": 87.38, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 20.31, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 6, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 11044, + "EmployeeID": 4, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 8.72, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, "Discount": 0 } ] @@ -32774,174 +22706,153 @@ ] }, { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", + "CustomerID": "HUNGC", + "Company": "Hungry Coyote Import Store", + "ContactName": "Yoshi Latimer", "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, + "Address": "City Center Plaza 516 Main St.", + "City": "Elgin", + "Region": "OR", + "PostalCode": 97827, "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", + "Phone": "(503) 555-6874", + "Fax": "(503) 555-2376", "Orders": [ { - "OrderID": 10965, - "EmployeeID": 6, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", - "ShipVia": 3, - "Freight": 144.38, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "OrderID": 10375, + "EmployeeID": 3, + "OrderDate": "1996-12-06T00:00:00", + "RequiredDate": "1997-01-03T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 20.12, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 16, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10966, - "EmployeeID": 4, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 27.19, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10394, + "EmployeeID": 1, + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 3, + "Freight": 30.34, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 8, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, "Discount": 0 }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 - }, { "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0.16 + "UnitPrice": 39.4, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10967, - "EmployeeID": 2, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 62.22, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "OrderID": 10415, + "EmployeeID": 3, + "OrderDate": "1997-01-15T00:00:00", + "RequiredDate": "1997-02-12T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "ShipVia": 1, + "Freight": 0.2, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 40, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10968, - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-01T00:00:00", - "ShipVia": 3, - "Freight": 74.6, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10600, + "EmployeeID": 4, + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-13T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", + "ShipVia": 1, + "Freight": 45.13, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 73, + "UnitPrice": 15, "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10660, + "EmployeeID": 8, + "OrderDate": "1997-09-08T00:00:00", + "RequiredDate": "1997-10-06T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 1, + "Freight": 111.29, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 4, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 21, "Discount": 0 } ] @@ -32949,222 +22860,205 @@ ] }, { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", + "CustomerID": "SANTG", + "Company": "Santé Gourmet", + "ContactName": "Jonas Bergulfsen", + "ContactTitle": "Owner", + "Address": "Erling Skakkes gate 78", + "City": "Stavern", + "PostalCode": 4110, + "Country": "Norway", + "Phone": "07-98 92 35", + "Fax": "07-98 92 47", "Orders": [ { - "OrderID": 10969, + "OrderID": 10387, "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-15T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", "ShipVia": 2, - "Freight": 0.21, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 93.63, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 9, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ + }, { - "OrderID": 10970, - "EmployeeID": 9, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10520, + "EmployeeID": 7, + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", "ShipVia": 1, - "Freight": 16.16, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", + "Freight": 13.37, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10971, - "EmployeeID": 2, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 121.82, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10639, + "EmployeeID": 7, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-08-27T00:00:00", + "ShipVia": 3, + "Freight": 38.64, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne d'abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de l'Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ + }, { - "OrderID": 10972, - "EmployeeID": 4, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", + "OrderID": 10831, + "EmployeeID": 3, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 2, - "Freight": 0.02, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "Freight": 72.19, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 7, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 9, "Discount": 0 } ] }, { - "OrderID": 10973, - "EmployeeID": 6, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "OrderID": 10909, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-10T00:00:00", "ShipVia": 2, - "Freight": 15.17, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "Freight": 53.05, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10974, - "EmployeeID": 3, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 12.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 11015, + "EmployeeID": 2, + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 2, + "Freight": 4.62, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] @@ -33179,339 +23073,314 @@ "Address": "23 Tsawassen Blvd.", "City": "Tsawassen", "Region": "BC", - "PostalCode": 13000, + "PostalCode": 26000, "Country": "Canada", "Phone": "(604) 555-4729", "Fax": "(604) 555-3745", "Orders": [ { - "OrderID": 10975, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-22T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 3, - "Freight": 32.27, + "OrderID": 10389, + "EmployeeID": 4, + "OrderDate": "1996-12-20T00:00:00", + "RequiredDate": "1997-01-17T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", + "ShipVia": 2, + "Freight": 47.42, "ShipName": "Bottom-Dollar Markets", "ShipAddress": "23 Tsawassen Blvd.", "ShipCity": "Tsawassen", "ShipRegion": "BC", - "ShipPostalCode": 40000, + "ShipPostalCode": 41000, "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, + "ProductID": 10, + "UnitPrice": 24.8, "Quantity": 16, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10976, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderID": 10410, + "EmployeeID": 3, + "OrderDate": "1997-01-10T00:00:00", + "RequiredDate": "1997-02-07T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", + "ShipVia": 3, + "Freight": 2.4, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 30000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 16, + "Discount": 0 + } + ] + }, + { + "OrderID": 10431, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 44.17, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 16000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10492, + "EmployeeID": 3, + "OrderDate": "1997-04-01T00:00:00", + "RequiredDate": "1997-04-29T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 1, - "Freight": 37.97, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 62.89, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 16000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 11000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10977, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10742, + "EmployeeID": 3, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-12-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 208.5, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", + "Freight": 243.73, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 25000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 27000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10978, - "EmployeeID": 9, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", - "ShipVia": 2, - "Freight": 32.82, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 31000, - "ShipCountry": "Belgium", + "OrderID": 10918, + "EmployeeID": 3, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 48.83, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 41000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 25, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10979, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-03-31T00:00:00", - "ShipVia": 2, - "Freight": 353.07, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10944, + "EmployeeID": 6, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 52.92, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 36000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, + "Discount": 0.25 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, "Quantity": 18, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 12, + "ProductID": 56, "UnitPrice": 38, - "Quantity": 20, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10949, + "EmployeeID": 2, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-17T00:00:00", + "ShipVia": 3, + "Freight": 74.44, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 80, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 30, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 24, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 35, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 50000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10980, - "EmployeeID": 4, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 1, - "Freight": 1.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10981, + "OrderID": 10975, "EmployeeID": 1, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 193.37, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-22T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 32.27, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 27000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { "OrderID": 10982, "EmployeeID": 2, @@ -33540,81 +23409,83 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10983, - "EmployeeID": 2, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 2, - "Freight": 657.54, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11027, + "EmployeeID": 1, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 52.52, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 14000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 84, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 21, + "Discount": 0.25 } ] }, { - "OrderID": 10984, - "EmployeeID": 1, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 211.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11045, + "EmployeeID": 6, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShipVia": 2, + "Freight": 70.58, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 46000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 55, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 24, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11048, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", + "ShipVia": 3, + "Freight": 24.12, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 41000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 42, "Discount": 0 } ] @@ -33622,535 +23493,427 @@ ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "LINOD", + "Company": "LINO-Delicateses", + "ContactName": "Felipe Izquierdo", + "ContactTitle": "Owner", + "Address": "Ave. 5 de Mayo Porlamar", + "City": "Sao Paulo", + "Region": "Nueva Esparta", + "PostalCode": 4980, + "Country": "Venezuela", + "Phone": "(8) 34-56-12", + "Fax": "(8) 34-93-93", "Orders": [ { - "OrderID": 10985, - "EmployeeID": 2, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10405, + "EmployeeID": 1, + "OrderDate": "1997-01-06T00:00:00", + "RequiredDate": "1997-02-03T00:00:00", + "ShippedDate": "1997-01-22T00:00:00", "ShipVia": 1, - "Freight": 91.51, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 34.82, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 36, - "Discount": 0.1 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 35, - "Discount": 0.1 + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10986, - "EmployeeID": 8, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", + "OrderID": 10485, + "EmployeeID": 4, + "OrderDate": "1997-03-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-31T00:00:00", "ShipVia": 2, - "Freight": 217.86, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 64.45, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 30, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0 + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 60, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10987, - "EmployeeID": 8, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", + "OrderID": 10638, + "EmployeeID": 3, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", "ShipVia": 1, - "Freight": 185.48, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 30000, - "ShipCountry": "UK", + "Freight": 158.44, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, "Discount": 0 }, { "ProductID": 72, "UnitPrice": 34.8, - "Quantity": 20, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10988, + "OrderID": 10697, "EmployeeID": 3, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 61.14, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-05T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", + "ShipVia": 1, + "Freight": 45.52, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 9, + "Discount": 0.25 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10989, - "EmployeeID": 2, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 1, - "Freight": 34.76, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "OrderID": 10729, + "EmployeeID": 8, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 3, + "Freight": 141.06, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 40, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10990, - "EmployeeID": 2, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 3, - "Freight": 117.61, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10811, + "EmployeeID": 8, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", + "ShipVia": 1, + "Freight": 31.22, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 65, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 18, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 66, - "Discount": 0.16 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10991, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 1, - "Freight": 38.51, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10838, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 59.28, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0.25 + }, + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 36, "UnitPrice": 19, "Quantity": 50, - "Discount": 0.2 - }, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10840, + "EmployeeID": 4, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", + "ShipVia": 2, + "Freight": 2.71, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 76, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 90, + "Quantity": 10, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10992, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 4.27, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "OrderID": 10919, + "EmployeeID": 2, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 2, + "Freight": 19.8, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 2, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 36000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10993, - "EmployeeID": 7, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 3, - "Freight": 8.81, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 15000, - "ShipCountry": "Sweden", + "OrderID": 10954, + "EmployeeID": 5, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 1, + "Freight": 27.91, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 28, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 25, + "Discount": 0.16 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10994, + "OrderID": 11014, "EmployeeID": 2, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-04-09T00:00:00", + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", "ShipVia": 3, - "Freight": 65.53, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 23.6, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 28, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10995, + "OrderID": 11039, "EmployeeID": 1, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 3, - "Freight": 46, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShipVia": 2, + "Freight": 65, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 24, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10996, - "EmployeeID": 4, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 1.12, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ + }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 28, "Discount": 0 } ] @@ -34158,580 +23921,519 @@ ] }, { - "CustomerID": "LILAS", - "Company": "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": "FOLIG", + "Company": "Folies gourmandes", + "ContactName": "Martine Rancé", + "ContactTitle": "Sales Associate", + "Address": "184, chaussée de Tournai", + "City": "Lille", + "PostalCode": 59000, + "Country": "France", + "Phone": "20.16.10.16", + "Fax": "20.16.10.17", "Orders": [ { - "OrderID": 10997, + "OrderID": 10408, "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 2, - "Freight": 73.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderDate": "1997-01-08T00:00:00", + "RequiredDate": "1997-02-05T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 11.26, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 15000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10998, - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", + "OrderID": 10480, + "EmployeeID": 6, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", "ShipVia": 2, - "Freight": 20.31, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 1.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, "Quantity": 12, "Discount": 0 + } + ] + }, + { + "OrderID": 10634, + "EmployeeID": 4, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 487.38, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 7, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 30, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10999, - "EmployeeID": 6, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-01T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 96.35, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "OrderID": 10763, + "EmployeeID": 3, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 3, + "Freight": 37.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 21, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 11000, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", - "ShipVia": 3, - "Freight": 55.12, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10789, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 2, + "Freight": 100.6, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, + "Discount": 0 } ] } ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 45000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "OCEAN", + "Company": "Océano Atlántico Ltda.", + "ContactName": "Yvonne Moncada", + "ContactTitle": "Sales Agent", + "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5333", + "Fax": "(1) 135-5535", "Orders": [ { - "OrderID": 11001, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", - "ShipVia": 2, - "Freight": 197.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 14000, - "ShipCountry": "Sweden", + "OrderID": 10409, + "EmployeeID": 3, + "OrderDate": "1997-01-09T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 29.83, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 25, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11002, - "EmployeeID": 4, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10531, + "EmployeeID": 7, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", "ShipVia": 1, - "Freight": 141.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 8.12, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 10898, + "EmployeeID": 4, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 1.27, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { "ProductID": 13, "UnitPrice": 6, - "Quantity": 56, + "Quantity": 5, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10958, + "EmployeeID": 7, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 2, + "Freight": 49.56, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 40, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11003, - "EmployeeID": 3, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 3, - "Freight": 14.91, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "OrderID": 10986, + "EmployeeID": 8, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 217.86, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0 } ] } ] }, { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 20000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", + "CustomerID": "FRANS", + "Company": "Franchi S.p.A.", + "ContactName": "Paolo Accorti", + "ContactTitle": "Sales Representative", + "Address": "Via Monte Bianco 34", + "City": "Torino", + "PostalCode": 10100, + "Country": "Italy", + "Phone": "011-4988260", + "Fax": "011-4988261", "Orders": [ { - "OrderID": 11004, - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10422, + "EmployeeID": 2, + "OrderDate": "1997-01-22T00:00:00", + "RequiredDate": "1997-02-19T00:00:00", + "ShippedDate": "1997-01-31T00:00:00", "ShipVia": 1, - "Freight": 44.84, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", + "Freight": 3.02, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 6, + "UnitPrice": 24.9, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 11005, - "EmployeeID": 2, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10710, + "EmployeeID": 1, + "OrderDate": "1997-10-20T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", "ShipVia": 1, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 4.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 2, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 10, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ - { - "OrderID": 11006, - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", - "ShipVia": 2, - "Freight": 25.19, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + }, + { + "OrderID": 10753, + "EmployeeID": 3, + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 1, + "Freight": 7.7, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 11007, - "EmployeeID": 8, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 2, - "Freight": 202.24, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10807, + "EmployeeID": 4, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 1.36, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 1, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11026, + "EmployeeID": 4, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", + "ShipVia": 1, + "Freight": 47.09, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 14, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11008, - "EmployeeID": 7, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShipVia": 3, - "Freight": 79.46, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 11060, + "EmployeeID": 2, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 2, + "Freight": 10.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 70, - "Discount": 0.06 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 90, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 21, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, "Discount": 0 } ] @@ -34739,453 +24441,384 @@ ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "CustomerID": "GOURL", + "Company": "Gourmet Lanchonetes", + "ContactName": "André Fonseca", + "ContactTitle": "Sales Associate", + "Address": "Av. Brasil, 442", + "City": "Campinas", + "Region": "SP", + "PostalCode": 4876, + "Country": "Brazil", + "Phone": "(11) 555-9482", "Orders": [ { - "OrderID": 11009, - "EmployeeID": 2, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 59.11, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10423, + "EmployeeID": 6, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", + "ShipVia": 3, + "Freight": 24.5, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 18, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 9, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11010, - "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 2, - "Freight": 28.71, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10652, + "EmployeeID": 4, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 2, + "Freight": 7.14, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 2, + "Discount": 0.25 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 11011, - "EmployeeID": 3, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 1, - "Freight": 1.21, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "OrderID": 10685, + "EmployeeID": 4, + "OrderDate": "1997-09-29T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 33.75, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 20, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 11012, + "OrderID": 10709, "EmployeeID": 1, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-11-20T00:00:00", "ShipVia": 3, - "Freight": 242.95, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 210.8, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 36, - "Discount": 0.06 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 11013, + "OrderID": 10734, "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 32.99, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-12T00:00:00", + "ShipVia": 3, + "Freight": 1.63, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 10, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 4, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 2, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 11014, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", - "ShipVia": 3, - "Freight": 23.6, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10777, + "EmployeeID": 7, + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 2, + "Freight": 3.01, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10790, + "EmployeeID": 6, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 28.23, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 3, + "Discount": 0.16 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 11015, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10959, + "EmployeeID": 6, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", "ShipVia": 2, - "Freight": 4.62, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 4.98, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 11049, + "EmployeeID": 3, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 8.34, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", + "CustomerID": "CONSH", + "Company": "Consolidated Holdings", + "ContactName": "Elizabeth Brown", "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", + "Address": "Berkeley Gardens 12 Brewery", "City": "London", - "PostalCode": 49000, + "PostalCode": 23000, "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Phone": "(171) 555-2282", + "Fax": "(171) 555-9199", "Orders": [ { - "OrderID": 11016, - "EmployeeID": 9, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10435, + "EmployeeID": 8, + "OrderDate": "1997-02-04T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", "ShipVia": 2, - "Freight": 33.8, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, + "Freight": 9.21, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 38000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 16, + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11017, - "EmployeeID": 9, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 2, - "Freight": 754.26, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10462, + "EmployeeID": 2, + "OrderDate": "1997-03-03T00:00:00", + "RequiredDate": "1997-03-31T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 1, + "Freight": 6.17, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 110, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11018, - "EmployeeID": 4, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10848, + "EmployeeID": 7, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 2, - "Freight": 11.65, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 38.24, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 39000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 3, "Discount": 0 } ] @@ -35205,12 +24838,13 @@ "Fax": "(1) 123-5556", "Orders": [ { - "OrderID": 11019, - "EmployeeID": 6, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShipVia": 3, - "Freight": 3.17, + "OrderID": 10448, + "EmployeeID": 4, + "OrderDate": "1997-02-17T00:00:00", + "RequiredDate": "1997-03-17T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", + "ShipVia": 2, + "Freight": 38.82, "ShipName": "Rancho grande", "ShipAddress": "Av. del Libertador 900", "ShipCity": "Buenos Aires", @@ -35218,195 +24852,138 @@ "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 3, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 2, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 11020, - "EmployeeID": 2, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10716, + "EmployeeID": 4, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-27T00:00:00", "ShipVia": 2, - "Freight": 43.3, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 22.57, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 11021, - "EmployeeID": 3, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", + "OrderID": 10828, + "EmployeeID": 9, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", "ShipVia": 1, - "Freight": 297.18, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 90.85, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 11, - "Discount": 0.25 - }, { "ProductID": 20, "UnitPrice": 81, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 63, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 44, - "Discount": 0.25 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 11022, - "EmployeeID": 9, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10916, + "EmployeeID": 1, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 63.77, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 15000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 11023, - "EmployeeID": 1, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 123.83, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", + "OrderID": 11019, + "EmployeeID": 6, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShipVia": 3, + "Freight": 3.17, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 4, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 2, "Discount": 0 } ] @@ -35414,53 +24991,60 @@ ] }, { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 21000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", + "CustomerID": "LAZYK", + "Company": "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", "Orders": [ { - "OrderID": 11024, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 1, - "Freight": 74.36, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 28000, - "ShipCountry": "UK", + "OrderID": 10482, + "EmployeeID": 1, + "OrderDate": "1997-03-21T00:00:00", + "RequiredDate": "1997-04-18T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 7.48, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10545, + "EmployeeID": 8, + "OrderDate": "1997-05-22T00:00:00", + "RequiredDate": "1997-06-19T00:00:00", + "ShippedDate": "1997-06-26T00:00:00", + "ShipVia": 2, + "Freight": 11.92, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 50, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 } ] @@ -35468,311 +25052,322 @@ ] }, { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", + "CustomerID": "LAUGB", + "Company": "Laughing Bacchus Wine Cellars", + "ContactName": "Yoshi Tannamuri", + "ContactTitle": "Marketing Assistant", + "Address": "1900 Oak St.", + "City": "Vancouver", + "Region": "BC", + "PostalCode": 24000, + "Country": "Canada", + "Phone": "(604) 555-3392", + "Fax": "(604) 555-7293", "Orders": [ { - "OrderID": 11025, - "EmployeeID": 6, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10495, + "EmployeeID": 3, + "OrderDate": "1997-04-03T00:00:00", + "RequiredDate": "1997-05-01T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 3, - "Freight": 29.17, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 4.65, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 33000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, + "ProductID": 23, + "UnitPrice": 7.2, "Quantity": 10, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 20, - "Discount": 0.1 + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 11026, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", - "ShipVia": 1, - "Freight": 47.09, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10620, + "EmployeeID": 2, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", + "ShipVia": 3, + "Freight": 0.94, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 15000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 27000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11027, - "EmployeeID": 1, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 1, - "Freight": 52.52, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", + "OrderID": 10810, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", + "ShipVia": 3, + "Freight": 4.33, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", "ShipRegion": "BC", - "ShipPostalCode": 14000, + "ShipPostalCode": 41000, "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 7, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, + "CustomerID": "BLAUS", + "Company": "Blauer See Delikatessen", + "ContactName": "Hanna Moos", + "ContactTitle": "Sales Representative", + "Address": "Forsterstr. 57", + "City": "Mannheim", + "PostalCode": 68306, "Country": "Germany", - "Phone": "0555-09876", + "Phone": "0621-08460", + "Fax": "0621-08924", "Orders": [ { - "OrderID": 11028, - "EmployeeID": 2, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", - "ShipVia": 1, - "Freight": 29.59, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10501, + "EmployeeID": 9, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 3, + "Freight": 8.85, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 24, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 11029, + "OrderID": 10509, "EmployeeID": 4, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", + "OrderDate": "1997-04-17T00:00:00", + "RequiredDate": "1997-05-15T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 1, - "Freight": 47.84, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 0.15, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10582, + "EmployeeID": 3, + "OrderDate": "1997-06-27T00:00:00", + "RequiredDate": "1997-07-25T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 27.71, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 12, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11030, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 2, - "Freight": 830.75, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10614, + "EmployeeID": 8, + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 3, + "Freight": 1.93, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 100, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 70, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 60, - "Discount": 0.25 - }, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10853, + "EmployeeID": 9, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", + "ShipVia": 2, + "Freight": 53.83, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 100, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, + "Discount": 0 } ] }, { - "OrderID": 11031, + "OrderID": 10956, "EmployeeID": 6, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 227.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 44.65, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 45, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 80, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 21, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 11058, + "EmployeeID": 9, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShipVia": 3, + "Freight": 31.14, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, "Discount": 0 } ] @@ -35780,140 +25375,97 @@ ] }, { - "CustomerID": "WHITC", - "Company": "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": "NORTS", + "Company": "North/South", + "ContactName": "Simon Crowther", + "ContactTitle": "Sales Associate", + "Address": "South House 300 Queensbridge", + "City": "London", + "PostalCode": 17000, + "Country": "UK", + "Phone": "(171) 555-7733", + "Fax": "(171) 555-2530", "Orders": [ { - "OrderID": 11032, - "EmployeeID": 2, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 10517, + "EmployeeID": 3, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 3, - "Freight": 606.19, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 32.07, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 16000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 35, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 25, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 11033, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 10752, + "EmployeeID": 2, + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", "ShipVia": 3, - "Freight": 84.74, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 1.39, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 70, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0 }, { "ProductID": 69, "UnitPrice": 36, - "Quantity": 36, - "Discount": 0.1 + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11034, - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 40.32, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 11057, + "EmployeeID": 3, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 4.13, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 6, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] @@ -35921,233 +25473,174 @@ ] }, { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", + "CustomerID": "CACTU", + "Company": "Cactus Comidas para llevar", + "ContactName": "Patricio Simpson", + "ContactTitle": "Sales Agent", + "Address": "Cerrito 333", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5555", + "Fax": "(1) 135-4892", "Orders": [ { - "OrderID": 11035, - "EmployeeID": 2, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10521, + "EmployeeID": 8, + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", "ShipVia": 2, - "Freight": 0.17, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 17.22, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 35, "UnitPrice": 18, - "Quantity": 10, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 60, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10782, + "EmployeeID": 9, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 1.1, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 1, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 11036, - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", + "OrderID": 10819, + "EmployeeID": 2, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", "ShipVia": 3, - "Freight": 149.47, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 19.76, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 43, + "UnitPrice": 46, "Quantity": 7, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 11037, - "EmployeeID": 7, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", + "OrderID": 10881, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 1, - "Freight": 3.2, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 2.84, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 70, + "ProductID": 73, "UnitPrice": 15, - "Quantity": 4, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 11038, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", - "ShipVia": 2, - "Freight": 29.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10937, + "EmployeeID": 7, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 31.51, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, - "Discount": 0.2 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 2, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 11039, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShipVia": 2, - "Freight": 65, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 11054, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShipVia": 1, + "Freight": 0.33, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 60, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 10, "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 28, + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] @@ -36167,12 +25660,13 @@ "Phone": "(503) 555-7555", "Orders": [ { - "OrderID": 11040, - "EmployeeID": 4, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShipVia": 3, - "Freight": 18.84, + "OrderID": 10528, + "EmployeeID": 6, + "OrderDate": "1997-05-06T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 3.35, "ShipName": "Great Lakes Food Market", "ShipAddress": "2732 Baker Blvd.", "ShipCity": "Eugene", @@ -36181,582 +25675,508 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 3, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ - { - "OrderID": 11041, - "EmployeeID": 3, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", - "ShipVia": 2, - "Freight": 48.22, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", - "OrderDetails": [ + }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, "Discount": 0.2 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 11042, - "EmployeeID": 2, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 1, - "Freight": 29.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderID": 10589, + "EmployeeID": 8, + "OrderDate": "1997-07-04T00:00:00", + "RequiredDate": "1997-08-01T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 4.42, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 35, + "UnitPrice": 18, "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 11043, - "EmployeeID": 5, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", + "OrderID": 10616, + "EmployeeID": 1, + "OrderDate": "1997-07-31T00:00:00", + "RequiredDate": "1997-08-28T00:00:00", + "ShippedDate": "1997-08-05T00:00:00", "ShipVia": 2, - "Freight": 8.8, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 116.53, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 15000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 11044, - "EmployeeID": 4, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10656, + "EmployeeID": 6, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 1, - "Freight": 8.72, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 57.15, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 26000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, + "Discount": 0.1 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 28, + "Discount": 0.1 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.1 + } + ] + }, { - "OrderID": 11045, - "EmployeeID": 6, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShipVia": 2, - "Freight": 70.58, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 46000, - "ShipCountry": "Canada", + "OrderID": 10681, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 76.13, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 24, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 11046, - "EmployeeID": 8, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10816, + "EmployeeID": 4, + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-02-03T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", "ShipVia": 2, - "Freight": 71.64, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 719.78, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, "Discount": 0.06 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, "Discount": 0.06 - }, + } + ] + }, + { + "OrderID": 10936, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 33.68, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 45000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11047, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 3, - "Freight": 46.62, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 42000, - "ShipCountry": "UK", + "OrderID": 11006, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", + "ShipVia": 2, + "Freight": 25.19, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 1, "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.25 + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 2, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 24000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11048, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", + "OrderID": 11040, + "EmployeeID": 4, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", "ShipVia": 3, - "Freight": 24.12, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "Freight": 18.84, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 42, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 11049, - "EmployeeID": 3, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 1, - "Freight": 8.34, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + } + ] + }, + { + "OrderID": 11061, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-06-11T00:00:00", + "ShipVia": 3, + "Freight": 14.01, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, + "Discount": 0 } ] } ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 46000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "MAISD", + "Company": "Maison Dewey", + "ContactName": "Catherine Dewey", + "ContactTitle": "Sales Agent", + "Address": "Rue Joseph-Bens 532", + "City": "Bruxelles", + "PostalCode": 45000, + "Country": "Belgium", + "Phone": "(02) 201 24 67", + "Fax": "(02) 201 24 68", "Orders": [ { - "OrderID": 11050, - "EmployeeID": 8, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10529, + "EmployeeID": 5, + "OrderDate": "1997-05-07T00:00:00", + "RequiredDate": "1997-06-04T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", "ShipVia": 2, - "Freight": 59.41, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "Freight": 66.69, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.1 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 11051, - "EmployeeID": 7, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", + "OrderID": 10649, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-09-25T00:00:00", + "ShippedDate": "1997-08-29T00:00:00", "ShipVia": 3, - "Freight": 2.79, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 6.2, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 21000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 11052, - "EmployeeID": 3, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10760, + "EmployeeID": 4, + "OrderDate": "1997-12-01T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1997-12-10T00:00:00", "ShipVia": 1, - "Freight": 67.26, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 155.64, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 12000, + "ShipCountry": "Belgium", "OrderDetails": [ + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.25 + }, + { + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 40, + "Discount": 0 + }, { "ProductID": 43, "UnitPrice": 46, "Quantity": 30, - "Discount": 0.2 - }, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10892, + "EmployeeID": 4, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 2, + "Freight": 120.27, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 30000, + "ShipCountry": "Belgium", + "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, + { + "OrderID": 10896, + "EmployeeID": 7, + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 32.45, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 15000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 16, + "Discount": 0 + } + ] + }, { - "OrderID": 11053, - "EmployeeID": 2, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", + "OrderID": 10978, + "EmployeeID": 9, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 32.82, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 31000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 11054, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", + "OrderID": 11004, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 1, - "Freight": 0.33, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 44.84, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 10, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 } ] @@ -36764,139 +26184,119 @@ ] }, { - "CustomerID": "HILAA", - "Company": "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": "TRAIH", + "Company": "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", "Orders": [ { - "OrderID": 11055, - "EmployeeID": 7, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10574, + "EmployeeID": 4, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 120.92, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 37.6, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 11000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11056, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10577, + "EmployeeID": 9, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 278.96, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 39000, - "ShipCountry": "UK", + "Freight": 25.41, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 40, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 16000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ + }, { - "OrderID": 11057, - "EmployeeID": 3, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10822, + "EmployeeID": 6, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", "ShipVia": 3, - "Freight": 4.13, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "Freight": 7, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, + "Discount": 0 + }, { "ProductID": 70, "UnitPrice": 15, - "Quantity": 3, + "Quantity": 6, "Discount": 0 } ] @@ -36904,451 +26304,483 @@ ] }, { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", + "CustomerID": "LETSS", + "Company": "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", "Orders": [ { - "OrderID": 11058, - "EmployeeID": 9, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShipVia": 3, - "Freight": 31.14, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10579, + "EmployeeID": 1, + "OrderDate": "1997-06-25T00:00:00", + "RequiredDate": "1997-07-23T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 2, + "Freight": 13.73, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 3, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 21, "Discount": 0 + } + ] + }, + { + "OrderID": 10719, + "EmployeeID": 8, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 2, + "Freight": 51.44, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 12, + "Discount": 0.25 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 3, + "Discount": 0.25 }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 40, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10735, + "EmployeeID": 6, + "OrderDate": "1997-11-10T00:00:00", + "RequiredDate": "1997-12-08T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 45.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", + "OrderDetails": [ { "ProductID": 61, "UnitPrice": 28.5, - "Quantity": 4, - "Discount": 0 + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 11059, - "EmployeeID": 2, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-06-10T00:00:00", + "OrderID": 10884, + "EmployeeID": 4, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", "ShipVia": 2, - "Freight": 85.8, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 90.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 30, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 12, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 21, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", + "CustomerID": "WILMK", + "Company": "Wilman Kala", + "ContactName": "Matti Karttunen", + "ContactTitle": "Owner/Marketing Assistant", + "Address": "Keskuskatu 45", + "City": "Helsinki", + "PostalCode": 21240, + "Country": "Finland", + "Phone": "90-224 8858", + "Fax": "90-224 8858", "Orders": [ { - "OrderID": 11060, + "OrderID": 10615, "EmployeeID": 2, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 2, - "Freight": 10.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderDate": "1997-07-30T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 3, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10673, + "EmployeeID": 2, + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 22.76, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11061, - "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-06-11T00:00:00", - "ShipVia": 3, - "Freight": 14.01, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderID": 10695, + "EmployeeID": 7, + "OrderDate": "1997-10-07T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", + "ShipVia": 1, + "Freight": 16.72, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11062, + "OrderID": 10873, "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShipVia": 2, - "Freight": 29.93, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 0.82, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 11063, + "OrderID": 10879, "EmployeeID": 3, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 81.73, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 8.5, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11064, + "OrderID": 10910, "EmployeeID": 1, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 1, - "Freight": 30.09, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 3, + "Freight": 38.11, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 77, - "Discount": 0.1 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 55, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11065, - "EmployeeID": 8, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", + "OrderID": 11005, + "EmployeeID": 2, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 1, - "Freight": 12.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, + "Discount": 0 } ] } ] }, { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, + "CustomerID": "THECR", + "Company": "The Cracker Box", + "ContactName": "Liu Wong", + "ContactTitle": "Marketing Assistant", + "Address": "55 Grizzly Peak Rd.", + "City": "Butte", + "Region": "MT", + "PostalCode": 59801, "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", + "Phone": "(406) 555-5834", + "Fax": "(406) 555-8083", "Orders": [ { - "OrderID": 11066, - "EmployeeID": 7, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10624, + "EmployeeID": 4, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", "ShipVia": 2, - "Freight": 44.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, + "Freight": 94.8, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 42, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 34, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10775, + "EmployeeID": 7, + "OrderDate": "1997-12-12T00:00:00", + "RequiredDate": "1998-01-09T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 20.25, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, "UnitPrice": 14, - "Quantity": 35, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 11067, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 7.98, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderID": 11003, + "EmployeeID": 3, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 3, + "Freight": 14.91, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 10, "Discount": 0 } ] @@ -37356,272 +26788,279 @@ ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", + "CustomerID": "ALFKI", + "Company": "Alfreds Futterkiste", + "ContactName": "Maria Anders", + "ContactTitle": "Sales Representative", + "Address": "Obere Str. 57", + "City": "Berlin", + "PostalCode": 12209, + "Country": "Germany", + "Phone": "030-0074321", + "Fax": "030-0076545", "Orders": [ { - "OrderID": 11068, - "EmployeeID": 8, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShipVia": 2, - "Freight": 81.75, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10643, + "EmployeeID": 6, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", + "ShipVia": 1, + "Freight": 29.46, + "ShipName": "Alfreds Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 28, "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.16 + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 2, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 11069, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", + "OrderID": 10692, + "EmployeeID": 4, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-10-31T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", "ShipVia": 2, - "Freight": 15.67, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 61.02, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 11070, - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", + "OrderID": 10702, + "EmployeeID": 4, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", "ShipVia": 1, - "Freight": 136, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "Freight": 23.94, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.16 - }, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10835, + "EmployeeID": 1, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 3, + "Freight": 69.53, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11071, + "OrderID": 10952, "EmployeeID": 1, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 1, - "Freight": 0.93, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 40.42, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 15, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 16, "Discount": 0.06 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 11011, + "EmployeeID": 3, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 1, + "Freight": 1.21, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 40, "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 11072, - "EmployeeID": 4, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShipVia": 2, - "Freight": 258.64, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "CustomerID": "FRANR", + "Company": "France restauration", + "ContactName": "Carine Schmitt", + "ContactTitle": "Marketing Manager", + "Address": "54, rue Royale", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.32.21.21", + "Fax": "40.32.21.20", + "Orders": [ + { + "OrderID": 10671, + "EmployeeID": 1, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-09-24T00:00:00", + "ShipVia": 1, + "Freight": 30.34, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 8, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 40, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 22, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10860, + "EmployeeID": 3, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 3, + "Freight": 19.26, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 130, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 11073, + "OrderID": 10971, "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", "ShipVia": 2, - "Freight": 24.95, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 121.82, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 14, "Discount": 0 } ] @@ -37629,308 +27068,223 @@ ] }, { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", + "CustomerID": "SPECD", + "Company": "Spécialités du monde", + "ContactName": "Dominique Perrier", + "ContactTitle": "Marketing Manager", + "Address": "25, rue Lauriston", + "City": "Paris", + "PostalCode": 75016, + "Country": "France", + "Phone": "(1) 47.55.60.10", + "Fax": "(1) 47.55.60.20", "Orders": [ { - "OrderID": 11074, - "EmployeeID": 7, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShipVia": 2, - "Freight": 18.44, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10738, + "EmployeeID": 2, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 1, + "Freight": 2.91, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 16, "UnitPrice": 17.45, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10907, + "EmployeeID": 6, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-25T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 9.19, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 14, - "Discount": 0.06 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 11075, - "EmployeeID": 8, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", + "OrderID": 10964, + "EmployeeID": 3, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 2, - "Freight": 6.19, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 87.38, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 11076, - "EmployeeID": 4, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", + "OrderID": 11043, + "EmployeeID": 5, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", "ShipVia": 2, - "Freight": 38.28, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, + "Freight": 8.8, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 11, + "UnitPrice": 21, "Quantity": 10, - "Discount": 0.25 + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "LACOR", + "Company": "La corne d'abondance", + "ContactName": "Daniel Tonini", + "ContactTitle": "Sales Representative", + "Address": "67, avenue de l'Europe", + "City": "Versailles", + "PostalCode": 78000, + "Country": "France", + "Phone": "30.59.84.10", + "Fax": "30.59.85.11", "Orders": [ { - "OrderID": 11077, - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10858, + "EmployeeID": 2, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", + "ShipVia": 1, + "Freight": 52.51, + "ShipName": "La corne d'abondance", + "ShipAddress": "67, avenue de l'Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 24, - "Discount": 0.2 - }, - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 1, - "Discount": 0.02 - }, { "ProductID": 7, "UnitPrice": 30, - "Quantity": 1, - "Discount": 0.06 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 2, - "Discount": 0.1 - }, - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 1, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 2, - "Discount": 0.06 + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 4, "Discount": 0 - }, - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 2, - "Discount": 0.04 - }, + } + ] + }, + { + "OrderID": 10927, + "EmployeeID": 4, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 19.79, + "ShipName": "La corne d'abondance", + "ShipAddress": "67, avenue de l'Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { "ProductID": 20, "UnitPrice": 81, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 3, + "Quantity": 5, "Discount": 0 }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 3, - "Discount": 0.02 - }, { "ProductID": 52, "UnitPrice": 7, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 2, - "Discount": 0.04 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 1, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 2, - "Discount": 0.0099999998 - }, + } + ] + }, + { + "OrderID": 10972, + "EmployeeID": 4, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 2, + "Freight": 0.02, + "ShipName": "La corne d'abondance", + "ShipAddress": "67, avenue de l'Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 4, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 7, "Discount": 0 } ] diff --git a/samples/grids/hierarchical-grid/column-moving-options/src/HierarchicalCustomers.json b/samples/grids/hierarchical-grid/column-moving-options/src/HierarchicalCustomers.json index 75c7bc037d..43b2853953 100644 --- a/samples/grids/hierarchical-grid/column-moving-options/src/HierarchicalCustomers.json +++ b/samples/grids/hierarchical-grid/column-moving-options/src/HierarchicalCustomers.json @@ -44,6 +44,112 @@ "Discount": 0 } ] + }, + { + "OrderID": 10274, + "EmployeeID": 6, + "OrderDate": "1996-08-06T00:00:00", + "RequiredDate": "1996-09-03T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 1, + "Freight": 6.01, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 7, + "Discount": 0 + } + ] + }, + { + "OrderID": 10295, + "EmployeeID": 2, + "OrderDate": "1996-09-02T00:00:00", + "RequiredDate": "1996-09-30T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", + "ShipVia": 2, + "Freight": 1.15, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 10737, + "EmployeeID": 2, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 7.79, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10739, + "EmployeeID": 3, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-17T00:00:00", + "ShipVia": 3, + "Freight": 11.08, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 18, + "Discount": 0 + } + ] } ] }, @@ -86,251 +192,155 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10250, - "EmployeeID": 4, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-12T00:00:00", + "OrderID": 10438, + "EmployeeID": 3, + "OrderDate": "1997-02-06T00:00:00", + "RequiredDate": "1997-03-06T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", "ShipVia": 2, - "Freight": 65.83, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 8.24, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 15, - "Discount": 0.16 + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10251, - "EmployeeID": 3, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", + "OrderID": 10446, + "EmployeeID": 6, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-02-19T00:00:00", "ShipVia": 1, - "Freight": 41.34, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 14.68, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 + }, + { + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 44000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10252, - "EmployeeID": 4, - "OrderDate": "1996-07-09T00:00:00", - "RequiredDate": "1996-08-06T00:00:00", - "ShippedDate": "1996-07-11T00:00:00", + "OrderID": 10548, + "EmployeeID": 3, + "OrderDate": "1997-05-26T00:00:00", + "RequiredDate": "1997-06-23T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", "ShipVia": 2, - "Freight": 51.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 22000, - "ShipCountry": "Belgium", + "Freight": 1.43, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 40, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Fax": "0452-076546", - "Orders": [ + }, { - "OrderID": 10254, - "EmployeeID": 5, - "OrderDate": "1996-07-11T00:00:00", - "RequiredDate": "1996-08-08T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderID": 10608, + "EmployeeID": 4, + "OrderDate": "1997-07-23T00:00:00", + "RequiredDate": "1997-08-20T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 22.98, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 27.79, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 21, - "Discount": 0.16 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10255, - "EmployeeID": 9, - "OrderDate": "1996-07-12T00:00:00", - "RequiredDate": "1996-08-09T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", - "ShipVia": 3, - "Freight": 148.33, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10967, + "EmployeeID": 2, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 62.22, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 25, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 40, "Discount": 0 } ] @@ -338,2105 +348,1447 @@ ] }, { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, + "CustomerID": "HANAR", + "Company": "Hanari Carnes", + "ContactName": "Mario Pontes", + "ContactTitle": "Accounting Manager", + "Address": "Rua do Paço, 67", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 5454, "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", + "Phone": "(21) 555-0091", + "Fax": "(21) 555-8765", "Orders": [ { - "OrderID": 10256, - "EmployeeID": 3, - "OrderDate": "1996-07-15T00:00:00", - "RequiredDate": "1996-08-12T00:00:00", - "ShippedDate": "1996-07-17T00:00:00", + "OrderID": 10250, + "EmployeeID": 4, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-12T00:00:00", "ShipVia": 2, - "Freight": 13.97, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, + "Freight": 65.83, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10257, - "EmployeeID": 4, - "OrderDate": "1996-07-16T00:00:00", - "RequiredDate": "1996-08-13T00:00:00", - "ShippedDate": "1996-07-22T00:00:00", - "ShipVia": 3, - "Freight": 81.91, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10258, - "EmployeeID": 1, - "OrderDate": "1996-07-17T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderID": 10541, + "EmployeeID": 2, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-05-29T00:00:00", "ShipVia": 1, - "Freight": 140.51, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 68.65, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.1 }, { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 65, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 4, + "Discount": 0.1 }, { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 9, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "CENTC", - "Company": "Centro comercial Moctezuma", - "ContactName": "Francisco Chang", - "ContactTitle": "Marketing Manager", - "Address": "Sierras de Granada 9993", - "City": "México D.F.", - "PostalCode": 5022, - "Country": "Mexico", - "Phone": "(5) 555-3392", - "Fax": "(5) 555-7293", - "Orders": [ + }, { - "OrderID": 10259, + "OrderID": 10645, "EmployeeID": 4, - "OrderDate": "1996-07-18T00:00:00", - "RequiredDate": "1996-08-15T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", - "ShipVia": 3, - "Freight": 3.25, - "ShipName": "Centro comercial Moctezuma", - "ShipAddress": "Sierras de Granada 9993", - "ShipCity": "México D.F.", - "ShipPostalCode": 5022, - "ShipCountry": "Mexico", + "OrderDate": "1997-08-26T00:00:00", + "RequiredDate": "1997-09-23T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", + "ShipVia": 1, + "Freight": 12.41, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 1, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10260, - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-29T00:00:00", + "OrderID": 10690, + "EmployeeID": 1, + "OrderDate": "1997-10-02T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", "ShipVia": 1, - "Freight": 55.09, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 15.8, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 16, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, "Discount": 0.25 - }, + } + ] + }, + { + "OrderID": 10770, + "EmployeeID": 8, + "OrderDate": "1997-12-09T00:00:00", + "RequiredDate": "1998-01-06T00:00:00", + "ShippedDate": "1997-12-17T00:00:00", + "ShipVia": 3, + "Freight": 5.32, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 21, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10261, + "OrderID": 10783, "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-30T00:00:00", + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", "ShipVia": 2, - "Freight": 3.05, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 124.98, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", "ShipCity": "Sao Paulo", "ShipRegion": "RJ", - "ShipPostalCode": 2389, + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 20, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 20, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10262, - "EmployeeID": 8, - "OrderDate": "1996-07-22T00:00:00", - "RequiredDate": "1996-08-19T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", - "ShipVia": 3, - "Freight": 48.29, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10886, + "EmployeeID": 1, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", + "ShipVia": 1, + "Freight": 4.99, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 15, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 2, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10263, - "EmployeeID": 9, - "OrderDate": "1996-07-23T00:00:00", - "RequiredDate": "1996-08-20T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", + "OrderID": 10903, + "EmployeeID": 3, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 3, - "Freight": 146.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 36.71, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 33000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10264, - "EmployeeID": 6, - "OrderDate": "1996-07-24T00:00:00", - "RequiredDate": "1996-08-21T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", + "OrderID": 10922, + "EmployeeID": 5, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", "ShipVia": 3, - "Freight": 3.67, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 27000, - "ShipCountry": "Sweden", + "Freight": 62.74, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 35, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10265, - "EmployeeID": 2, - "OrderDate": "1996-07-25T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", + "OrderID": 10925, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 1, - "Freight": 55.28, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 2.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10266, - "EmployeeID": 3, - "OrderDate": "1996-07-26T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", - "ShipVia": 3, - "Freight": 25.73, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10981, + "EmployeeID": 1, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 193.37, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10267, - "EmployeeID": 4, - "OrderDate": "1996-07-29T00:00:00", - "RequiredDate": "1996-08-26T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", - "ShipVia": 1, - "Freight": 208.58, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 11022, + "EmployeeID": 9, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10268, - "EmployeeID": 8, - "OrderDate": "1996-07-30T00:00:00", - "RequiredDate": "1996-08-27T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 3, - "Freight": 66.29, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", + "OrderID": 11052, + "EmployeeID": 3, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 67.26, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 10, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 4, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "WHITC", - "Company": "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": "VICTE", + "Company": "Victuailles en stock", + "ContactName": "Mary Saveley", + "ContactTitle": "Sales Agent", + "Address": "2, rue du Commerce", + "City": "Lyon", + "PostalCode": 69004, + "Country": "France", + "Phone": "78.32.54.86", + "Fax": "78.32.54.87", "Orders": [ { - "OrderID": 10269, - "EmployeeID": 5, - "OrderDate": "1996-07-31T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", + "OrderID": 10251, + "EmployeeID": 3, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", "ShipVia": 1, - "Freight": 4.56, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 41.34, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 15, "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10270, - "EmployeeID": 1, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 1, - "Freight": 136.54, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 30, - "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 25, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10271, - "EmployeeID": 6, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", + "OrderID": 10334, + "EmployeeID": 8, + "OrderDate": "1996-10-21T00:00:00", + "RequiredDate": "1996-11-18T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", "ShipVia": 2, - "Freight": 4.54, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 8.56, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 24, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10272, - "EmployeeID": 6, - "OrderDate": "1996-08-02T00:00:00", - "RequiredDate": "1996-08-30T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", + "OrderID": 10450, + "EmployeeID": 8, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-19T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", "ShipVia": 2, - "Freight": 98.03, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 7.23, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, "Quantity": 6, - "Discount": 0 + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10459, + "EmployeeID": 4, + "OrderDate": "1997-02-27T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 25.09, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0.06 }, { "ProductID": 72, "UnitPrice": 27.8, - "Quantity": 24, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10273, - "EmployeeID": 3, - "OrderDate": "1996-08-05T00:00:00", - "RequiredDate": "1996-09-02T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", + "OrderID": 10478, + "EmployeeID": 2, + "OrderDate": "1997-03-18T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-26T00:00:00", "ShipVia": 3, - "Freight": 76.07, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 4.81, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 10, "UnitPrice": 24.8, - "Quantity": 24, - "Discount": 0.06 - }, - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2, "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 60, - "Discount": 0.06 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 33, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10274, - "EmployeeID": 6, - "OrderDate": "1996-08-06T00:00:00", - "RequiredDate": "1996-09-03T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 1, - "Freight": 6.01, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, + "OrderID": 10546, + "EmployeeID": 1, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-05-27T00:00:00", + "ShipVia": 3, + "Freight": 194.72, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 20, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 7, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10275, - "EmployeeID": 1, - "OrderDate": "1996-08-07T00:00:00", - "RequiredDate": "1996-09-04T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", - "ShipVia": 1, - "Freight": 26.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10806, + "EmployeeID": 3, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 2, + "Freight": 22.11, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 6, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10276, - "EmployeeID": 8, - "OrderDate": "1996-08-08T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-14T00:00:00", - "ShipVia": 3, - "Freight": 13.84, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 15, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Fax": "0342-023177", - "Orders": [ + }, { - "OrderID": 10277, - "EmployeeID": 2, - "OrderDate": "1996-08-09T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-08-13T00:00:00", + "OrderID": 10814, + "EmployeeID": 3, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", "ShipVia": 3, - "Freight": 125.77, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 130.94, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, + "Discount": 0.16 + }, + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 8, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 14000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10278, - "EmployeeID": 8, - "OrderDate": "1996-08-12T00:00:00", - "RequiredDate": "1996-09-09T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", + "OrderID": 10843, + "EmployeeID": 4, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", "ShipVia": 2, - "Freight": 92.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "Freight": 9.26, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 16, - "Discount": 0 - }, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 4, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10850, + "EmployeeID": 1, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 49.19, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 15, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 8, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 4, + "Discount": 0.16 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10279, - "EmployeeID": 8, - "OrderDate": "1996-08-13T00:00:00", - "RequiredDate": "1996-09-10T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 2, - "Freight": 25.83, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 27000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "SUPRD", + "Company": "Suprêmes délices", + "ContactName": "Pascale Cartrain", + "ContactTitle": "Accounting Manager", + "Address": "Boulevard Tirou, 255", + "City": "Charleroi", + "PostalCode": 44000, + "Country": "Belgium", + "Phone": "(071) 23 67 22 20", + "Fax": "(071) 23 67 22 21", "Orders": [ { - "OrderID": 10280, - "EmployeeID": 2, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-09-11T00:00:00", - "ShippedDate": "1996-09-12T00:00:00", - "ShipVia": 1, - "Freight": 8.98, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", + "OrderID": 10252, + "EmployeeID": 4, + "OrderDate": "1996-07-09T00:00:00", + "RequiredDate": "1996-08-06T00:00:00", + "ShippedDate": "1996-07-11T00:00:00", + "ShipVia": 2, + "Freight": 51.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 22000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 20, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 25, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10281, + "OrderID": 10302, "EmployeeID": 4, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-08-28T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 2.94, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderDate": "1996-09-10T00:00:00", + "RequiredDate": "1996-10-08T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 20000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 1, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 6, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 12, "Discount": 0 } ] }, { - "OrderID": 10282, - "EmployeeID": 4, - "OrderDate": "1996-08-15T00:00:00", - "RequiredDate": "1996-09-12T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10458, + "EmployeeID": 7, + "OrderDate": "1997-02-26T00:00:00", + "RequiredDate": "1997-03-26T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 147.06, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 16000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 6, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10283, - "EmployeeID": 3, - "OrderDate": "1996-08-16T00:00:00", - "RequiredDate": "1996-09-13T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", - "ShipVia": 3, - "Freight": 84.81, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 15, - "UnitPrice": 12.4, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 35, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 3, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10284, - "EmployeeID": 4, - "OrderDate": "1996-08-19T00:00:00", - "RequiredDate": "1996-09-16T00:00:00", - "ShippedDate": "1996-08-27T00:00:00", - "ShipVia": 1, - "Freight": 76.56, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10463, + "EmployeeID": 5, + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-06T00:00:00", + "ShipVia": 3, + "Freight": 14.78, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 21000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 44, - "UnitPrice": 15.5, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 21, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 67, + "ProductID": 42, "UnitPrice": 11.2, - "Quantity": 5, - "Discount": 0.25 + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10285, - "EmployeeID": 1, - "OrderDate": "1996-08-20T00:00:00", - "RequiredDate": "1996-09-17T00:00:00", - "ShippedDate": "1996-08-26T00:00:00", - "ShipVia": 2, - "Freight": 76.83, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10475, + "EmployeeID": 9, + "OrderDate": "1997-03-14T00:00:00", + "RequiredDate": "1997-04-11T00:00:00", + "ShippedDate": "1997-04-04T00:00:00", + "ShipVia": 1, + "Freight": 68.52, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, + "Discount": 0.16 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 36, - "Discount": 0.2 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 42, + "Discount": 0.16 } ] }, { - "OrderID": 10286, - "EmployeeID": 8, - "OrderDate": "1996-08-21T00:00:00", - "RequiredDate": "1996-09-18T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", + "OrderID": 10767, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", "ShipVia": 3, - "Freight": 229.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 1.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 44000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 100, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10287, - "EmployeeID": 8, - "OrderDate": "1996-08-22T00:00:00", - "RequiredDate": "1996-09-19T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", - "ShipVia": 3, - "Freight": 12.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10841, + "EmployeeID": 5, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", + "ShipVia": 2, + "Freight": 424.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 27000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, "Quantity": 15, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10288, - "EmployeeID": 4, - "OrderDate": "1996-08-23T00:00:00", - "RequiredDate": "1996-09-20T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", - "ShipVia": 1, - "Freight": 7.45, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10846, + "EmployeeID": 2, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 56.46, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 15000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 22000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10289, - "EmployeeID": 7, - "OrderDate": "1996-08-26T00:00:00", - "RequiredDate": "1996-09-23T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", + "OrderID": 10885, + "EmployeeID": 6, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 3, - "Freight": 22.77, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "Freight": 5.64, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 40000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 8, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, "Quantity": 30, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 9, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 25, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10290, - "EmployeeID": 8, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", - "ShipVia": 1, - "Freight": 79.7, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderID": 10930, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 3, + "Freight": 15.55, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 17000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 15, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 15, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.2 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 11035, + "EmployeeID": 2, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 0.17, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 30000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10291, - "EmployeeID": 6, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-04T00:00:00", + "OrderID": 11038, + "EmployeeID": 1, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", "ShipVia": 2, - "Freight": 6.4, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 29.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 44000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, + "Discount": 0 } ] } ] }, { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10292, - "EmployeeID": 1, - "OrderDate": "1996-08-28T00:00:00", - "RequiredDate": "1996-09-25T00:00:00", - "ShippedDate": "1996-09-02T00:00:00", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", + "CustomerID": "CHOPS", + "Company": "Chop-suey Chinese", + "ContactName": "Yang Wang", "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", + "Address": "Hauptstr. 29", + "City": "Bern", + "PostalCode": 3012, + "Country": "Switzerland", + "Phone": "0452-076545", + "Fax": "0452-076546", "Orders": [ { - "OrderID": 10293, - "EmployeeID": 1, - "OrderDate": "1996-08-29T00:00:00", - "RequiredDate": "1996-09-26T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 3, - "Freight": 21.18, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10254, + "EmployeeID": 5, + "OrderDate": "1996-07-11T00:00:00", + "RequiredDate": "1996-08-08T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 2, + "Freight": 22.98, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 12, - "Discount": 0 - }, { "ProductID": 24, "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0 + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 5, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 21, + "Discount": 0.16 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10294, - "EmployeeID": 4, - "OrderDate": "1996-08-30T00:00:00", - "RequiredDate": "1996-09-27T00:00:00", - "ShippedDate": "1996-09-05T00:00:00", + "OrderID": 10370, + "EmployeeID": 6, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-27T00:00:00", "ShipVia": 2, - "Freight": 147.26, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 1.17, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { "ProductID": 1, "UnitPrice": 14.4, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, "Quantity": 15, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 21, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ - { - "OrderID": 10295, - "EmployeeID": 2, - "OrderDate": "1996-09-02T00:00:00", - "RequiredDate": "1996-09-30T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", - "ShipVia": 2, - "Freight": 1.15, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 4, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10296, + "OrderID": 10519, "EmployeeID": 6, - "OrderDate": "1996-09-03T00:00:00", - "RequiredDate": "1996-10-01T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 1, - "Freight": 0.12, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderDate": "1997-04-28T00:00:00", + "RequiredDate": "1997-05-26T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 91.76, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10297, - "EmployeeID": 5, - "OrderDate": "1996-09-04T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", - "ShipVia": 2, - "Freight": 5.74, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10731, + "EmployeeID": 7, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 1, + "Freight": 96.65, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10298, - "EmployeeID": 6, - "OrderDate": "1996-09-05T00:00:00", - "RequiredDate": "1996-10-03T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 2, - "Freight": 168.22, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10746, + "EmployeeID": 1, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 3, + "Freight": 31.43, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10299, + "OrderID": 10966, "EmployeeID": 4, - "OrderDate": "1996-09-06T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-13T00:00:00", - "ShipVia": 2, - "Freight": 29.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 27.19, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10300, - "EmployeeID": 2, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", - "ShipVia": 2, - "Freight": 17.68, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 11029, + "EmployeeID": 4, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 47.84, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10301, - "EmployeeID": 8, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", + "OrderID": 11041, + "EmployeeID": 3, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", "ShipVia": 2, - "Freight": 45.08, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 48.22, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 30, "Discount": 0 } ] @@ -2444,1691 +1796,1226 @@ ] }, { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 27000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", + "CustomerID": "RICSU", + "Company": "Richter Supermarkt", + "ContactName": "Michael Holz", + "ContactTitle": "Sales Manager", + "Address": "Grenzacherweg 237", + "City": "Genève", + "PostalCode": 1203, + "Country": "Switzerland", + "Phone": "0897-034214", + "Fax": "0897-034215", "Orders": [ { - "OrderID": 10302, - "EmployeeID": 4, - "OrderDate": "1996-09-10T00:00:00", - "RequiredDate": "1996-10-08T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 20000, - "ShipCountry": "Belgium", + "OrderID": 10255, + "EmployeeID": 9, + "OrderDate": "1996-07-12T00:00:00", + "RequiredDate": "1996-08-09T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", + "ShipVia": 3, + "Freight": 148.33, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 40, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 28, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 12, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10303, - "EmployeeID": 7, - "OrderDate": "1996-09-11T00:00:00", - "RequiredDate": "1996-10-09T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", + "OrderID": 10419, + "EmployeeID": 4, + "OrderDate": "1997-01-20T00:00:00", + "RequiredDate": "1997-02-17T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", "ShipVia": 2, - "Freight": 107.83, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 137.35, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10304, + "OrderID": 10537, "EmployeeID": 1, - "OrderDate": "1996-09-12T00:00:00", - "RequiredDate": "1996-10-10T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", - "ShipVia": 2, - "Freight": 63.79, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", + "ShipVia": 1, + "Freight": 78.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 10, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ - { - "OrderID": 10305, - "EmployeeID": 8, - "OrderDate": "1996-09-13T00:00:00", - "RequiredDate": "1996-10-11T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 3, - "Freight": 257.62, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10306, - "EmployeeID": 1, - "OrderDate": "1996-09-16T00:00:00", - "RequiredDate": "1996-10-14T00:00:00", - "ShippedDate": "1996-09-23T00:00:00", - "ShipVia": 3, - "Freight": 7.56, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10666, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", + "ShipVia": 2, + "Freight": 232.42, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, + "ProductID": 65, + "UnitPrice": 21.05, "Quantity": 10, "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 5, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10307, - "EmployeeID": 2, - "OrderDate": "1996-09-17T00:00:00", - "RequiredDate": "1996-10-15T00:00:00", - "ShippedDate": "1996-09-25T00:00:00", - "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10751, + "EmployeeID": 3, + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-12-03T00:00:00", + "ShipVia": 3, + "Freight": 130.79, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ - { - "OrderID": 10308, - "EmployeeID": 7, - "OrderDate": "1996-09-18T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-24T00:00:00", - "ShipVia": 3, - "Freight": 1.61, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 1, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 5, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10309, + "OrderID": 10758, "EmployeeID": 3, - "OrderDate": "1996-09-19T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", - "ShipVia": 1, - "Freight": 47.3, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-04T00:00:00", + "ShipVia": 3, + "Freight": 138.17, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, + "ProductID": 26, + "UnitPrice": 31.23, "Quantity": 20, "Discount": 0 }, { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 20, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 3, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10310, - "EmployeeID": 8, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-18T00:00:00", - "ShippedDate": "1996-09-27T00:00:00", + "OrderID": 10931, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 17.52, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "Freight": 13.6, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 10, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 42, + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 5, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10311, - "EmployeeID": 1, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-26T00:00:00", - "ShipVia": 3, - "Freight": 24.69, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10951, + "EmployeeID": 9, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 2, + "Freight": 30.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 11.2, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 6, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10312, - "EmployeeID": 2, - "OrderDate": "1996-09-23T00:00:00", - "RequiredDate": "1996-10-21T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", - "ShipVia": 2, - "Freight": 40.26, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 11033, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 84.74, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 4, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 24, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 36, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11075, + "EmployeeID": 8, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-05-03T00:00:00", + "ShipVia": 2, + "Freight": 6.19, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 20, - "Discount": 0 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "WELLI", + "Company": "Wellington Importadora", + "ContactName": "Paula Parente", + "ContactTitle": "Sales Manager", + "Address": "Rua do Mercado, 12", + "City": "Resende", + "Region": "SP", + "PostalCode": 8737, + "Country": "Brazil", + "Phone": "(14) 555-8122", + "Fax": "(14) 555-8123", "Orders": [ { - "OrderID": 10313, - "EmployeeID": 2, - "OrderDate": "1996-09-24T00:00:00", - "RequiredDate": "1996-10-22T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderID": 10256, + "EmployeeID": 3, + "OrderDate": "1996-07-15T00:00:00", + "RequiredDate": "1996-08-12T00:00:00", + "ShippedDate": "1996-07-17T00:00:00", "ShipVia": 2, - "Freight": 1.96, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 13.97, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10314, - "EmployeeID": 1, - "OrderDate": "1996-09-25T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", - "ShipVia": 2, - "Freight": 74.16, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10420, + "EmployeeID": 3, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 1, + "Freight": 44.12, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 40, + "ProductID": 9, + "UnitPrice": 77.6, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 2, "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 25, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 26000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10315, - "EmployeeID": 4, - "OrderDate": "1996-09-26T00:00:00", - "RequiredDate": "1996-10-24T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", + "OrderID": 10585, + "EmployeeID": 7, + "OrderDate": "1997-07-01T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", + "ShipVia": 1, + "Freight": 13.41, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10644, + "EmployeeID": 3, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", "ShipVia": 2, - "Freight": 41.76, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 80379, - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "Freight": 0.14, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 14, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 70, + "ProductID": 46, "UnitPrice": 12, - "Quantity": 30, - "Discount": 0 + "Quantity": 21, + "Discount": 0.1 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10316, - "EmployeeID": 1, - "OrderDate": "1996-09-27T00:00:00", - "RequiredDate": "1996-10-25T00:00:00", - "ShippedDate": "1996-10-08T00:00:00", - "ShipVia": 3, - "Freight": 150.15, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10803, + "EmployeeID": 4, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-06T00:00:00", + "ShipVia": 1, + "Freight": 55.23, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 24, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 70, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 15, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10317, - "EmployeeID": 6, - "OrderDate": "1996-09-30T00:00:00", - "RequiredDate": "1996-10-28T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", + "OrderID": 10809, + "EmployeeID": 7, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 4.87, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, + "ProductID": 52, + "UnitPrice": 7, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10318, - "EmployeeID": 8, - "OrderDate": "1996-10-01T00:00:00", - "RequiredDate": "1996-10-29T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderID": 10900, + "EmployeeID": 1, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 2, - "Freight": 4.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 30676, - "ShipPostalCode": 36000, - "ShipCountry": "UK", + "Freight": 1.66, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, - "Discount": 0 - }, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10905, + "EmployeeID": 9, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 13.72, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.06 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10319, - "EmployeeID": 7, - "OrderDate": "1996-10-02T00:00:00", - "RequiredDate": "1996-10-30T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", + "OrderID": 10935, + "EmployeeID": 4, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 3, - "Freight": 64.5, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 47.59, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 8, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 14, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 30, - "Discount": 0 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 8, + "Discount": 0.25 } ] } ] }, { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", + "CustomerID": "HILAA", + "Company": "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", "Orders": [ { - "OrderID": 10320, - "EmployeeID": 5, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-18T00:00:00", + "OrderID": 10257, + "EmployeeID": 4, + "OrderDate": "1996-07-16T00:00:00", + "RequiredDate": "1996-08-13T00:00:00", + "ShippedDate": "1996-07-22T00:00:00", "ShipVia": 3, - "Freight": 34.57, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 81.91, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10321, - "EmployeeID": 3, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-31T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", - "ShipVia": 2, - "Freight": 3.43, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 20137, - "ShipPostalCode": 41000, - "ShipCountry": "UK", + "OrderID": 10395, + "EmployeeID": 6, + "OrderDate": "1996-12-26T00:00:00", + "RequiredDate": "1997-01-23T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 1, + "Freight": 184.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 10, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 28, + "Discount": 0.1 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 70, + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10322, - "EmployeeID": 7, - "OrderDate": "1996-10-04T00:00:00", - "RequiredDate": "1996-11-01T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", + "OrderID": 10476, + "EmployeeID": 8, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", "ShipVia": 3, - "Freight": 0.4, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 4.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10323, - "EmployeeID": 4, - "OrderDate": "1996-10-07T00:00:00", - "RequiredDate": "1996-11-04T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 1, - "Freight": 4.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10486, + "EmployeeID": 1, + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "ShipVia": 2, + "Freight": 30.53, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 12.4, + "ProductID": 11, + "UnitPrice": 16.8, "Quantity": 5, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 4, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 16, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10324, - "EmployeeID": 9, - "OrderDate": "1996-10-08T00:00:00", - "RequiredDate": "1996-11-05T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", - "ShipVia": 1, - "Freight": 214.27, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10490, + "EmployeeID": 7, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-03T00:00:00", + "ShipVia": 2, + "Freight": 210.19, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.16 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 68, + "UnitPrice": 10, "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 80, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 36, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10325, - "EmployeeID": 1, - "OrderDate": "1996-10-09T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 3, - "Freight": 64.86, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10498, + "EmployeeID": 8, + "OrderDate": "1997-04-07T00:00:00", + "RequiredDate": "1997-05-05T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", + "ShipVia": 2, + "Freight": 29.75, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 9, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 4, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ + }, { - "OrderID": 10326, - "EmployeeID": 4, - "OrderDate": "1996-10-10T00:00:00", - "RequiredDate": "1996-11-07T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 2, - "Freight": 77.92, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", + "OrderID": 10552, + "EmployeeID": 2, + "OrderDate": "1997-05-29T00:00:00", + "RequiredDate": "1997-06-26T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 1, + "Freight": 83.22, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 16, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 18, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 50, + "UnitPrice": 7.75, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 43000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10327, - "EmployeeID": 2, - "OrderDate": "1996-10-11T00:00:00", - "RequiredDate": "1996-11-08T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", + "OrderID": 10601, + "EmployeeID": 7, + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", "ShipVia": 1, - "Freight": 63.36, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 17000, - "ShipCountry": "Sweden", + "Freight": 58.3, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10328, + "OrderID": 10613, "EmployeeID": 4, - "OrderDate": "1996-10-14T00:00:00", - "RequiredDate": "1996-11-11T00:00:00", - "ShippedDate": "1996-10-17T00:00:00", - "ShipVia": 3, - "Freight": 87.03, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 2, + "Freight": 8.11, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 40, "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10329, + "OrderID": 10641, "EmployeeID": 4, - "OrderDate": "1996-10-15T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", "ShipVia": 2, - "Freight": 191.67, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 179.61, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, - "Discount": 0.06 - }, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, + "Discount": 0 + } + ] + }, + { + "OrderID": 10705, + "EmployeeID": 9, + "OrderDate": "1997-10-15T00:00:00", + "RequiredDate": "1997-11-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 3.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 4, + "Discount": 0 + } + ] + }, { - "OrderID": 10330, + "OrderID": 10796, "EmployeeID": 3, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", "ShipVia": 1, - "Freight": 12.75, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, + "Freight": 26.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, "ShipCountry": "Venezuela", "OrderDetails": [ { "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 50, - "Discount": 0.16 + "UnitPrice": 31.23, + "Quantity": 21, + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10331, - "EmployeeID": 9, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-27T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", - "ShipVia": 1, - "Freight": 10.19, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 20000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10332, - "EmployeeID": 3, - "OrderDate": "1996-10-17T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", - "ShipVia": 2, - "Freight": 52.84, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 28000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 40, - "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 35, "Discount": 0.2 }, { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 16, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 24, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10333, - "EmployeeID": 5, - "OrderDate": "1996-10-18T00:00:00", - "RequiredDate": "1996-11-15T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", - "ShipVia": 3, - "Freight": 0.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10863, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 30.26, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10334, - "EmployeeID": 8, - "OrderDate": "1996-10-21T00:00:00", - "RequiredDate": "1996-11-18T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", - "ShipVia": 2, - "Freight": 8.56, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10901, + "EmployeeID": 4, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", + "ShipVia": 1, + "Freight": 62.09, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 8, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10335, - "EmployeeID": 7, - "OrderDate": "1996-10-22T00:00:00", - "RequiredDate": "1996-11-19T00:00:00", - "ShippedDate": "1996-10-24T00:00:00", - "ShipVia": 2, - "Freight": 42.11, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10957, + "EmployeeID": 8, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 105.36, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 7, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10960, + "EmployeeID": 3, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 2.08, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 48, - "Discount": 0.2 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10336, - "EmployeeID": 7, - "OrderDate": "1996-10-23T00:00:00", - "RequiredDate": "1996-11-20T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", - "ShipVia": 2, - "Freight": 15.51, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10976, + "EmployeeID": 1, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 1, + "Freight": 37.97, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10337, - "EmployeeID": 4, - "OrderDate": "1996-10-24T00:00:00", - "RequiredDate": "1996-11-21T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", - "ShipVia": 3, - "Freight": 108.26, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 11055, + "EmployeeID": 7, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", + "ShipVia": 2, + "Freight": 120.92, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 24, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, + "ProductID": 51, + "UnitPrice": 53, "Quantity": 20, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] @@ -4136,625 +3023,475 @@ ] }, { - "CustomerID": "OLDWO", - "Company": "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": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", "Orders": [ { - "OrderID": 10338, - "EmployeeID": 4, - "OrderDate": "1996-10-25T00:00:00", - "RequiredDate": "1996-11-22T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", - "ShipVia": 3, - "Freight": 84.21, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 20, - "Discount": 0 + "OrderID": 10258, + "EmployeeID": 1, + "OrderDate": "1996-07-17T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 1, + "Freight": 140.51, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 50, + "Discount": 0.2 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 15, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 65, + "Discount": 0.2 + }, + { + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 40000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10339, - "EmployeeID": 2, - "OrderDate": "1996-10-28T00:00:00", - "RequiredDate": "1996-11-25T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 15.66, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "OrderID": 10263, + "EmployeeID": 9, + "OrderDate": "1996-07-23T00:00:00", + "RequiredDate": "1996-08-20T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 146.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 10, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 28, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 36, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10340, + "OrderID": 10351, "EmployeeID": 1, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 166.31, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 162.33, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 20, "Discount": 0.06 }, { "ProductID": 41, "UnitPrice": 7.7, - "Quantity": 12, + "Quantity": 13, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 77, "Discount": 0.06 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 40, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 10, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10341, - "EmployeeID": 7, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", - "ShipVia": 3, - "Freight": 26.78, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10368, + "EmployeeID": 2, + "OrderDate": "1996-11-29T00:00:00", + "RequiredDate": "1996-12-27T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 101.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 8, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 13, + "Discount": 0.1 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10342, + "OrderID": 10382, "EmployeeID": 4, - "OrderDate": "1996-10-30T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 54.83, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 24, - "Discount": 0.2 + "OrderDate": "1996-12-13T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1996-12-16T00:00:00", + "ShipVia": 1, + "Freight": 94.77, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 32, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 56, - "Discount": 0.2 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10343, - "EmployeeID": 4, - "OrderDate": "1996-10-31T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-11-06T00:00:00", + "OrderID": 10390, + "EmployeeID": 6, + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-26T00:00:00", "ShipVia": 1, - "Freight": 110.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 126.38, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 68, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 4, - "Discount": 0.06 + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 76, + "ProductID": 35, "UnitPrice": 14.4, - "Quantity": 15, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 45, "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10344, - "EmployeeID": 4, - "OrderDate": "1996-11-01T00:00:00", - "RequiredDate": "1996-11-29T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", + "OrderID": 10402, + "EmployeeID": 8, + "OrderDate": "1997-01-02T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", "ShipVia": 2, - "Freight": 23.29, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 67.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 35, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 65, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10345, - "EmployeeID": 2, - "OrderDate": "1996-11-04T00:00:00", - "RequiredDate": "1996-12-02T00:00:00", - "ShippedDate": "1996-11-11T00:00:00", - "ShipVia": 2, - "Freight": 249.06, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10430, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-03T00:00:00", + "ShipVia": 1, + "Freight": 458.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 80, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 9, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10346, + "OrderID": 10442, "EmployeeID": 3, - "OrderDate": "1996-11-05T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 142.08, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderDate": "1997-02-11T00:00:00", + "RequiredDate": "1997-03-11T00:00:00", + "ShippedDate": "1997-02-18T00:00:00", + "ShipVia": 2, + "Freight": 47.94, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 36, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 80, + "Discount": 0 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10347, - "EmployeeID": 4, - "OrderDate": "1996-11-06T00:00:00", - "RequiredDate": "1996-12-04T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 3.1, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10514, + "EmployeeID": 3, + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 2, + "Freight": 789.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 39, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 4, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 39, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0.16 + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10348, - "EmployeeID": 4, - "OrderDate": "1996-11-07T00:00:00", - "RequiredDate": "1996-12-05T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", - "ShipVia": 2, - "Freight": 0.78, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10571, + "EmployeeID": 8, + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 3, + "Freight": 26.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 11, "Discount": 0.16 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 25, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10349, - "EmployeeID": 7, - "OrderDate": "1996-11-08T00:00:00", - "RequiredDate": "1996-12-06T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", + "OrderID": 10595, + "EmployeeID": 2, + "OrderDate": "1997-07-10T00:00:00", + "RequiredDate": "1997-08-07T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", "ShipVia": 1, - "Freight": 8.63, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 96.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10350, - "EmployeeID": 6, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", - "ShipVia": 2, - "Freight": 64.19, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.25 + }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 120, + "Discount": 0.25 }, { "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 18, - "Discount": 0.1 + "UnitPrice": 36, + "Quantity": 65, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10351, - "EmployeeID": 1, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 162.33, + "OrderID": 10633, + "EmployeeID": 7, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-18T00:00:00", + "ShipVia": 3, + "Freight": 477.9, "ShipName": "Ernst Handel", "ShipAddress": "Kirchgasse 6", "ShipCity": "Graz", @@ -4762,1247 +3499,992 @@ "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 13, + "UnitPrice": 6, "Quantity": 13, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 77, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 80, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10352, - "EmployeeID": 3, - "OrderDate": "1996-11-12T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-18T00:00:00", - "ShipVia": 3, - "Freight": 1.3, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10667, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 78.09, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 14, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10353, - "EmployeeID": 7, - "OrderDate": "1996-11-13T00:00:00", - "RequiredDate": "1996-12-11T00:00:00", - "ShippedDate": "1996-11-25T00:00:00", - "ShipVia": 3, - "Freight": 360.63, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, + "OrderID": 10698, + "EmployeeID": 4, + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-17T00:00:00", + "ShipVia": 1, + "Freight": 272.47, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 11, - "UnitPrice": 16.8, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.06 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 12, - "Discount": 0.2 + "Discount": 0.06 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 65, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 8, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10354, - "EmployeeID": 8, - "OrderDate": "1996-11-14T00:00:00", - "RequiredDate": "1996-12-12T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", + "OrderID": 10764, + "EmployeeID": 6, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", "ShipVia": 3, - "Freight": 53.8, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 145.45, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 4, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 130, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 12000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10355, - "EmployeeID": 6, - "OrderDate": "1996-11-15T00:00:00", - "RequiredDate": "1996-12-13T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 41.95, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 31000, - "ShipCountry": "UK", + "OrderID": 10771, + "EmployeeID": 9, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 2, + "Freight": 11.19, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10356, - "EmployeeID": 6, - "OrderDate": "1996-11-18T00:00:00", - "RequiredDate": "1996-12-16T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 2, - "Freight": 36.71, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10773, + "EmployeeID": 1, + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1998-01-08T00:00:00", + "ShippedDate": "1997-12-16T00:00:00", + "ShipVia": 3, + "Freight": 96.43, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 33, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 12, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 70, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 7, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10357, + "OrderID": 10776, "EmployeeID": 1, - "OrderDate": "1996-11-19T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1998-01-12T00:00:00", + "ShippedDate": "1997-12-18T00:00:00", "ShipVia": 3, - "Freight": 34.88, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 351.53, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 16, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 8, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10358, - "EmployeeID": 5, - "OrderDate": "1996-11-20T00:00:00", - "RequiredDate": "1996-12-18T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 1, - "Freight": 19.64, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 12, "Discount": 0.06 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 27, "Discount": 0.06 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 120, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10359, - "EmployeeID": 5, - "OrderDate": "1996-11-21T00:00:00", - "RequiredDate": "1996-12-19T00:00:00", - "ShippedDate": "1996-11-26T00:00:00", - "ShipVia": 3, - "Freight": 288.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 43000, - "ShipCountry": "UK", + "OrderID": 10795, + "EmployeeID": 8, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-20T00:00:00", + "ShipVia": 2, + "Freight": 126.66, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 56, - "Discount": 0.06 - }, - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 70, - "Discount": 0.06 + "UnitPrice": 17.45, + "Quantity": 65, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10360, - "EmployeeID": 4, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 3, - "Freight": 131.7, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10836, + "EmployeeID": 7, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 1, + "Freight": 411.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 52, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 35, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 10, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 35, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 28, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10361, - "EmployeeID": 1, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", + "OrderID": 10854, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-05T00:00:00", "ShipVia": 2, - "Freight": 183.17, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 100.22, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 54, - "Discount": 0.1 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 100, + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 55, - "Discount": 0.1 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 65, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10362, + "OrderID": 10895, "EmployeeID": 3, - "OrderDate": "1996-11-25T00:00:00", - "RequiredDate": "1996-12-23T00:00:00", - "ShippedDate": "1996-11-28T00:00:00", + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 1, - "Freight": 96.04, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 162.75, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 50, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 110, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 20, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 91, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 100, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10363, - "EmployeeID": 4, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1996-12-24T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", + "OrderID": 10968, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-01T00:00:00", "ShipVia": 3, - "Freight": 30.54, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 74.6, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 12, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 12, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 46000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10364, - "EmployeeID": 1, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", - "ShipVia": 1, - "Freight": 71.97, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 10000, - "ShipCountry": "UK", + "OrderID": 10979, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-03-31T00:00:00", + "ShipVia": 2, + "Freight": 353.07, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 30, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 5, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10365, - "EmployeeID": 3, - "OrderDate": "1996-11-27T00:00:00", - "RequiredDate": "1996-12-25T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 2, - "Freight": 22, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 24, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 80, "Discount": 0 - } - ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ - { - "OrderID": 10366, - "EmployeeID": 8, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1996-12-30T00:00:00", - "ShipVia": 2, - "Freight": 10.14, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", - "OrderDetails": [ + }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 5, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10367, - "EmployeeID": 7, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1996-12-26T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 10990, + "EmployeeID": 2, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", "ShipVia": 3, - "Freight": 13.55, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 117.61, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 36, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 65, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 18, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 60, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 65, + "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 66, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10368, - "EmployeeID": 2, - "OrderDate": "1996-11-29T00:00:00", - "RequiredDate": "1996-12-27T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 2, - "Freight": 101.95, + "OrderID": 11008, + "EmployeeID": 7, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-05-09T00:00:00", + "ShipVia": 3, + "Freight": 79.46, "ShipName": "Ernst Handel", "ShipAddress": "Kirchgasse 6", "ShipCity": "Graz", "ShipPostalCode": 8010, "ShipCountry": "Austria", "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 5, - "Discount": 0.1 - }, { "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 13, - "Discount": 0.1 + "UnitPrice": 45.6, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 90, + "Discount": 0.06 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 21, + "Discount": 0 + } + ] + }, { - "OrderID": 10369, - "EmployeeID": 8, - "OrderDate": "1996-12-02T00:00:00", - "RequiredDate": "1996-12-30T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", + "OrderID": 11017, + "EmployeeID": 9, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 2, - "Freight": 195.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 754.26, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 20, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 110, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10370, - "EmployeeID": 6, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-27T00:00:00", + "OrderID": 11072, + "EmployeeID": 4, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-08-02T00:00:00", "ShipVia": 2, - "Freight": 1.17, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 258.64, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 22, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 130, + "Discount": 0 } ] } - ], - "Fax": "0452-076545" + ] }, { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", + "CustomerID": "CENTC", + "Company": "Centro comercial Moctezuma", + "ContactName": "Francisco Chang", + "ContactTitle": "Marketing Manager", + "Address": "Sierras de Granada 9993", + "City": "México D.F.", + "PostalCode": 5022, + "Country": "Mexico", + "Phone": "(5) 555-3392", + "Fax": "(5) 555-7293", "Orders": [ { - "OrderID": 10371, - "EmployeeID": 1, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", - "ShipVia": 1, - "Freight": 0.45, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10259, + "EmployeeID": 4, + "OrderDate": "1996-07-18T00:00:00", + "RequiredDate": "1996-08-15T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", + "ShipVia": 3, + "Freight": 3.25, + "ShipName": "Centro comercial Moctezuma", + "ShipAddress": "Sierras de Granada 9993", + "ShipCity": "México D.F.", + "ShipPostalCode": 5022, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 1, + "Discount": 0 } ] } ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", + "CustomerID": "OTTIK", + "Company": "Ottilies Käseladen", + "ContactName": "Henriette Pfalzheim", + "ContactTitle": "Owner", + "Address": "Mehrheimerstr. 369", + "City": "Köln", + "PostalCode": 50739, + "Country": "Germany", + "Phone": "0221-0644327", + "Fax": "0221-0765721", "Orders": [ { - "OrderID": 10372, - "EmployeeID": 5, - "OrderDate": "1996-12-04T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 2, - "Freight": 890.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10260, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-29T00:00:00", + "ShipVia": 1, + "Freight": 55.09, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 12, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 16, "Discount": 0.25 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 70, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, "Discount": 0.25 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 42, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 21, "Discount": 0.25 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10373, - "EmployeeID": 4, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-11T00:00:00", - "ShipVia": 3, - "Freight": 124.12, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10407, + "EmployeeID": 2, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-04T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", + "ShipVia": 2, + "Freight": 91.48, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 80, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10374, - "EmployeeID": 1, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 3, - "Freight": 3.94, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 10.6, + "ProductID": 71, + "UnitPrice": 17.2, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10375, - "EmployeeID": 3, - "OrderDate": "1996-12-06T00:00:00", - "RequiredDate": "1997-01-03T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", + "OrderID": 10508, + "EmployeeID": 1, + "OrderDate": "1997-04-16T00:00:00", + "RequiredDate": "1997-05-14T00:00:00", + "ShippedDate": "1997-05-13T00:00:00", "ShipVia": 2, - "Freight": 20.12, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "Freight": 4.99, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, + "ProductID": 39, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 10000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10376, - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 2, - "Freight": 20.39, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 39000, - "ShipCountry": "Canada", + "OrderID": 10554, + "EmployeeID": 4, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 3, + "Freight": 120.97, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 42, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 11000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10377, - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 22.21, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", - "OrderDetails": [ + }, { - "ProductID": 28, - "UnitPrice": 36.4, + "ProductID": 23, + "UnitPrice": 9, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.06 }, { - "ProductID": 39, - "UnitPrice": 14.4, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 13000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10378, - "EmployeeID": 5, - "OrderDate": "1996-12-10T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-19T00:00:00", + "OrderID": 10580, + "EmployeeID": 4, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-01T00:00:00", "ShipVia": 3, - "Freight": 5.44, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 49000, - "ShipCountry": "Sweden", + "Freight": 75.89, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 6, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 30, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10684, + "EmployeeID": 3, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 1, + "Freight": 145.63, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10766, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 157.55, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10833, + "EmployeeID": 6, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 2, + "Freight": 71.49, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 9, + "Discount": 0.1 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 9, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10999, + "EmployeeID": 6, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-01T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 96.35, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 21, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 11020, + "EmployeeID": 2, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 2, + "Freight": 43.3, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 24, + "Discount": 0.16 } ] } @@ -6022,13 +4504,13 @@ "Fax": "(21) 555-4545", "Orders": [ { - "OrderID": 10379, - "EmployeeID": 2, - "OrderDate": "1996-12-11T00:00:00", - "RequiredDate": "1997-01-08T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 1, - "Freight": 45.03, + "OrderID": 10261, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-30T00:00:00", + "ShipVia": 2, + "Freight": 3.05, "ShipName": "Que Delícia", "ShipAddress": "Rua da Panificadora, 12", "ShipCity": "Sao Paulo", @@ -6037,1063 +4519,811 @@ "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 16, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 35, + "UnitPrice": 14.4, "Quantity": 20, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10380, - "EmployeeID": 8, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", - "ShipVia": 3, - "Freight": 35.03, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10291, + "EmployeeID": 6, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-04T00:00:00", + "ShipVia": 2, + "Freight": 6.4, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, + "ProductID": 13, + "UnitPrice": 4.8, "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 6, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 24, "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10381, - "EmployeeID": 3, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", + "OrderID": 10379, + "EmployeeID": 2, + "OrderDate": "1996-12-11T00:00:00", + "RequiredDate": "1997-01-08T00:00:00", "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 7.99, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "ShipVia": 1, + "Freight": 45.03, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 14, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 16, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10382, - "EmployeeID": 4, - "OrderDate": "1996-12-13T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1996-12-16T00:00:00", + "OrderID": 10421, + "EmployeeID": 8, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-03-04T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", "ShipVia": 1, - "Freight": 94.77, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 99.23, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 32, - "Discount": 0 - }, - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 9, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 4, + "Discount": 0.16 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 14, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 50, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 31000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10383, - "EmployeeID": 8, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-18T00:00:00", - "ShipVia": 3, - "Freight": 34.24, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 19000, - "ShipCountry": "UK", + "OrderID": 10587, + "EmployeeID": 1, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 1, + "Freight": 62.52, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, + "ProductID": 77, + "UnitPrice": 13, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 18000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10384, - "EmployeeID": 3, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 3, - "Freight": 168.64, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "OrderID": 10647, + "EmployeeID": 4, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 2, + "Freight": 45.54, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 28, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 15, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10385, - "EmployeeID": 1, - "OrderDate": "1996-12-17T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1996-12-23T00:00:00", + "OrderID": 10720, + "EmployeeID": 8, + "OrderDate": "1997-10-28T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 30.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 9.53, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10794, + "EmployeeID": 6, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 1, + "Freight": 21.49, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10386, - "EmployeeID": 9, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-25T00:00:00", - "ShipVia": 3, - "Freight": 13.99, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", + "OrderID": 10989, + "EmployeeID": 2, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 34.76, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 11, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, "Discount": 0 } ] } - ], - "Fax": "(11) 555-9857" + ] }, { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", + "ContactTitle": "Sales Associate", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", "Orders": [ { - "OrderID": 10387, - "EmployeeID": 1, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-15T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 2, - "Freight": 93.63, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10262, + "EmployeeID": 8, + "OrderDate": "1996-07-22T00:00:00", + "RequiredDate": "1996-08-19T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", + "ShipVia": 3, + "Freight": 48.29, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 17000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10388, - "EmployeeID": 2, - "OrderDate": "1996-12-19T00:00:00", - "RequiredDate": "1997-01-16T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 1, - "Freight": 34.86, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 43000, - "ShipCountry": "UK", + "OrderID": 10272, + "EmployeeID": 6, + "OrderDate": "1996-08-02T00:00:00", + "RequiredDate": "1996-08-30T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", + "ShipVia": 2, + "Freight": 98.03, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 7.6, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 40, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 14000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10389, + "OrderID": 10294, "EmployeeID": 4, - "OrderDate": "1996-12-20T00:00:00", - "RequiredDate": "1997-01-17T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", + "OrderDate": "1996-08-30T00:00:00", + "RequiredDate": "1996-09-27T00:00:00", + "ShippedDate": "1996-09-05T00:00:00", "ShipVia": 2, - "Freight": 47.42, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 28000, - "ShipCountry": "Canada", + "Freight": 147.26, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 16, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, + "ProductID": 17, + "UnitPrice": 31.2, "Quantity": 15, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 20, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10390, - "EmployeeID": 6, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-26T00:00:00", - "ShipVia": 1, - "Freight": 126.38, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10314, + "EmployeeID": 1, + "OrderDate": "1996-09-25T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 74.16, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0.1 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 32, + "UnitPrice": 25.6, "Quantity": 40, "Discount": 0.1 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 45, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 24, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 25, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10391, - "EmployeeID": 3, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-31T00:00:00", + "OrderID": 10316, + "EmployeeID": 1, + "OrderDate": "1996-09-27T00:00:00", + "RequiredDate": "1996-10-25T00:00:00", + "ShippedDate": "1996-10-08T00:00:00", "ShipVia": 3, - "Freight": 5.45, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 150.15, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 18, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 70, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10392, - "EmployeeID": 2, - "OrderDate": "1996-12-24T00:00:00", - "RequiredDate": "1997-01-21T00:00:00", - "ShippedDate": "1997-01-01T00:00:00", + "OrderID": 10346, + "EmployeeID": 3, + "OrderDate": "1996-11-05T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", "ShipVia": 3, - "Freight": 122.46, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 142.08, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 50, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10393, + "OrderID": 10401, "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 3, - "Freight": 126.56, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", + "ShipVia": 1, + "Freight": 12.51, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 42, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 7, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 70, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 32, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10394, - "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", + "OrderID": 10479, + "EmployeeID": 3, + "OrderDate": "1997-03-19T00:00:00", + "RequiredDate": "1997-04-16T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", "ShipVia": 3, - "Freight": 30.34, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "Freight": 708.95, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10395, - "EmployeeID": 6, - "OrderDate": "1996-12-26T00:00:00", - "RequiredDate": "1997-01-23T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 1, - "Freight": 184.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10564, + "EmployeeID": 4, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-08T00:00:00", + "ShippedDate": "1997-06-16T00:00:00", + "ShipVia": 3, + "Freight": 13.75, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 70, - "Discount": 0.1 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 8, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10396, + "OrderID": 10569, + "EmployeeID": 5, + "OrderDate": "1997-06-16T00:00:00", + "RequiredDate": "1997-07-14T00:00:00", + "ShippedDate": "1997-07-11T00:00:00", + "ShipVia": 1, + "Freight": 58.98, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10598, "EmployeeID": 1, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1997-01-06T00:00:00", + "OrderDate": "1997-07-14T00:00:00", + "RequiredDate": "1997-08-11T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", "ShipVia": 3, - "Freight": 135.35, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 44.42, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 50, "Discount": 0 }, { "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 21, + "UnitPrice": 21.5, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10397, + "OrderID": 10761, "EmployeeID": 5, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-24T00:00:00", - "ShippedDate": "1997-01-02T00:00:00", - "ShipVia": 1, - "Freight": 60.26, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 2, + "Freight": 18.66, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 42.4, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 18, - "Discount": 0.16 + "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10398, - "EmployeeID": 2, - "OrderDate": "1996-12-30T00:00:00", - "RequiredDate": "1997-01-27T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 89.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "OrderID": 10820, + "EmployeeID": 3, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 37.52, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 30, "Discount": 0 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10399, + "OrderID": 10852, "EmployeeID": 8, - "OrderDate": "1996-12-31T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", - "ShipVia": 3, - "Freight": 27.36, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 174.05, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 35, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 14, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10400, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderID": 10889, + "EmployeeID": 9, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 3, - "Freight": 83.93, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 25000, - "ShipCountry": "UK", + "Freight": 280.61, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 35, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10401, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", - "ShipVia": 1, - "Freight": 12.51, + "OrderID": 10988, + "EmployeeID": 3, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 61.14, "ShipName": "Rattlesnake Canyon Grocery", "ShipAddress": "2817 Milton Dr.", "ShipCity": "Albuquerque", @@ -7102,341 +5332,217 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 70, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11000, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 3, + "Freight": 55.12, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10402, - "EmployeeID": 8, - "OrderDate": "1997-01-02T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", + "OrderID": 11077, + "EmployeeID": 1, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-07-03T00:00:00", "ShipVia": 2, - "Freight": 67.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 8.53, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 60, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 24, + "Discount": 0.2 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 65, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 4, "Discount": 0 - } - ] - }, - { - "OrderID": 10403, - "EmployeeID": 4, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 73.79, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ + }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 1, + "Discount": 0 }, { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 70, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10404, - "EmployeeID": 2, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", - "ShipVia": 1, - "Freight": 155.97, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 1, + "Discount": 0.02 + }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 1, "Discount": 0.06 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 2, + "Discount": 0.1 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10405, - "EmployeeID": 1, - "OrderDate": "1997-01-06T00:00:00", - "RequiredDate": "1997-02-03T00:00:00", - "ShippedDate": "1997-01-22T00:00:00", - "ShipVia": 1, - "Freight": 34.82, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 50, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 1, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10406, - "EmployeeID": 7, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-13T00:00:00", - "ShipVia": 1, - "Freight": 108.04, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ + }, { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 10, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 1, + "Discount": 0.04 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 42, - "Discount": 0.1 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 2, + "Discount": 0.04 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 5, - "Discount": 0.1 + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 1, + "Discount": 0.04 }, { - "ProductID": 40, - "UnitPrice": 14.7, + "ProductID": 23, + "UnitPrice": 9, "Quantity": 2, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10407, - "EmployeeID": 2, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-04T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", - "ShipVia": 2, - "Freight": 91.48, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ + "Discount": 0 + }, { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 3, + "Discount": 0.02 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ - { - "OrderID": 10408, - "EmployeeID": 8, - "OrderDate": "1997-01-08T00:00:00", - "RequiredDate": "1997-02-05T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", - "ShipVia": 1, - "Freight": 11.26, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", - "OrderDetails": [ + }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 10, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 2, + "Discount": 0.04 + }, + { + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 2, + "Discount": 0.0099999998 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, "Discount": 0 } ] @@ -7444,1232 +5550,851 @@ ] }, { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ - { - "OrderID": 10409, - "EmployeeID": 3, - "OrderDate": "1997-01-09T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", - "ShipVia": 1, - "Freight": 29.83, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 43000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 33000, + "Country": "Sweden", + "Phone": "0695-34 67 21", + "Fax": "0695-34 67 22", "Orders": [ { - "OrderID": 10410, - "EmployeeID": 3, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", + "OrderID": 10264, + "EmployeeID": 6, + "OrderDate": "1996-07-24T00:00:00", + "RequiredDate": "1996-08-21T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", "ShipVia": 3, - "Freight": 2.4, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "Freight": 3.67, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 27000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 49, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 16, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 25, + "Discount": 0.16 } ] }, { - "OrderID": 10411, - "EmployeeID": 9, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-21T00:00:00", - "ShipVia": 3, - "Freight": 23.65, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10327, + "EmployeeID": 2, + "OrderDate": "1996-10-11T00:00:00", + "RequiredDate": "1996-11-08T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 63.36, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 17000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 25, "Discount": 0.2 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 40, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 50, "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10412, - "EmployeeID": 8, - "OrderDate": "1997-01-13T00:00:00", - "RequiredDate": "1997-02-10T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", - "ShipVia": 2, - "Freight": 3.77, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10378, + "EmployeeID": 5, + "OrderDate": "1996-12-10T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-19T00:00:00", + "ShipVia": 3, + "Freight": 5.44, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 49000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10413, + "OrderID": 10434, "EmployeeID": 3, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-02-13T00:00:00", "ShipVia": 2, - "Freight": 95.66, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 17.92, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 23000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0 }, { "ProductID": 76, "UnitPrice": 14.4, - "Quantity": 14, - "Discount": 0 + "Quantity": 18, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10414, - "EmployeeID": 2, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-17T00:00:00", - "ShipVia": 3, - "Freight": 21.48, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10460, + "EmployeeID": 8, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 1, + "Freight": 16.27, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 40000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 21, + "Discount": 0.25 }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 4, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10533, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-22T00:00:00", + "ShipVia": 1, + "Freight": 188.04, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 45000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 24, + "Discount": 0.06 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10415, - "EmployeeID": 3, - "OrderDate": "1997-01-15T00:00:00", - "RequiredDate": "1997-02-12T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", - "ShipVia": 1, - "Freight": 0.2, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "OrderID": 10561, + "EmployeeID": 2, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 2, + "Freight": 242.21, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 23000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 2, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10416, - "EmployeeID": 8, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 3, - "Freight": 22.72, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10703, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-10-20T00:00:00", + "ShipVia": 2, + "Freight": 152.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 28000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 20, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 10, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 20, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10417, - "EmployeeID": 4, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-28T00:00:00", - "ShipVia": 3, - "Freight": 70.29, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10762, + "EmployeeID": 3, + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 328.74, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 44000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 35, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10418, + "OrderID": 10774, "EmployeeID": 4, - "OrderDate": "1997-01-17T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", "ShipVia": 1, - "Freight": 17.55, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 48.2, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 55, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 16, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 2, + "Discount": 0.25 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 15, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10419, - "EmployeeID": 4, - "OrderDate": "1997-01-20T00:00:00", - "RequiredDate": "1997-02-17T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", - "ShipVia": 2, - "Freight": 137.35, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10824, + "EmployeeID": 8, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 1.23, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 39000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10420, - "EmployeeID": 3, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10880, + "EmployeeID": 7, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 1, - "Freight": 44.12, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 88.01, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 15000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 77.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.2 }, { "ProductID": 70, - "UnitPrice": 12, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.1 + "UnitPrice": 15, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10421, - "EmployeeID": 8, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-03-04T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10902, + "EmployeeID": 1, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", "ShipVia": 1, - "Freight": 99.23, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 44.15, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 11000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 4, - "Discount": 0.16 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 10, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 6, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10422, - "EmployeeID": 2, - "OrderDate": "1997-01-22T00:00:00", - "RequiredDate": "1997-02-19T00:00:00", - "ShippedDate": "1997-01-31T00:00:00", - "ShipVia": 1, - "Freight": 3.02, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10955, + "EmployeeID": 8, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 20000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 2, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10423, - "EmployeeID": 6, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", + "OrderID": 10977, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 3, - "Freight": 24.5, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 208.5, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 14, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 30000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10424, - "EmployeeID": 7, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-20T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 2, - "Freight": 370.61, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 22000, - "ShipCountry": "Canada", + "OrderID": 10980, + "EmployeeID": 4, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 1, + "Freight": 1.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0.2 - }, - { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 49, - "Discount": 0.2 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10425, - "EmployeeID": 6, - "OrderDate": "1997-01-24T00:00:00", - "RequiredDate": "1997-02-21T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 7.93, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10993, + "EmployeeID": 7, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 3, + "Freight": 8.81, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 50, "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 20, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10426, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-02-06T00:00:00", - "ShipVia": 1, - "Freight": 18.69, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 11001, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 2, + "Freight": 197.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 30000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 7, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10427, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 11050, + "EmployeeID": 8, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", "ShipVia": 2, - "Freight": 31.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 59.41, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 11000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 35, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", + "CustomerID": "BLONP", + "Company": "Blondesddsl père et fils", + "ContactName": "Frédérique Citeaux", + "ContactTitle": "Marketing Manager", + "Address": "24, place Kléber", + "City": "Strasbourg", + "PostalCode": 67000, + "Country": "France", + "Phone": "88.60.15.31", + "Fax": "88.60.15.32", "Orders": [ { - "OrderID": 10428, - "EmployeeID": 7, - "OrderDate": "1997-01-28T00:00:00", - "RequiredDate": "1997-02-25T00:00:00", - "ShippedDate": "1997-02-04T00:00:00", + "OrderID": 10265, + "EmployeeID": 2, + "OrderDate": "1996-07-25T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", "ShipVia": 1, - "Freight": 11.09, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 55.28, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10429, - "EmployeeID": 3, - "OrderDate": "1997-01-29T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderID": 10297, + "EmployeeID": 5, + "OrderDate": "1996-09-04T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", "ShipVia": 2, - "Freight": 56.63, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 5.74, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 40, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10430, + "OrderID": 10360, "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-03T00:00:00", - "ShipVia": 1, - "Freight": 458.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 131.7, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 50, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.2 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 28, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 47000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10431, - "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderID": 10436, + "EmployeeID": 3, + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-11T00:00:00", "ShipVia": 2, - "Freight": 44.17, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 49000, - "ShipCountry": "Canada", + "Freight": 156.66, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 47, - "UnitPrice": 7.6, + "ProductID": 64, + "UnitPrice": 26.6, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.1 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 24, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10432, + "OrderID": 10449, "EmployeeID": 3, - "OrderDate": "1997-01-31T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderDate": "1997-02-18T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-27T00:00:00", "ShipVia": 2, - "Freight": 4.34, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 53.3, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 10, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 40, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ - { - "OrderID": 10433, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", - "ShipVia": 3, - "Freight": 73.83, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", - "OrderDetails": [ + }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 28, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 23000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10434, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-02-13T00:00:00", - "ShipVia": 2, - "Freight": 17.92, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 23000, - "ShipCountry": "Sweden", + "OrderID": 10559, + "EmployeeID": 6, + "OrderDate": "1997-06-05T00:00:00", + "RequiredDate": "1997-07-03T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 1, + "Freight": 8.05, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 76, - "UnitPrice": 14.4, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 18, - "Discount": 0.16 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 38000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ + }, { - "OrderID": 10435, - "EmployeeID": 8, - "OrderDate": "1997-02-04T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", - "ShipVia": 2, - "Freight": 9.21, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "OrderID": 10566, + "EmployeeID": 9, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", + "ShipVia": 1, + "Freight": 88.4, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 10, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 18, + "Discount": 0.16 }, { - "ProductID": 72, - "UnitPrice": 27.8, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10436, - "EmployeeID": 3, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-11T00:00:00", - "ShipVia": 2, - "Freight": 156.66, + "OrderID": 10584, + "EmployeeID": 4, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 1, + "Freight": 59.14, "ShipName": "Blondel père et fils", "ShipAddress": "24, place Kléber", "ShipCity": "Strasbourg", @@ -8677,28 +6402,82 @@ "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10628, + "EmployeeID": 4, + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 30.36, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10679, + "EmployeeID": 8, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 27.94, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 40, - "Discount": 0.1 - }, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10826, + "EmployeeID": 6, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 1, + "Freight": 7.09, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, + "Discount": 0 } ] } @@ -8717,13 +6496,13 @@ "Fax": "981-443655", "Orders": [ { - "OrderID": 10437, - "EmployeeID": 8, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-12T00:00:00", - "ShipVia": 1, - "Freight": 19.97, + "OrderID": 10266, + "EmployeeID": 3, + "OrderDate": "1996-07-26T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 25.73, "ShipName": "Wartian Herkku", "ShipAddress": "Torikatu 38", "ShipCity": "Oulu", @@ -8731,669 +6510,449 @@ "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 12, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10438, - "EmployeeID": 3, - "OrderDate": "1997-02-06T00:00:00", - "RequiredDate": "1997-03-06T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 8.24, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "OrderID": 10270, + "EmployeeID": 1, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 1, + "Freight": 136.54, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 37000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10439, - "EmployeeID": 6, - "OrderDate": "1997-02-07T00:00:00", - "RequiredDate": "1997-03-07T00:00:00", - "ShippedDate": "1997-02-10T00:00:00", + "OrderID": 10320, + "EmployeeID": 5, + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-18T00:00:00", "ShipVia": 3, - "Freight": 4.07, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "Freight": 34.57, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 16, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10440, - "EmployeeID": 4, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-10T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 86.53, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10333, + "EmployeeID": 5, + "OrderDate": "1996-10-18T00:00:00", + "RequiredDate": "1996-11-15T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", + "ShipVia": 3, + "Freight": 0.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 45, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 49, - "Discount": 0.16 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 90, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 40, + "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10441, - "EmployeeID": 3, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-24T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10412, + "EmployeeID": 8, + "OrderDate": "1997-01-13T00:00:00", + "RequiredDate": "1997-02-10T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", "ShipVia": 2, - "Freight": 73.02, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 3.77, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 50, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10442, - "EmployeeID": 3, - "OrderDate": "1997-02-11T00:00:00", - "RequiredDate": "1997-03-11T00:00:00", - "ShippedDate": "1997-02-18T00:00:00", - "ShipVia": 2, - "Freight": 47.94, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10416, + "EmployeeID": 8, + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 3, + "Freight": 22.72, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 80, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 60, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10443, + "OrderID": 10437, "EmployeeID": 8, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-12T00:00:00", "ShipVia": 1, - "Freight": 13.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 19.97, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.2 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 12, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 15000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10444, - "EmployeeID": 3, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-21T00:00:00", - "ShipVia": 3, - "Freight": 3.5, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 22000, - "ShipCountry": "Sweden", + "OrderID": 10455, + "EmployeeID": 8, + "OrderDate": "1997-02-24T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 2, + "Freight": 180.45, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 15, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 8, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 71, + "UnitPrice": 17.2, "Quantity": 30, "Discount": 0 } ] }, { - "OrderID": 10445, - "EmployeeID": 3, - "OrderDate": "1997-02-13T00:00:00", - "RequiredDate": "1997-03-13T00:00:00", - "ShippedDate": "1997-02-20T00:00:00", - "ShipVia": 1, - "Freight": 9.3, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 18000, - "ShipCountry": "Sweden", + "OrderID": 10526, + "EmployeeID": 4, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-15T00:00:00", + "ShipVia": 2, + "Freight": 58.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0.16 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10446, - "EmployeeID": 6, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-02-19T00:00:00", - "ShipVia": 1, - "Freight": 14.68, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "OrderID": 10553, + "EmployeeID": 2, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-03T00:00:00", + "ShipVia": 2, + "Freight": 149.49, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 12, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 24, + "Discount": 0 }, { "ProductID": 31, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "UnitPrice": 12.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10447, - "EmployeeID": 4, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-03-07T00:00:00", + "OrderID": 10583, + "EmployeeID": 2, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 2, - "Freight": 68.66, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 7.28, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 40, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 35, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10448, + "OrderID": 10636, "EmployeeID": 4, - "OrderDate": "1997-02-17T00:00:00", - "RequiredDate": "1997-03-17T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", - "ShipVia": 2, - "Freight": 38.82, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 1.15, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 6, - "Discount": 0 - }, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0 + }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10449, - "EmployeeID": 3, - "OrderDate": "1997-02-18T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-27T00:00:00", - "ShipVia": 2, - "Freight": 53.3, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10750, + "EmployeeID": 9, + "OrderDate": "1997-11-21T00:00:00", + "RequiredDate": "1997-12-19T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 79.3, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 14, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 5, + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10450, - "EmployeeID": 8, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-19T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", - "ShipVia": 2, - "Freight": 7.23, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10781, + "EmployeeID": 2, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 3, + "Freight": 73.16, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0.2 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10451, - "EmployeeID": 4, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", + "OrderID": 11025, + "EmployeeID": 6, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", "ShipVia": 3, - "Freight": 189.09, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 29.17, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 - }, - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 28, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 55, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0.1 } ] @@ -9401,783 +6960,619 @@ ] }, { - "CustomerID": "SAVEA", - "Company": "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", + "CustomerID": "FRANK", + "Company": "Frankenversand", + "ContactName": "Peter Franken", + "ContactTitle": "Marketing Manager", + "Address": "Berliner Platz 43", + "City": "München", + "PostalCode": 80805, + "Country": "Germany", + "Phone": "089-0877310", + "Fax": "089-0877451", "Orders": [ { - "OrderID": 10452, - "EmployeeID": 8, - "OrderDate": "1997-02-20T00:00:00", - "RequiredDate": "1997-03-20T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", + "OrderID": 10267, + "EmployeeID": 4, + "OrderDate": "1996-07-29T00:00:00", + "RequiredDate": "1996-08-26T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", "ShipVia": 1, - "Freight": 140.26, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 208.58, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 100, - "Discount": 0.06 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 46000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10453, - "EmployeeID": 1, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", - "ShipVia": 2, - "Freight": 25.36, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 40000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10454, + "OrderID": 10337, "EmployeeID": 4, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-25T00:00:00", + "OrderDate": "1996-10-24T00:00:00", + "RequiredDate": "1996-11-21T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", "ShipVia": 3, - "Freight": 2.74, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 108.26, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10455, - "EmployeeID": 8, - "OrderDate": "1997-02-24T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 10342, + "EmployeeID": 4, + "OrderDate": "1996-10-30T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", "ShipVia": 2, - "Freight": 180.45, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 54.83, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 24, + "Discount": 0.2 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 50, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 56, + "Discount": 0.2 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 25, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10456, - "EmployeeID": 8, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 8.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10396, + "EmployeeID": 1, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1997-01-06T00:00:00", + "ShipVia": 3, + "Freight": 135.35, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 23, + "UnitPrice": 7.2, "Quantity": 40, - "Discount": 0.16 + "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, "Quantity": 21, - "Discount": 0.16 + "Discount": 0 } ] }, { - "OrderID": 10457, - "EmployeeID": 2, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-03-25T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", - "ShipVia": 1, - "Freight": 11.57, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10488, + "EmployeeID": 8, + "OrderDate": "1997-03-27T00:00:00", + "RequiredDate": "1997-04-24T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 59, "UnitPrice": 44, - "Quantity": 36, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0.2 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 45000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10458, - "EmployeeID": 7, - "OrderDate": "1997-02-26T00:00:00", - "RequiredDate": "1997-03-26T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", - "ShipVia": 3, - "Freight": 147.06, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 16000, - "ShipCountry": "Belgium", + "OrderID": 10560, + "EmployeeID": 8, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 1, + "Freight": 36.65, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, + "ProductID": 30, + "UnitPrice": 25.89, "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0 + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10459, - "EmployeeID": 4, - "OrderDate": "1997-02-27T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", + "OrderID": 10623, + "EmployeeID": 8, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", "ShipVia": 2, - "Freight": 25.09, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 97.18, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 3, "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 19000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10460, - "EmployeeID": 8, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 10653, + "EmployeeID": 1, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", "ShipVia": 1, - "Freight": 16.27, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 40000, - "ShipCountry": "Sweden", + "Freight": 93.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10461, - "EmployeeID": 1, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-05T00:00:00", - "ShipVia": 3, - "Freight": 148.61, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10670, + "EmployeeID": 4, + "OrderDate": "1997-09-16T00:00:00", + "RequiredDate": "1997-10-14T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 1, + "Freight": 203.48, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 32, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 28, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 60, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 38000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ - { - "OrderID": 10462, - "EmployeeID": 2, - "OrderDate": "1997-03-03T00:00:00", - "RequiredDate": "1997-03-31T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 1, - "Freight": 6.17, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 50000, - "ShipCountry": "UK", - "OrderDetails": [ + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 25, + "Discount": 0 + }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 1, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 21, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 34000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10463, + "OrderID": 10675, "EmployeeID": 5, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-06T00:00:00", - "ShipVia": 3, - "Freight": 14.78, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 21000, - "ShipCountry": "Belgium", + "OrderDate": "1997-09-19T00:00:00", + "RequiredDate": "1997-10-17T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", + "ShipVia": 2, + "Freight": 31.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 21, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 50, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10464, - "EmployeeID": 4, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10717, + "EmployeeID": 1, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 2, - "Freight": 89, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 59.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 16, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 32, + "Discount": 0.06 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 3, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 25, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10791, + "EmployeeID": 6, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-01T00:00:00", + "ShipVia": 2, + "Freight": 16.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 14, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 27.2, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10465, + "OrderID": 10859, "EmployeeID": 1, - "OrderDate": "1997-03-05T00:00:00", - "RequiredDate": "1997-04-02T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 3, - "Freight": 145.04, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 76.1, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0 + "UnitPrice": 4.5, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 45, - "UnitPrice": 7.6, + "ProductID": 64, + "UnitPrice": 33.25, "Quantity": 30, - "Discount": 0.1 + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10929, + "EmployeeID": 6, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 1, + "Freight": 33.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 50, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 77, "UnitPrice": 13, - "Quantity": 25, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10466, - "EmployeeID": 4, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-13T00:00:00", - "ShipVia": 1, - "Freight": 11.93, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderID": 11012, + "EmployeeID": 1, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 3, + "Freight": 242.95, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 36, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.06 } ] } - ], - "Fax": "(11) 555-7647" + ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "GROSR", + "Company": "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", "Orders": [ { - "OrderID": 10467, + "OrderID": 10268, "EmployeeID": 8, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderDate": "1996-07-30T00:00:00", + "RequiredDate": "1996-08-27T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 3, + "Freight": 66.29, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 12, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10468, - "EmployeeID": 3, - "OrderDate": "1997-03-07T00:00:00", - "RequiredDate": "1997-04-04T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", + "OrderID": 10785, + "EmployeeID": 1, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", "ShipVia": 3, - "Freight": 44.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 1.51, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 15, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 10, "Discount": 0 } ] } - ], - "Fax": "0555-09876" + ] }, { "CustomerID": "WHITC", @@ -10193,13 +7588,13 @@ "Fax": "(206) 555-4115", "Orders": [ { - "OrderID": 10469, - "EmployeeID": 1, - "OrderDate": "1997-03-10T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10269, + "EmployeeID": 5, + "OrderDate": "1996-07-31T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", "ShipVia": 1, - "Freight": 60.18, + "Freight": 4.56, "ShipName": "White Clover Markets", "ShipAddress": "1029 - 12th Ave. S.", "ShipCity": "Seattle", @@ -10208,525 +7603,464 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10470, + "OrderID": 10344, "EmployeeID": 4, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderDate": "1996-11-01T00:00:00", + "RequiredDate": "1996-11-29T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", "ShipVia": 2, - "Freight": 64.56, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 23.29, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 15, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 8, - "Discount": 0 + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10471, - "EmployeeID": 2, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 3, - "Freight": 45.59, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 25000, - "ShipCountry": "UK", + "OrderID": 10469, + "EmployeeID": 1, + "OrderDate": "1997-03-10T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 1, + "Freight": 60.18, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 2, + "Discount": 0.16 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 25000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10472, - "EmployeeID": 8, - "OrderDate": "1997-03-12T00:00:00", - "RequiredDate": "1997-04-09T00:00:00", - "ShippedDate": "1997-03-19T00:00:00", - "ShipVia": 1, - "Freight": 4.2, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 21000, - "ShipCountry": "UK", + "OrderID": 10483, + "EmployeeID": 7, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-25T00:00:00", + "ShipVia": 2, + "Freight": 15.28, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 80, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 35, "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 18, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10473, - "EmployeeID": 1, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", + "OrderID": 10504, + "EmployeeID": 4, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-18T00:00:00", "ShipVia": 3, - "Freight": 16.37, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 90698, - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "Freight": 59.13, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 12, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 12, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10474, - "EmployeeID": 5, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-04-10T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 2, - "Freight": 83.49, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 18.6, + "ProductID": 21, + "UnitPrice": 10, "Quantity": 12, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 18, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 21, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 25, "Discount": 0 + } + ] + }, + { + "OrderID": 10596, + "EmployeeID": 8, + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", + "ShipVia": 1, + "Freight": 16.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0.2 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 24, + "Discount": 0.2 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0 + "UnitPrice": 7.75, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 45000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10475, - "EmployeeID": 9, - "OrderDate": "1997-03-14T00:00:00", - "RequiredDate": "1997-04-11T00:00:00", - "ShippedDate": "1997-04-04T00:00:00", - "ShipVia": 1, - "Freight": 68.52, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", + "OrderID": 10693, + "EmployeeID": 3, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-10-10T00:00:00", + "ShipVia": 3, + "Freight": 139.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 13.6, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 60, "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 42, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10476, + "OrderID": 10696, "EmployeeID": 8, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", "ShipVia": 3, - "Freight": 4.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 102.55, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 2, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 70, + "ProductID": 46, "UnitPrice": 12, - "Quantity": 12, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10477, - "EmployeeID": 5, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", - "ShipVia": 2, - "Freight": 13.02, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10723, + "EmployeeID": 3, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-11-27T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", + "ShipVia": 1, + "Freight": 21.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, + "ProductID": 26, + "UnitPrice": 31.23, "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10740, + "EmployeeID": 4, + "OrderDate": "1997-11-13T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", + "ShipVia": 2, + "Freight": 81.88, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, + "Discount": 0.2 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10478, - "EmployeeID": 2, - "OrderDate": "1997-03-18T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-26T00:00:00", - "ShipVia": 3, - "Freight": 4.81, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10861, + "EmployeeID": 4, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-02-27T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 14.93, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 42, + "Discount": 0 + }, + { + "ProductID": 18, + "UnitPrice": 62.5, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10479, + "OrderID": 10904, "EmployeeID": 3, - "OrderDate": "1997-03-19T00:00:00", - "RequiredDate": "1997-04-16T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", "ShipVia": 3, - "Freight": 708.95, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, + "Freight": 162.95, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 30, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 28, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 35, + "Discount": 0 + } + ] + }, + { + "OrderID": 11032, + "EmployeeID": 2, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 606.19, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10480, - "EmployeeID": 6, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", + "OrderID": 11066, + "EmployeeID": 7, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 44.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 30, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 42, + "Discount": 0 + }, + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 35, "Discount": 0 } ] @@ -10734,413 +8068,287 @@ ] }, { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", + "CustomerID": "SPLIR", + "Company": "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", "Orders": [ { - "OrderID": 10481, - "EmployeeID": 8, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", + "OrderID": 10271, + "EmployeeID": 6, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-30T00:00:00", "ShipVia": 2, - "Freight": 64.33, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 4.54, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 33, + "UnitPrice": 2, "Quantity": 24, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10482, - "EmployeeID": 1, - "OrderDate": "1997-03-21T00:00:00", - "RequiredDate": "1997-04-18T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 7.48, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, + "OrderID": 10329, + "EmployeeID": 4, + "OrderDate": "1996-10-15T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 2, + "Freight": 191.67, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ - { - "OrderID": 10483, - "EmployeeID": 7, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-25T00:00:00", - "ShipVia": 2, - "Freight": 15.28, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", - "OrderDetails": [ + "Discount": 0.06 + }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 35, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, "Discount": 0.06 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 12, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 45000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10484, - "EmployeeID": 3, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-01T00:00:00", - "ShipVia": 3, - "Freight": 6.88, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10349, + "EmployeeID": 7, + "OrderDate": "1996-11-08T00:00:00", + "RequiredDate": "1996-12-06T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 1, + "Freight": 8.63, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 14, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10369, + "EmployeeID": 8, + "OrderDate": "1996-12-02T00:00:00", + "RequiredDate": "1996-12-30T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 195.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 3, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 18, + "Discount": 0.25 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10485, - "EmployeeID": 4, - "OrderDate": "1997-03-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-31T00:00:00", + "OrderID": 10385, + "EmployeeID": 1, + "OrderDate": "1996-12-17T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1996-12-23T00:00:00", "ShipVia": 2, - "Freight": 64.45, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 30.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 3, - "UnitPrice": 8, + "ProductID": 60, + "UnitPrice": 27.2, "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 30, - "Discount": 0.1 + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10486, - "EmployeeID": 1, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", + "OrderID": 10432, + "EmployeeID": 3, + "OrderDate": "1997-01-31T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", "ShipVia": 2, - "Freight": 30.53, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 4.34, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 25, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 16, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10487, - "EmployeeID": 2, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-03-28T00:00:00", + "OrderID": 10756, + "EmployeeID": 8, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-02T00:00:00", "ShipVia": 2, - "Freight": 71.07, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 73.21, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 5, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 21, + "Discount": 0.2 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.2 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.2 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10488, - "EmployeeID": 8, - "OrderDate": "1997-03-27T00:00:00", - "RequiredDate": "1997-04-24T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10821, + "EmployeeID": 1, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-15T00:00:00", + "ShipVia": 1, + "Freight": 36.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10489, - "EmployeeID": 6, - "OrderDate": "1997-03-28T00:00:00", - "RequiredDate": "1997-04-25T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 5.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10974, + "EmployeeID": 3, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 12.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 18, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 10, "Discount": 0 } ] @@ -11148,1159 +8356,813 @@ ] }, { - "CustomerID": "HILAA", - "Company": "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": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Fax": "0372-035189", "Orders": [ { - "OrderID": 10490, - "EmployeeID": 7, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-03T00:00:00", - "ShipVia": 2, - "Freight": 210.19, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10273, + "EmployeeID": 3, + "OrderDate": "1996-08-05T00:00:00", + "RequiredDate": "1996-09-02T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", + "ShipVia": 3, + "Freight": 76.07, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 24, + "Discount": 0.06 }, { - "ProductID": 68, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 36, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 33, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10491, - "EmployeeID": 8, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-08T00:00:00", - "ShipVia": 3, - "Freight": 16.96, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10285, + "EmployeeID": 1, + "OrderDate": "1996-08-20T00:00:00", + "RequiredDate": "1996-09-17T00:00:00", + "ShippedDate": "1996-08-26T00:00:00", + "ShipVia": 2, + "Freight": 76.83, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0.16 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 36, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 10000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10492, - "EmployeeID": 3, - "OrderDate": "1997-04-01T00:00:00", - "RequiredDate": "1997-04-29T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 1, - "Freight": 62.89, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderID": 10313, + "EmployeeID": 2, + "OrderDate": "1996-09-24T00:00:00", + "RequiredDate": "1996-10-22T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 1.96, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10345, + "EmployeeID": 2, + "OrderDate": "1996-11-04T00:00:00", + "RequiredDate": "1996-12-02T00:00:00", + "ShippedDate": "1996-11-11T00:00:00", + "ShipVia": 2, + "Freight": 249.06, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 80, + "Discount": 0 }, { "ProductID": 42, "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.06 + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10493, - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 10.64, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10361, + "EmployeeID": 1, + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 183.17, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 54, "Discount": 0.1 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 55, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10494, + "OrderID": 10418, "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 65.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderDate": "1997-01-17T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "ShipVia": 1, + "Freight": 17.55, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 60, "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 19000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ - { - "OrderID": 10495, - "EmployeeID": 3, - "OrderDate": "1997-04-03T00:00:00", - "RequiredDate": "1997-05-01T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 3, - "Freight": 4.65, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 20000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 10, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10496, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 2, - "Freight": 46.77, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10497, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 1, - "Freight": 36.21, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "OrderID": 10451, + "EmployeeID": 4, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 189.09, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 14, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 120, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 28, + "Discount": 0.1 }, { "ProductID": 77, "UnitPrice": 10.4, - "Quantity": 25, - "Discount": 0 + "Quantity": 55, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10498, - "EmployeeID": 8, - "OrderDate": "1997-04-07T00:00:00", - "RequiredDate": "1997-05-05T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 2, - "Freight": 29.75, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10515, + "EmployeeID": 2, + "OrderDate": "1997-04-23T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 1, + "Freight": 204.47, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 14, + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 16, + "Discount": 0.16 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 120, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10499, - "EmployeeID": 4, - "OrderDate": "1997-04-08T00:00:00", - "RequiredDate": "1997-05-06T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 102.02, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, + "Discount": 0.16 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 84, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10500, - "EmployeeID": 6, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-17T00:00:00", + "OrderID": 10527, + "EmployeeID": 7, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", "ShipVia": 1, - "Freight": 42.68, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 41.9, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10501, - "EmployeeID": 9, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", + "OrderID": 10540, + "EmployeeID": 3, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", "ShipVia": 3, - "Freight": 8.85, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, + "Freight": 1007.64, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10502, - "EmployeeID": 2, - "OrderDate": "1997-04-10T00:00:00", - "RequiredDate": "1997-05-08T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 69.32, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 21, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10503, - "EmployeeID": 6, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 16.74, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10549, + "EmployeeID": 5, + "OrderDate": "1997-05-27T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 171.24, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 70, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 55, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 100, + "Discount": 0.16 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 48, + "Discount": 0.16 + } + ] + }, { - "OrderID": 10504, - "EmployeeID": 4, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-18T00:00:00", + "OrderID": 10588, + "EmployeeID": 2, + "OrderDate": "1997-07-03T00:00:00", + "RequiredDate": "1997-07-31T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", "ShipVia": 3, - "Freight": 59.13, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 194.67, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 40, + "Discount": 0.2 }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 100, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10658, + "EmployeeID": 4, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 1, + "Freight": 364.15, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { "ProductID": 21, "UnitPrice": 10, - "Quantity": 12, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 25, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 55, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 70, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 21000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10505, - "EmployeeID": 3, - "OrderDate": "1997-04-14T00:00:00", - "RequiredDate": "1997-05-12T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 7.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 33000, - "ShipCountry": "Canada", + "OrderID": 10691, + "EmployeeID": 2, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-10-22T00:00:00", + "ShipVia": 2, + "Freight": 810.05, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 24, + "Discount": 0 + }, { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 3, + "Quantity": 48, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10506, - "EmployeeID": 9, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 21.19, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10694, + "EmployeeID": 8, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-11-03T00:00:00", + "ShippedDate": "1997-10-09T00:00:00", + "ShipVia": 3, + "Freight": 398.36, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 90, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 }, { "ProductID": 70, "UnitPrice": 15, - "Quantity": 14, - "Discount": 0.1 + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10507, - "EmployeeID": 7, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-04-22T00:00:00", - "ShipVia": 1, - "Freight": 47.45, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 15, - "Discount": 0.16 - }, + "OrderID": 10721, + "EmployeeID": 5, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-11-26T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", + "ShipVia": 3, + "Freight": 48.92, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 50, + "Discount": 0.06 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10508, - "EmployeeID": 1, - "OrderDate": "1997-04-16T00:00:00", - "RequiredDate": "1997-05-14T00:00:00", - "ShippedDate": "1997-05-13T00:00:00", - "ShipVia": 2, - "Freight": 4.99, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, + "OrderID": 10745, + "EmployeeID": 9, + "OrderDate": "1997-11-18T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 1, + "Freight": 3.52, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 7, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10509, - "EmployeeID": 4, - "OrderDate": "1997-04-17T00:00:00", - "RequiredDate": "1997-05-15T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 0.15, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, + "OrderID": 10765, + "EmployeeID": 3, + "OrderDate": "1997-12-04T00:00:00", + "RequiredDate": "1998-01-01T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 3, + "Freight": 42.74, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 80, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10510, - "EmployeeID": 6, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", - "ShipVia": 3, - "Freight": 367.63, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10788, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 42.7, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 36, - "Discount": 0.1 + "Quantity": 40, + "Discount": 0.06 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10511, - "EmployeeID": 4, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 350.64, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10845, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 212.98, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10512, - "EmployeeID": 7, - "OrderDate": "1997-04-21T00:00:00", - "RequiredDate": "1997-05-19T00:00:00", - "ShippedDate": "1997-04-24T00:00:00", - "ShipVia": 2, - "Freight": 3.53, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.16 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 9, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 42, + "Discount": 0.1 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 48, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10513, - "EmployeeID": 7, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-06-03T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", + "OrderID": 10865, + "EmployeeID": 2, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", "ShipVia": 1, - "Freight": 105.65, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, + "Freight": 348.14, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.2 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10514, - "EmployeeID": 3, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", - "ShipVia": 2, - "Freight": 789.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10878, + "EmployeeID": 4, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 46.69, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 20, "UnitPrice": 81, - "Quantity": 39, - "Discount": 0 - }, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10938, + "EmployeeID": 3, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 31.89, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 35, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 70, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0.25 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 39, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 49, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10515, - "EmployeeID": 2, - "OrderDate": "1997-04-23T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 1, - "Freight": 204.47, + "OrderID": 10962, + "EmployeeID": 8, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 275.79, "ShipName": "QUICK-Stop", "ShipAddress": "Taucherstraße 10", "ShipCity": "Cunewalde", @@ -12308,131 +9170,135 @@ "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 16, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, + "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 77, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 120, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0.16 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 84, - "Discount": 0.16 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 44, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10516, - "EmployeeID": 2, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 62.78, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10991, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 1, + "Freight": 38.51, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.2 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 80, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 20, + "Discount": 0.2 }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 90, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10996, + "EmployeeID": 4, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 1.12, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { "ProductID": 42, "UnitPrice": 14, - "Quantity": 20, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 13000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ + }, { - "OrderID": 10517, + "OrderID": 11021, "EmployeeID": 3, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 3, - "Freight": 32.07, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 19000, - "ShipCountry": "UK", + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 1, + "Freight": 297.18, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 11, + "Discount": 0.25 + }, + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 4, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 63, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 44, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, "Discount": 0 } ] @@ -12440,347 +9306,299 @@ ] }, { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", + "CustomerID": "MAGAA", + "Company": "Magazzini Alimentari Riuniti", + "ContactName": "Giovanni Rovelli", + "ContactTitle": "Marketing Manager", + "Address": "Via Ludovico il Moro 22", + "City": "Bergamo", + "PostalCode": 24100, + "Country": "Italy", + "Phone": "035-640230", + "Fax": "035-640231", "Orders": [ { - "OrderID": 10518, - "EmployeeID": 4, - "OrderDate": "1997-04-25T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-05-05T00:00:00", - "ShipVia": 2, - "Freight": 218.15, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10275, + "EmployeeID": 1, + "OrderDate": "1996-08-07T00:00:00", + "RequiredDate": "1996-09-04T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", + "ShipVia": 1, + "Freight": 26.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 6, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10300, + "EmployeeID": 2, + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 17.68, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 9, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10519, - "EmployeeID": 6, - "OrderDate": "1997-04-28T00:00:00", - "RequiredDate": "1997-05-26T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 91.76, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10404, + "EmployeeID": 2, + "OrderDate": "1997-01-03T00:00:00", + "RequiredDate": "1997-01-31T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", + "ShipVia": 1, + "Freight": 155.97, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 42, + "UnitPrice": 11.2, "Quantity": 40, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10520, - "EmployeeID": 7, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 1, - "Freight": 13.37, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10467, + "EmployeeID": 8, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 8, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 5, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10521, + "OrderID": 10635, "EmployeeID": 8, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 17.22, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-08-18T00:00:00", + "RequiredDate": "1997-09-15T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 47.46, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10522, - "EmployeeID": 4, - "OrderDate": "1997-04-30T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-06T00:00:00", - "ShipVia": 1, - "Freight": 45.33, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10754, + "EmployeeID": 6, + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 3, + "Freight": 2.38, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.2 - }, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10784, + "EmployeeID": 4, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 70.09, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 24, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 10000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10523, + "OrderID": 10818, "EmployeeID": 7, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 2, - "Freight": 77.63, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 16000, - "ShipCountry": "UK", + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", + "ShipVia": 3, + "Freight": 65.48, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0.1 + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 37000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10524, - "EmployeeID": 1, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", + "OrderID": 10939, + "EmployeeID": 2, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 2, - "Freight": 244.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 12000, - "ShipCountry": "Sweden", + "Freight": 76.33, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 10, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 60, - "Discount": 0 - }, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10950, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-13T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 2.5, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 5, "Discount": 0 } ] @@ -12788,1370 +9606,1092 @@ ] }, { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", + "CustomerID": "TORTU", + "Company": "Tortuga Restaurante", + "ContactName": "Miguel Angel Paolino", "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", + "Address": "Avda. Azteca 123", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 555-2933", + "Fax": "(5) 555-2934", "Orders": [ { - "OrderID": 10525, - "EmployeeID": 1, - "OrderDate": "1997-05-02T00:00:00", - "RequiredDate": "1997-05-30T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 11.06, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10276, + "EmployeeID": 8, + "OrderDate": "1996-08-08T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-14T00:00:00", + "ShipVia": 3, + "Freight": 13.84, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10526, - "EmployeeID": 4, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-15T00:00:00", - "ShipVia": 2, - "Freight": 58.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10293, + "EmployeeID": 1, + "OrderDate": "1996-08-29T00:00:00", + "RequiredDate": "1996-09-26T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", + "ShipVia": 3, + "Freight": 21.18, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 24, + "UnitPrice": 3.6, "Quantity": 10, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10527, - "EmployeeID": 7, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", - "ShipVia": 1, - "Freight": 41.9, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.1 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10528, - "EmployeeID": 6, - "OrderDate": "1997-05-06T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", + "OrderID": 10304, + "EmployeeID": 1, + "OrderDate": "1996-09-12T00:00:00", + "RequiredDate": "1996-10-10T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", "ShipVia": 2, - "Freight": 3.35, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 63.79, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 3, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 9, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 11000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10529, - "EmployeeID": 5, - "OrderDate": "1997-05-07T00:00:00", - "RequiredDate": "1997-06-04T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", - "ShipVia": 2, - "Freight": 66.69, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 26000, - "ShipCountry": "Belgium", + "OrderID": 10319, + "EmployeeID": 7, + "OrderDate": "1996-10-02T00:00:00", + "RequiredDate": "1996-10-30T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 3, + "Freight": 64.5, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 14, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10530, - "EmployeeID": 3, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", + "OrderID": 10518, + "EmployeeID": 4, + "OrderDate": "1997-04-25T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-05-05T00:00:00", "ShipVia": 2, - "Freight": 339.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 218.15, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 25, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 10576, + "EmployeeID": 3, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", + "ShipVia": 3, + "Freight": 18.56, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 20, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10531, - "EmployeeID": 7, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", - "ShipVia": 1, - "Freight": 8.12, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10676, + "EmployeeID": 2, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-29T00:00:00", + "ShipVia": 2, + "Freight": 2.01, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 2, "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10532, - "EmployeeID": 7, - "OrderDate": "1997-05-09T00:00:00", - "RequiredDate": "1997-06-06T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", + "OrderID": 10842, + "EmployeeID": 1, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 3, - "Freight": 74.46, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 23000, - "ShipCountry": "UK", + "Freight": 54.42, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 11, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 24, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 5, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 21000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10533, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-22T00:00:00", - "ShipVia": 1, - "Freight": 188.04, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 45000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 73, + "ProductID": 70, "UnitPrice": 15, - "Quantity": 24, - "Discount": 0.06 + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10534, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-14T00:00:00", + "OrderID": 10915, + "EmployeeID": 2, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", "ShipVia": 2, - "Freight": 27.94, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 3.51, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 17, + "UnitPrice": 39, "Quantity": 10, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 54, "UnitPrice": 7.45, "Quantity": 10, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10535, - "EmployeeID": 4, - "OrderDate": "1997-05-13T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-21T00:00:00", - "ShipVia": 1, - "Freight": 15.64, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", + "OrderID": 11069, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 15.67, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", "ShipCity": "México D.F.", - "ShipPostalCode": 5023, + "ShipPostalCode": 5033, "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 } ] } - ], - "Fax": "(5) 555-3932" + ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, + "CustomerID": "MORGK", + "Company": "Morgenstern Gesundkost", + "ContactName": "Alexander Feuer", + "ContactTitle": "Marketing Assistant", + "Address": "Heerstr. 22", + "City": "Leipzig", + "PostalCode": 4179, "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "Phone": "0342-023176", + "Fax": "0342-023177", "Orders": [ { - "OrderID": 10536, - "EmployeeID": 3, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-06-11T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 2, - "Freight": 58.88, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "OrderID": 10277, + "EmployeeID": 2, + "OrderDate": "1996-08-09T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-08-13T00:00:00", + "ShipVia": 3, + "Freight": 125.77, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 20, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 12, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, - "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10537, - "EmployeeID": 1, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", + "OrderID": 10575, + "EmployeeID": 5, + "OrderDate": "1997-06-20T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 1, - "Freight": 78.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 127.34, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 6, "Discount": 0 }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 20, - "Discount": 0 - }, { "ProductID": 72, "UnitPrice": 34.8, - "Quantity": 21, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 9, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 44000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10538, - "EmployeeID": 9, - "OrderDate": "1997-05-15T00:00:00", - "RequiredDate": "1997-06-12T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", + "OrderID": 10699, + "EmployeeID": 3, + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", "ShipVia": 3, - "Freight": 4.87, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 27000, - "ShipCountry": "UK", + "Freight": 0.58, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 1, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 12, "Discount": 0 } ] }, { - "OrderID": 10539, - "EmployeeID": 6, - "OrderDate": "1997-05-16T00:00:00", - "RequiredDate": "1997-06-13T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 3, - "Freight": 12.36, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 39000, - "ShipCountry": "UK", + "OrderID": 10779, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 2, + "Freight": 58.13, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 8, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10945, + "EmployeeID": 4, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-04-09T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 10.22, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 6, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 } ] } - ], - "Fax": "(171) 555-1212" + ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10540, - "EmployeeID": 3, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 3, - "Freight": 1007.64, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 14000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", + "Orders": [ + { + "OrderID": 10278, + "EmployeeID": 8, + "OrderDate": "1996-08-12T00:00:00", + "RequiredDate": "1996-09-09T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 92.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 35, + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10541, + "OrderID": 10280, "EmployeeID": 2, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-05-29T00:00:00", + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-09-11T00:00:00", + "ShippedDate": "1996-09-12T00:00:00", "ShipVia": 1, - "Freight": 68.65, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 8.98, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.1 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 4, - "Discount": 0.1 + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 36, - "Discount": 0.1 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10542, - "EmployeeID": 1, - "OrderDate": "1997-05-20T00:00:00", - "RequiredDate": "1997-06-17T00:00:00", - "ShippedDate": "1997-05-26T00:00:00", + "OrderID": 10384, + "EmployeeID": 3, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", "ShipVia": 3, - "Freight": 10.95, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 168.64, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 24, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10543, - "EmployeeID": 8, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 48.17, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10444, + "EmployeeID": 3, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-21T00:00:00", + "ShipVia": 3, + "Freight": 3.5, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 22000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10544, - "EmployeeID": 4, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 24.91, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10524, + "EmployeeID": 1, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", + "ShipVia": 2, + "Freight": 244.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 12000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 7, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 7, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10545, - "EmployeeID": 8, - "OrderDate": "1997-05-22T00:00:00", - "RequiredDate": "1997-06-19T00:00:00", - "ShippedDate": "1997-06-26T00:00:00", + "OrderID": 10572, + "EmployeeID": 3, + "OrderDate": "1997-06-18T00:00:00", + "RequiredDate": "1997-07-16T00:00:00", + "ShippedDate": "1997-06-25T00:00:00", "ShipVia": 2, - "Freight": 11.92, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, - "ShipCountry": "USA", + "Freight": 116.43, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 40000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 32, + "UnitPrice": 32, "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10546, + "OrderID": 10626, "EmployeeID": 1, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-05-27T00:00:00", - "ShipVia": 3, - "Freight": 194.72, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-08T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 2, + "Freight": 138.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 34000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 10, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 27000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10547, - "EmployeeID": 3, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", - "ShipVia": 2, - "Freight": 178.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10654, + "EmployeeID": 5, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 1, + "Freight": 55.26, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 12000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 60, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10548, - "EmployeeID": 3, - "OrderDate": "1997-05-26T00:00:00", - "RequiredDate": "1997-06-23T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", + "OrderID": 10672, + "EmployeeID": 9, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", "ShipVia": 2, - "Freight": 1.43, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 95.75, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 50000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10549, - "EmployeeID": 5, - "OrderDate": "1997-05-27T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 171.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10689, + "EmployeeID": 1, + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-29T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", + "ShipVia": 2, + "Freight": 13.42, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 16000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 55, - "Discount": 0.16 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 100, - "Discount": 0.16 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 48, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10550, - "EmployeeID": 7, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-06-25T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", + "OrderID": 10733, + "EmployeeID": 1, + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-10T00:00:00", "ShipVia": 3, - "Freight": 4.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 110.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 34000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 16, + "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0.1 - }, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10778, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", + "ShipVia": 1, + "Freight": 6.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 39000, + "ShipCountry": "Sweden", + "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 10, - "Discount": 0.1 + "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10551, - "EmployeeID": 4, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", + "OrderID": 10837, + "EmployeeID": 9, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 3, - "Freight": 72.95, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 13.32, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 17000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, + "ProductID": 47, + "UnitPrice": 9.5, "Quantity": 40, - "Discount": 0 + "Discount": 0.25 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10552, - "EmployeeID": 2, - "OrderDate": "1997-05-29T00:00:00", - "RequiredDate": "1997-06-26T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 1, - "Freight": 83.22, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10857, + "EmployeeID": 8, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 2, + "Freight": 188.85, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 18, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.25 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10553, - "EmployeeID": 2, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-03T00:00:00", + "OrderID": 10866, + "EmployeeID": 5, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-03T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 109.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 37000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 6, + "Discount": 0.25 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 40, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10875, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", "ShipVia": 2, - "Freight": 149.49, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 32.37, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 18000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 14, - "Discount": 0 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0.1 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 24, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10924, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 2, + "Freight": 151.52, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 35000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 30, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 35, - "UnitPrice": 18, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 6, "Discount": 0 } @@ -14160,169 +10700,261 @@ ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, + "CustomerID": "LEHMS", + "Company": "Lehmanns Marktstand", + "ContactName": "Renate Messner", + "ContactTitle": "Sales Representative", + "Address": "Magazinweg 7", + "City": "Frankfurt a.M.", + "PostalCode": 60528, "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", + "Phone": "069-0245984", + "Fax": "069-0245874", "Orders": [ { - "OrderID": 10554, + "OrderID": 10279, + "EmployeeID": 8, + "OrderDate": "1996-08-13T00:00:00", + "RequiredDate": "1996-09-10T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 25.83, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10284, "EmployeeID": 4, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 3, - "Freight": 120.97, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, + "OrderDate": "1996-08-19T00:00:00", + "RequiredDate": "1996-09-16T00:00:00", + "ShippedDate": "1996-08-27T00:00:00", + "ShipVia": 1, + "Freight": 76.56, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 60, + "UnitPrice": 27.2, "Quantity": 20, - "Discount": 0.06 + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, + "ProductID": 67, + "UnitPrice": 11.2, + "Quantity": 5, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10343, + "EmployeeID": 4, + "OrderDate": "1996-10-31T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-11-06T00:00:00", + "ShipVia": 1, + "Freight": 110.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 4, "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10555, - "EmployeeID": 6, - "OrderDate": "1997-06-02T00:00:00", - "RequiredDate": "1997-06-30T00:00:00", - "ShippedDate": "1997-06-04T00:00:00", - "ShipVia": 3, - "Freight": 252.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10497, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", + "ShipVia": 1, + "Freight": 36.21, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10522, + "EmployeeID": 4, + "OrderDate": "1997-04-30T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-06T00:00:00", + "ShipVia": 1, + "Freight": 45.33, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0.2 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 18, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, "Discount": 0.2 + } + ] + }, + { + "OrderID": 10534, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-14T00:00:00", + "ShipVia": 2, + "Freight": 27.94, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 40, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10556, - "EmployeeID": 2, - "OrderDate": "1997-06-03T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 9.8, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10536, + "EmployeeID": 3, + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-06-11T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 2, + "Freight": 58.88, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 15, + "Discount": 0.25 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { "OrderID": 10557, "EmployeeID": 9, @@ -14350,418 +10982,349 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10558, - "EmployeeID": 1, - "OrderDate": "1997-06-04T00:00:00", - "RequiredDate": "1997-07-02T00:00:00", - "ShippedDate": "1997-06-10T00:00:00", - "ShipVia": 2, - "Freight": 72.97, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 35000, - "ShipCountry": "UK", + "OrderID": 10592, + "EmployeeID": 3, + "OrderDate": "1997-07-08T00:00:00", + "RequiredDate": "1997-08-05T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 32.1, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 15, + "UnitPrice": 15.5, "Quantity": 25, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 5, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10772, + "EmployeeID": 3, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 91.28, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10862, + "EmployeeID": 8, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 53.23, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 18, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 3, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10559, - "EmployeeID": 6, - "OrderDate": "1997-06-05T00:00:00", - "RequiredDate": "1997-07-03T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 8.05, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10891, + "EmployeeID": 7, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 2, + "Freight": 20.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, "Discount": 0.06 - }, + } + ] + }, + { + "OrderID": 10934, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 3, + "Freight": 32.01, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10560, - "EmployeeID": 8, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", + "OrderID": 11070, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-02T00:00:00", "ShipVia": 1, - "Freight": 36.65, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, + "Freight": 136, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 2, + "UnitPrice": 19, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10561, - "EmployeeID": 2, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", - "ShipVia": 2, - "Freight": 242.21, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 23000, - "ShipCountry": "Sweden", + "CustomerID": "ROMEY", + "Company": "Romero y tomillo", + "ContactName": "Alejandra Camino", + "ContactTitle": "Accounting Manager", + "Address": "Gran Vía, 1", + "City": "Madrid", + "PostalCode": 28001, + "Country": "Spain", + "Phone": "(91) 745 6200", + "Fax": "(91) 745 6210", + "Orders": [ + { + "OrderID": 10281, + "EmployeeID": 4, + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-08-28T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 2.94, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 50, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 6, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10562, - "EmployeeID": 1, - "OrderDate": "1997-06-09T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-12T00:00:00", - "ShipVia": 1, - "Freight": 22.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 20, - "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10563, - "EmployeeID": 2, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-06-24T00:00:00", - "ShipVia": 2, - "Freight": 60.43, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10282, + "EmployeeID": 4, + "OrderDate": "1996-08-15T00:00:00", + "RequiredDate": "1996-09-12T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 70, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10564, - "EmployeeID": 4, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-08T00:00:00", - "ShippedDate": "1997-06-16T00:00:00", + "OrderID": 10306, + "EmployeeID": 1, + "OrderDate": "1996-09-16T00:00:00", + "RequiredDate": "1996-10-14T00:00:00", + "ShippedDate": "1996-09-23T00:00:00", "ShipVia": 3, - "Freight": 13.75, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 7.56, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 38000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10565, - "EmployeeID": 8, - "OrderDate": "1997-06-11T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", + "OrderID": 10917, + "EmployeeID": 4, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", "ShipVia": 2, - "Freight": 7.15, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 21000, - "ShipCountry": "Canada", + "Freight": 8.29, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 1, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10566, - "EmployeeID": 9, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", + "OrderID": 11013, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 1, - "Freight": 88.4, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 32.99, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 18, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 2, "Discount": 0 } ] @@ -14769,1433 +11332,1162 @@ ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "LILAS", + "Company": "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", "Orders": [ { - "OrderID": 10567, - "EmployeeID": 1, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-17T00:00:00", - "ShipVia": 1, - "Freight": 33.97, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10283, + "EmployeeID": 3, + "OrderDate": "1996-08-16T00:00:00", + "RequiredDate": "1996-09-13T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", + "ShipVia": 3, + "Freight": 84.81, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 60, - "Discount": 0.2 + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ - { - "OrderID": 10568, - "EmployeeID": 3, - "OrderDate": "1997-06-13T00:00:00", - "RequiredDate": "1997-07-11T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 3, - "Freight": 6.54, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", - "OrderDetails": [ + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 35, + "Discount": 0 + }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 5, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10569, - "EmployeeID": 5, - "OrderDate": "1997-06-16T00:00:00", - "RequiredDate": "1997-07-14T00:00:00", - "ShippedDate": "1997-07-11T00:00:00", + "OrderID": 10296, + "EmployeeID": 6, + "OrderDate": "1996-09-03T00:00:00", + "RequiredDate": "1996-10-01T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 1, - "Freight": 58.98, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 0.12, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 16, + "UnitPrice": 13.9, "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 22000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10570, + "OrderID": 10330, "EmployeeID": 3, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-19T00:00:00", - "ShipVia": 3, - "Freight": 188.99, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", + "ShipVia": 1, + "Freight": 12.75, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10571, - "EmployeeID": 8, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", + "OrderID": 10357, + "EmployeeID": 1, + "OrderDate": "1996-11-19T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", "ShipVia": 3, - "Freight": 26.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 34.88, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 11, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10572, + "OrderID": 10381, "EmployeeID": 3, - "OrderDate": "1997-06-18T00:00:00", - "RequiredDate": "1997-07-16T00:00:00", - "ShippedDate": "1997-06-25T00:00:00", - "ShipVia": 2, - "Freight": 116.43, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 40000, - "ShipCountry": "Sweden", + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 7.99, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, - "Discount": 0.1 - }, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 14, + "Discount": 0 + } + ] + }, + { + "OrderID": 10461, + "EmployeeID": 1, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-05T00:00:00", + "ShipVia": 3, + "Freight": 148.61, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 28, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10573, - "EmployeeID": 7, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-20T00:00:00", - "ShipVia": 3, - "Freight": 84.84, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10499, + "EmployeeID": 4, + "OrderDate": "1997-04-08T00:00:00", + "RequiredDate": "1997-05-06T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 2, + "Freight": 102.02, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 40, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 49, + "UnitPrice": 20, "Quantity": 25, "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "TRAIH", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10574, - "EmployeeID": 4, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10543, + "EmployeeID": 8, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", "ShipVia": 2, - "Freight": 37.6, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", + "Freight": 48.17, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 2, - "Discount": 0 - }, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10780, + "EmployeeID": 2, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-25T00:00:00", + "ShipVia": 1, + "Freight": 42.13, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 6, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10575, + "OrderID": 10823, "EmployeeID": 5, - "OrderDate": "1997-06-20T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 1, - "Freight": 127.34, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 163.97, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 6, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10576, - "EmployeeID": 3, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10899, + "EmployeeID": 5, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", "ShipVia": 3, - "Freight": 18.56, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 1.21, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, - "Discount": 0 + "Quantity": 8, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10577, - "EmployeeID": 9, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10997, + "EmployeeID": 8, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 25.41, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", + "Freight": 73.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 46, + "UnitPrice": 12, "Quantity": 20, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10578, - "EmployeeID": 4, - "OrderDate": "1997-06-24T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", - "ShipVia": 3, - "Freight": 29.6, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 31000, - "ShipCountry": "UK", + "OrderID": 11065, + "EmployeeID": 8, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-29T00:00:00", + "ShipVia": 1, + "Freight": 12.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 6, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, + "Discount": 0.25 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10579, + "OrderID": 11071, "EmployeeID": 1, - "OrderDate": "1997-06-25T00:00:00", - "RequiredDate": "1997-07-23T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 2, - "Freight": 13.73, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-10T00:00:00", + "ShipVia": 1, + "Freight": 0.93, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 10, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 21, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0.06 } ] } - ], - "Fax": "(415) 555-5938" + ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", + "CustomerID": "RICAR", + "Company": "Ricardo Adocicados", + "ContactName": "Janete Limeira", + "ContactTitle": "Sales Associate", + "Address": "Av. Copacabana, 267", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-3412", + "Fax": "(21) 555-3413", "Orders": [ { - "OrderID": 10580, - "EmployeeID": 4, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-01T00:00:00", + "OrderID": 10287, + "EmployeeID": 8, + "OrderDate": "1996-08-22T00:00:00", + "RequiredDate": "1996-09-19T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", "ShipVia": 3, - "Freight": 75.89, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 12.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10581, - "EmployeeID": 3, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-02T00:00:00", - "ShipVia": 1, - "Freight": 3.01, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", + "OrderID": 10299, + "EmployeeID": 4, + "OrderDate": "1996-09-06T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-13T00:00:00", + "ShipVia": 2, + "Freight": 29.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10582, - "EmployeeID": 3, - "OrderDate": "1997-06-27T00:00:00", - "RequiredDate": "1997-07-25T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 10447, + "EmployeeID": 4, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-03-07T00:00:00", "ShipVia": 2, - "Freight": 27.71, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "Freight": 68.66, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 4, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 14, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10583, - "EmployeeID": 2, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", + "OrderID": 10481, + "EmployeeID": 8, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", "ShipVia": 2, - "Freight": 7.28, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 64.33, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 24, "Discount": 0 }, { "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.16 + "UnitPrice": 27.2, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10563, + "EmployeeID": 2, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-06-24T00:00:00", + "ShipVia": 2, + "Freight": 60.43, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 70, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10584, + "OrderID": 10622, "EmployeeID": 4, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 1, - "Freight": 59.14, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderDate": "1997-08-06T00:00:00", + "RequiredDate": "1997-09-03T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 3, + "Freight": 50.97, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 31, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 68, "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.06 + "Quantity": 18, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10585, - "EmployeeID": 7, - "OrderDate": "1997-07-01T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 1, - "Freight": 13.41, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, + "OrderID": 10648, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-09T00:00:00", + "ShipVia": 2, + "Freight": 14.25, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 22, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10586, - "EmployeeID": 9, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 1, - "Freight": 0.48, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10813, + "EmployeeID": 1, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 1, + "Freight": 47.38, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 12, + "Discount": 0.2 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10587, - "EmployeeID": 1, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", + "OrderID": 10851, + "EmployeeID": 5, + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-23T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", "ShipVia": 1, - "Freight": 62.52, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 160.55, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", "ShipCity": "Sao Paulo", "ShipRegion": "RJ", "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, + "Discount": 0.06 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10588, - "EmployeeID": 2, - "OrderDate": "1997-07-03T00:00:00", - "RequiredDate": "1997-07-31T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 3, - "Freight": 194.67, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10877, + "EmployeeID": 1, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 1, + "Freight": 38.06, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 100, - "Discount": 0.2 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10589, - "EmployeeID": 8, - "OrderDate": "1997-07-04T00:00:00", - "RequiredDate": "1997-08-01T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 11059, + "EmployeeID": 2, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-06-10T00:00:00", + "ShippedDate": "1998-06-15T00:00:00", "ShipVia": 2, - "Freight": 4.42, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 85.8, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 30, "Discount": 0 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 43000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10590, - "EmployeeID": 4, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 3, - "Freight": 44.77, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 40000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0 } ] } ] }, { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10591, - "EmployeeID": 1, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-07-21T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", + "CustomerID": "REGGC", + "Company": "Reggiani Caseifici", + "ContactName": "Maurizio Moroni", + "ContactTitle": "Sales Associate", + "Address": "Strada Provinciale 124", + "City": "Reggio Emilia", + "PostalCode": 42100, + "Country": "Italy", + "Phone": "0522-556721", + "Fax": "0522-556722", + "Orders": [ + { + "OrderID": 10288, + "EmployeeID": 4, + "OrderDate": "1996-08-23T00:00:00", + "RequiredDate": "1996-09-20T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", "ShipVia": 1, - "Freight": 55.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 7.45, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 54, + "UnitPrice": 5.9, "Quantity": 10, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 50, - "Discount": 0 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10592, - "EmployeeID": 3, - "OrderDate": "1997-07-08T00:00:00", - "RequiredDate": "1997-08-05T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", + "OrderID": 10428, + "EmployeeID": 7, + "OrderDate": "1997-01-28T00:00:00", + "RequiredDate": "1997-02-25T00:00:00", + "ShippedDate": "1997-02-04T00:00:00", "ShipVia": 1, - "Freight": 32.1, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 11.09, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 25, - "Discount": 0.06 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0 } ] }, { - "OrderID": 10593, - "EmployeeID": 7, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-08-13T00:00:00", - "ShipVia": 2, - "Freight": 174.2, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10443, + "EmployeeID": 8, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 1, + "Freight": 13.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10594, - "EmployeeID": 3, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", - "ShipVia": 2, - "Freight": 5.24, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10562, + "EmployeeID": 1, + "OrderDate": "1997-06-09T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-12T00:00:00", + "ShipVia": 1, + "Freight": 22.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 24, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10595, - "EmployeeID": 2, - "OrderDate": "1997-07-10T00:00:00", - "RequiredDate": "1997-08-07T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 10586, + "EmployeeID": 9, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", "ShipVia": 1, - "Freight": 96.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 0.48, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 120, - "Discount": 0.25 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 65, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10596, - "EmployeeID": 8, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", - "ShipVia": 1, - "Freight": 16.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10655, + "EmployeeID": 1, + "OrderDate": "1997-09-03T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 4.41, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, "Discount": 0.2 + } + ] + }, + { + "OrderID": 10727, + "EmployeeID": 2, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-12-01T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 89.9, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 24, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10597, - "EmployeeID": 7, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", - "ShipVia": 3, - "Freight": 35.12, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10812, + "EmployeeID": 5, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", + "ShipVia": 1, + "Freight": 59.78, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 16, + "Discount": 0.1 }, { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, "Quantity": 20, "Discount": 0 + } + ] + }, + { + "OrderID": 10908, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 32.96, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 14, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10598, - "EmployeeID": 1, - "OrderDate": "1997-07-14T00:00:00", - "RequiredDate": "1997-08-11T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", + "OrderID": 10942, + "EmployeeID": 9, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 3, - "Freight": 44.42, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 17.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 50, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 28, + "Discount": 0 + } + ] + }, + { + "OrderID": 11010, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 28.71, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, "Discount": 0 } ] - } + }, + { + "OrderID": 11062, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-06-28T00:00:00", + "ShipVia": 2, + "Freight": 29.93, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 12, + "Discount": 0.2 + } + ] + } ] }, { @@ -16205,1875 +12497,1438 @@ "ContactTitle": "Sales Representative", "Address": "Fauntleroy Circus", "City": "London", - "PostalCode": 20000, + "PostalCode": 22000, "Country": "UK", "Phone": "(171) 555-1212", "Orders": [ { - "OrderID": 10599, - "EmployeeID": 6, - "OrderDate": "1997-07-15T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", + "OrderID": 10289, + "EmployeeID": 7, + "OrderDate": "1996-08-26T00:00:00", + "RequiredDate": "1996-09-23T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", "ShipVia": 3, - "Freight": 29.98, + "Freight": 22.77, "ShipName": "Best Beverages", "ShipAddress": "Fauntleroy Circus", "ShipCity": "London", - "ShipPostalCode": 14000, + "ShipPostalCode": 22000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10600, - "EmployeeID": 4, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-13T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", - "ShipVia": 1, - "Freight": 45.13, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "OrderID": 10471, + "EmployeeID": 2, + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 3, + "Freight": 45.59, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 25000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 4, + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10601, - "EmployeeID": 7, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", - "ShipVia": 1, - "Freight": 58.3, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10484, + "EmployeeID": 3, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-01T00:00:00", + "ShipVia": 3, + "Freight": 6.88, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 60, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10602, - "EmployeeID": 8, - "OrderDate": "1997-07-17T00:00:00", - "RequiredDate": "1997-08-14T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", - "ShipVia": 2, - "Freight": 2.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10603, - "EmployeeID": 8, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", - "ShipVia": 2, - "Freight": 48.77, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10538, + "EmployeeID": 9, + "OrderDate": "1997-05-15T00:00:00", + "RequiredDate": "1997-06-12T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 3, + "Freight": 4.87, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 27000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 48, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 1, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10604, - "EmployeeID": 1, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", - "ShipVia": 1, - "Freight": 7.46, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10578, + "EmployeeID": 4, + "OrderDate": "1997-06-24T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 3, + "Freight": 29.6, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 31000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 6, + "Discount": 0 + } + ] + }, + { + "OrderID": 10599, + "EmployeeID": 6, + "OrderDate": "1997-07-15T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", + "ShipVia": 3, + "Freight": 29.98, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 14000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 10, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 32000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10605, - "EmployeeID": 1, - "OrderDate": "1997-07-21T00:00:00", - "RequiredDate": "1997-08-18T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", + "OrderID": 10943, + "EmployeeID": 4, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 379.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", + "Freight": 2.17, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 21, + "Discount": 0 }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10947, + "EmployeeID": 3, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", + "OrderDetails": [ { "ProductID": 59, "UnitPrice": 55, - "Quantity": 20, - "Discount": 0.06 - }, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11023, + "EmployeeID": 1, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 123.83, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 36000, + "ShipCountry": "UK", + "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0 } ] } - ] + ], + "Fax": "(171) 555-1212" }, { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", + "CustomerID": "COMMI", + "Company": "Comércio Mineiro", + "ContactName": "Pedro Afonso", + "ContactTitle": "Sales Associate", + "Address": "Av. dos Lusíadas, 23", "City": "Sao Paulo", "Region": "SP", - "PostalCode": 5634, + "PostalCode": 5432, "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", + "Phone": "(11) 555-7647", "Orders": [ { - "OrderID": 10606, - "EmployeeID": 4, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-31T00:00:00", - "ShipVia": 3, - "Freight": 79.4, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", + "OrderID": 10290, + "EmployeeID": 8, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", + "ShipVia": 1, + "Freight": 79.7, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", "ShipCity": "Sao Paulo", "ShipRegion": "SP", - "ShipPostalCode": 5634, + "ShipPostalCode": 5432, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 5, + "UnitPrice": 17, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10607, - "EmployeeID": 5, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", - "ShipVia": 1, - "Freight": 200.24, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 100, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10466, + "EmployeeID": 4, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-13T00:00:00", + "ShipVia": 1, + "Freight": 11.93, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 42, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 12, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10608, + "OrderID": 10494, "EmployeeID": 4, - "OrderDate": "1997-07-23T00:00:00", - "RequiredDate": "1997-08-20T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", "ShipVia": 2, - "Freight": 27.79, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 65.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10609, - "EmployeeID": 7, - "OrderDate": "1997-07-24T00:00:00", - "RequiredDate": "1997-08-21T00:00:00", - "ShippedDate": "1997-07-30T00:00:00", + "OrderID": 10969, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", "ShipVia": 2, - "Freight": 1.85, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 0.21, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 3, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11042, + "EmployeeID": 2, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 29.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, "Discount": 0 } ] } - ] + ], + "Fax": "(11) 555-7647" }, { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", + "CustomerID": "TRADH", + "Company": "Tradição Hipermercados", + "ContactName": "Anabela Domingues", + "ContactTitle": "Sales Representative", + "Address": "Av. Inês de Castro, 414", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5634, + "Country": "Brazil", + "Phone": "(11) 555-2167", + "Fax": "(11) 555-2168", "Orders": [ { - "OrderID": 10610, - "EmployeeID": 8, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", - "ShipVia": 1, - "Freight": 26.78, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10292, + "EmployeeID": 1, + "OrderDate": "1996-08-28T00:00:00", + "RequiredDate": "1996-09-25T00:00:00", + "ShippedDate": "1996-09-02T00:00:00", + "ShipVia": 2, + "Freight": 1.35, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10611, - "EmployeeID": 6, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderID": 10496, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", "ShipVia": 2, - "Freight": 80.65, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 46.77, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10606, + "EmployeeID": 4, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-31T00:00:00", + "ShipVia": 3, + "Freight": 79.4, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10612, - "EmployeeID": 1, - "OrderDate": "1997-07-28T00:00:00", - "RequiredDate": "1997-08-25T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderID": 10830, + "EmployeeID": 4, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", "ShipVia": 2, - "Freight": 544.08, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 81.83, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 55, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 18, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 28, "Discount": 0 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 40, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 80, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 24, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10613, - "EmployeeID": 4, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 8.11, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10834, + "EmployeeID": 1, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 3, + "Freight": 29.78, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 8, + "Discount": 0.06 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10839, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-22T00:00:00", + "ShipVia": 3, + "Freight": 35.43, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "PostalCode": 48637, + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", "Orders": [ { - "OrderID": 10614, - "EmployeeID": 8, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 3, - "Freight": 1.93, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10298, + "EmployeeID": 6, + "OrderDate": "1996-09-05T00:00:00", + "RequiredDate": "1996-10-03T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", + "ShipVia": 2, + "Freight": 168.22, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 14, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 8, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 5, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10615, - "EmployeeID": 2, - "OrderDate": "1997-07-30T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", - "ShipVia": 3, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10309, + "EmployeeID": 3, + "OrderDate": "1996-09-19T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 1, + "Freight": 47.3, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ - { - "OrderID": 10616, - "EmployeeID": 1, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-05T00:00:00", - "ShipVia": 2, - "Freight": 116.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, + "Discount": 0 }, { "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "UnitPrice": 17.2, + "Quantity": 3, + "Discount": 0 } ] }, { - "OrderID": 10617, - "EmployeeID": 4, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-04T00:00:00", + "OrderID": 10335, + "EmployeeID": 7, + "OrderDate": "1996-10-22T00:00:00", + "RequiredDate": "1996-11-19T00:00:00", + "ShippedDate": "1996-10-24T00:00:00", "ShipVia": 2, - "Freight": 18.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 42.11, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 28000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10618, - "EmployeeID": 1, - "OrderDate": "1997-08-01T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", - "ShipVia": 1, - "Freight": 154.68, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 30000, - "ShipCountry": "Canada", - "OrderDetails": [ + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 7, + "Discount": 0.2 + }, { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 70, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 48, + "Discount": 0.2 } ] }, { - "OrderID": 10619, - "EmployeeID": 3, - "OrderDate": "1997-08-04T00:00:00", - "RequiredDate": "1997-09-01T00:00:00", - "ShippedDate": "1997-08-07T00:00:00", + "OrderID": 10373, + "EmployeeID": 4, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-11T00:00:00", "ShipVia": 3, - "Freight": 91.05, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 21000, - "ShipCountry": "Canada", + "Freight": 124.12, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 42, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 80, + "Discount": 0.2 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 49000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ + }, { - "OrderID": 10620, - "EmployeeID": 2, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", + "OrderID": 10380, + "EmployeeID": 8, + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", "ShipVia": 3, - "Freight": 0.94, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 31000, - "ShipCountry": "Canada", + "Freight": 35.03, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 21000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10621, - "EmployeeID": 4, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", - "ShipVia": 2, - "Freight": 23.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 50269, - "ShipPostalCode": 39000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 10, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 6, + "Discount": 0.1 }, { "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10622, - "EmployeeID": 4, - "OrderDate": "1997-08-06T00:00:00", - "RequiredDate": "1997-09-03T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", - "ShipVia": 3, - "Freight": 50.97, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10429, + "EmployeeID": 3, + "OrderDate": "1997-01-29T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 56.63, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, - "Discount": 0.2 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10623, - "EmployeeID": 8, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", + "OrderID": 10503, + "EmployeeID": 6, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", "ShipVia": 2, - "Freight": 97.18, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 16.74, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { "ProductID": 14, "UnitPrice": 23.25, - "Quantity": 21, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 3, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10624, - "EmployeeID": 4, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 2, - "Freight": 94.8, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "OrderID": 10516, + "EmployeeID": 2, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 62.78, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 6, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 80, + "Discount": 0.1 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10625, - "EmployeeID": 3, - "OrderDate": "1997-08-08T00:00:00", - "RequiredDate": "1997-09-05T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", + "OrderID": 10567, + "EmployeeID": 1, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-17T00:00:00", "ShipVia": 1, - "Freight": 43.9, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 33.97, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 5, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 19000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10626, - "EmployeeID": 1, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-08T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 2, - "Freight": 138.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 34000, - "ShipCountry": "Sweden", + "OrderID": 10646, + "EmployeeID": 9, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 142.33, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.25 }, { "ProductID": 71, "UnitPrice": 21.5, - "Quantity": 20, - "Discount": 0 + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10627, - "EmployeeID": 8, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10661, + "EmployeeID": 7, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", "ShipVia": 3, - "Freight": 107.46, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 17.55, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 49, + "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10628, - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 3, - "Freight": 30.36, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10687, + "EmployeeID": 9, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-30T00:00:00", + "ShipVia": 2, + "Freight": 296.43, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ - { - "OrderID": 10629, - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 3, - "Freight": 85.46, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", - "OrderDetails": [ + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 50, + "Discount": 0.25 + }, { "ProductID": 29, "UnitPrice": 123.79, - "Quantity": 20, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 9, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0.25 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10630, - "EmployeeID": 1, - "OrderDate": "1997-08-13T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 2, - "Freight": 32.35, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10701, + "EmployeeID": 6, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-10-27T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 3, + "Freight": 220.31, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.16 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0.16 }, { "ProductID": 76, "UnitPrice": 18, "Quantity": 35, - "Discount": 0 + "Discount": 0.16 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10631, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-15T00:00:00", + "OrderID": 10712, + "EmployeeID": 3, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", "ShipVia": 1, - "Freight": 0.87, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 89.93, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10632, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 1, - "Freight": 41.38, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10736, + "EmployeeID": 9, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 44.1, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10633, - "EmployeeID": 7, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-18T00:00:00", - "ShipVia": 3, - "Freight": 477.9, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10897, + "EmployeeID": 3, + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-25T00:00:00", + "ShipVia": 2, + "Freight": 603.54, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 80, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 13, - "Discount": 0.16 - }, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 36, + "Discount": 0 + } + ] + }, + { + "OrderID": 10912, + "EmployeeID": 2, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 580.91, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 80, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10634, - "EmployeeID": 4, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", - "ShipVia": 3, - "Freight": 487.38, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "OrderID": 10985, + "EmployeeID": 2, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 91.51, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 36, + "Discount": 0.1 }, { "ProductID": 18, "UnitPrice": 62.5, - "Quantity": 50, - "Discount": 0 + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 15, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 35, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11063, + "EmployeeID": 3, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 81.73, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 2, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "WANDK", + "Company": "Die Wandernde Kuh", + "ContactName": "Rita Müller", + "ContactTitle": "Sales Representative", + "Address": "Adenauerallee 900", + "City": "Stuttgart", + "PostalCode": 70563, + "Country": "Germany", + "Phone": "0711-020361", + "Fax": "0711-035428", "Orders": [ { - "OrderID": 10635, + "OrderID": 10301, "EmployeeID": 8, - "OrderDate": "1997-08-18T00:00:00", - "RequiredDate": "1997-09-15T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", - "ShipVia": 3, - "Freight": 47.46, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", + "ShipVia": 2, + "Freight": 45.08, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 40, + "UnitPrice": 14.7, "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 15, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10636, - "EmployeeID": 4, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 1.15, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10312, + "EmployeeID": 2, + "OrderDate": "1996-09-23T00:00:00", + "RequiredDate": "1996-10-21T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 40.26, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 6, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10637, - "EmployeeID": 6, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 201.29, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10348, + "EmployeeID": 4, + "OrderDate": "1996-11-07T00:00:00", + "RequiredDate": "1996-12-05T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 2, + "Freight": 0.78, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 50, - "UnitPrice": 16.25, + "ProductID": 23, + "UnitPrice": 7.2, "Quantity": 25, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10638, - "EmployeeID": 3, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", - "ShipVia": 1, - "Freight": 158.44, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10356, + "EmployeeID": 6, + "OrderDate": "1996-11-18T00:00:00", + "RequiredDate": "1996-12-16T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", + "ShipVia": 2, + "Freight": 36.71, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 60, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10639, + "OrderID": 10513, "EmployeeID": 7, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-08-27T00:00:00", - "ShipVia": 3, - "Freight": 38.64, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ - { - "OrderID": 10640, - "EmployeeID": 4, - "OrderDate": "1997-08-21T00:00:00", - "RequiredDate": "1997-09-18T00:00:00", - "ShippedDate": "1997-08-28T00:00:00", + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-06-03T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", "ShipVia": 1, - "Freight": 23.55, + "Freight": 105.65, "ShipName": "Die Wandernde Kuh", "ShipAddress": "Adenauerallee 900", "ShipCity": "Stuttgart", @@ -18081,996 +13936,833 @@ "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, "Quantity": 15, - "Discount": 0.25 + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10641, - "EmployeeID": 4, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 2, - "Freight": 179.61, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10632, + "EmployeeID": 8, + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 1, + "Freight": 41.38, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 19, - "Quantity": 50, - "Discount": 0 + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10642, - "EmployeeID": 7, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-09-05T00:00:00", - "ShipVia": 3, - "Freight": 41.89, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10640, + "EmployeeID": 4, + "OrderDate": "1997-08-21T00:00:00", + "RequiredDate": "1997-09-18T00:00:00", + "ShippedDate": "1997-08-28T00:00:00", + "ShipVia": 1, + "Freight": 23.55, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10643, - "EmployeeID": 6, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", - "ShipVia": 1, - "Freight": 29.46, - "ShipName": "Alfreds Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, + "OrderID": 10651, + "EmployeeID": 8, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 20.6, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0.25 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 2, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 20, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10644, - "EmployeeID": 3, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", + "OrderID": 10668, + "EmployeeID": 1, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", "ShipVia": 2, - "Freight": 0.14, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 47.22, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, "Quantity": 4, "Discount": 0.1 }, { - "ProductID": 43, - "UnitPrice": 46, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 15, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11046, + "EmployeeID": 8, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 71.64, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 12, + "UnitPrice": 38, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0.1 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 18, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", + "CustomerID": "GODOS", + "Company": "Godos Cocina Típica", + "ContactName": "José Pedro Freyre", + "ContactTitle": "Sales Manager", + "Address": "C/ Romero, 33", + "City": "Sevilla", + "PostalCode": 41101, + "Country": "Spain", + "Phone": "(95) 555 82 82", "Orders": [ { - "OrderID": 10645, - "EmployeeID": 4, - "OrderDate": "1997-08-26T00:00:00", - "RequiredDate": "1997-09-23T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", - "ShipVia": 1, - "Freight": 12.41, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10303, + "EmployeeID": 7, + "OrderDate": "1996-09-11T00:00:00", + "RequiredDate": "1996-10-09T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 107.83, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 10, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10646, - "EmployeeID": 9, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", + "OrderID": 10550, + "EmployeeID": 7, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-06-25T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", "ShipVia": 3, - "Freight": 142.33, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 4.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10647, + "OrderID": 10629, "EmployeeID": 4, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 2, - "Freight": 45.54, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 85.46, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10648, + "OrderID": 10872, "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-09T00:00:00", + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", "ShipVia": 2, - "Freight": 14.25, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 175.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, "Quantity": 15, - "Discount": 0.16 + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 28000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10649, + "OrderID": 10874, "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-09-25T00:00:00", - "ShippedDate": "1997-08-29T00:00:00", - "ShipVia": 3, - "Freight": 6.2, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 47000, - "ShipCountry": "Belgium", + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", + "ShipVia": 2, + "Freight": 19.58, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10888, + "EmployeeID": 1, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", + "ShipVia": 2, + "Freight": 51.87, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, "Quantity": 20, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10650, - "EmployeeID": 5, - "OrderDate": "1997-08-29T00:00:00", - "RequiredDate": "1997-09-26T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 3, - "Freight": 176.81, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10911, + "EmployeeID": 3, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", + "ShipVia": 1, + "Freight": 38.19, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10651, - "EmployeeID": 8, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 2, - "Freight": 20.6, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10948, + "EmployeeID": 3, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", + "ShipVia": 3, + "Freight": 23.39, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10652, - "EmployeeID": 4, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", - "ShipVia": 2, - "Freight": 7.14, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 11009, + "EmployeeID": 2, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 59.11, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 2, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 18, "Discount": 0.25 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10653, - "EmployeeID": 1, - "OrderDate": "1997-09-02T00:00:00", - "RequiredDate": "1997-09-30T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", + "OrderID": 11037, + "EmployeeID": 7, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", "ShipVia": 1, - "Freight": 93.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 3.2, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 4, + "Discount": 0 } ] } - ] + ], + "Fax": "(95) 555 82 82" }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 33000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "OLDWO", + "Company": "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", "Orders": [ { - "OrderID": 10654, - "EmployeeID": 5, - "OrderDate": "1997-09-02T00:00:00", - "RequiredDate": "1997-09-30T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 1, - "Freight": 55.26, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 12000, - "ShipCountry": "Sweden", + "OrderID": 10305, + "EmployeeID": 8, + "OrderDate": "1996-09-13T00:00:00", + "RequiredDate": "1996-10-11T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 3, + "Freight": 257.62, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 12, + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 25, "Discount": 0.1 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 25, "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10655, - "EmployeeID": 1, - "OrderDate": "1997-09-03T00:00:00", - "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 2, - "Freight": 4.41, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10656, - "EmployeeID": 6, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", - "ShipVia": 1, - "Freight": 57.15, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, + "OrderID": 10338, + "EmployeeID": 4, + "OrderDate": "1996-10-25T00:00:00", + "RequiredDate": "1996-11-22T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", + "ShipVia": 3, + "Freight": 84.21, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0.1 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10657, - "EmployeeID": 2, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", + "OrderID": 10441, + "EmployeeID": 3, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-24T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 352.69, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "Freight": 73.02, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, + "ProductID": 27, + "UnitPrice": 35.1, "Quantity": 50, "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, + } + ] + }, + { + "OrderID": 10594, + "EmployeeID": 3, + "OrderDate": "1997-07-09T00:00:00", + "RequiredDate": "1997-08-06T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 2, + "Freight": 5.24, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, "Quantity": 24, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 45, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10680, + "EmployeeID": 1, + "OrderDate": "1997-09-24T00:00:00", + "RequiredDate": "1997-10-22T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 1, + "Freight": 26.61, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 10, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, + "Discount": 0.25 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 45, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.25 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10658, - "EmployeeID": 4, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", - "ShipVia": 1, - "Freight": 364.15, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10706, + "EmployeeID": 8, + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-11-13T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 3, + "Freight": 135.63, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 55, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10808, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 45.53, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10659, - "EmployeeID": 7, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", - "ShipVia": 2, - "Freight": 105.81, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10855, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 170.97, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, + "Discount": 0 + }, { "ProductID": 31, "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0.06 + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 24, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10660, - "EmployeeID": 8, - "OrderDate": "1997-09-08T00:00:00", - "RequiredDate": "1997-10-06T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", - "ShipVia": 1, - "Freight": 111.29, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "OrderID": 10965, + "EmployeeID": 6, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", + "ShipVia": 3, + "Freight": 144.38, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10661, - "EmployeeID": 7, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", - "ShipVia": 3, - "Freight": 17.55, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 11034, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 40.32, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 49, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 6, + "Discount": 0 } ] } @@ -19090,13 +14782,13 @@ "Fax": "(503) 555-9646", "Orders": [ { - "OrderID": 10662, - "EmployeeID": 3, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", + "OrderID": 10307, + "EmployeeID": 2, + "OrderDate": "1996-09-17T00:00:00", + "RequiredDate": "1996-10-15T00:00:00", + "ShippedDate": "1996-09-25T00:00:00", "ShipVia": 2, - "Freight": 1.28, + "Freight": 0.56, "ShipName": "Lonesome Pine Restaurant", "ShipAddress": "89 Chiaroscuro Rd.", "ShipCity": "Portland", @@ -19105,132 +14797,50 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10663, - "EmployeeID": 2, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-09-24T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", - "ShipVia": 2, - "Freight": 113.15, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10664, - "EmployeeID": 1, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 3, - "Freight": 1.27, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10317, + "EmployeeID": 6, + "OrderDate": "1996-09-30T00:00:00", + "RequiredDate": "1996-10-28T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10665, - "EmployeeID": 1, - "OrderDate": "1997-09-11T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-17T00:00:00", - "ShipVia": 2, - "Freight": 26.31, + "OrderID": 10544, + "EmployeeID": 4, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 24.91, "ShipName": "Lonesome Pine Restaurant", "ShipAddress": "89 Chiaroscuro Rd.", "ShipCity": "Portland", @@ -19239,249 +14849,292 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 1, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 7, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10662, + "EmployeeID": 3, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 2, + "Freight": 1.28, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10666, - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", + "OrderID": 10665, + "EmployeeID": 1, + "OrderDate": "1997-09-11T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-17T00:00:00", "ShipVia": 2, - "Freight": 232.42, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 26.31, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10667, - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", + "OrderID": 10867, + "EmployeeID": 6, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", "ShipVia": 1, - "Freight": 78.09, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 1.93, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 45, - "Discount": 0.2 - }, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10883, + "EmployeeID": 8, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 3, + "Freight": 0.53, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 14, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10668, - "EmployeeID": 1, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", + "OrderID": 11018, + "EmployeeID": 4, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", "ShipVia": 2, - "Freight": 47.22, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 11.65, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", + "CustomerID": "ANATR", + "Company": "Ana Trujillo Emparedados y helados", + "ContactName": "Ana Trujillo", "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", + "Address": "Avda. de la Constitución 2222", + "City": "México D.F.", + "PostalCode": 5021, + "Country": "Mexico", + "Phone": "(5) 555-4729", + "Fax": "(5) 555-3745", "Orders": [ { - "OrderID": 10669, - "EmployeeID": 2, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", - "ShipVia": 1, - "Freight": 24.39, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - } + "OrderID": 10308, + "EmployeeID": 7, + "OrderDate": "1996-09-18T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-24T00:00:00", + "ShipVia": 3, + "Freight": 1.61, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 5, + "Discount": 0 + } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10670, - "EmployeeID": 4, - "OrderDate": "1997-09-16T00:00:00", - "RequiredDate": "1997-10-14T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", + "OrderID": 10625, + "EmployeeID": 3, + "OrderDate": "1997-08-08T00:00:00", + "RequiredDate": "1997-09-05T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", "ShipVia": 1, - "Freight": 203.48, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 43.9, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 32, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 60, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 25, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10759, + "EmployeeID": 3, + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 3, + "Freight": 11.99, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10926, + "EmployeeID": 4, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 39.92, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 25, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, "Discount": 0 } ] @@ -19489,1902 +15142,1343 @@ ] }, { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", + "CustomerID": "THEBI", + "Company": "The Big Cheese", + "ContactName": "Liz Nixon", "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", + "Address": "89 Jefferson Way Suite 2", + "City": "Portland", + "Region": "OR", + "PostalCode": 97201, + "Country": "USA", + "Phone": "(503) 555-3612", "Orders": [ { - "OrderID": 10671, - "EmployeeID": 1, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-09-24T00:00:00", - "ShipVia": 1, - "Freight": 30.34, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10310, + "EmployeeID": 8, + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-18T00:00:00", + "ShippedDate": "1996-09-27T00:00:00", + "ShipVia": 2, + "Freight": 17.52, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 16, - "UnitPrice": 17.45, + "UnitPrice": 13.9, "Quantity": 10, "Discount": 0 }, { "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, + "UnitPrice": 39.4, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10672, - "EmployeeID": 9, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", + "OrderID": 10708, + "EmployeeID": 6, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 95.75, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 50000, - "ShipCountry": "Sweden", + "Freight": 2.96, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10673, + "OrderID": 10805, "EmployeeID": 2, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 1, - "Freight": 22.76, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 237.34, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 42, + "ProductID": 34, "UnitPrice": 14, - "Quantity": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 35000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10674, - "EmployeeID": 4, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 2, - "Freight": 0.9, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60699, - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10992, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 4.27, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 5, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 2, "Discount": 0 } ] } ], - "Fax": "(198) 555-8888" + "Fax": "(503) 555-3612" }, { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", + "CustomerID": "DUMON", + "Company": "Du monde entier", + "ContactName": "Janine Labrune", + "ContactTitle": "Owner", + "Address": "67, rue des Cinquante Otages", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.67.88.88", + "Fax": "40.67.89.89", "Orders": [ { - "OrderID": 10675, - "EmployeeID": 5, - "OrderDate": "1997-09-19T00:00:00", - "RequiredDate": "1997-10-17T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", - "ShipVia": 2, - "Freight": 31.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10311, + "EmployeeID": 1, + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-26T00:00:00", + "ShipVia": 3, + "Freight": 24.69, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 7, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10676, - "EmployeeID": 2, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-29T00:00:00", + "OrderID": 10609, + "EmployeeID": 7, + "OrderDate": "1997-07-24T00:00:00", + "RequiredDate": "1997-08-21T00:00:00", + "ShippedDate": "1997-07-30T00:00:00", "ShipVia": 2, - "Freight": 2.01, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 1.85, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10677, - "EmployeeID": 1, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", - "ShipVia": 3, - "Freight": 4.03, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10683, + "EmployeeID": 2, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 1, + "Freight": 4.4, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 9, + "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10678, + "OrderID": 10890, "EmployeeID": 7, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", - "ShipVia": 3, - "Freight": 388.98, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 32.76, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 100, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 120, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, + "Quantity": 14, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", + "CustomerID": "ISLAT", + "Company": "Island Trading", + "ContactName": "Helen Bennett", "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", + "Address": "Garden House Crowther Way", + "City": "Cowes", + "Region": "Northeast", + "PostalCode": 26000, + "Country": "UK", + "Phone": "(198) 555-8888", "Orders": [ { - "OrderID": 10679, - "EmployeeID": 8, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 3, - "Freight": 27.94, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10315, + "EmployeeID": 4, + "OrderDate": "1996-09-26T00:00:00", + "RequiredDate": "1996-10-24T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 41.76, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 80379, + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10680, - "EmployeeID": 1, - "OrderDate": "1997-09-24T00:00:00", - "RequiredDate": "1997-10-22T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", - "ShipVia": 1, - "Freight": 26.61, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10318, + "EmployeeID": 8, + "OrderDate": "1996-10-01T00:00:00", + "RequiredDate": "1996-10-29T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 4.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 30676, + "ShipPostalCode": 36000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0.25 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 20, - "Discount": 0.25 + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10681, + "OrderID": 10321, "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 3, - "Freight": 76.13, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-31T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 2, + "Freight": 3.43, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 20137, + "ShipPostalCode": 41000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 28, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10682, - "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 2, - "Freight": 36.13, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10473, + "EmployeeID": 1, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", + "ShipVia": 3, + "Freight": 16.37, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 90698, + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 4, + "UnitPrice": 2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 12, "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10683, - "EmployeeID": 2, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 1, - "Freight": 4.4, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10621, + "EmployeeID": 4, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 2, + "Freight": 23.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 50269, + "ShipPostalCode": 39000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 9, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10684, - "EmployeeID": 3, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 1, - "Freight": 145.63, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ + }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 20, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10685, + "OrderID": 10674, "EmployeeID": 4, - "OrderDate": "1997-09-29T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", "ShipVia": 2, - "Freight": 33.75, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 0.9, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60699, + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10749, + "EmployeeID": 4, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 61.53, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 30222, + "ShipPostalCode": 50000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 15, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10686, + "OrderID": 10798, "EmployeeID": 2, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-08T00:00:00", + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 1, - "Freight": 96.5, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 2.33, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60634, + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10687, + "OrderID": 10829, "EmployeeID": 9, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-30T00:00:00", - "ShipVia": 2, - "Freight": 296.43, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-10T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 1, + "Freight": 154.72, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 50889, + "ShipPostalCode": 16000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, "Quantity": 10, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, - "Discount": 0.25 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10688, - "EmployeeID": 4, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", - "ShipVia": 2, - "Freight": 299.09, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderID": 10933, + "EmployeeID": 6, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 3, + "Freight": 54.15, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40624, + "ShipPostalCode": 44000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 14, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, "Discount": 0 } ] } - ] + ], + "Fax": "(198) 555-8888" }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "PERIC", + "Company": "Pericles Comidas clásicas", + "ContactName": "Guillermo Fernández", + "ContactTitle": "Sales Representative", + "Address": "Calle Dr. Jorge Cash 321", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 552-3745", + "Fax": "(5) 545-3745", "Orders": [ { - "OrderID": 10689, - "EmployeeID": 1, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-29T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", - "ShipVia": 2, - "Freight": 13.42, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 16000, - "ShipCountry": "Sweden", + "OrderID": 10322, + "EmployeeID": 7, + "OrderDate": "1996-10-04T00:00:00", + "RequiredDate": "1996-11-01T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 3, + "Freight": 0.4, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10690, - "EmployeeID": 1, - "OrderDate": "1997-10-02T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", - "ShipVia": 1, - "Freight": 15.8, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10354, + "EmployeeID": 8, + "OrderDate": "1996-11-14T00:00:00", + "RequiredDate": "1996-12-12T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 3, + "Freight": 53.8, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.25 - }, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 12, + "Discount": 0 + }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10691, - "EmployeeID": 2, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-10-22T00:00:00", + "OrderID": 10474, + "EmployeeID": 5, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-04-10T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", "ShipVia": 2, - "Freight": 810.05, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 83.49, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 40, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 40, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 24, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 48, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10692, - "EmployeeID": 4, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-10-31T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", - "ShipVia": 2, - "Freight": 61.02, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "OrderID": 10502, + "EmployeeID": 2, + "OrderDate": "1997-04-10T00:00:00", + "RequiredDate": "1997-05-08T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", + "ShipVia": 1, + "Freight": 69.32, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10693, - "EmployeeID": 3, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-10-10T00:00:00", + "OrderID": 10995, + "EmployeeID": 1, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", "ShipVia": 3, - "Freight": 139.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 46, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 6, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 60, - "Discount": 0.16 - }, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11073, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-15T00:00:00", + "ShipVia": 2, + "Freight": 24.95, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, + "CustomerID": "KOENE", + "Company": "Königlich Essen", + "ContactName": "Philip Cramer", + "ContactTitle": "Sales Associate", + "Address": "Maubelstr. 90", + "City": "Brandenburg", + "PostalCode": 14776, "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "Phone": "0555-09876", "Orders": [ { - "OrderID": 10694, - "EmployeeID": 8, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-11-03T00:00:00", - "ShippedDate": "1997-10-09T00:00:00", - "ShipVia": 3, - "Freight": 398.36, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10323, + "EmployeeID": 4, + "OrderDate": "1996-10-07T00:00:00", + "RequiredDate": "1996-11-04T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 4.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 90, + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10695, - "EmployeeID": 7, - "OrderDate": "1997-10-07T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 1, - "Freight": 16.72, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10325, + "EmployeeID": 1, + "OrderDate": "1996-10-09T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 3, + "Freight": 64.86, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 10, "Quantity": 4, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10696, + "OrderID": 10456, "EmployeeID": 8, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 3, - "Freight": 102.55, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderDate": "1997-02-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 8.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 18, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 21, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10697, + "OrderID": 10468, "EmployeeID": 3, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-05T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 1, - "Freight": 45.52, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderDate": "1997-03-07T00:00:00", + "RequiredDate": "1997-04-04T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 44.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 9, - "Discount": 0.25 - }, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10506, + "EmployeeID": 9, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 21.19, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 18, + "Discount": 0.1 }, { "ProductID": 70, "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.25 + "Quantity": 14, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10698, - "EmployeeID": 4, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-17T00:00:00", - "ShipVia": 1, - "Freight": 272.47, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10542, + "EmployeeID": 1, + "OrderDate": "1997-05-20T00:00:00", + "RequiredDate": "1997-06-17T00:00:00", + "ShippedDate": "1997-05-26T00:00:00", + "ShipVia": 3, + "Freight": 10.95, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 11, "UnitPrice": 21, "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 65, "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 24, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10699, - "EmployeeID": 3, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", - "ShipVia": 3, - "Freight": 0.58, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, + "OrderID": 10630, + "EmployeeID": 1, + "OrderDate": "1997-08-13T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 2, + "Freight": 32.35, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10700, - "EmployeeID": 3, - "OrderDate": "1997-10-10T00:00:00", - "RequiredDate": "1997-11-07T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", - "ShipVia": 1, - "Freight": 65.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10718, + "EmployeeID": 1, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 3, + "Freight": 170.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0.2 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 40, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.2 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10701, - "EmployeeID": 6, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-10-27T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", + "OrderID": 10799, + "EmployeeID": 9, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 3, - "Freight": 220.31, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 30.76, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 20, "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10702, - "EmployeeID": 4, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", - "ShipVia": 1, - "Freight": 23.94, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0 + "OrderID": 10817, + "EmployeeID": 3, + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 306.07, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 15, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10703, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-10-20T00:00:00", + "OrderID": 10849, + "EmployeeID": 9, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 2, - "Freight": 152.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 28000, - "ShipCountry": "Sweden", + "Freight": 0.56, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 49, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 18, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10704, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", - "ShipVia": 1, - "Freight": 4.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10893, + "EmployeeID": 9, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 2, + "Freight": 77.78, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 6, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, "Discount": 0 }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 35, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 48, - "UnitPrice": 12.75, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 24, "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10705, - "EmployeeID": 9, - "OrderDate": "1997-10-15T00:00:00", - "RequiredDate": "1997-11-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 2, - "Freight": 3.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ + }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 4, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10706, - "EmployeeID": 8, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-11-13T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", - "ShipVia": 3, - "Freight": 135.63, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 11028, + "EmployeeID": 2, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 1, + "Freight": 29.59, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { "ProductID": 59, "UnitPrice": 55, - "Quantity": 8, + "Quantity": 24, "Discount": 0 } ] } - ] + ], + "Fax": "0555-09876" }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", + "CustomerID": "SAVEA", + "Company": "Save-a-lot Markets", + "ContactName": "Jose Pavarotti", "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 10000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Address": "187 Suffolk Ln.", + "City": "Boise", + "Region": "ID", + "PostalCode": 83720, + "Country": "USA", + "Phone": "(208) 555-8097", "Orders": [ { - "OrderID": 10707, - "EmployeeID": 4, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", - "ShipVia": 3, - "Freight": 21.74, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 28000, - "ShipCountry": "UK", + "OrderID": 10324, + "EmployeeID": 9, + "OrderDate": "1996-10-08T00:00:00", + "RequiredDate": "1996-11-05T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", + "ShipVia": 1, + "Freight": 214.27, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 16, + "UnitPrice": 13.9, "Quantity": 21, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 40, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 70, + "Discount": 0.16 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 28, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 40, "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ - { - "OrderID": 10708, - "EmployeeID": 6, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 2.96, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 4, - "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 80, + "Discount": 0.16 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10709, + "OrderID": 10393, "EmployeeID": 1, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-11-20T00:00:00", + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", "ShipVia": 3, - "Freight": 210.8, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 126.56, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 40, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 28, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 42, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ - { - "OrderID": 10710, - "EmployeeID": 1, - "OrderDate": "1997-10-20T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", - "ShipVia": 1, - "Freight": 4.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", - "OrderDetails": [ + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 7, + "Discount": 0.25 + }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 70, + "Discount": 0.25 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 32, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10711, - "EmployeeID": 5, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 2, - "Freight": 52.41, + "OrderID": 10398, + "EmployeeID": 2, + "OrderDate": "1996-12-30T00:00:00", + "RequiredDate": "1997-01-27T00:00:00", + "ShippedDate": "1997-01-09T00:00:00", + "ShipVia": 3, + "Freight": 89.16, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21393,92 +16487,68 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 42, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 55, + "UnitPrice": 19.2, "Quantity": 120, - "Discount": 0 + "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10712, - "EmployeeID": 3, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", - "ShipVia": 1, - "Freight": 89.93, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10440, + "EmployeeID": 4, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-10T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 86.53, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 45, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 49, + "Discount": 0.16 + }, + { + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 24, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 90, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10713, - "EmployeeID": 1, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-24T00:00:00", + "OrderID": 10452, + "EmployeeID": 8, + "OrderDate": "1997-02-20T00:00:00", + "RequiredDate": "1997-03-20T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", "ShipVia": 1, - "Freight": 167.05, + "Freight": 140.26, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21487,39 +16557,56 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0 - }, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 100, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10510, + "EmployeeID": 6, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", + "ShipVia": 3, + "Freight": 367.63, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 110, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 24, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 36, + "Discount": 0.1 } ] }, { - "OrderID": 10714, - "EmployeeID": 5, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", + "OrderID": 10555, + "EmployeeID": 6, + "OrderDate": "1997-06-02T00:00:00", + "RequiredDate": "1997-06-30T00:00:00", + "ShippedDate": "1997-06-04T00:00:00", "ShipVia": 3, - "Freight": 24.49, + "Freight": 252.49, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21528,382 +16615,291 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 14, + "UnitPrice": 23.25, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.2 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 27, - "Discount": 0.25 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 18, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, + "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10715, - "EmployeeID": 3, - "OrderDate": "1997-10-23T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 1, - "Freight": 63.2, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10603, + "EmployeeID": 8, + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 2, + "Freight": 48.77, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 21, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 48, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10716, - "EmployeeID": 4, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", - "ShipVia": 2, - "Freight": 22.57, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10607, + "EmployeeID": 5, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 1, + "Freight": 200.24, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 7, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 100, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10717, - "EmployeeID": 1, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 2, - "Freight": 59.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 32, - "Discount": 0.06 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 42, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10718, + "OrderID": 10612, "EmployeeID": 1, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 3, - "Freight": 170.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderDate": "1997-07-28T00:00:00", + "RequiredDate": "1997-08-25T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 2, + "Freight": 544.08, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, "Quantity": 40, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 80, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10719, + "OrderID": 10627, "EmployeeID": 8, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 51.44, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 107.46, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 12, - "Discount": 0.25 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 3, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, + "Discount": 0.16 } ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10720, - "EmployeeID": 8, - "OrderDate": "1997-10-28T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", + "OrderID": 10657, + "EmployeeID": 2, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", "ShipVia": 2, - "Freight": 9.53, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 352.69, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 8, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10721, - "EmployeeID": 5, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-11-26T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", + "OrderID": 10678, + "EmployeeID": 7, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", "ShipVia": 3, - "Freight": 48.92, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 388.98, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 100, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 120, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10722, - "EmployeeID": 8, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-04T00:00:00", + "OrderID": 10700, + "EmployeeID": 3, + "OrderDate": "1997-10-10T00:00:00", + "RequiredDate": "1997-11-07T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", "ShipVia": 1, - "Freight": 74.58, + "Freight": 65.1, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21912,1506 +16908,1248 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 3, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.2 }, { "ProductID": 68, "UnitPrice": 12.5, - "Quantity": 45, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10711, + "EmployeeID": 5, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 2, + "Freight": 52.41, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 42, "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 120, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10723, - "EmployeeID": 3, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-11-27T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", + "OrderID": 10713, + "EmployeeID": 1, + "OrderDate": "1997-10-22T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-24T00:00:00", "ShipVia": 1, - "Freight": 21.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, + "Freight": 167.05, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0 + }, { "ProductID": 26, "UnitPrice": 31.23, - "Quantity": 15, + "Quantity": 30, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 26000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10724, - "EmployeeID": 8, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 57.75, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 20000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 110, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10725, - "EmployeeID": 4, - "OrderDate": "1997-10-31T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 3, - "Freight": 10.83, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10722, + "EmployeeID": 8, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-04T00:00:00", + "ShipVia": 1, + "Freight": 74.58, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 43000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10726, - "EmployeeID": 4, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", + "OrderID": 10748, + "EmployeeID": 3, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", "ShipVia": 1, - "Freight": 16.56, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 24000, - "ShipCountry": "UK", + "Freight": 232.55, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 44, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10727, - "EmployeeID": 2, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-12-01T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", + "OrderID": 10757, + "EmployeeID": 6, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", "ShipVia": 1, - "Freight": 89.9, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 8.19, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 59, "UnitPrice": 55, - "Quantity": 10, - "Discount": 0.06 + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 24, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10728, - "EmployeeID": 4, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-11-11T00:00:00", - "ShipVia": 2, - "Freight": 58.33, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10815, + "EmployeeID": 2, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 3, + "Freight": 14.62, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10847, + "EmployeeID": 4, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 3, + "Freight": 487.57, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.2 }, { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 19, + "UnitPrice": 9.2, "Quantity": 12, - "Discount": 0 + "Discount": 0.2 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 60, + "Discount": 0.2 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 36, + "Discount": 0.2 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "Quantity": 45, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 55, + "Discount": 0.2 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10729, - "EmployeeID": 8, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", + "OrderID": 10882, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 3, - "Freight": 141.06, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 23.1, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 50, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 40, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 32, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10730, - "EmployeeID": 5, - "OrderDate": "1997-11-05T00:00:00", - "RequiredDate": "1997-12-03T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", + "OrderID": 10894, + "EmployeeID": 1, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 1, - "Freight": 20.12, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 116.13, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 28, "Discount": 0.06 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 3, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 50, "Discount": 0.06 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 120, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10731, + "OrderID": 10941, "EmployeeID": 7, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", - "ShipVia": 1, - "Freight": 96.65, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 2, + "Freight": 400.81, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 44, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 30, - "Discount": 0.06 + "Discount": 0.25 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 80, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10732, - "EmployeeID": 3, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", - "ShipVia": 1, - "Freight": 16.97, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10983, + "EmployeeID": 2, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", + "ShipVia": 2, + "Freight": 657.54, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 84, + "Discount": 0.16 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 30000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10733, - "EmployeeID": 1, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-10T00:00:00", - "ShipVia": 3, - "Freight": 110.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 34000, - "ShipCountry": "Sweden", + "OrderID": 11002, + "EmployeeID": 4, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 1, + "Freight": 141.16, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 16, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 56, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 25, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.16 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10734, - "EmployeeID": 2, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-12T00:00:00", - "ShipVia": 3, - "Freight": 1.63, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 11030, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 2, + "Freight": 830.75, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 100, + "Discount": 0.25 + }, + { + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 100, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11064, + "EmployeeID": 1, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 30.09, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 77, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 55, "Discount": 0 } ] } ], - "Fax": "(11) 555-9482" + "Fax": "(208) 555-8097" }, { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", + "CustomerID": "BOLID", + "Company": "Bólido Comidas preparadas", + "ContactName": "Martín Sommer", "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", + "Address": "C/ Araquil, 67", + "City": "Madrid", + "PostalCode": 28023, + "Country": "Spain", + "Phone": "(91) 555 22 82", + "Fax": "(91) 555 91 99", "Orders": [ { - "OrderID": 10735, - "EmployeeID": 6, - "OrderDate": "1997-11-10T00:00:00", - "RequiredDate": "1997-12-08T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderID": 10326, + "EmployeeID": 4, + "OrderDate": "1996-10-10T00:00:00", + "RequiredDate": "1996-11-07T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", "ShipVia": 2, - "Freight": 45.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "Freight": 77.92, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10736, - "EmployeeID": 9, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 2, - "Freight": 44.1, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 40, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 16, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, + "UnitPrice": 6.2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10737, - "EmployeeID": 2, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10801, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", "ShipVia": 2, - "Freight": 7.79, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 97.09, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 4, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 10738, - "EmployeeID": 2, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10970, + "EmployeeID": 9, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", "ShipVia": 1, - "Freight": 2.91, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 16.16, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 40, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", + "CustomerID": "FURIB", + "Company": "Furia Bacalhau e Frutos do Mar", + "ContactName": "Lino Rodriguez", + "ContactTitle": "Sales Manager", + "Address": "Jardim das rosas n. 32", + "City": "Lisboa", + "PostalCode": 1675, + "Country": "Portugal", + "Phone": "(1) 354-2534", + "Fax": "(1) 354-2535", "Orders": [ { - "OrderID": 10739, - "EmployeeID": 3, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-17T00:00:00", + "OrderID": 10328, + "EmployeeID": 4, + "OrderDate": "1996-10-14T00:00:00", + "RequiredDate": "1996-11-11T00:00:00", + "ShippedDate": "1996-10-17T00:00:00", "ShipVia": 3, - "Freight": 11.08, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 87.03, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 18, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 40, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, + "Discount": 0 + } + ] + }, { - "OrderID": 10740, + "OrderID": 10352, + "EmployeeID": 3, + "OrderDate": "1996-11-12T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-18T00:00:00", + "ShipVia": 3, + "Freight": 1.3, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 20, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10464, "EmployeeID": 4, - "OrderDate": "1997-11-13T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 81.88, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 89, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 16, "Discount": 0.2 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, - "Discount": 0.2 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10741, - "EmployeeID": 4, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10491, + "EmployeeID": 8, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-08T00:00:00", "ShipVia": 3, - "Freight": 10.96, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 27000, - "ShipCountry": "UK", + "Freight": 16.96, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 44, + "UnitPrice": 15.5, "Quantity": 15, - "Discount": 0.2 + "Discount": 0.16 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 17000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10742, - "EmployeeID": 3, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-12-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10551, + "EmployeeID": 4, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", "ShipVia": 3, - "Freight": 243.73, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 17000, - "ShipCountry": "Canada", + "Freight": 72.95, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 41000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10743, + "OrderID": 10604, "EmployeeID": 1, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", + "ShipVia": 1, + "Freight": 7.46, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 28, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10744, - "EmployeeID": 6, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", - "ShipVia": 1, - "Freight": 69.19, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 6, + "Discount": 0.1 + }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10745, - "EmployeeID": 9, - "OrderDate": "1997-11-18T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 1, - "Freight": 3.52, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10664, + "EmployeeID": 1, + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 3, + "Freight": 1.27, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 24, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 45, - "Discount": 0 - }, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10963, + "EmployeeID": 9, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 3, + "Freight": 2.7, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", + "CustomerID": "BONAP", + "Company": "Bon app", + "ContactName": "Laurence Lebihan", "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", "Orders": [ { - "OrderID": 10746, - "EmployeeID": 1, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 3, - "Freight": 31.43, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10331, + "EmployeeID": 9, + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-27T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", + "ShipVia": 1, + "Freight": 10.19, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 15, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10340, + "EmployeeID": 1, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 166.31, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 9, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, + "ProductID": 43, + "UnitPrice": 36.8, "Quantity": 40, - "Discount": 0 + "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10747, - "EmployeeID": 6, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-26T00:00:00", + "OrderID": 10362, + "EmployeeID": 3, + "OrderDate": "1996-11-25T00:00:00", + "RequiredDate": "1996-12-23T00:00:00", + "ShippedDate": "1996-11-28T00:00:00", "ShipVia": 1, - "Freight": 117.33, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 96.04, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 9, - "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10748, - "EmployeeID": 3, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", - "ShipVia": 1, - "Freight": 232.55, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 44, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 14000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10749, + "OrderID": 10470, "EmployeeID": 4, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 61.53, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 30222, - "ShipPostalCode": 50000, - "ShipCountry": "UK", + "Freight": 64.56, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 15, + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 6, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10750, - "EmployeeID": 9, - "OrderDate": "1997-11-21T00:00:00", - "RequiredDate": "1997-12-19T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", - "ShipVia": 1, - "Freight": 79.3, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10511, + "EmployeeID": 4, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 350.64, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, "Discount": 0.16 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 50, "Discount": 0.16 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10751, - "EmployeeID": 3, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-12-03T00:00:00", - "ShipVia": 3, - "Freight": 130.79, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10525, + "EmployeeID": 1, + "OrderDate": "1997-05-02T00:00:00", + "RequiredDate": "1997-05-30T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 2, + "Freight": 11.06, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 30, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 73, - "UnitPrice": 15, + "ProductID": 40, + "UnitPrice": 18.4, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 36000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ + }, { - "OrderID": 10752, + "OrderID": 10663, "EmployeeID": 2, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", - "ShipVia": 3, - "Freight": 1.39, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-09-24T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 113.15, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 3, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10753, + "OrderID": 10715, "EmployeeID": 3, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", + "OrderDate": "1997-10-23T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 1, - "Freight": 7.7, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "Freight": 63.2, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 4, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10754, - "EmployeeID": 6, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 3, - "Freight": 2.38, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10730, + "EmployeeID": 5, + "OrderDate": "1997-11-05T00:00:00", + "RequiredDate": "1997-12-03T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 1, + "Freight": 20.12, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10732, + "EmployeeID": 3, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", + "ShipVia": 1, + "Freight": 16.97, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { "OrderID": 10755, "EmployeeID": 4, @@ -23451,247 +18189,195 @@ "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10756, - "EmployeeID": 8, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-02T00:00:00", + "OrderID": 10827, + "EmployeeID": 1, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", "ShipVia": 2, - "Freight": 73.21, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 63.54, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10757, - "EmployeeID": 6, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 1, - "Freight": 8.19, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10871, + "EmployeeID": 9, + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 112.27, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 50, + "Discount": 0.06 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 7, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 30, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10876, + "EmployeeID": 7, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 60.42, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 21, "Discount": 0 }, { "ProductID": 64, "UnitPrice": 33.25, - "Quantity": 24, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10758, - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-04T00:00:00", - "ShipVia": 3, - "Freight": 138.17, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10932, + "EmployeeID": 8, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", + "ShipVia": 1, + "Freight": 134.64, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 60, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 14, + "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 16, "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10759, - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", + "OrderID": 10940, + "EmployeeID": 8, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", "ShipVia": 3, - "Freight": 11.99, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 19.77, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10760, + "OrderID": 11076, "EmployeeID": 4, - "OrderDate": "1997-12-01T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1997-12-10T00:00:00", - "ShipVia": 1, - "Freight": 155.64, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-06-08T00:00:00", + "ShipVia": 2, + "Freight": 38.28, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 12, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, "Discount": 0.25 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 40, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, "Discount": 0.25 } ] @@ -23699,4607 +18385,398 @@ ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "MEREP", + "Company": "Mère Paillarde", + "ContactName": "Jean Fresnière", + "ContactTitle": "Marketing Assistant", + "Address": "43 rue St. Laurent", + "City": "Montréal", + "Region": "Québec", + "PostalCode": 20000, + "Country": "Canada", + "Phone": "(514) 555-8054", + "Fax": "(514) 555-8055", "Orders": [ { - "OrderID": 10761, - "EmployeeID": 5, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", + "OrderID": 10332, + "EmployeeID": 3, + "OrderDate": "1996-10-17T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", "ShipVia": 2, - "Freight": 18.66, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 52.84, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 28000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 18, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 16, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 13000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10762, - "EmployeeID": 3, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 1, - "Freight": 328.74, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 44000, - "ShipCountry": "Sweden", + "OrderID": 10339, + "EmployeeID": 2, + "OrderDate": "1996-10-28T00:00:00", + "RequiredDate": "1996-11-25T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", + "ShipVia": 2, + "Freight": 15.66, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 16, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 28, "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10763, - "EmployeeID": 3, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", - "ShipVia": 3, - "Freight": 37.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "OrderID": 10376, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 2, + "Freight": 20.39, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 39000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 21, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "Quantity": 42, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10424, + "EmployeeID": 7, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-20T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 2, + "Freight": 370.61, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 22000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 6, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 49, + "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10764, + "OrderID": 10439, "EmployeeID": 6, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", + "OrderDate": "1997-02-07T00:00:00", + "RequiredDate": "1997-03-07T00:00:00", + "ShippedDate": "1997-02-10T00:00:00", "ShipVia": 3, - "Freight": 145.45, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 130, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10765, - "EmployeeID": 3, - "OrderDate": "1997-12-04T00:00:00", - "RequiredDate": "1998-01-01T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 3, - "Freight": 42.74, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 80, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10766, - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 1, - "Freight": 157.55, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 28000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10767, - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 3, - "Freight": 1.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 44000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 22000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10768, - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 2, - "Freight": 146.32, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10769, - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 65.06, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10770, - "EmployeeID": 8, - "OrderDate": "1997-12-09T00:00:00", - "RequiredDate": "1998-01-06T00:00:00", - "ShippedDate": "1997-12-17T00:00:00", - "ShipVia": 3, - "Freight": 5.32, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10771, - "EmployeeID": 9, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 2, - "Freight": 11.19, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10772, - "EmployeeID": 3, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 2, - "Freight": 91.28, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10773, - "EmployeeID": 1, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1998-01-08T00:00:00", - "ShippedDate": "1997-12-16T00:00:00", - "ShipVia": 3, - "Freight": 96.43, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 33, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 70, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 7, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10774, - "EmployeeID": 4, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 48.2, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 2, - "Discount": 0.25 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "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", - "Orders": [ - { - "OrderID": 10775, - "EmployeeID": 7, - "OrderDate": "1997-12-12T00:00:00", - "RequiredDate": "1998-01-09T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 20.25, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10776, - "EmployeeID": 1, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1998-01-12T00:00:00", - "ShippedDate": "1997-12-18T00:00:00", - "ShipVia": 3, - "Freight": 351.53, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 27, - "Discount": 0.06 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 120, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 10777, - "EmployeeID": 7, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 2, - "Freight": 3.01, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 11000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10778, - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 1, - "Freight": 6.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 39000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ - { - "OrderID": 10779, - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 2, - "Freight": 58.13, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0 - } - ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10780, - "EmployeeID": 2, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-25T00:00:00", - "ShipVia": 1, - "Freight": 42.13, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10781, - "EmployeeID": 2, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 3, - "Freight": 73.16, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0.2 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10782, - "EmployeeID": 9, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 1.1, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 1, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10783, - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 2, - "Freight": 124.98, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10784, - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 70.09, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.16 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "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", - "Orders": [ - { - "OrderID": 10785, - "EmployeeID": 1, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 3, - "Freight": 1.51, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10786, - "EmployeeID": 8, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-16T00:00:00", - "ShippedDate": "1997-12-23T00:00:00", - "ShipVia": 1, - "Freight": 110.87, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 42, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10787, - "EmployeeID": 2, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 249.93, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10788, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 42.7, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ - { - "OrderID": 10789, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 2, - "Freight": 100.6, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 10790, - "EmployeeID": 6, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 28.23, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 3, - "Discount": 0.16 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.16 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10791, - "EmployeeID": 6, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-01T00:00:00", - "ShipVia": 2, - "Freight": 16.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10792, - "EmployeeID": 1, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 3, - "Freight": 23.79, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 19000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10793, - "EmployeeID": 3, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", - "ShipVia": 3, - "Freight": 4.52, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 32000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ - { - "OrderID": 10794, - "EmployeeID": 6, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 1, - "Freight": 21.49, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10795, - "EmployeeID": 8, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-20T00:00:00", - "ShipVia": 2, - "Freight": 126.66, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 65, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 35, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10796, - "EmployeeID": 3, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 1, - "Freight": 26.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 24, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ - { - "OrderID": 10797, - "EmployeeID": 7, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 2, - "Freight": 33.35, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10798, - "EmployeeID": 2, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 1, - "Freight": 2.33, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60634, - "ShipPostalCode": 40000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10799, - "EmployeeID": 9, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 3, - "Freight": 30.76, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10800, - "EmployeeID": 1, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 3, - "Freight": 137.44, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 41000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 7, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ - { - "OrderID": 10801, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 2, - "Freight": 97.09, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ - { - "OrderID": 10802, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 2, - "Freight": 257.26, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 5, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ - { - "OrderID": 10803, - "EmployeeID": 4, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-06T00:00:00", - "ShipVia": 1, - "Freight": 55.23, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 24, - "Discount": 0.06 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10804, - "EmployeeID": 6, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 2, - "Freight": 27.33, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 38000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 36, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 4, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ - { - "OrderID": 10805, - "EmployeeID": 2, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 3, - "Freight": 237.34, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10806, - "EmployeeID": 3, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 2, - "Freight": 22.11, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ - { - "OrderID": 10807, - "EmployeeID": 4, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 1, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ - { - "OrderID": 10808, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 3, - "Freight": 45.53, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ - { - "OrderID": 10809, - "EmployeeID": 7, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 1, - "Freight": 4.87, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 28000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ - { - "OrderID": 10810, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 3, - "Freight": 4.33, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 48000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10811, - "EmployeeID": 8, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", - "ShipVia": 1, - "Freight": 31.22, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10812, - "EmployeeID": 5, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 1, - "Freight": 59.78, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.1 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ - { - "OrderID": 10813, - "EmployeeID": 1, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 1, - "Freight": 47.38, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0.2 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10814, - "EmployeeID": 3, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 130.94, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 8, - "Discount": 0.16 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10815, - "EmployeeID": 2, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 14.62, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ - { - "OrderID": 10816, - "EmployeeID": 4, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-02-03T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 2, - "Freight": 719.78, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10817, - "EmployeeID": 3, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 306.07, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 25, - "Discount": 0.16 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10818, - "EmployeeID": 7, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 3, - "Freight": 65.48, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10819, - "EmployeeID": 2, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 19.76, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10820, - "EmployeeID": 3, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 37.52, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ - { - "OrderID": 10821, - "EmployeeID": 1, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-15T00:00:00", - "ShipVia": 1, - "Freight": 36.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "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", - "Orders": [ - { - "OrderID": 10822, - "EmployeeID": 6, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 7, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10823, - "EmployeeID": 5, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 163.97, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 29000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10824, - "EmployeeID": 8, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 1.23, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 39000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ - { - "OrderID": 10825, - "EmployeeID": 1, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 1, - "Freight": 79.25, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10826, - "EmployeeID": 6, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", - "ShipVia": 1, - "Freight": 7.09, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10827, - "EmployeeID": 1, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", - "ShipVia": 2, - "Freight": 63.54, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ - { - "OrderID": 10828, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 1, - "Freight": 90.85, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10829, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-10T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 1, - "Freight": 154.72, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 50889, - "ShipPostalCode": 16000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10830, - "EmployeeID": 4, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 2, - "Freight": 81.83, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ - { - "OrderID": 10831, - "EmployeeID": 3, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 2, - "Freight": 72.19, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10832, - "EmployeeID": 2, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 43.26, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 3, - "Discount": 0.2 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0.2 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10833, - "EmployeeID": 6, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 2, - "Freight": 71.49, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 9, - "Discount": 0.1 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 9, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10834, - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 3, - "Freight": 29.78, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 8, - "Discount": 0.06 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ - { - "OrderID": 10835, - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 3, - "Freight": 69.53, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10836, - "EmployeeID": 7, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 1, - "Freight": 411.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 52, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 47000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10837, - "EmployeeID": 9, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 13.32, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 17000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10838, - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 59.28, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10839, - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-22T00:00:00", - "ShipVia": 3, - "Freight": 35.43, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10840, - "EmployeeID": 4, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", - "ShipVia": 2, - "Freight": 2.71, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 6, - "Discount": 0.2 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 22000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10841, - "EmployeeID": 5, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 2, - "Freight": 424.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 27000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10842, - "EmployeeID": 1, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 3, - "Freight": 54.42, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10843, - "EmployeeID": 4, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 9.26, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 4, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10844, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 25.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10845, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 212.98, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.1 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 42, - "Discount": 0.1 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 60, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 48, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 15000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10846, - "EmployeeID": 2, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 56.46, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 15000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10847, - "EmployeeID": 4, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 3, - "Freight": 487.57, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.2 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.2 - }, - { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 60, - "Discount": 0.2 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 36, - "Discount": 0.2 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 45, - "Discount": 0.2 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 55, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 43000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ - { - "OrderID": 10848, - "EmployeeID": 7, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 2, - "Freight": 38.24, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 36000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10849, - "EmployeeID": 9, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 49, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 18, - "Discount": 0.16 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10850, - "EmployeeID": 1, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 49.19, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 4, - "Discount": 0.16 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ - { - "OrderID": 10851, - "EmployeeID": 5, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-23T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", - "ShipVia": 1, - "Freight": 160.55, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 4.07, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0.06 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.06 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10852, - "EmployeeID": 8, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 174.05, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 39, + "ProductID": 64, + "UnitPrice": 26.6, "Quantity": 6, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 50, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10853, - "EmployeeID": 9, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", - "ShipVia": 2, - "Freight": 53.83, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10505, + "EmployeeID": 3, + "OrderDate": "1997-04-14T00:00:00", + "RequiredDate": "1997-05-12T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 7.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 33000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10854, - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-05T00:00:00", + "OrderID": 10565, + "EmployeeID": 8, + "OrderDate": "1997-06-11T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", "ShipVia": 2, - "Freight": 100.22, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 7.15, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 21000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 100, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 18, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10855, + "OrderID": 10570, "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 1, - "Freight": 170.97, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 14, - "Discount": 0 + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-19T00:00:00", + "ShipVia": 3, + "Freight": 188.99, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0.06 }, { "ProductID": 56, "UnitPrice": 38, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "Quantity": 60, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10856, - "EmployeeID": 3, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 2, - "Freight": 58.43, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10590, + "EmployeeID": 4, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 3, + "Freight": 44.77, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 20, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 60, + "Discount": 0.06 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 48000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10857, - "EmployeeID": 8, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", + "OrderID": 10605, + "EmployeeID": 1, + "OrderDate": "1997-07-21T00:00:00", + "RequiredDate": "1997-08-18T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", "ShipVia": 2, - "Freight": 188.85, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", + "Freight": 379.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.25 + "Discount": 0.06 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ - { - "OrderID": 10858, - "EmployeeID": 2, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", - "ShipVia": 1, - "Freight": 52.51, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 5, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 10, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10859, + "OrderID": 10618, "EmployeeID": 1, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", - "ShipVia": 2, - "Freight": 76.1, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderDate": "1997-08-01T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 1, + "Freight": 154.68, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 30000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, { - "OrderID": 10860, - "EmployeeID": 3, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 3, - "Freight": 19.26, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10724, + "EmployeeID": 8, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 2, + "Freight": 57.75, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 20000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] @@ -28307,2480 +18784,2081 @@ ] }, { - "CustomerID": "WHITC", - "Company": "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": "PRINI", + "Company": "Princesa Isabel Vinhos", + "ContactName": "Isabel de Castro", + "ContactTitle": "Sales Representative", + "Address": "Estrada da saúde n. 58", + "City": "Lisboa", + "PostalCode": 1756, + "Country": "Portugal", + "Phone": "(1) 356-5634", "Orders": [ { - "OrderID": 10861, - "EmployeeID": 4, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-02-27T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", + "OrderID": 10336, + "EmployeeID": 7, + "OrderDate": "1996-10-23T00:00:00", + "RequiredDate": "1996-11-20T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", "ShipVia": 2, - "Freight": 14.93, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 15.51, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 42, - "Discount": 0 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, - "Discount": 0 - }, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 18, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10397, + "EmployeeID": 5, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-24T00:00:00", + "ShippedDate": "1997-01-02T00:00:00", + "ShipVia": 1, + "Freight": 60.26, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ { "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 35, - "Discount": 0 - }, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10433, + "EmployeeID": 3, + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 73.83, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10862, - "EmployeeID": 8, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderID": 10477, + "EmployeeID": 5, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", "ShipVia": 2, - "Freight": 53.23, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 13.02, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 25, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10863, - "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", + "OrderID": 11007, + "EmployeeID": 8, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 30.26, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 202.24, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 14, + "Discount": 0 } ] } - ] + ], + "Fax": "(1) 356-5634" }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 31000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "CustomerID": "SIMOB", + "Company": "Simons bistro", + "ContactName": "Jytte Petersen", + "ContactTitle": "Owner", + "Address": "Vinbæltet 34", + "City": "Kobenhavn", + "PostalCode": 1734, + "Country": "Denmark", + "Phone": "31 12 34 56", + "Fax": "31 13 35 57", "Orders": [ { - "OrderID": 10864, + "OrderID": 10341, + "EmployeeID": 7, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", + "ShipVia": 3, + "Freight": 26.78, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10417, "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 2, - "Freight": 3.04, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 37000, - "ShipCountry": "UK", + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-28T00:00:00", + "ShipVia": 3, + "Freight": 70.29, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 2, + "Discount": 0.25 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 36, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10865, + "OrderID": 10556, "EmployeeID": 2, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderDate": "1997-06-03T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", "ShipVia": 1, - "Freight": 348.14, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 9.8, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10642, + "EmployeeID": 7, + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-09-05T00:00:00", + "ShipVia": 3, + "Freight": 41.89, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 48000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10866, - "EmployeeID": 5, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-03T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderID": 10669, + "EmployeeID": 2, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", "ShipVia": 1, - "Freight": 109.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 37000, - "ShipCountry": "Sweden", + "Freight": 24.39, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 2, + "ProductID": 36, "UnitPrice": 19, - "Quantity": 21, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10802, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 2, + "Freight": 257.26, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, "Discount": 0.25 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 6, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 60, "Discount": 0.25 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 40, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 5, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10867, - "EmployeeID": 6, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 1, - "Freight": 1.93, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 11074, + "EmployeeID": 7, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-06-03T00:00:00", + "ShipVia": 2, + "Freight": 18.44, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", + "CustomerID": "FAMIA", + "Company": "Familia Arquibaldo", + "ContactName": "Aria Cruz", "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", + "Address": "Rua Orós, 92", "City": "Sao Paulo", "Region": "SP", - "PostalCode": 5487, + "PostalCode": 5442, "Country": "Brazil", - "Phone": "(11) 555-1189", + "Phone": "(11) 555-9857", "Orders": [ { - "OrderID": 10868, - "EmployeeID": 7, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 2, - "Freight": 191.27, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", + "OrderID": 10347, + "EmployeeID": 4, + "OrderDate": "1996-11-06T00:00:00", + "RequiredDate": "1996-12-04T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 3.1, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", "ShipCity": "Sao Paulo", "ShipRegion": "SP", - "ShipPostalCode": 5487, + "ShipPostalCode": 5442, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 42, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 29000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10869, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 1, - "Freight": 143.28, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 48000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 11, - "UnitPrice": 21, + "ProductID": 25, + "UnitPrice": 11.2, "Quantity": 10, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, + "ProductID": 39, + "UnitPrice": 14.4, "Quantity": 50, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10870, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", - "ShipVia": 3, - "Freight": 12.04, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 2, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10871, + "OrderID": 10386, "EmployeeID": 9, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 2, - "Freight": 112.27, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-25T00:00:00", + "ShipVia": 3, + "Freight": 13.99, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10414, + "EmployeeID": 2, + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-17T00:00:00", + "ShipVia": 3, + "Freight": 21.48, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, "Discount": 0.06 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10872, - "EmployeeID": 5, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", + "OrderID": 10512, + "EmployeeID": 7, + "OrderDate": "1997-04-21T00:00:00", + "RequiredDate": "1997-05-19T00:00:00", + "ShippedDate": "1997-04-24T00:00:00", "ShipVia": 2, - "Freight": 175.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 3.53, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 10, - "Discount": 0.06 + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 12, + "Discount": 0.16 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10873, - "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", + "OrderID": 10581, + "EmployeeID": 3, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-02T00:00:00", "ShipVia": 1, - "Freight": 0.82, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 3.01, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10874, + "OrderID": 10650, "EmployeeID": 5, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 2, - "Freight": 19.58, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderDate": "1997-08-29T00:00:00", + "RequiredDate": "1997-09-26T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 176.81, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 34000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10875, + "OrderID": 10725, "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 2, - "Freight": 32.37, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 18000, - "ShipCountry": "Sweden", + "OrderDate": "1997-10-31T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 3, + "Freight": 10.83, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 25, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 21, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 15, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] } - ] + ], + "Fax": "(11) 555-9857" }, { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, + "CustomerID": "LAMAI", + "Company": "La maison de Asie", + "ContactName": "Annette Roulet", + "ContactTitle": "Sales Manager", + "Address": "1 rue Alsace-Lorraine", + "City": "Toulouse", + "PostalCode": 31000, "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", + "Phone": "61.77.61.10", + "Fax": "61.77.61.11", "Orders": [ { - "OrderID": 10876, - "EmployeeID": 7, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 3, - "Freight": 60.42, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, + "OrderID": 10350, + "EmployeeID": 6, + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 64.19, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 18, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10877, - "EmployeeID": 1, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", + "OrderID": 10358, + "EmployeeID": 5, + "OrderDate": "1996-11-20T00:00:00", + "RequiredDate": "1996-12-18T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", "ShipVia": 1, - "Freight": 38.06, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 19.64, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10878, - "EmployeeID": 4, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderID": 10371, + "EmployeeID": 1, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", "ShipVia": 1, - "Freight": 46.69, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 0.45, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 6, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10879, + "OrderID": 10413, "EmployeeID": 3, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 3, - "Freight": 8.5, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 2, + "Freight": 95.66, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 14, + "Discount": 0 + } + ] + }, + { + "OrderID": 10425, + "EmployeeID": 6, + "OrderDate": "1997-01-24T00:00:00", + "RequiredDate": "1997-02-21T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 2, + "Freight": 7.93, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, + "ProductID": 55, + "UnitPrice": 19.2, "Quantity": 10, - "Discount": 0 + "Discount": 0.25 }, { "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 43000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10880, - "EmployeeID": 7, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 88.01, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 15000, - "ShipCountry": "Sweden", + "OrderID": 10454, + "EmployeeID": 4, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-25T00:00:00", + "ShipVia": 3, + "Freight": 2.74, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 30, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 10, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10881, + "OrderID": 10493, "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 2.84, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 10.64, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 73, - "UnitPrice": 15, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, "Quantity": 10, - "Discount": 0 + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10882, - "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 3, - "Freight": 23.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10500, + "EmployeeID": 6, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-17T00:00:00", + "ShipVia": 1, + "Freight": 42.68, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 25, - "Discount": 0 + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 20, - "Discount": 0.16 - }, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10610, + "EmployeeID": 8, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 1, + "Freight": 26.78, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 32, - "Discount": 0.16 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10883, + "OrderID": 10631, "EmployeeID": 8, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 3, - "Freight": 0.53, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-15T00:00:00", + "ShipVia": 1, + "Freight": 0.87, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 8, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10884, - "EmployeeID": 4, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", - "ShipVia": 2, - "Freight": 90.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10787, + "EmployeeID": 2, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 249.93, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 21, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, "Discount": 0.06 + } + ] + }, + { + "OrderID": 10832, + "EmployeeID": 2, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 43.26, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0.2 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 3, + "Discount": 0 } ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 10000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10885, - "EmployeeID": 6, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", + "OrderID": 10923, + "EmployeeID": 7, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 3, - "Freight": 5.64, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 40000, - "ShipCountry": "Belgium", + "Freight": 68.26, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 - }, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 11051, + "EmployeeID": 7, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-09-25T00:00:00", + "ShipVia": 3, + "Freight": 2.79, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 25, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", + "CustomerID": "PICCO", + "Company": "Piccolo und mehr", + "ContactName": "Georg Pipps", + "ContactTitle": "Sales Manager", + "Address": "Geislweg 14", + "City": "Salzburg", + "PostalCode": 5020, + "Country": "Austria", + "Phone": "6562-9722", + "Fax": "6562-9723", "Orders": [ { - "OrderID": 10886, - "EmployeeID": 1, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 1, - "Freight": 4.99, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10353, + "EmployeeID": 7, + "OrderDate": "1996-11-13T00:00:00", + "RequiredDate": "1996-12-11T00:00:00", + "ShippedDate": "1996-11-25T00:00:00", + "ShipVia": 3, + "Freight": 360.63, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 40, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10887, - "EmployeeID": 8, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", + "OrderID": 10392, + "EmployeeID": 2, + "OrderDate": "1996-12-24T00:00:00", + "RequiredDate": "1997-01-21T00:00:00", + "ShippedDate": "1997-01-01T00:00:00", "ShipVia": 3, - "Freight": 1.25, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "Freight": 122.46, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10888, - "EmployeeID": 1, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", + "OrderID": 10427, + "EmployeeID": 4, + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", "ShipVia": 2, - "Freight": 51.87, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 31.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10889, - "EmployeeID": 9, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 3, - "Freight": 280.61, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10489, + "EmployeeID": 6, + "OrderDate": "1997-03-28T00:00:00", + "RequiredDate": "1997-04-25T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", + "ShipVia": 2, + "Freight": 5.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10890, - "EmployeeID": 7, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 32.76, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10530, + "EmployeeID": 3, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", + "ShipVia": 2, + "Freight": 339.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 17, "UnitPrice": 39, - "Quantity": 15, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10891, + "OrderID": 10597, "EmployeeID": 7, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 20.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", + "ShipVia": 3, + "Freight": 35.12, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10892, - "EmployeeID": 4, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 120.27, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 45000, - "ShipCountry": "Belgium", + "OrderID": 10686, + "EmployeeID": 2, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-08T00:00:00", + "ShipVia": 1, + "Freight": 96.5, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10893, - "EmployeeID": 9, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 2, - "Freight": 77.78, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10747, + "EmployeeID": 6, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-26T00:00:00", + "ShipVia": 1, + "Freight": 117.33, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 24, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 35, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10844, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", + "ShipVia": 2, + "Freight": 25.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10894, - "EmployeeID": 1, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 1, - "Freight": 116.13, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11053, + "EmployeeID": 2, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 28, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 120, - "Discount": 0.06 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 25, + "Discount": 0.2 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "AROUT", + "Company": "Around the Horn", + "ContactName": "Thomas Hardy", + "ContactTitle": "Sales Representative", + "Address": "120 Hanover Sq.", + "City": "London", + "PostalCode": 12000, + "Country": "UK", + "Phone": "(171) 555-7788", + "Fax": "(171) 555-6750", "Orders": [ { - "OrderID": 10895, - "EmployeeID": 3, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 1, - "Freight": 162.75, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10355, + "EmployeeID": 6, + "OrderDate": "1996-11-15T00:00:00", + "RequiredDate": "1996-12-13T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 41.95, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 31000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 110, + "UnitPrice": 3.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 45, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10383, + "EmployeeID": 8, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-18T00:00:00", + "ShipVia": 3, + "Freight": 34.24, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 19000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 91, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 100, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 11000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10896, - "EmployeeID": 7, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 32.45, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 28000, - "ShipCountry": "Belgium", + "OrderID": 10453, + "EmployeeID": 1, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", + "ShipVia": 2, + "Freight": 25.36, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 48, + "UnitPrice": 10.2, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 16, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10897, - "EmployeeID": 3, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-25T00:00:00", + "OrderID": 10558, + "EmployeeID": 1, + "OrderDate": "1997-06-04T00:00:00", + "RequiredDate": "1997-07-02T00:00:00", + "ShippedDate": "1997-06-10T00:00:00", "ShipVia": 2, - "Freight": 603.54, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 72.97, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 35000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 80, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 36, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10898, + "OrderID": 10707, "EmployeeID": 4, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 1.27, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 3, + "Freight": 21.74, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10899, - "EmployeeID": 5, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", + "OrderID": 10741, + "EmployeeID": 4, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 1.21, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 10.96, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 27000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10900, + "OrderID": 10743, "EmployeeID": 1, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", "ShipVia": 2, - "Freight": 1.66, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 28, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10901, - "EmployeeID": 4, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", - "ShipVia": 1, - "Freight": 62.09, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10768, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 2, + "Freight": 146.32, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 }, { "ProductID": 71, "UnitPrice": 21.5, - "Quantity": 30, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 39000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10902, - "EmployeeID": 1, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 1, - "Freight": 44.15, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 11000, - "ShipCountry": "Sweden", + "OrderID": 10793, + "EmployeeID": 3, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", + "ShipVia": 3, + "Freight": 4.52, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10903, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 36.71, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10864, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 2, + "Freight": 3.04, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10904, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 162.95, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10920, + "EmployeeID": 4, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", + "ShipVia": 2, + "Freight": 29.61, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 35000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 35, + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10905, + "OrderID": 10953, "EmployeeID": 9, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-25T00:00:00", "ShipVia": 2, - "Freight": 13.72, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10906, - "EmployeeID": 4, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 3, - "Freight": 26.29, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 11016, + "EmployeeID": 9, + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 2, + "Freight": 33.8, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 20000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 16, + "Discount": 0 } ] } ] }, { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", + "CustomerID": "SEVES", + "Company": "Seven Seas Imports", + "ContactName": "Hari Kumar", + "ContactTitle": "Sales Manager", + "Address": "90 Wadhurst Rd.", + "City": "London", + "PostalCode": 23000, + "Country": "UK", + "Phone": "(171) 555-1717", + "Fax": "(171) 555-5646", "Orders": [ { - "OrderID": 10907, - "EmployeeID": 6, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-25T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", + "OrderID": 10359, + "EmployeeID": 5, + "OrderDate": "1996-11-21T00:00:00", + "RequiredDate": "1996-12-19T00:00:00", + "ShippedDate": "1996-11-26T00:00:00", "ShipVia": 3, - "Freight": 9.19, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 288.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 43000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 14, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 56, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 70, + "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10908, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 32.96, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10377, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 22.21, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 20, - "Discount": 0.06 + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 14, - "Discount": 0.06 + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10909, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-10T00:00:00", - "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10388, + "EmployeeID": 2, + "OrderDate": "1996-12-19T00:00:00", + "RequiredDate": "1997-01-16T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", + "ShipVia": 1, + "Freight": 34.86, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 43000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 12, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 7.6, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 5, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10910, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 38.11, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10472, + "EmployeeID": 8, + "OrderDate": "1997-03-12T00:00:00", + "RequiredDate": "1997-04-09T00:00:00", + "ShippedDate": "1997-03-19T00:00:00", + "ShipVia": 1, + "Freight": 4.2, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 21000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 10, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 80, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10911, - "EmployeeID": 3, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", - "ShipVia": 1, - "Freight": 38.19, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10523, + "EmployeeID": 7, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 2, + "Freight": 77.63, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 16000, + "ShipCountry": "UK", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, { "ProductID": 17, "UnitPrice": 39, - "Quantity": 12, - "Discount": 0 + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 67, - "UnitPrice": 14, + "ProductID": 20, + "UnitPrice": 81, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 6, + "Discount": 0.1 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10912, - "EmployeeID": 2, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10547, + "EmployeeID": 3, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", "ShipVia": 2, - "Freight": 580.91, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 178.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 60, - "Discount": 0.25 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10913, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 1, - "Freight": 33.05, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10800, + "EmployeeID": 1, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 3, + "Freight": 137.44, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 41000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 7, + "Discount": 0.1 } ] }, { - "OrderID": 10914, + "OrderID": 10804, "EmployeeID": 6, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 1, - "Freight": 21.19, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 25, - "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10915, - "EmployeeID": 2, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 2, - "Freight": 3.51, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 27.33, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 38000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 10, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 4, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10916, - "EmployeeID": 1, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 2, - "Freight": 63.77, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10869, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 143.28, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 48000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 6, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 6, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 20, "Discount": 0 } @@ -30789,172 +20867,169 @@ ] }, { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", + "CustomerID": "DRACD", + "Company": "Drachenblut Delikatessen", + "ContactName": "Sven Ottlieb", + "ContactTitle": "Order Administrator", + "Address": "Walserweg 21", + "City": "Aachen", + "PostalCode": 52066, + "Country": "Germany", + "Phone": "0241-039123", + "Fax": "0241-059428", "Orders": [ { - "OrderID": 10917, + "OrderID": 10363, "EmployeeID": 4, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 2, - "Freight": 8.29, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1996-12-24T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", + "ShipVia": 3, + "Freight": 30.54, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 1, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 32000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10918, + "OrderID": 10391, "EmployeeID": 3, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-31T00:00:00", "ShipVia": 3, - "Freight": 48.83, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 45000, - "ShipCountry": "Canada", + "Freight": 5.45, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 18, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10919, - "EmployeeID": 2, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", + "OrderID": 10797, + "EmployeeID": 7, + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 2, - "Freight": 19.8, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 33.35, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 24, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10825, + "EmployeeID": 1, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 1, + "Freight": 79.25, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 24, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 53, + "UnitPrice": 32.8, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 41000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10920, - "EmployeeID": 4, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", + "OrderID": 11036, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 3, + "Freight": 149.47, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 11067, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", "ShipVia": 2, - "Freight": 29.61, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 35000, - "ShipCountry": "UK", + "Freight": 7.98, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 24, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, "Discount": 0 } ] @@ -30962,327 +21037,267 @@ ] }, { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", + "CustomerID": "EASTC", + "Company": "Eastern Connection", + "ContactName": "Ann Devon", + "ContactTitle": "Sales Agent", + "Address": "35 King George", + "City": "London", + "PostalCode": 46000, + "Country": "UK", + "Phone": "(171) 555-0297", + "Fax": "(171) 555-3373", "Orders": [ { - "OrderID": 10921, + "OrderID": 10364, "EmployeeID": 1, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", "ShipVia": 1, - "Freight": 176.48, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 71.97, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 10000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10922, - "EmployeeID": 5, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", + "OrderID": 10400, + "EmployeeID": 1, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", "ShipVia": 3, - "Freight": 62.74, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 83.93, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 25000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 15, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 35, + "UnitPrice": 14.4, "Quantity": 35, "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10923, + "OrderID": 10532, "EmployeeID": 7, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderDate": "1997-05-09T00:00:00", + "RequiredDate": "1997-06-06T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", "ShipVia": 3, - "Freight": 68.26, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 74.46, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 23000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, + "ProductID": 66, + "UnitPrice": 17, "Quantity": 24, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 28000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10924, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 2, - "Freight": 151.52, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 35000, - "ShipCountry": "Sweden", + "OrderID": 10726, + "EmployeeID": 4, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 16.56, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 24000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 6, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10925, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderID": 10987, + "EmployeeID": 8, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", "ShipVia": 1, - "Freight": 2.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 185.48, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 12, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 20, + "Discount": 0 + } + ] + }, { - "OrderID": 10926, + "OrderID": 11024, "EmployeeID": 4, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 3, - "Freight": 39.92, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 74.36, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 23000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 2, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ + }, { - "OrderID": 10927, - "EmployeeID": 4, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 19.79, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "OrderID": 11047, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 46.62, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 14000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11056, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 2, + "Freight": 278.96, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 17000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 } ] @@ -31290,837 +21305,693 @@ ] }, { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", + "CustomerID": "ANTON", + "Company": "Antonio Moreno Taquería", + "ContactName": "Antonio Moreno", + "ContactTitle": "Owner", + "Address": "Mataderos 2312", + "City": "México D.F.", + "PostalCode": 5023, + "Country": "Mexico", + "Phone": "(5) 555-3932", "Orders": [ { - "OrderID": 10928, - "EmployeeID": 1, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 10365, + "EmployeeID": 3, + "OrderDate": "1996-11-27T00:00:00", + "RequiredDate": "1996-12-25T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 22, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 24, "Discount": 0 + } + ] + }, + { + "OrderID": 10507, + "EmployeeID": 7, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-04-22T00:00:00", + "ShipVia": 1, + "Freight": 47.45, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0 + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10929, - "EmployeeID": 6, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", + "OrderID": 10535, + "EmployeeID": 4, + "OrderDate": "1997-05-13T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-21T00:00:00", "ShipVia": 1, - "Freight": 33.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 15.64, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 49, - "Discount": 0 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 5, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 14000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10930, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10573, + "EmployeeID": 7, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-20T00:00:00", "ShipVia": 3, - "Freight": 15.55, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 17000, - "ShipCountry": "Belgium", + "Freight": 84.84, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 36, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 25, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 53, + "UnitPrice": 32.8, "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10931, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 2, - "Freight": 13.6, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10677, + "EmployeeID": 1, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 3, + "Freight": 4.03, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 42, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 30, "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10932, - "EmployeeID": 8, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", - "ShipVia": 1, - "Freight": 134.64, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10682, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 2, + "Freight": 36.13, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, + "ProductID": 33, + "UnitPrice": 2.5, "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 14, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 16, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 4, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.1 + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 27000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10933, - "EmployeeID": 6, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 3, - "Freight": 54.15, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40624, - "ShipPostalCode": 44000, - "ShipCountry": "UK", + "OrderID": 10856, + "EmployeeID": 3, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 58.43, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 2, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] } ], - "Fax": "(198) 555-8888" + "Fax": "(5) 555-3932" }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "CustomerID": "GALED", + "Company": "Galería del gastrónomo", + "ContactName": "Eduardo Saavedra", + "ContactTitle": "Marketing Manager", + "Address": "Rambla de Cataluña, 23", + "City": "Barcelona", + "PostalCode": 8022, + "Country": "Spain", + "Phone": "(93) 203 4560", + "Fax": "(93) 203 4561", "Orders": [ { - "OrderID": 10934, - "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", - "ShipVia": 3, - "Freight": 32.01, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10366, + "EmployeeID": 8, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-30T00:00:00", + "ShipVia": 2, + "Freight": 10.14, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10935, + "OrderID": 10426, "EmployeeID": 4, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 47.59, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-02-06T00:00:00", + "ShipVia": 1, + "Freight": 18.69, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 8, - "Discount": 0.25 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10936, + "OrderID": 10568, "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 2, - "Freight": 33.68, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1997-06-13T00:00:00", + "RequiredDate": "1997-07-11T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 3, + "Freight": 6.54, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 5, + "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10937, - "EmployeeID": 7, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderID": 10887, + "EmployeeID": 8, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", "ShipVia": 3, - "Freight": 31.51, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 1.25, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 34, + "ProductID": 25, "UnitPrice": 14, - "Quantity": 20, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10938, - "EmployeeID": 3, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 31.89, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10928, + "EmployeeID": 1, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 1.36, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 49, - "Discount": 0.25 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "VAFFE", + "Company": "Vaffeljernet", + "ContactName": "Palle Ibsen", + "ContactTitle": "Sales Manager", + "Address": "Smagsloget 45", + "City": "Århus", + "PostalCode": 8200, + "Country": "Denmark", + "Phone": "86 21 32 43", + "Fax": "86 22 33 44", "Orders": [ { - "OrderID": 10939, - "EmployeeID": 2, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 2, - "Freight": 76.33, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10367, + "EmployeeID": 7, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1996-12-26T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 13.55, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10940, + "OrderID": 10399, "EmployeeID": 8, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderDate": "1996-12-31T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", "ShipVia": 3, - "Freight": 19.77, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 27.36, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 8, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10941, - "EmployeeID": 7, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 400.81, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10465, + "EmployeeID": 1, + "OrderDate": "1997-03-05T00:00:00", + "RequiredDate": "1997-04-02T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 3, + "Freight": 145.04, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 44, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 45, + "UnitPrice": 7.6, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.1 + }, + { + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10591, + "EmployeeID": 1, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-07-21T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 55.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 80, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 50, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10942, - "EmployeeID": 9, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 17.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10602, + "EmployeeID": 8, + "OrderDate": "1997-07-17T00:00:00", + "RequiredDate": "1997-08-14T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", + "ShipVia": 2, + "Freight": 2.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 28, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 5, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 15000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10943, + "OrderID": 10688, "EmployeeID": 4, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", "ShipVia": 2, - "Freight": 2.17, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", + "Freight": 299.09, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 15, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 21, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 15, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 14, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 44000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10944, + "OrderID": 10744, "EmployeeID": 6, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 3, - "Freight": 52.92, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 69.19, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10769, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 1, + "Freight": 65.06, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10945, - "EmployeeID": 4, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-04-09T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10921, + "EmployeeID": 1, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 1, - "Freight": 10.22, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 176.48, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 40, "Discount": 0 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { "OrderID": 10946, "EmployeeID": 1, @@ -32154,1106 +22025,1060 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 39000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10947, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "OrderID": 10994, + "EmployeeID": 2, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-04-09T00:00:00", + "ShipVia": 3, + "Freight": 65.53, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { "ProductID": 59, "UnitPrice": 55, - "Quantity": 4, - "Discount": 0 + "Quantity": 18, + "Discount": 0.06 } ] } - ], - "Fax": "(171) 555-1212" + ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "CustomerID": "QUEEN", + "Company": "Queen Cozinha", + "ContactName": "Lúcia Carvalho", + "ContactTitle": "Marketing Assistant", + "Address": "Alameda dos Canàrios, 891", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5487, + "Country": "Brazil", + "Phone": "(11) 555-1189", "Orders": [ { - "OrderID": 10948, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 3, - "Freight": 23.39, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10372, + "EmployeeID": 5, + "OrderDate": "1996-12-04T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 890.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 9, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 40, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 70, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 42, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10406, + "EmployeeID": 7, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-13T00:00:00", + "ShipVia": 1, + "Freight": 108.04, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 42, + "Discount": 0.1 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 2, + "Discount": 0.1 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 17000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10949, + "OrderID": 10487, "EmployeeID": 2, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-17T00:00:00", - "ShipVia": 3, - "Freight": 74.44, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 34000, - "ShipCountry": "Canada", + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-03-28T00:00:00", + "ShipVia": 2, + "Freight": 71.07, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 12, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 30, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10637, + "EmployeeID": 6, + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 201.29, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 25, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 60, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10950, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-13T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10659, + "EmployeeID": 7, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 2, - "Freight": 2.5, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 105.81, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 24, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10704, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", + "ShipVia": 1, + "Freight": 4.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { "ProductID": 4, "UnitPrice": 22, - "Quantity": 5, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10951, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", + "OrderID": 10728, + "EmployeeID": 4, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-11-11T00:00:00", "ShipVia": 2, - "Freight": 30.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 58.33, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, + "ProductID": 30, + "UnitPrice": 25.89, "Quantity": 15, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, + "ProductID": 40, + "UnitPrice": 18.4, "Quantity": 6, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10952, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "OrderID": 10786, + "EmployeeID": 8, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-16T00:00:00", + "ShippedDate": "1997-12-23T00:00:00", "ShipVia": 1, - "Freight": 40.42, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 110.87, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 2, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0.2 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, + "Discount": 0.2 } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 36000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10953, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-25T00:00:00", + ] + }, + { + "OrderID": 10868, + "EmployeeID": 7, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 37000, - "ShipCountry": "UK", + "Freight": 191.27, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 42, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10954, - "EmployeeID": 5, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 10913, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 1, - "Freight": 27.91, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", + "Freight": 33.05, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 17000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10955, + "OrderID": 10961, "EmployeeID": 8, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 20000, - "ShipCountry": "Sweden", + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", + "ShipVia": 1, + "Freight": 104.47, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10956, - "EmployeeID": 6, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 11068, + "EmployeeID": 8, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-11-01T00:00:00", "ShipVia": 2, - "Freight": 44.65, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "Freight": 81.75, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.16 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 14, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 36, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 8, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 28, + "Discount": 0.16 } ] } - ] + ], + "Fax": "(11) 555-1189" }, { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10957, - "EmployeeID": 8, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "CustomerID": "WOLZA", + "Company": "Wolski Zajazd", + "ContactName": "Zbyszek Piestrzeniewicz", + "ContactTitle": "Owner", + "Address": "ul. Filtrowa 68", + "City": "Warszawa", + "PostalCode": 12000, + "Country": "Poland", + "Phone": "(26) 642-7012", + "Fax": "(26) 642-7012", + "Orders": [ + { + "OrderID": 10374, + "EmployeeID": 1, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", "ShipVia": 3, - "Freight": 105.36, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 3.94, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 31, + "UnitPrice": 10, "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 8, + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10958, - "EmployeeID": 7, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "OrderID": 10611, + "EmployeeID": 6, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 49.56, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 80.65, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 20, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 6, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 5, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10959, - "EmployeeID": 6, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", - "ShipVia": 2, - "Freight": 4.98, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 10792, + "EmployeeID": 1, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 3, + "Freight": 23.79, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10960, - "EmployeeID": 3, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 2.08, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10870, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", + "ShipVia": 3, + "Freight": 12.04, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 24, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10961, - "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", - "ShipVia": 1, - "Freight": 104.47, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, - "Discount": 0.06 - }, + "OrderID": 10906, + "EmployeeID": 4, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", + "ShipVia": 3, + "Freight": 26.29, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 60, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 15, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10962, + "OrderID": 10998, "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", "ShipVia": 2, - "Freight": 275.79, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 20.31, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 77, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 74, + "UnitPrice": 10, "Quantity": 20, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 9, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 44, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10963, - "EmployeeID": 9, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", - "ShipVia": 3, - "Freight": 2.7, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 11044, + "EmployeeID": 4, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 8.72, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0 } ] } ] }, { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", + "CustomerID": "HUNGC", + "Company": "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", "Orders": [ { - "OrderID": 10964, + "OrderID": 10375, "EmployeeID": 3, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "OrderDate": "1996-12-06T00:00:00", + "RequiredDate": "1997-01-03T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", "ShipVia": 2, - "Freight": 87.38, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 20.12, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 6, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10394, + "EmployeeID": 1, + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 3, + "Freight": 30.34, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10965, - "EmployeeID": 6, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", - "ShipVia": 3, - "Freight": 144.38, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "OrderID": 10415, + "EmployeeID": 3, + "OrderDate": "1997-01-15T00:00:00", + "RequiredDate": "1997-02-12T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "ShipVia": 1, + "Freight": 0.2, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 16, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10966, + "OrderID": 10600, "EmployeeID": 4, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-13T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", "ShipVia": 1, - "Freight": 27.19, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 45.13, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 - }, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10660, + "EmployeeID": 8, + "OrderDate": "1997-09-08T00:00:00", + "RequiredDate": "1997-10-06T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 1, + "Freight": 111.29, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 21, + "Discount": 0 } ] } - ], - "Fax": "0452-076545" + ] }, { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", + "CustomerID": "SANTG", + "Company": "Santé Gourmet", + "ContactName": "Jonas Bergulfsen", + "ContactTitle": "Owner", + "Address": "Erling Skakkes gate 78", + "City": "Stavern", + "PostalCode": 4110, + "Country": "Norway", + "Phone": "07-98 92 35", + "Fax": "07-98 92 47", "Orders": [ { - "OrderID": 10967, - "EmployeeID": 2, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10387, + "EmployeeID": 1, + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-15T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", "ShipVia": 2, - "Freight": 62.22, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 93.63, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, "Quantity": 12, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10968, - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-01T00:00:00", - "ShipVia": 3, - "Freight": 74.6, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10520, + "EmployeeID": 7, + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 1, + "Freight": 13.37, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 30, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 4, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10969, - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", + "OrderID": 10639, + "EmployeeID": 7, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-08-27T00:00:00", + "ShipVia": 3, + "Freight": 38.64, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10831, + "EmployeeID": 3, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 2, - "Freight": 0.21, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 72.19, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ + }, { - "OrderID": 10970, - "EmployeeID": 9, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 1, - "Freight": 16.16, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", + "OrderID": 10909, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-10T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10971, + "OrderID": 11015, "EmployeeID": 2, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 2, - "Freight": 121.82, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 4.62, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] @@ -33261,462 +23086,321 @@ ] }, { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", + "CustomerID": "BOTTM", + "Company": "Bottom-Dollar Markets", + "ContactName": "Elizabeth Lincoln", + "ContactTitle": "Accounting Manager", + "Address": "23 Tsawassen Blvd.", + "City": "Tsawassen", + "Region": "BC", + "PostalCode": 14000, + "Country": "Canada", + "Phone": "(604) 555-4729", + "Fax": "(604) 555-3745", "Orders": [ { - "OrderID": 10972, + "OrderID": 10389, "EmployeeID": 4, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", + "OrderDate": "1996-12-20T00:00:00", + "RequiredDate": "1997-01-17T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", "ShipVia": 2, - "Freight": 0.02, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "Freight": 47.42, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 28000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 7, - "Discount": 0 - } - ] - }, - { - "OrderID": 10973, - "EmployeeID": 6, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 2, - "Freight": 15.17, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10974, + "OrderID": 10410, "EmployeeID": 3, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderDate": "1997-01-10T00:00:00", + "RequiredDate": "1997-02-07T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", "ShipVia": 3, - "Freight": 12.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 2.4, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 19000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10975, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-22T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 3, - "Freight": 32.27, + "OrderID": 10431, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 44.17, "ShipName": "Bottom-Dollar Markets", "ShipAddress": "23 Tsawassen Blvd.", "ShipCity": "Tsawassen", "ShipRegion": "BC", - "ShipPostalCode": 45000, + "ShipPostalCode": 49000, "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 16, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 50, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10976, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderID": 10492, + "EmployeeID": 3, + "OrderDate": "1997-04-01T00:00:00", + "RequiredDate": "1997-04-29T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 1, - "Freight": 37.97, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 62.89, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 41000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10977, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10742, + "EmployeeID": 3, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-12-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 208.5, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", + "Freight": 243.73, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 17000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 46000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10978, - "EmployeeID": 9, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", - "ShipVia": 2, - "Freight": 32.82, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", + "OrderID": 10918, + "EmployeeID": 3, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 48.83, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", "ShipPostalCode": 45000, - "ShipCountry": "Belgium", + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.16 - }, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 25, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10944, + "EmployeeID": 6, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 52.92, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, + "Discount": 0.25 }, { "ProductID": 44, "UnitPrice": 19.45, - "Quantity": 6, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10979, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-03-31T00:00:00", - "ShipVia": 2, - "Freight": 353.07, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, "Quantity": 18, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 12, + "ProductID": 56, "UnitPrice": 38, - "Quantity": 20, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10949, + "EmployeeID": 2, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-17T00:00:00", + "ShipVia": 3, + "Freight": 74.44, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 34000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 80, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 30, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 24, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 35, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 21000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10980, - "EmployeeID": 4, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 1, - "Freight": 1.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "OrderID": 10975, + "EmployeeID": 1, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-22T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 32.27, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 45000, + "ShipCountry": "Canada", "OrderDetails": [ + { + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 16, + "Discount": 0 + }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10981, - "EmployeeID": 1, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 193.37, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 16000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { "OrderID": 10982, "EmployeeID": 2, @@ -33745,588 +23429,513 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10983, - "EmployeeID": 2, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 2, - "Freight": 657.54, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11027, + "EmployeeID": 1, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 52.52, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 11000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 21, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11045, + "EmployeeID": 6, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-05-23T00:00:00", + "ShipVia": 2, + "Freight": 70.58, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 36000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 84, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 24, "Discount": 0 } ] }, { - "OrderID": 10984, - "EmployeeID": 1, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderID": 11048, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", "ShipVia": 3, - "Freight": 211.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 24.12, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 15000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 55, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 42, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "LINOD", + "Company": "LINO-Delicateses", + "ContactName": "Felipe Izquierdo", + "ContactTitle": "Owner", + "Address": "Ave. 5 de Mayo Porlamar", + "City": "Sao Paulo", + "Region": "Nueva Esparta", + "PostalCode": 4980, + "Country": "Venezuela", + "Phone": "(8) 34-56-12", + "Fax": "(8) 34-93-93", "Orders": [ { - "OrderID": 10985, - "EmployeeID": 2, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10405, + "EmployeeID": 1, + "OrderDate": "1997-01-06T00:00:00", + "RequiredDate": "1997-02-03T00:00:00", + "ShippedDate": "1997-01-22T00:00:00", "ShipVia": 1, - "Freight": 91.51, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 34.82, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 36, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 + } + ] + }, + { + "OrderID": 10485, + "EmployeeID": 4, + "OrderDate": "1997-03-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-31T00:00:00", + "ShipVia": 2, + "Freight": 64.45, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 35, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 60, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10986, - "EmployeeID": 8, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 2, - "Freight": 217.86, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10638, + "EmployeeID": 3, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", + "ShipVia": 1, + "Freight": 158.44, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 16000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10987, - "EmployeeID": 8, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 1, - "Freight": 185.48, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 32000, - "ShipCountry": "UK", + "OrderID": 10697, + "EmployeeID": 3, + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-05T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", + "ShipVia": 1, + "Freight": 45.52, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0.25 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 9, + "Discount": 0.25 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10988, - "EmployeeID": 3, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 61.14, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10729, + "EmployeeID": 8, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 3, + "Freight": 141.06, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 50, + "UnitPrice": 16.25, "Quantity": 40, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10989, - "EmployeeID": 2, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10811, + "EmployeeID": 8, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", "ShipVia": 1, - "Freight": 34.76, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 31.22, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 40, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10990, - "EmployeeID": 2, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", + "OrderID": 10838, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 3, - "Freight": 117.61, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 59.28, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 65, - "Discount": 0 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 60, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 66, - "Discount": 0.16 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10991, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 1, - "Freight": 38.51, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10840, + "EmployeeID": 4, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", + "ShipVia": 2, + "Freight": 2.71, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.2 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 76, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 90, + "Quantity": 10, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10992, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 4.27, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "OrderID": 10919, + "EmployeeID": 2, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 2, + "Freight": 19.8, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 2, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 50000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10993, - "EmployeeID": 7, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 3, - "Freight": 8.81, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "OrderID": 10954, + "EmployeeID": 5, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 1, + "Freight": 27.91, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 28, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 25, + "Discount": 0.16 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10994, + "OrderID": 11014, "EmployeeID": 2, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-04-09T00:00:00", + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", "ShipVia": 3, - "Freight": 65.53, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 23.6, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 28, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10995, + "OrderID": 11039, "EmployeeID": 1, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 3, - "Freight": 46, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-05-25T00:00:00", + "ShipVia": 2, + "Freight": 65, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 28, "Discount": 0 } ] @@ -34334,935 +23943,905 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "FOLIG", + "Company": "Folies gourmandes", + "ContactName": "Martine Rancé", + "ContactTitle": "Sales Associate", + "Address": "184, chaussée de Tournai", + "City": "Lille", + "PostalCode": 59000, + "Country": "France", + "Phone": "20.16.10.16", + "Fax": "20.16.10.17", "Orders": [ { - "OrderID": 10996, - "EmployeeID": 4, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 1.12, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10408, + "EmployeeID": 8, + "OrderDate": "1997-01-08T00:00:00", + "RequiredDate": "1997-02-05T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 11.26, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10997, - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10480, + "EmployeeID": 6, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", "ShipVia": 2, - "Freight": 73.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 1.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10998, - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 2, - "Freight": 20.31, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10634, + "EmployeeID": 4, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 487.38, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 7, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 30, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10999, - "EmployeeID": 6, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-01T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10763, + "EmployeeID": 3, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 3, + "Freight": 37.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10789, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", "ShipVia": 2, - "Freight": 96.35, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 100.6, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 35, + "UnitPrice": 18, "Quantity": 15, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 21, - "Discount": 0.06 + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "OCEAN", + "Company": "Océano Atlántico Ltda.", + "ContactName": "Yvonne Moncada", + "ContactTitle": "Sales Agent", + "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5333", + "Fax": "(1) 135-5535", "Orders": [ { - "OrderID": 11000, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", - "ShipVia": 3, - "Freight": 55.12, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10409, + "EmployeeID": 3, + "OrderDate": "1997-01-09T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 29.83, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 - }, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10531, + "EmployeeID": 7, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", + "ShipVia": 1, + "Freight": 8.12, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 30000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 11001, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", + "OrderID": 10898, + "EmployeeID": 4, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", "ShipVia": 2, - "Freight": 197.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 30000, - "ShipCountry": "Sweden", + "Freight": 1.27, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 5, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10958, + "EmployeeID": 7, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 2, + "Freight": 49.56, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 25, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 25, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11002, - "EmployeeID": 4, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", - "ShipVia": 1, - "Freight": 141.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10986, + "EmployeeID": 8, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 217.86, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 56, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, + "ProductID": 20, + "UnitPrice": 81, "Quantity": 15, - "Discount": 0.16 + "Discount": 0 }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0.16 + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 40, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "THECR", - "Company": "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": "FRANS", + "Company": "Franchi S.p.A.", + "ContactName": "Paolo Accorti", + "ContactTitle": "Sales Representative", + "Address": "Via Monte Bianco 34", + "City": "Torino", + "PostalCode": 10100, + "Country": "Italy", + "Phone": "011-4988260", + "Fax": "011-4988261", "Orders": [ { - "OrderID": 11003, - "EmployeeID": 3, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 3, - "Freight": 14.91, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "OrderID": 10422, + "EmployeeID": 2, + "OrderDate": "1997-01-22T00:00:00", + "RequiredDate": "1997-02-19T00:00:00", + "ShippedDate": "1997-01-31T00:00:00", + "ShipVia": 1, + "Freight": 3.02, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 2, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10710, + "EmployeeID": 1, + "OrderDate": "1997-10-20T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 1, + "Freight": 4.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 10, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 37000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 11004, + "OrderID": 10753, "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", "ShipVia": 1, - "Freight": 44.84, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 33000, - "ShipCountry": "Belgium", + "Freight": 7.7, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 6, + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 11005, - "EmployeeID": 2, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10807, + "EmployeeID": 4, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 1.36, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 2, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 1, + "Discount": 0 + } + ] + }, + { + "OrderID": 11026, + "EmployeeID": 4, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", + "ShipVia": 1, + "Freight": 47.09, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 51, + "UnitPrice": 53, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11006, - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", + "OrderID": 11060, + "EmployeeID": 2, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", "ShipVia": 2, - "Freight": 25.19, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 10.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0 } ] } - ], - "Fax": "(503) 555-7555" + ] }, { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", + "CustomerID": "GOURL", + "Company": "Gourmet Lanchonetes", + "ContactName": "André Fonseca", + "ContactTitle": "Sales Associate", + "Address": "Av. Brasil, 442", + "City": "Campinas", + "Region": "SP", + "PostalCode": 4876, + "Country": "Brazil", + "Phone": "(11) 555-9482", "Orders": [ { - "OrderID": 11007, - "EmployeeID": 8, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 2, - "Freight": 202.24, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10423, + "EmployeeID": 6, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", + "ShipVia": 3, + "Freight": 24.5, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 20, "Discount": 0 + } + ] + }, + { + "OrderID": 10652, + "EmployeeID": 4, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 2, + "Freight": 7.14, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 2, + "Discount": 0.25 }, { "ProductID": 42, "UnitPrice": 14, - "Quantity": 14, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11008, - "EmployeeID": 7, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-05-09T00:00:00", - "ShipVia": 3, - "Freight": 79.46, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10685, + "EmployeeID": 4, + "OrderDate": "1997-09-29T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 33.75, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 90, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 21, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 11009, - "EmployeeID": 2, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 59.11, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10709, + "EmployeeID": 1, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-11-20T00:00:00", + "ShipVia": 3, + "Freight": 210.8, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 9, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11010, + "OrderID": 10734, "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 2, - "Freight": 28.71, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-12T00:00:00", + "ShipVia": 3, + "Freight": 1.63, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 11011, - "EmployeeID": 3, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10777, + "EmployeeID": 7, + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 2, + "Freight": 3.01, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10790, + "EmployeeID": 6, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", "ShipVia": 1, - "Freight": 1.21, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 28.23, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 3, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 11012, - "EmployeeID": 1, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 3, - "Freight": 242.95, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10959, + "EmployeeID": 6, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 4.98, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 - }, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 11049, + "EmployeeID": 3, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 8.34, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 36, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, + "Discount": 0.2 } ] } - ] + ], + "Fax": "(11) 555-9482" }, { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", + "CustomerID": "CONSH", + "Company": "Consolidated Holdings", + "ContactName": "Elizabeth Brown", + "ContactTitle": "Sales Representative", + "Address": "Berkeley Gardens 12 Brewery", + "City": "London", + "PostalCode": 38000, + "Country": "UK", + "Phone": "(171) 555-2282", + "Fax": "(171) 555-9199", "Orders": [ { - "OrderID": 11013, - "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 32.99, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10435, + "EmployeeID": 8, + "OrderDate": "1997-02-04T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 9.21, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 10, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 4, + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10462, + "EmployeeID": 2, + "OrderDate": "1997-03-03T00:00:00", + "RequiredDate": "1997-03-31T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 1, + "Freight": 6.17, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 50000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 2, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 11014, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", - "ShipVia": 3, - "Freight": 23.6, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 28, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 11015, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10848, + "EmployeeID": 7, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 2, - "Freight": 4.62, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 38.24, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 36000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 3, "Discount": 0 } ] @@ -35270,158 +24849,141 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", + "CustomerID": "RANCH", + "Company": "Rancho grande", + "ContactName": "Sergio Gutiérrez", "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 42000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Address": "Av. del Libertador 900", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 123-5555", + "Fax": "(1) 123-5556", "Orders": [ { - "OrderID": 11016, - "EmployeeID": 9, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10448, + "EmployeeID": 4, + "OrderDate": "1997-02-17T00:00:00", + "RequiredDate": "1997-03-17T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", "ShipVia": 2, - "Freight": 33.8, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 20000, - "ShipCountry": "UK", + "Freight": 38.82, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 16, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11017, - "EmployeeID": 9, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10716, + "EmployeeID": 4, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-27T00:00:00", "ShipVia": 2, - "Freight": 754.26, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 22.57, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 3, + "ProductID": 21, "UnitPrice": 10, - "Quantity": 25, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 110, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11018, - "EmployeeID": 4, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10828, + "EmployeeID": 9, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 90.85, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 10916, + "EmployeeID": 1, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 2, - "Freight": 11.65, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 63.77, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { "OrderID": 11019, "EmployeeID": 6, @@ -35453,139 +25015,60 @@ ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 11020, - "EmployeeID": 2, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", - "ShipVia": 2, - "Freight": 43.3, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "LAZYK", + "Company": "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", "Orders": [ { - "OrderID": 11021, - "EmployeeID": 3, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 1, - "Freight": 297.18, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10482, + "EmployeeID": 1, + "OrderDate": "1997-03-21T00:00:00", + "RequiredDate": "1997-04-18T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 7.48, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 11, - "Discount": 0.25 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 63, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 44, - "Discount": 0.25 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 11022, - "EmployeeID": 9, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10545, + "EmployeeID": 8, + "OrderDate": "1997-05-22T00:00:00", + "RequiredDate": "1997-06-19T00:00:00", + "ShippedDate": "1997-06-26T00:00:00", "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 11.92, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 } ] @@ -35593,460 +25076,323 @@ ] }, { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", + "CustomerID": "LAUGB", + "Company": "Laughing Bacchus Wine Cellars", + "ContactName": "Yoshi Tannamuri", + "ContactTitle": "Marketing Assistant", + "Address": "1900 Oak St.", + "City": "Vancouver", + "Region": "BC", "PostalCode": 19000, - "Country": "UK", - "Phone": "(171) 555-1212", + "Country": "Canada", + "Phone": "(604) 555-3392", + "Fax": "(604) 555-7293", "Orders": [ { - "OrderID": 11023, - "EmployeeID": 1, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 123.83, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 36000, - "ShipCountry": "UK", + "OrderID": 10495, + "EmployeeID": 3, + "OrderDate": "1997-04-03T00:00:00", + "RequiredDate": "1997-05-01T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", + "ShipVia": 3, + "Freight": 4.65, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 20000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 4, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 16000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11024, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 1, - "Freight": 74.36, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 23000, - "ShipCountry": "UK", + "OrderID": 10620, + "EmployeeID": 2, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", + "ShipVia": 3, + "Freight": 0.94, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 31000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 50, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 11025, - "EmployeeID": 6, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10810, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 3, - "Freight": 29.17, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 4.33, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 48000, + "ShipCountry": "Canada", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.1 - }, { "ProductID": 13, "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.1 + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", + "CustomerID": "BLAUS", + "Company": "Blauer See Delikatessen", + "ContactName": "Hanna Moos", "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", + "Address": "Forsterstr. 57", + "City": "Mannheim", + "PostalCode": 68306, + "Country": "Germany", + "Phone": "0621-08460", + "Fax": "0621-08924", "Orders": [ { - "OrderID": 11026, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", - "ShipVia": 1, - "Freight": 47.09, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10501, + "EmployeeID": 9, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 3, + "Freight": 8.85, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 49000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11027, - "EmployeeID": 1, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10509, + "EmployeeID": 4, + "OrderDate": "1997-04-17T00:00:00", + "RequiredDate": "1997-05-15T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 1, - "Freight": 52.52, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 11000, - "ShipCountry": "Canada", + "Freight": 0.15, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 11028, - "EmployeeID": 2, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", - "ShipVia": 1, - "Freight": 29.59, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10582, + "EmployeeID": 3, + "OrderDate": "1997-06-27T00:00:00", + "RequiredDate": "1997-07-25T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 27.71, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 24, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 14, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 11029, - "EmployeeID": 4, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 47.84, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10614, + "EmployeeID": 8, + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 3, + "Freight": 1.93, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 12, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11030, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", + "OrderID": 10853, + "EmployeeID": 9, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", "ShipVia": 2, - "Freight": 830.75, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 53.83, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 100, - "Discount": 0.25 - }, - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 70, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 100, - "Discount": 0.25 } ] }, { - "OrderID": 11031, + "OrderID": 10956, "EmployeeID": 6, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 227.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 44.65, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 45, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 80, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 21, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11032, - "EmployeeID": 2, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 11058, + "EmployeeID": 9, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShippedDate": "1998-08-27T00:00:00", "ShipVia": 3, - "Freight": 606.19, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 31.14, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 35, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 25, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, "Discount": 0 } ] @@ -36054,145 +25400,97 @@ ] }, { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", + "CustomerID": "NORTS", + "Company": "North/South", + "ContactName": "Simon Crowther", + "ContactTitle": "Sales Associate", + "Address": "South House 300 Queensbridge", + "City": "London", + "PostalCode": 13000, + "Country": "UK", + "Phone": "(171) 555-7733", + "Fax": "(171) 555-2530", "Orders": [ { - "OrderID": 11033, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 10517, + "EmployeeID": 3, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 3, - "Freight": 84.74, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 70, - "Discount": 0.1 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 36, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ - { - "OrderID": 11034, - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 40.32, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 32.07, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 19000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 12, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 23000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 11035, + "OrderID": 10752, "EmployeeID": 2, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 0.17, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 30000, - "ShipCountry": "Belgium", + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", + "ShipVia": 3, + "Freight": 1.39, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 1, "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 60, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 3, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11057, + "EmployeeID": 3, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 4.13, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 47000, + "ShipCountry": "UK", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] @@ -36200,181 +25498,175 @@ ] }, { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", + "CustomerID": "CACTU", + "Company": "Cactus Comidas para llevar", + "ContactName": "Patricio Simpson", + "ContactTitle": "Sales Agent", + "Address": "Cerrito 333", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5555", + "Fax": "(1) 135-4892", "Orders": [ { - "OrderID": 11036, + "OrderID": 10521, "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", - "ShipVia": 3, - "Freight": 149.47, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 17.22, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 11037, - "EmployeeID": 7, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 3.2, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10782, + "EmployeeID": 9, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 1.1, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 1, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 11038, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", - "ShipVia": 2, - "Freight": 29.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 44000, - "ShipCountry": "Belgium", + "OrderID": 10819, + "EmployeeID": 2, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", + "ShipVia": 3, + "Freight": 19.76, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 7, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 2, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10881, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 2.84, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 11039, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-05-25T00:00:00", - "ShipVia": 2, - "Freight": 65, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10937, + "EmployeeID": 7, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 31.51, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { "ProductID": 28, "UnitPrice": 45.6, - "Quantity": 20, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 24, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11054, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShippedDate": "1998-05-26T00:00:00", + "ShipVia": 1, + "Freight": 0.33, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 60, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 28, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] @@ -36394,13 +25686,48 @@ "Phone": "(503) 555-7555", "Orders": [ { - "OrderID": 11040, - "EmployeeID": 4, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-05-20T00:00:00", - "ShipVia": 3, - "Freight": 18.84, + "OrderID": 10528, + "EmployeeID": 6, + "OrderDate": "1997-05-06T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 3.35, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.2 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 10589, + "EmployeeID": 8, + "OrderDate": "1997-07-04T00:00:00", + "RequiredDate": "1997-08-01T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 4.42, "ShipName": "Great Lakes Food Market", "ShipAddress": "2732 Baker Blvd.", "ShipCity": "Eugene", @@ -36409,590 +25736,476 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 11041, - "EmployeeID": 3, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", + "OrderID": 10616, + "EmployeeID": 1, + "OrderDate": "1997-07-31T00:00:00", + "RequiredDate": "1997-08-28T00:00:00", + "ShippedDate": "1997-08-05T00:00:00", "ShipVia": 2, - "Freight": 48.22, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 116.53, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 11042, - "EmployeeID": 2, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10656, + "EmployeeID": 6, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 1, - "Freight": 29.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 57.15, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, + "Discount": 0.1 + }, { "ProductID": 44, "UnitPrice": 19.45, - "Quantity": 15, - "Discount": 0 + "Quantity": 28, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 4, - "Discount": 0 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.1 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 11043, - "EmployeeID": 5, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", - "ShipVia": 2, - "Freight": 8.8, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "OrderID": 10681, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 76.13, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 11044, + "OrderID": 10816, "EmployeeID": 4, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 1, - "Freight": 8.72, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-02-03T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 2, + "Freight": 719.78, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10936, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 33.68, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 31000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11045, - "EmployeeID": 6, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-05-23T00:00:00", + "OrderID": 11006, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", "ShipVia": 2, - "Freight": 70.58, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", + "Freight": 25.19, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 24, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 2, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 11046, - "EmployeeID": 8, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 71.64, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 11040, + "EmployeeID": 4, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-05-20T00:00:00", + "ShipVia": 3, + "Freight": 18.84, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, + "ProductID": 21, + "UnitPrice": 10, "Quantity": 20, - "Discount": 0.06 - }, + "Discount": 0 + } + ] + }, + { + "OrderID": 11061, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-06-11T00:00:00", + "ShippedDate": "1998-06-11T00:00:00", + "ShipVia": 3, + "Freight": 14.01, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, + "ProductID": 60, + "UnitPrice": 34, "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 18, - "Discount": 0.06 + "Discount": 0 } ] } - ] + ], + "Fax": "(503) 555-7555" }, { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", + "CustomerID": "MAISD", + "Company": "Maison Dewey", + "ContactName": "Catherine Dewey", "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", + "Address": "Rue Joseph-Bens 532", + "City": "Bruxelles", + "PostalCode": 11000, + "Country": "Belgium", + "Phone": "(02) 201 24 67", + "Fax": "(02) 201 24 68", "Orders": [ { - "OrderID": 11047, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 3, - "Freight": 46.62, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 14000, - "ShipCountry": "UK", + "OrderID": 10529, + "EmployeeID": 5, + "OrderDate": "1997-05-07T00:00:00", + "RequiredDate": "1997-06-04T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 66.69, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 26000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 48000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11048, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", + "OrderID": 10649, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-09-25T00:00:00", + "ShippedDate": "1997-08-29T00:00:00", "ShipVia": 3, - "Freight": 24.12, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 15000, - "ShipCountry": "Canada", + "Freight": 6.2, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 47000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 42, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 11049, - "EmployeeID": 3, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10760, + "EmployeeID": 4, + "OrderDate": "1997-12-01T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1997-12-10T00:00:00", "ShipVia": 1, - "Freight": 8.34, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 155.64, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.25 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 35000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 11050, - "EmployeeID": 8, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10892, + "EmployeeID": 4, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", "ShipVia": 2, - "Freight": 59.41, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 11000, - "ShipCountry": "Sweden", + "Freight": 120.27, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 45000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 11051, + "OrderID": 10896, "EmployeeID": 7, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-09-25T00:00:00", + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", "ShipVia": 3, - "Freight": 2.79, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 11052, - "EmployeeID": 3, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 1, - "Freight": 67.26, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 32.45, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 28000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 16, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 11053, - "EmployeeID": 2, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", + "OrderID": 10978, + "EmployeeID": 9, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 32.82, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 45000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 11054, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", - "ShippedDate": "1998-05-26T00:00:00", + "OrderID": 11004, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 1, - "Freight": 0.33, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 44.84, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 33000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 10, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 } ] @@ -37000,187 +26213,119 @@ ] }, { - "CustomerID": "HILAA", - "Company": "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": "TRAIH", + "Company": "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", "Orders": [ { - "OrderID": 11055, - "EmployeeID": 7, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10574, + "EmployeeID": 4, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 120.92, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 37.6, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 35000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11056, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10577, + "EmployeeID": 9, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 278.96, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 17000, - "ShipCountry": "UK", + "Freight": 25.41, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 40, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 14000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ - { - "OrderID": 11057, - "EmployeeID": 3, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 3, - "Freight": 4.13, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 47000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 11058, - "EmployeeID": 9, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShippedDate": "1998-08-27T00:00:00", - "ShipVia": 3, - "Freight": 31.14, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10822, + "EmployeeID": 6, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", + "ShipVia": 3, + "Freight": 7, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 3, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 4, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 6, "Discount": 0 } ] @@ -37188,413 +26333,370 @@ ] }, { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", + "CustomerID": "LETSS", + "Company": "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", "Orders": [ { - "OrderID": 11059, - "EmployeeID": 2, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-06-10T00:00:00", - "ShippedDate": "1998-06-15T00:00:00", + "OrderID": 10579, + "EmployeeID": 1, + "OrderDate": "1997-06-25T00:00:00", + "RequiredDate": "1997-07-23T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 2, - "Freight": 85.8, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 13.73, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 12, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 11060, - "EmployeeID": 2, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10719, + "EmployeeID": 8, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 10.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "Freight": 51.44, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 3, + "Discount": 0.25 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 40, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11061, - "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-06-11T00:00:00", - "ShippedDate": "1998-06-11T00:00:00", - "ShipVia": 3, - "Freight": 14.01, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, + "OrderID": 10735, + "EmployeeID": 6, + "OrderDate": "1997-11-10T00:00:00", + "RequiredDate": "1997-12-08T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 45.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.1 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11062, + "OrderID": 10884, "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-06-28T00:00:00", + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", "ShipVia": 2, - "Freight": 29.93, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 90.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 21, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, "Quantity": 12, - "Discount": 0.2 + "Discount": 0.06 } ] } - ] + ], + "Fax": "(415) 555-5938" }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "WILMK", + "Company": "Wilman Kala", + "ContactName": "Matti Karttunen", + "ContactTitle": "Owner/Marketing Assistant", + "Address": "Keskuskatu 45", + "City": "Helsinki", + "PostalCode": 21240, + "Country": "Finland", + "Phone": "90-224 8858", + "Fax": "90-224 8858", "Orders": [ { - "OrderID": 11063, - "EmployeeID": 3, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 81.73, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10615, + "EmployeeID": 2, + "OrderDate": "1997-07-30T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 3, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10673, + "EmployeeID": 2, + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 22.76, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11064, - "EmployeeID": 1, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10695, + "EmployeeID": 7, + "OrderDate": "1997-10-07T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", "ShipVia": 1, - "Freight": 30.09, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 16.72, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 77, - "Discount": 0.1 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.1 - }, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10873, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 0.82, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 55, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11065, - "EmployeeID": 8, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-29T00:00:00", - "ShipVia": 1, - "Freight": 12.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10879, + "EmployeeID": 3, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 8.5, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11066, - "EmployeeID": 7, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 2, - "Freight": 44.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10910, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 3, + "Freight": 38.11, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 42, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 35, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 11067, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 7.98, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderID": 11005, + "EmployeeID": 2, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, "Discount": 0 } ] @@ -37602,85 +26704,113 @@ ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", + "CustomerID": "THECR", + "Company": "The Cracker Box", + "ContactName": "Liu Wong", "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", + "Address": "55 Grizzly Peak Rd.", + "City": "Butte", + "Region": "MT", + "PostalCode": 59801, + "Country": "USA", + "Phone": "(406) 555-5834", + "Fax": "(406) 555-8083", "Orders": [ { - "OrderID": 11068, - "EmployeeID": 8, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-11-01T00:00:00", + "OrderID": 10624, + "EmployeeID": 4, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", "ShipVia": 2, - "Freight": 81.75, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 94.8, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 28, "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.16 + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 11069, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 15.67, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10775, + "EmployeeID": 7, + "OrderDate": "1997-12-12T00:00:00", + "RequiredDate": "1998-01-09T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 20.25, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 11003, + "EmployeeID": 3, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 3, + "Freight": 14.91, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 10, "Discount": 0 } ] @@ -37688,507 +26818,503 @@ ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", + "CustomerID": "ALFKI", + "Company": "Alfreds Futterkiste", + "ContactName": "Maria Anders", "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, + "Address": "Obere Str. 57", + "City": "Berlin", + "PostalCode": 12209, "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "Phone": "030-0074321", + "Fax": "030-0076545", "Orders": [ { - "OrderID": 11070, - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-02T00:00:00", + "OrderID": 10643, + "EmployeeID": 6, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", "ShipVia": 1, - "Freight": 136, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "Freight": 29.46, + "ShipName": "Alfreds Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 15, + "Discount": 0.25 + }, + { + "ProductID": 39, "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.16 + "Quantity": 21, + "Discount": 0.25 }, { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 2, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10692, + "EmployeeID": 4, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-10-31T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", + "ShipVia": 2, + "Freight": 61.02, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 20, - "Discount": 0.16 - }, + "Discount": 0 + } + ] + }, + { + "OrderID": 10702, + "EmployeeID": 4, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 1, + "Freight": 23.94, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11071, + "OrderID": 10835, "EmployeeID": 1, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-10T00:00:00", - "ShipVia": 1, - "Freight": 0.93, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 3, + "Freight": 69.53, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10952, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", + "ShipVia": 1, + "Freight": 40.42, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 16, "Discount": 0.06 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 11011, + "EmployeeID": 3, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 1, + "Freight": 1.21, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 40, "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "FRANR", + "Company": "France restauration", + "ContactName": "Carine Schmitt", + "ContactTitle": "Marketing Manager", + "Address": "54, rue Royale", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.32.21.21", + "Fax": "40.32.21.20", "Orders": [ { - "OrderID": 11072, - "EmployeeID": 4, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-08-02T00:00:00", - "ShipVia": 2, - "Freight": 258.64, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10671, + "EmployeeID": 1, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-09-24T00:00:00", + "ShipVia": 1, + "Freight": 30.34, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 22, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 130, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 11073, - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-15T00:00:00", - "ShipVia": 2, - "Freight": 24.95, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10860, + "EmployeeID": 3, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 3, + "Freight": 19.26, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 11074, - "EmployeeID": 7, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-06-03T00:00:00", + "OrderID": 10971, + "EmployeeID": 2, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", "ShipVia": 2, - "Freight": 18.44, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 121.82, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 14, - "Discount": 0.06 + "Discount": 0 } ] } ] }, { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", + "CustomerID": "SPECD", + "Company": "Spécialités du monde", + "ContactName": "Dominique Perrier", + "ContactTitle": "Marketing Manager", + "Address": "25, rue Lauriston", + "City": "Paris", + "PostalCode": 75016, + "Country": "France", + "Phone": "(1) 47.55.60.10", + "Fax": "(1) 47.55.60.20", "Orders": [ { - "OrderID": 11075, - "EmployeeID": 8, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-05-03T00:00:00", - "ShipVia": 2, - "Freight": 6.19, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10738, + "EmployeeID": 2, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 1, + "Freight": 2.91, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0.16 - }, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10907, + "EmployeeID": 6, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-25T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 9.19, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 14, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 11076, - "EmployeeID": 4, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-06-08T00:00:00", + "OrderID": 10964, + "EmployeeID": 3, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 2, - "Freight": 38.28, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, + "Freight": 87.38, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 69, + "UnitPrice": 36, "Quantity": 10, - "Discount": 0.25 + "Discount": 0 + } + ] + }, + { + "OrderID": 11043, + "EmployeeID": 5, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 8.8, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "LACOR", + "Company": "La corne de abondance", + "ContactName": "Daniel Tonini", + "ContactTitle": "Sales Representative", + "Address": "67, avenue de Europe", + "City": "Versailles", + "PostalCode": 78000, + "Country": "France", + "Phone": "30.59.84.10", + "Fax": "30.59.85.11", "Orders": [ { - "OrderID": 11077, - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-07-03T00:00:00", - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10858, + "EmployeeID": 2, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", + "ShipVia": 1, + "Freight": 52.51, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 24, - "Discount": 0.2 - }, - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 1, - "Discount": 0.02 - }, { "ProductID": 7, "UnitPrice": 30, - "Quantity": 1, - "Discount": 0.06 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 2, - "Discount": 0.1 - }, - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 1, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 2, - "Discount": 0.06 + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 4, "Discount": 0 - }, - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 2, - "Discount": 0.04 - }, + } + ] + }, + { + "OrderID": 10927, + "EmployeeID": 4, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 19.79, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { "ProductID": 20, "UnitPrice": 81, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 3, + "Quantity": 5, "Discount": 0 }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 3, - "Discount": 0.02 - }, { "ProductID": 52, "UnitPrice": 7, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 2, - "Discount": 0.04 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 1, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 2, - "Discount": 0.0099999998 - }, + } + ] + }, + { + "OrderID": 10972, + "EmployeeID": 4, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 2, + "Freight": 0.02, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 4, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 7, "Discount": 0 } ] diff --git a/samples/grids/hierarchical-grid/column-moving-options/src/index.tsx b/samples/grids/hierarchical-grid/column-moving-options/src/index.tsx index 92e6431214..68b1a45a6f 100644 --- a/samples/grids/hierarchical-grid/column-moving-options/src/index.tsx +++ b/samples/grids/hierarchical-grid/column-moving-options/src/index.tsx @@ -184,9 +184,9 @@ export default class Sample extends React.Component { public hierarchicalGridPinHeaderTemplate = (props: {dataContext: IgrColumnTemplateContext}) => { const column = (props.dataContext as any).column; return ( -
- {column.field} - this.toggleColumnPin(column)}>📌 +
+ {column.field} + this.toggleColumnPin(column)}>📌
); } diff --git a/samples/grids/hierarchical-grid/column-moving-styles/src/HierarchicalCustomers.json b/samples/grids/hierarchical-grid/column-moving-styles/src/HierarchicalCustomers.json index 75c7bc037d..43b2853953 100644 --- a/samples/grids/hierarchical-grid/column-moving-styles/src/HierarchicalCustomers.json +++ b/samples/grids/hierarchical-grid/column-moving-styles/src/HierarchicalCustomers.json @@ -44,6 +44,112 @@ "Discount": 0 } ] + }, + { + "OrderID": 10274, + "EmployeeID": 6, + "OrderDate": "1996-08-06T00:00:00", + "RequiredDate": "1996-09-03T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 1, + "Freight": 6.01, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 7, + "Discount": 0 + } + ] + }, + { + "OrderID": 10295, + "EmployeeID": 2, + "OrderDate": "1996-09-02T00:00:00", + "RequiredDate": "1996-09-30T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", + "ShipVia": 2, + "Freight": 1.15, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 10737, + "EmployeeID": 2, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 7.79, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10739, + "EmployeeID": 3, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-17T00:00:00", + "ShipVia": 3, + "Freight": 11.08, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 18, + "Discount": 0 + } + ] } ] }, @@ -86,251 +192,155 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10250, - "EmployeeID": 4, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-12T00:00:00", + "OrderID": 10438, + "EmployeeID": 3, + "OrderDate": "1997-02-06T00:00:00", + "RequiredDate": "1997-03-06T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", "ShipVia": 2, - "Freight": 65.83, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 8.24, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 15, - "Discount": 0.16 + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10251, - "EmployeeID": 3, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", + "OrderID": 10446, + "EmployeeID": 6, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-02-19T00:00:00", "ShipVia": 1, - "Freight": 41.34, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 14.68, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 + }, + { + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 44000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10252, - "EmployeeID": 4, - "OrderDate": "1996-07-09T00:00:00", - "RequiredDate": "1996-08-06T00:00:00", - "ShippedDate": "1996-07-11T00:00:00", + "OrderID": 10548, + "EmployeeID": 3, + "OrderDate": "1997-05-26T00:00:00", + "RequiredDate": "1997-06-23T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", "ShipVia": 2, - "Freight": 51.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 22000, - "ShipCountry": "Belgium", + "Freight": 1.43, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 40, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Fax": "0452-076546", - "Orders": [ + }, { - "OrderID": 10254, - "EmployeeID": 5, - "OrderDate": "1996-07-11T00:00:00", - "RequiredDate": "1996-08-08T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderID": 10608, + "EmployeeID": 4, + "OrderDate": "1997-07-23T00:00:00", + "RequiredDate": "1997-08-20T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 22.98, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 27.79, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 21, - "Discount": 0.16 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10255, - "EmployeeID": 9, - "OrderDate": "1996-07-12T00:00:00", - "RequiredDate": "1996-08-09T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", - "ShipVia": 3, - "Freight": 148.33, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10967, + "EmployeeID": 2, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 62.22, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 25, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 40, "Discount": 0 } ] @@ -338,2105 +348,1447 @@ ] }, { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, + "CustomerID": "HANAR", + "Company": "Hanari Carnes", + "ContactName": "Mario Pontes", + "ContactTitle": "Accounting Manager", + "Address": "Rua do Paço, 67", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 5454, "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", + "Phone": "(21) 555-0091", + "Fax": "(21) 555-8765", "Orders": [ { - "OrderID": 10256, - "EmployeeID": 3, - "OrderDate": "1996-07-15T00:00:00", - "RequiredDate": "1996-08-12T00:00:00", - "ShippedDate": "1996-07-17T00:00:00", + "OrderID": 10250, + "EmployeeID": 4, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-12T00:00:00", "ShipVia": 2, - "Freight": 13.97, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, + "Freight": 65.83, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10257, - "EmployeeID": 4, - "OrderDate": "1996-07-16T00:00:00", - "RequiredDate": "1996-08-13T00:00:00", - "ShippedDate": "1996-07-22T00:00:00", - "ShipVia": 3, - "Freight": 81.91, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10258, - "EmployeeID": 1, - "OrderDate": "1996-07-17T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderID": 10541, + "EmployeeID": 2, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-05-29T00:00:00", "ShipVia": 1, - "Freight": 140.51, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 68.65, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.1 }, { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 65, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 4, + "Discount": 0.1 }, { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 9, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "CENTC", - "Company": "Centro comercial Moctezuma", - "ContactName": "Francisco Chang", - "ContactTitle": "Marketing Manager", - "Address": "Sierras de Granada 9993", - "City": "México D.F.", - "PostalCode": 5022, - "Country": "Mexico", - "Phone": "(5) 555-3392", - "Fax": "(5) 555-7293", - "Orders": [ + }, { - "OrderID": 10259, + "OrderID": 10645, "EmployeeID": 4, - "OrderDate": "1996-07-18T00:00:00", - "RequiredDate": "1996-08-15T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", - "ShipVia": 3, - "Freight": 3.25, - "ShipName": "Centro comercial Moctezuma", - "ShipAddress": "Sierras de Granada 9993", - "ShipCity": "México D.F.", - "ShipPostalCode": 5022, - "ShipCountry": "Mexico", + "OrderDate": "1997-08-26T00:00:00", + "RequiredDate": "1997-09-23T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", + "ShipVia": 1, + "Freight": 12.41, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 1, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10260, - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-29T00:00:00", + "OrderID": 10690, + "EmployeeID": 1, + "OrderDate": "1997-10-02T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", "ShipVia": 1, - "Freight": 55.09, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 15.8, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 16, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, "Discount": 0.25 - }, + } + ] + }, + { + "OrderID": 10770, + "EmployeeID": 8, + "OrderDate": "1997-12-09T00:00:00", + "RequiredDate": "1998-01-06T00:00:00", + "ShippedDate": "1997-12-17T00:00:00", + "ShipVia": 3, + "Freight": 5.32, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 21, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10261, + "OrderID": 10783, "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-30T00:00:00", + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", "ShipVia": 2, - "Freight": 3.05, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 124.98, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", "ShipCity": "Sao Paulo", "ShipRegion": "RJ", - "ShipPostalCode": 2389, + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 20, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 20, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10262, - "EmployeeID": 8, - "OrderDate": "1996-07-22T00:00:00", - "RequiredDate": "1996-08-19T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", - "ShipVia": 3, - "Freight": 48.29, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10886, + "EmployeeID": 1, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", + "ShipVia": 1, + "Freight": 4.99, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 15, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 2, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10263, - "EmployeeID": 9, - "OrderDate": "1996-07-23T00:00:00", - "RequiredDate": "1996-08-20T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", + "OrderID": 10903, + "EmployeeID": 3, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 3, - "Freight": 146.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 36.71, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 33000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10264, - "EmployeeID": 6, - "OrderDate": "1996-07-24T00:00:00", - "RequiredDate": "1996-08-21T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", + "OrderID": 10922, + "EmployeeID": 5, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", "ShipVia": 3, - "Freight": 3.67, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 27000, - "ShipCountry": "Sweden", + "Freight": 62.74, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 35, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10265, - "EmployeeID": 2, - "OrderDate": "1996-07-25T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", + "OrderID": 10925, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 1, - "Freight": 55.28, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 2.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10266, - "EmployeeID": 3, - "OrderDate": "1996-07-26T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", - "ShipVia": 3, - "Freight": 25.73, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10981, + "EmployeeID": 1, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 193.37, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10267, - "EmployeeID": 4, - "OrderDate": "1996-07-29T00:00:00", - "RequiredDate": "1996-08-26T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", - "ShipVia": 1, - "Freight": 208.58, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 11022, + "EmployeeID": 9, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10268, - "EmployeeID": 8, - "OrderDate": "1996-07-30T00:00:00", - "RequiredDate": "1996-08-27T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 3, - "Freight": 66.29, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", + "OrderID": 11052, + "EmployeeID": 3, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 67.26, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 10, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 4, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "WHITC", - "Company": "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": "VICTE", + "Company": "Victuailles en stock", + "ContactName": "Mary Saveley", + "ContactTitle": "Sales Agent", + "Address": "2, rue du Commerce", + "City": "Lyon", + "PostalCode": 69004, + "Country": "France", + "Phone": "78.32.54.86", + "Fax": "78.32.54.87", "Orders": [ { - "OrderID": 10269, - "EmployeeID": 5, - "OrderDate": "1996-07-31T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", + "OrderID": 10251, + "EmployeeID": 3, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", "ShipVia": 1, - "Freight": 4.56, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 41.34, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 15, "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10270, - "EmployeeID": 1, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 1, - "Freight": 136.54, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 30, - "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 25, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10271, - "EmployeeID": 6, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", + "OrderID": 10334, + "EmployeeID": 8, + "OrderDate": "1996-10-21T00:00:00", + "RequiredDate": "1996-11-18T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", "ShipVia": 2, - "Freight": 4.54, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 8.56, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 24, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10272, - "EmployeeID": 6, - "OrderDate": "1996-08-02T00:00:00", - "RequiredDate": "1996-08-30T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", + "OrderID": 10450, + "EmployeeID": 8, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-19T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", "ShipVia": 2, - "Freight": 98.03, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 7.23, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, "Quantity": 6, - "Discount": 0 + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10459, + "EmployeeID": 4, + "OrderDate": "1997-02-27T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 25.09, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0.06 }, { "ProductID": 72, "UnitPrice": 27.8, - "Quantity": 24, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10273, - "EmployeeID": 3, - "OrderDate": "1996-08-05T00:00:00", - "RequiredDate": "1996-09-02T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", + "OrderID": 10478, + "EmployeeID": 2, + "OrderDate": "1997-03-18T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-26T00:00:00", "ShipVia": 3, - "Freight": 76.07, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 4.81, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 10, "UnitPrice": 24.8, - "Quantity": 24, - "Discount": 0.06 - }, - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2, "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 60, - "Discount": 0.06 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 33, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10274, - "EmployeeID": 6, - "OrderDate": "1996-08-06T00:00:00", - "RequiredDate": "1996-09-03T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 1, - "Freight": 6.01, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, + "OrderID": 10546, + "EmployeeID": 1, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-05-27T00:00:00", + "ShipVia": 3, + "Freight": 194.72, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 20, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 7, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10275, - "EmployeeID": 1, - "OrderDate": "1996-08-07T00:00:00", - "RequiredDate": "1996-09-04T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", - "ShipVia": 1, - "Freight": 26.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10806, + "EmployeeID": 3, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 2, + "Freight": 22.11, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 6, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10276, - "EmployeeID": 8, - "OrderDate": "1996-08-08T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-14T00:00:00", - "ShipVia": 3, - "Freight": 13.84, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 15, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Fax": "0342-023177", - "Orders": [ + }, { - "OrderID": 10277, - "EmployeeID": 2, - "OrderDate": "1996-08-09T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-08-13T00:00:00", + "OrderID": 10814, + "EmployeeID": 3, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", "ShipVia": 3, - "Freight": 125.77, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 130.94, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, + "Discount": 0.16 + }, + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 8, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 14000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10278, - "EmployeeID": 8, - "OrderDate": "1996-08-12T00:00:00", - "RequiredDate": "1996-09-09T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", + "OrderID": 10843, + "EmployeeID": 4, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", "ShipVia": 2, - "Freight": 92.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "Freight": 9.26, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 16, - "Discount": 0 - }, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 4, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10850, + "EmployeeID": 1, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 49.19, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 15, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 8, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 4, + "Discount": 0.16 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10279, - "EmployeeID": 8, - "OrderDate": "1996-08-13T00:00:00", - "RequiredDate": "1996-09-10T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 2, - "Freight": 25.83, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 27000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "SUPRD", + "Company": "Suprêmes délices", + "ContactName": "Pascale Cartrain", + "ContactTitle": "Accounting Manager", + "Address": "Boulevard Tirou, 255", + "City": "Charleroi", + "PostalCode": 44000, + "Country": "Belgium", + "Phone": "(071) 23 67 22 20", + "Fax": "(071) 23 67 22 21", "Orders": [ { - "OrderID": 10280, - "EmployeeID": 2, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-09-11T00:00:00", - "ShippedDate": "1996-09-12T00:00:00", - "ShipVia": 1, - "Freight": 8.98, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", + "OrderID": 10252, + "EmployeeID": 4, + "OrderDate": "1996-07-09T00:00:00", + "RequiredDate": "1996-08-06T00:00:00", + "ShippedDate": "1996-07-11T00:00:00", + "ShipVia": 2, + "Freight": 51.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 22000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 20, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 25, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10281, + "OrderID": 10302, "EmployeeID": 4, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-08-28T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 2.94, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderDate": "1996-09-10T00:00:00", + "RequiredDate": "1996-10-08T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 20000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 1, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 6, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 12, "Discount": 0 } ] }, { - "OrderID": 10282, - "EmployeeID": 4, - "OrderDate": "1996-08-15T00:00:00", - "RequiredDate": "1996-09-12T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10458, + "EmployeeID": 7, + "OrderDate": "1997-02-26T00:00:00", + "RequiredDate": "1997-03-26T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 147.06, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 16000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 6, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10283, - "EmployeeID": 3, - "OrderDate": "1996-08-16T00:00:00", - "RequiredDate": "1996-09-13T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", - "ShipVia": 3, - "Freight": 84.81, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 15, - "UnitPrice": 12.4, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 35, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 3, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10284, - "EmployeeID": 4, - "OrderDate": "1996-08-19T00:00:00", - "RequiredDate": "1996-09-16T00:00:00", - "ShippedDate": "1996-08-27T00:00:00", - "ShipVia": 1, - "Freight": 76.56, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10463, + "EmployeeID": 5, + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-06T00:00:00", + "ShipVia": 3, + "Freight": 14.78, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 21000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 44, - "UnitPrice": 15.5, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 21, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 67, + "ProductID": 42, "UnitPrice": 11.2, - "Quantity": 5, - "Discount": 0.25 + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10285, - "EmployeeID": 1, - "OrderDate": "1996-08-20T00:00:00", - "RequiredDate": "1996-09-17T00:00:00", - "ShippedDate": "1996-08-26T00:00:00", - "ShipVia": 2, - "Freight": 76.83, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10475, + "EmployeeID": 9, + "OrderDate": "1997-03-14T00:00:00", + "RequiredDate": "1997-04-11T00:00:00", + "ShippedDate": "1997-04-04T00:00:00", + "ShipVia": 1, + "Freight": 68.52, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, + "Discount": 0.16 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 36, - "Discount": 0.2 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 42, + "Discount": 0.16 } ] }, { - "OrderID": 10286, - "EmployeeID": 8, - "OrderDate": "1996-08-21T00:00:00", - "RequiredDate": "1996-09-18T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", + "OrderID": 10767, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", "ShipVia": 3, - "Freight": 229.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 1.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 44000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 100, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10287, - "EmployeeID": 8, - "OrderDate": "1996-08-22T00:00:00", - "RequiredDate": "1996-09-19T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", - "ShipVia": 3, - "Freight": 12.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10841, + "EmployeeID": 5, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", + "ShipVia": 2, + "Freight": 424.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 27000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, "Quantity": 15, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10288, - "EmployeeID": 4, - "OrderDate": "1996-08-23T00:00:00", - "RequiredDate": "1996-09-20T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", - "ShipVia": 1, - "Freight": 7.45, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10846, + "EmployeeID": 2, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 56.46, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 15000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 22000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10289, - "EmployeeID": 7, - "OrderDate": "1996-08-26T00:00:00", - "RequiredDate": "1996-09-23T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", + "OrderID": 10885, + "EmployeeID": 6, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 3, - "Freight": 22.77, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "Freight": 5.64, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 40000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 8, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, "Quantity": 30, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 9, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 25, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10290, - "EmployeeID": 8, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", - "ShipVia": 1, - "Freight": 79.7, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderID": 10930, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 3, + "Freight": 15.55, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 17000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 15, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 15, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.2 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 11035, + "EmployeeID": 2, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 0.17, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 30000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10291, - "EmployeeID": 6, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-04T00:00:00", + "OrderID": 11038, + "EmployeeID": 1, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", "ShipVia": 2, - "Freight": 6.4, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 29.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 44000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, + "Discount": 0 } ] } ] }, { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10292, - "EmployeeID": 1, - "OrderDate": "1996-08-28T00:00:00", - "RequiredDate": "1996-09-25T00:00:00", - "ShippedDate": "1996-09-02T00:00:00", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", + "CustomerID": "CHOPS", + "Company": "Chop-suey Chinese", + "ContactName": "Yang Wang", "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", + "Address": "Hauptstr. 29", + "City": "Bern", + "PostalCode": 3012, + "Country": "Switzerland", + "Phone": "0452-076545", + "Fax": "0452-076546", "Orders": [ { - "OrderID": 10293, - "EmployeeID": 1, - "OrderDate": "1996-08-29T00:00:00", - "RequiredDate": "1996-09-26T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 3, - "Freight": 21.18, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10254, + "EmployeeID": 5, + "OrderDate": "1996-07-11T00:00:00", + "RequiredDate": "1996-08-08T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 2, + "Freight": 22.98, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 12, - "Discount": 0 - }, { "ProductID": 24, "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0 + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 5, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 21, + "Discount": 0.16 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10294, - "EmployeeID": 4, - "OrderDate": "1996-08-30T00:00:00", - "RequiredDate": "1996-09-27T00:00:00", - "ShippedDate": "1996-09-05T00:00:00", + "OrderID": 10370, + "EmployeeID": 6, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-27T00:00:00", "ShipVia": 2, - "Freight": 147.26, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 1.17, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { "ProductID": 1, "UnitPrice": 14.4, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, "Quantity": 15, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 21, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ - { - "OrderID": 10295, - "EmployeeID": 2, - "OrderDate": "1996-09-02T00:00:00", - "RequiredDate": "1996-09-30T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", - "ShipVia": 2, - "Freight": 1.15, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 4, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10296, + "OrderID": 10519, "EmployeeID": 6, - "OrderDate": "1996-09-03T00:00:00", - "RequiredDate": "1996-10-01T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 1, - "Freight": 0.12, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderDate": "1997-04-28T00:00:00", + "RequiredDate": "1997-05-26T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 91.76, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10297, - "EmployeeID": 5, - "OrderDate": "1996-09-04T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", - "ShipVia": 2, - "Freight": 5.74, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10731, + "EmployeeID": 7, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 1, + "Freight": 96.65, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10298, - "EmployeeID": 6, - "OrderDate": "1996-09-05T00:00:00", - "RequiredDate": "1996-10-03T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 2, - "Freight": 168.22, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10746, + "EmployeeID": 1, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 3, + "Freight": 31.43, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10299, + "OrderID": 10966, "EmployeeID": 4, - "OrderDate": "1996-09-06T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-13T00:00:00", - "ShipVia": 2, - "Freight": 29.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 27.19, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10300, - "EmployeeID": 2, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", - "ShipVia": 2, - "Freight": 17.68, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 11029, + "EmployeeID": 4, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 47.84, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10301, - "EmployeeID": 8, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", + "OrderID": 11041, + "EmployeeID": 3, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", "ShipVia": 2, - "Freight": 45.08, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 48.22, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 30, "Discount": 0 } ] @@ -2444,1691 +1796,1226 @@ ] }, { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 27000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", + "CustomerID": "RICSU", + "Company": "Richter Supermarkt", + "ContactName": "Michael Holz", + "ContactTitle": "Sales Manager", + "Address": "Grenzacherweg 237", + "City": "Genève", + "PostalCode": 1203, + "Country": "Switzerland", + "Phone": "0897-034214", + "Fax": "0897-034215", "Orders": [ { - "OrderID": 10302, - "EmployeeID": 4, - "OrderDate": "1996-09-10T00:00:00", - "RequiredDate": "1996-10-08T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 20000, - "ShipCountry": "Belgium", + "OrderID": 10255, + "EmployeeID": 9, + "OrderDate": "1996-07-12T00:00:00", + "RequiredDate": "1996-08-09T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", + "ShipVia": 3, + "Freight": 148.33, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 40, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 28, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 12, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10303, - "EmployeeID": 7, - "OrderDate": "1996-09-11T00:00:00", - "RequiredDate": "1996-10-09T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", + "OrderID": 10419, + "EmployeeID": 4, + "OrderDate": "1997-01-20T00:00:00", + "RequiredDate": "1997-02-17T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", "ShipVia": 2, - "Freight": 107.83, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 137.35, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10304, + "OrderID": 10537, "EmployeeID": 1, - "OrderDate": "1996-09-12T00:00:00", - "RequiredDate": "1996-10-10T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", - "ShipVia": 2, - "Freight": 63.79, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", + "ShipVia": 1, + "Freight": 78.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 10, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ - { - "OrderID": 10305, - "EmployeeID": 8, - "OrderDate": "1996-09-13T00:00:00", - "RequiredDate": "1996-10-11T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 3, - "Freight": 257.62, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10306, - "EmployeeID": 1, - "OrderDate": "1996-09-16T00:00:00", - "RequiredDate": "1996-10-14T00:00:00", - "ShippedDate": "1996-09-23T00:00:00", - "ShipVia": 3, - "Freight": 7.56, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10666, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", + "ShipVia": 2, + "Freight": 232.42, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, + "ProductID": 65, + "UnitPrice": 21.05, "Quantity": 10, "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 5, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10307, - "EmployeeID": 2, - "OrderDate": "1996-09-17T00:00:00", - "RequiredDate": "1996-10-15T00:00:00", - "ShippedDate": "1996-09-25T00:00:00", - "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10751, + "EmployeeID": 3, + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-12-03T00:00:00", + "ShipVia": 3, + "Freight": 130.79, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ - { - "OrderID": 10308, - "EmployeeID": 7, - "OrderDate": "1996-09-18T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-24T00:00:00", - "ShipVia": 3, - "Freight": 1.61, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 1, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 5, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10309, + "OrderID": 10758, "EmployeeID": 3, - "OrderDate": "1996-09-19T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", - "ShipVia": 1, - "Freight": 47.3, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-04T00:00:00", + "ShipVia": 3, + "Freight": 138.17, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, + "ProductID": 26, + "UnitPrice": 31.23, "Quantity": 20, "Discount": 0 }, { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 20, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 3, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10310, - "EmployeeID": 8, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-18T00:00:00", - "ShippedDate": "1996-09-27T00:00:00", + "OrderID": 10931, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 17.52, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "Freight": 13.6, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 10, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 42, + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 5, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10311, - "EmployeeID": 1, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-26T00:00:00", - "ShipVia": 3, - "Freight": 24.69, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10951, + "EmployeeID": 9, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 2, + "Freight": 30.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 11.2, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 6, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10312, - "EmployeeID": 2, - "OrderDate": "1996-09-23T00:00:00", - "RequiredDate": "1996-10-21T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", - "ShipVia": 2, - "Freight": 40.26, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 11033, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 84.74, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 4, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 24, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 36, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11075, + "EmployeeID": 8, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-05-03T00:00:00", + "ShipVia": 2, + "Freight": 6.19, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 20, - "Discount": 0 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "WELLI", + "Company": "Wellington Importadora", + "ContactName": "Paula Parente", + "ContactTitle": "Sales Manager", + "Address": "Rua do Mercado, 12", + "City": "Resende", + "Region": "SP", + "PostalCode": 8737, + "Country": "Brazil", + "Phone": "(14) 555-8122", + "Fax": "(14) 555-8123", "Orders": [ { - "OrderID": 10313, - "EmployeeID": 2, - "OrderDate": "1996-09-24T00:00:00", - "RequiredDate": "1996-10-22T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderID": 10256, + "EmployeeID": 3, + "OrderDate": "1996-07-15T00:00:00", + "RequiredDate": "1996-08-12T00:00:00", + "ShippedDate": "1996-07-17T00:00:00", "ShipVia": 2, - "Freight": 1.96, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 13.97, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10314, - "EmployeeID": 1, - "OrderDate": "1996-09-25T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", - "ShipVia": 2, - "Freight": 74.16, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10420, + "EmployeeID": 3, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 1, + "Freight": 44.12, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 40, + "ProductID": 9, + "UnitPrice": 77.6, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 2, "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 25, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 26000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10315, - "EmployeeID": 4, - "OrderDate": "1996-09-26T00:00:00", - "RequiredDate": "1996-10-24T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", + "OrderID": 10585, + "EmployeeID": 7, + "OrderDate": "1997-07-01T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", + "ShipVia": 1, + "Freight": 13.41, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10644, + "EmployeeID": 3, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", "ShipVia": 2, - "Freight": 41.76, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 80379, - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "Freight": 0.14, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 14, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 70, + "ProductID": 46, "UnitPrice": 12, - "Quantity": 30, - "Discount": 0 + "Quantity": 21, + "Discount": 0.1 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10316, - "EmployeeID": 1, - "OrderDate": "1996-09-27T00:00:00", - "RequiredDate": "1996-10-25T00:00:00", - "ShippedDate": "1996-10-08T00:00:00", - "ShipVia": 3, - "Freight": 150.15, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10803, + "EmployeeID": 4, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-06T00:00:00", + "ShipVia": 1, + "Freight": 55.23, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 24, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 70, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 15, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10317, - "EmployeeID": 6, - "OrderDate": "1996-09-30T00:00:00", - "RequiredDate": "1996-10-28T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", + "OrderID": 10809, + "EmployeeID": 7, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 4.87, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, + "ProductID": 52, + "UnitPrice": 7, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10318, - "EmployeeID": 8, - "OrderDate": "1996-10-01T00:00:00", - "RequiredDate": "1996-10-29T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderID": 10900, + "EmployeeID": 1, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 2, - "Freight": 4.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 30676, - "ShipPostalCode": 36000, - "ShipCountry": "UK", + "Freight": 1.66, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, - "Discount": 0 - }, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10905, + "EmployeeID": 9, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 13.72, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.06 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10319, - "EmployeeID": 7, - "OrderDate": "1996-10-02T00:00:00", - "RequiredDate": "1996-10-30T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", + "OrderID": 10935, + "EmployeeID": 4, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 3, - "Freight": 64.5, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 47.59, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 8, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 14, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 30, - "Discount": 0 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 8, + "Discount": 0.25 } ] } ] }, { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", + "CustomerID": "HILAA", + "Company": "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", "Orders": [ { - "OrderID": 10320, - "EmployeeID": 5, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-18T00:00:00", + "OrderID": 10257, + "EmployeeID": 4, + "OrderDate": "1996-07-16T00:00:00", + "RequiredDate": "1996-08-13T00:00:00", + "ShippedDate": "1996-07-22T00:00:00", "ShipVia": 3, - "Freight": 34.57, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 81.91, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10321, - "EmployeeID": 3, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-31T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", - "ShipVia": 2, - "Freight": 3.43, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 20137, - "ShipPostalCode": 41000, - "ShipCountry": "UK", + "OrderID": 10395, + "EmployeeID": 6, + "OrderDate": "1996-12-26T00:00:00", + "RequiredDate": "1997-01-23T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 1, + "Freight": 184.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 10, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 28, + "Discount": 0.1 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 70, + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10322, - "EmployeeID": 7, - "OrderDate": "1996-10-04T00:00:00", - "RequiredDate": "1996-11-01T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", + "OrderID": 10476, + "EmployeeID": 8, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", "ShipVia": 3, - "Freight": 0.4, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 4.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10323, - "EmployeeID": 4, - "OrderDate": "1996-10-07T00:00:00", - "RequiredDate": "1996-11-04T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 1, - "Freight": 4.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10486, + "EmployeeID": 1, + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "ShipVia": 2, + "Freight": 30.53, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 12.4, + "ProductID": 11, + "UnitPrice": 16.8, "Quantity": 5, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 4, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 16, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10324, - "EmployeeID": 9, - "OrderDate": "1996-10-08T00:00:00", - "RequiredDate": "1996-11-05T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", - "ShipVia": 1, - "Freight": 214.27, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10490, + "EmployeeID": 7, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-03T00:00:00", + "ShipVia": 2, + "Freight": 210.19, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.16 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 68, + "UnitPrice": 10, "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 80, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 36, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10325, - "EmployeeID": 1, - "OrderDate": "1996-10-09T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 3, - "Freight": 64.86, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10498, + "EmployeeID": 8, + "OrderDate": "1997-04-07T00:00:00", + "RequiredDate": "1997-05-05T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", + "ShipVia": 2, + "Freight": 29.75, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 9, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 4, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ + }, { - "OrderID": 10326, - "EmployeeID": 4, - "OrderDate": "1996-10-10T00:00:00", - "RequiredDate": "1996-11-07T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 2, - "Freight": 77.92, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", + "OrderID": 10552, + "EmployeeID": 2, + "OrderDate": "1997-05-29T00:00:00", + "RequiredDate": "1997-06-26T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 1, + "Freight": 83.22, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 16, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 18, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 50, + "UnitPrice": 7.75, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 43000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10327, - "EmployeeID": 2, - "OrderDate": "1996-10-11T00:00:00", - "RequiredDate": "1996-11-08T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", + "OrderID": 10601, + "EmployeeID": 7, + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", "ShipVia": 1, - "Freight": 63.36, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 17000, - "ShipCountry": "Sweden", + "Freight": 58.3, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10328, + "OrderID": 10613, "EmployeeID": 4, - "OrderDate": "1996-10-14T00:00:00", - "RequiredDate": "1996-11-11T00:00:00", - "ShippedDate": "1996-10-17T00:00:00", - "ShipVia": 3, - "Freight": 87.03, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 2, + "Freight": 8.11, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 40, "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10329, + "OrderID": 10641, "EmployeeID": 4, - "OrderDate": "1996-10-15T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", "ShipVia": 2, - "Freight": 191.67, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 179.61, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, - "Discount": 0.06 - }, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, + "Discount": 0 + } + ] + }, + { + "OrderID": 10705, + "EmployeeID": 9, + "OrderDate": "1997-10-15T00:00:00", + "RequiredDate": "1997-11-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 3.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 4, + "Discount": 0 + } + ] + }, { - "OrderID": 10330, + "OrderID": 10796, "EmployeeID": 3, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", "ShipVia": 1, - "Freight": 12.75, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, + "Freight": 26.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, "ShipCountry": "Venezuela", "OrderDetails": [ { "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 50, - "Discount": 0.16 + "UnitPrice": 31.23, + "Quantity": 21, + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10331, - "EmployeeID": 9, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-27T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", - "ShipVia": 1, - "Freight": 10.19, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 20000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10332, - "EmployeeID": 3, - "OrderDate": "1996-10-17T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", - "ShipVia": 2, - "Freight": 52.84, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 28000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 40, - "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 35, "Discount": 0.2 }, { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 16, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 24, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10333, - "EmployeeID": 5, - "OrderDate": "1996-10-18T00:00:00", - "RequiredDate": "1996-11-15T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", - "ShipVia": 3, - "Freight": 0.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10863, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 30.26, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10334, - "EmployeeID": 8, - "OrderDate": "1996-10-21T00:00:00", - "RequiredDate": "1996-11-18T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", - "ShipVia": 2, - "Freight": 8.56, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10901, + "EmployeeID": 4, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", + "ShipVia": 1, + "Freight": 62.09, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 8, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10335, - "EmployeeID": 7, - "OrderDate": "1996-10-22T00:00:00", - "RequiredDate": "1996-11-19T00:00:00", - "ShippedDate": "1996-10-24T00:00:00", - "ShipVia": 2, - "Freight": 42.11, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10957, + "EmployeeID": 8, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 105.36, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 7, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10960, + "EmployeeID": 3, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 2.08, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 48, - "Discount": 0.2 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10336, - "EmployeeID": 7, - "OrderDate": "1996-10-23T00:00:00", - "RequiredDate": "1996-11-20T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", - "ShipVia": 2, - "Freight": 15.51, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10976, + "EmployeeID": 1, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 1, + "Freight": 37.97, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10337, - "EmployeeID": 4, - "OrderDate": "1996-10-24T00:00:00", - "RequiredDate": "1996-11-21T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", - "ShipVia": 3, - "Freight": 108.26, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 11055, + "EmployeeID": 7, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", + "ShipVia": 2, + "Freight": 120.92, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 24, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, + "ProductID": 51, + "UnitPrice": 53, "Quantity": 20, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] @@ -4136,625 +3023,475 @@ ] }, { - "CustomerID": "OLDWO", - "Company": "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": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", "Orders": [ { - "OrderID": 10338, - "EmployeeID": 4, - "OrderDate": "1996-10-25T00:00:00", - "RequiredDate": "1996-11-22T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", - "ShipVia": 3, - "Freight": 84.21, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 20, - "Discount": 0 + "OrderID": 10258, + "EmployeeID": 1, + "OrderDate": "1996-07-17T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 1, + "Freight": 140.51, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 50, + "Discount": 0.2 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 15, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 65, + "Discount": 0.2 + }, + { + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 40000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10339, - "EmployeeID": 2, - "OrderDate": "1996-10-28T00:00:00", - "RequiredDate": "1996-11-25T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 15.66, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "OrderID": 10263, + "EmployeeID": 9, + "OrderDate": "1996-07-23T00:00:00", + "RequiredDate": "1996-08-20T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 146.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 10, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 28, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 36, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10340, + "OrderID": 10351, "EmployeeID": 1, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 166.31, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 162.33, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 20, "Discount": 0.06 }, { "ProductID": 41, "UnitPrice": 7.7, - "Quantity": 12, + "Quantity": 13, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 77, "Discount": 0.06 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 40, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 10, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10341, - "EmployeeID": 7, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", - "ShipVia": 3, - "Freight": 26.78, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10368, + "EmployeeID": 2, + "OrderDate": "1996-11-29T00:00:00", + "RequiredDate": "1996-12-27T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 101.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 8, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 13, + "Discount": 0.1 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10342, + "OrderID": 10382, "EmployeeID": 4, - "OrderDate": "1996-10-30T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 54.83, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 24, - "Discount": 0.2 + "OrderDate": "1996-12-13T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1996-12-16T00:00:00", + "ShipVia": 1, + "Freight": 94.77, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 32, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 56, - "Discount": 0.2 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10343, - "EmployeeID": 4, - "OrderDate": "1996-10-31T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-11-06T00:00:00", + "OrderID": 10390, + "EmployeeID": 6, + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-26T00:00:00", "ShipVia": 1, - "Freight": 110.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 126.38, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 68, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 4, - "Discount": 0.06 + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 76, + "ProductID": 35, "UnitPrice": 14.4, - "Quantity": 15, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 45, "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10344, - "EmployeeID": 4, - "OrderDate": "1996-11-01T00:00:00", - "RequiredDate": "1996-11-29T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", + "OrderID": 10402, + "EmployeeID": 8, + "OrderDate": "1997-01-02T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", "ShipVia": 2, - "Freight": 23.29, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 67.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 35, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 65, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10345, - "EmployeeID": 2, - "OrderDate": "1996-11-04T00:00:00", - "RequiredDate": "1996-12-02T00:00:00", - "ShippedDate": "1996-11-11T00:00:00", - "ShipVia": 2, - "Freight": 249.06, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10430, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-03T00:00:00", + "ShipVia": 1, + "Freight": 458.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 80, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 9, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10346, + "OrderID": 10442, "EmployeeID": 3, - "OrderDate": "1996-11-05T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 142.08, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderDate": "1997-02-11T00:00:00", + "RequiredDate": "1997-03-11T00:00:00", + "ShippedDate": "1997-02-18T00:00:00", + "ShipVia": 2, + "Freight": 47.94, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 36, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 80, + "Discount": 0 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10347, - "EmployeeID": 4, - "OrderDate": "1996-11-06T00:00:00", - "RequiredDate": "1996-12-04T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 3.1, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10514, + "EmployeeID": 3, + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 2, + "Freight": 789.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 39, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 4, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 39, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0.16 + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10348, - "EmployeeID": 4, - "OrderDate": "1996-11-07T00:00:00", - "RequiredDate": "1996-12-05T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", - "ShipVia": 2, - "Freight": 0.78, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10571, + "EmployeeID": 8, + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 3, + "Freight": 26.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 11, "Discount": 0.16 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 25, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10349, - "EmployeeID": 7, - "OrderDate": "1996-11-08T00:00:00", - "RequiredDate": "1996-12-06T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", + "OrderID": 10595, + "EmployeeID": 2, + "OrderDate": "1997-07-10T00:00:00", + "RequiredDate": "1997-08-07T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", "ShipVia": 1, - "Freight": 8.63, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 96.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10350, - "EmployeeID": 6, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", - "ShipVia": 2, - "Freight": 64.19, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.25 + }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 120, + "Discount": 0.25 }, { "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 18, - "Discount": 0.1 + "UnitPrice": 36, + "Quantity": 65, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10351, - "EmployeeID": 1, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 162.33, + "OrderID": 10633, + "EmployeeID": 7, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-18T00:00:00", + "ShipVia": 3, + "Freight": 477.9, "ShipName": "Ernst Handel", "ShipAddress": "Kirchgasse 6", "ShipCity": "Graz", @@ -4762,1247 +3499,992 @@ "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 13, + "UnitPrice": 6, "Quantity": 13, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 77, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 80, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10352, - "EmployeeID": 3, - "OrderDate": "1996-11-12T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-18T00:00:00", - "ShipVia": 3, - "Freight": 1.3, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10667, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 78.09, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 14, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10353, - "EmployeeID": 7, - "OrderDate": "1996-11-13T00:00:00", - "RequiredDate": "1996-12-11T00:00:00", - "ShippedDate": "1996-11-25T00:00:00", - "ShipVia": 3, - "Freight": 360.63, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, + "OrderID": 10698, + "EmployeeID": 4, + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-17T00:00:00", + "ShipVia": 1, + "Freight": 272.47, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 11, - "UnitPrice": 16.8, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.06 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 12, - "Discount": 0.2 + "Discount": 0.06 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 65, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 8, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10354, - "EmployeeID": 8, - "OrderDate": "1996-11-14T00:00:00", - "RequiredDate": "1996-12-12T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", + "OrderID": 10764, + "EmployeeID": 6, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", "ShipVia": 3, - "Freight": 53.8, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 145.45, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 4, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 130, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 12000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10355, - "EmployeeID": 6, - "OrderDate": "1996-11-15T00:00:00", - "RequiredDate": "1996-12-13T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 41.95, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 31000, - "ShipCountry": "UK", + "OrderID": 10771, + "EmployeeID": 9, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 2, + "Freight": 11.19, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10356, - "EmployeeID": 6, - "OrderDate": "1996-11-18T00:00:00", - "RequiredDate": "1996-12-16T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 2, - "Freight": 36.71, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10773, + "EmployeeID": 1, + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1998-01-08T00:00:00", + "ShippedDate": "1997-12-16T00:00:00", + "ShipVia": 3, + "Freight": 96.43, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 33, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 12, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 70, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 7, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10357, + "OrderID": 10776, "EmployeeID": 1, - "OrderDate": "1996-11-19T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1998-01-12T00:00:00", + "ShippedDate": "1997-12-18T00:00:00", "ShipVia": 3, - "Freight": 34.88, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 351.53, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 16, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 8, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10358, - "EmployeeID": 5, - "OrderDate": "1996-11-20T00:00:00", - "RequiredDate": "1996-12-18T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 1, - "Freight": 19.64, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 12, "Discount": 0.06 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 27, "Discount": 0.06 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 120, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10359, - "EmployeeID": 5, - "OrderDate": "1996-11-21T00:00:00", - "RequiredDate": "1996-12-19T00:00:00", - "ShippedDate": "1996-11-26T00:00:00", - "ShipVia": 3, - "Freight": 288.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 43000, - "ShipCountry": "UK", + "OrderID": 10795, + "EmployeeID": 8, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-20T00:00:00", + "ShipVia": 2, + "Freight": 126.66, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 56, - "Discount": 0.06 - }, - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 70, - "Discount": 0.06 + "UnitPrice": 17.45, + "Quantity": 65, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10360, - "EmployeeID": 4, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 3, - "Freight": 131.7, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10836, + "EmployeeID": 7, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 1, + "Freight": 411.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 52, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 35, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 10, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 35, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 28, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10361, - "EmployeeID": 1, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", + "OrderID": 10854, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-05T00:00:00", "ShipVia": 2, - "Freight": 183.17, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 100.22, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 54, - "Discount": 0.1 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 100, + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 55, - "Discount": 0.1 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 65, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10362, + "OrderID": 10895, "EmployeeID": 3, - "OrderDate": "1996-11-25T00:00:00", - "RequiredDate": "1996-12-23T00:00:00", - "ShippedDate": "1996-11-28T00:00:00", + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 1, - "Freight": 96.04, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 162.75, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 50, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 110, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 20, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 91, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 100, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10363, - "EmployeeID": 4, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1996-12-24T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", + "OrderID": 10968, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-01T00:00:00", "ShipVia": 3, - "Freight": 30.54, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 74.6, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 12, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 12, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 46000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10364, - "EmployeeID": 1, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", - "ShipVia": 1, - "Freight": 71.97, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 10000, - "ShipCountry": "UK", + "OrderID": 10979, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-03-31T00:00:00", + "ShipVia": 2, + "Freight": 353.07, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 30, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 5, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10365, - "EmployeeID": 3, - "OrderDate": "1996-11-27T00:00:00", - "RequiredDate": "1996-12-25T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 2, - "Freight": 22, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 24, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 80, "Discount": 0 - } - ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ - { - "OrderID": 10366, - "EmployeeID": 8, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1996-12-30T00:00:00", - "ShipVia": 2, - "Freight": 10.14, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", - "OrderDetails": [ + }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 5, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10367, - "EmployeeID": 7, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1996-12-26T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 10990, + "EmployeeID": 2, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", "ShipVia": 3, - "Freight": 13.55, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 117.61, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 36, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 65, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 18, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 60, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 65, + "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 66, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10368, - "EmployeeID": 2, - "OrderDate": "1996-11-29T00:00:00", - "RequiredDate": "1996-12-27T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 2, - "Freight": 101.95, + "OrderID": 11008, + "EmployeeID": 7, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-05-09T00:00:00", + "ShipVia": 3, + "Freight": 79.46, "ShipName": "Ernst Handel", "ShipAddress": "Kirchgasse 6", "ShipCity": "Graz", "ShipPostalCode": 8010, "ShipCountry": "Austria", "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 5, - "Discount": 0.1 - }, { "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 13, - "Discount": 0.1 + "UnitPrice": 45.6, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 90, + "Discount": 0.06 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 21, + "Discount": 0 + } + ] + }, { - "OrderID": 10369, - "EmployeeID": 8, - "OrderDate": "1996-12-02T00:00:00", - "RequiredDate": "1996-12-30T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", + "OrderID": 11017, + "EmployeeID": 9, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 2, - "Freight": 195.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 754.26, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 20, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 110, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10370, - "EmployeeID": 6, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-27T00:00:00", + "OrderID": 11072, + "EmployeeID": 4, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-08-02T00:00:00", "ShipVia": 2, - "Freight": 1.17, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 258.64, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 22, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 130, + "Discount": 0 } ] } - ], - "Fax": "0452-076545" + ] }, { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", + "CustomerID": "CENTC", + "Company": "Centro comercial Moctezuma", + "ContactName": "Francisco Chang", + "ContactTitle": "Marketing Manager", + "Address": "Sierras de Granada 9993", + "City": "México D.F.", + "PostalCode": 5022, + "Country": "Mexico", + "Phone": "(5) 555-3392", + "Fax": "(5) 555-7293", "Orders": [ { - "OrderID": 10371, - "EmployeeID": 1, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", - "ShipVia": 1, - "Freight": 0.45, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10259, + "EmployeeID": 4, + "OrderDate": "1996-07-18T00:00:00", + "RequiredDate": "1996-08-15T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", + "ShipVia": 3, + "Freight": 3.25, + "ShipName": "Centro comercial Moctezuma", + "ShipAddress": "Sierras de Granada 9993", + "ShipCity": "México D.F.", + "ShipPostalCode": 5022, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 1, + "Discount": 0 } ] } ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", + "CustomerID": "OTTIK", + "Company": "Ottilies Käseladen", + "ContactName": "Henriette Pfalzheim", + "ContactTitle": "Owner", + "Address": "Mehrheimerstr. 369", + "City": "Köln", + "PostalCode": 50739, + "Country": "Germany", + "Phone": "0221-0644327", + "Fax": "0221-0765721", "Orders": [ { - "OrderID": 10372, - "EmployeeID": 5, - "OrderDate": "1996-12-04T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 2, - "Freight": 890.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10260, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-29T00:00:00", + "ShipVia": 1, + "Freight": 55.09, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 12, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 16, "Discount": 0.25 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 70, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, "Discount": 0.25 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 42, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 21, "Discount": 0.25 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10373, - "EmployeeID": 4, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-11T00:00:00", - "ShipVia": 3, - "Freight": 124.12, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10407, + "EmployeeID": 2, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-04T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", + "ShipVia": 2, + "Freight": 91.48, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 80, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10374, - "EmployeeID": 1, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 3, - "Freight": 3.94, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 10.6, + "ProductID": 71, + "UnitPrice": 17.2, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10375, - "EmployeeID": 3, - "OrderDate": "1996-12-06T00:00:00", - "RequiredDate": "1997-01-03T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", + "OrderID": 10508, + "EmployeeID": 1, + "OrderDate": "1997-04-16T00:00:00", + "RequiredDate": "1997-05-14T00:00:00", + "ShippedDate": "1997-05-13T00:00:00", "ShipVia": 2, - "Freight": 20.12, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "Freight": 4.99, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, + "ProductID": 39, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 10000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10376, - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 2, - "Freight": 20.39, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 39000, - "ShipCountry": "Canada", + "OrderID": 10554, + "EmployeeID": 4, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 3, + "Freight": 120.97, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 42, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 11000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10377, - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 22.21, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", - "OrderDetails": [ + }, { - "ProductID": 28, - "UnitPrice": 36.4, + "ProductID": 23, + "UnitPrice": 9, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.06 }, { - "ProductID": 39, - "UnitPrice": 14.4, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 13000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10378, - "EmployeeID": 5, - "OrderDate": "1996-12-10T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-19T00:00:00", + "OrderID": 10580, + "EmployeeID": 4, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-01T00:00:00", "ShipVia": 3, - "Freight": 5.44, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 49000, - "ShipCountry": "Sweden", + "Freight": 75.89, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 6, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 30, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10684, + "EmployeeID": 3, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 1, + "Freight": 145.63, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10766, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 157.55, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10833, + "EmployeeID": 6, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 2, + "Freight": 71.49, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 9, + "Discount": 0.1 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 9, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10999, + "EmployeeID": 6, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-01T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 96.35, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 21, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 11020, + "EmployeeID": 2, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 2, + "Freight": 43.3, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 24, + "Discount": 0.16 } ] } @@ -6022,13 +4504,13 @@ "Fax": "(21) 555-4545", "Orders": [ { - "OrderID": 10379, - "EmployeeID": 2, - "OrderDate": "1996-12-11T00:00:00", - "RequiredDate": "1997-01-08T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 1, - "Freight": 45.03, + "OrderID": 10261, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-30T00:00:00", + "ShipVia": 2, + "Freight": 3.05, "ShipName": "Que Delícia", "ShipAddress": "Rua da Panificadora, 12", "ShipCity": "Sao Paulo", @@ -6037,1063 +4519,811 @@ "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 16, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 35, + "UnitPrice": 14.4, "Quantity": 20, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10380, - "EmployeeID": 8, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", - "ShipVia": 3, - "Freight": 35.03, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10291, + "EmployeeID": 6, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-04T00:00:00", + "ShipVia": 2, + "Freight": 6.4, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, + "ProductID": 13, + "UnitPrice": 4.8, "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 6, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 24, "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10381, - "EmployeeID": 3, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", + "OrderID": 10379, + "EmployeeID": 2, + "OrderDate": "1996-12-11T00:00:00", + "RequiredDate": "1997-01-08T00:00:00", "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 7.99, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "ShipVia": 1, + "Freight": 45.03, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 14, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 16, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10382, - "EmployeeID": 4, - "OrderDate": "1996-12-13T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1996-12-16T00:00:00", + "OrderID": 10421, + "EmployeeID": 8, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-03-04T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", "ShipVia": 1, - "Freight": 94.77, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 99.23, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 32, - "Discount": 0 - }, - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 9, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 4, + "Discount": 0.16 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 14, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 50, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 31000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10383, - "EmployeeID": 8, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-18T00:00:00", - "ShipVia": 3, - "Freight": 34.24, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 19000, - "ShipCountry": "UK", + "OrderID": 10587, + "EmployeeID": 1, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 1, + "Freight": 62.52, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, + "ProductID": 77, + "UnitPrice": 13, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 18000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10384, - "EmployeeID": 3, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 3, - "Freight": 168.64, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "OrderID": 10647, + "EmployeeID": 4, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 2, + "Freight": 45.54, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 28, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 15, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10385, - "EmployeeID": 1, - "OrderDate": "1996-12-17T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1996-12-23T00:00:00", + "OrderID": 10720, + "EmployeeID": 8, + "OrderDate": "1997-10-28T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 30.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 9.53, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10794, + "EmployeeID": 6, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 1, + "Freight": 21.49, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10386, - "EmployeeID": 9, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-25T00:00:00", - "ShipVia": 3, - "Freight": 13.99, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", + "OrderID": 10989, + "EmployeeID": 2, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 34.76, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 11, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, "Discount": 0 } ] } - ], - "Fax": "(11) 555-9857" + ] }, { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", + "ContactTitle": "Sales Associate", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", "Orders": [ { - "OrderID": 10387, - "EmployeeID": 1, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-15T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 2, - "Freight": 93.63, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10262, + "EmployeeID": 8, + "OrderDate": "1996-07-22T00:00:00", + "RequiredDate": "1996-08-19T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", + "ShipVia": 3, + "Freight": 48.29, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 17000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10388, - "EmployeeID": 2, - "OrderDate": "1996-12-19T00:00:00", - "RequiredDate": "1997-01-16T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 1, - "Freight": 34.86, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 43000, - "ShipCountry": "UK", + "OrderID": 10272, + "EmployeeID": 6, + "OrderDate": "1996-08-02T00:00:00", + "RequiredDate": "1996-08-30T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", + "ShipVia": 2, + "Freight": 98.03, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 7.6, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 40, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 14000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10389, + "OrderID": 10294, "EmployeeID": 4, - "OrderDate": "1996-12-20T00:00:00", - "RequiredDate": "1997-01-17T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", + "OrderDate": "1996-08-30T00:00:00", + "RequiredDate": "1996-09-27T00:00:00", + "ShippedDate": "1996-09-05T00:00:00", "ShipVia": 2, - "Freight": 47.42, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 28000, - "ShipCountry": "Canada", + "Freight": 147.26, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 16, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, + "ProductID": 17, + "UnitPrice": 31.2, "Quantity": 15, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 20, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10390, - "EmployeeID": 6, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-26T00:00:00", - "ShipVia": 1, - "Freight": 126.38, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10314, + "EmployeeID": 1, + "OrderDate": "1996-09-25T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 74.16, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0.1 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 32, + "UnitPrice": 25.6, "Quantity": 40, "Discount": 0.1 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 45, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 24, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 25, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10391, - "EmployeeID": 3, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-31T00:00:00", + "OrderID": 10316, + "EmployeeID": 1, + "OrderDate": "1996-09-27T00:00:00", + "RequiredDate": "1996-10-25T00:00:00", + "ShippedDate": "1996-10-08T00:00:00", "ShipVia": 3, - "Freight": 5.45, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 150.15, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 18, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 70, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10392, - "EmployeeID": 2, - "OrderDate": "1996-12-24T00:00:00", - "RequiredDate": "1997-01-21T00:00:00", - "ShippedDate": "1997-01-01T00:00:00", + "OrderID": 10346, + "EmployeeID": 3, + "OrderDate": "1996-11-05T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", "ShipVia": 3, - "Freight": 122.46, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 142.08, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 50, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10393, + "OrderID": 10401, "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 3, - "Freight": 126.56, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", + "ShipVia": 1, + "Freight": 12.51, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 42, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 7, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 70, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 32, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10394, - "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", + "OrderID": 10479, + "EmployeeID": 3, + "OrderDate": "1997-03-19T00:00:00", + "RequiredDate": "1997-04-16T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", "ShipVia": 3, - "Freight": 30.34, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "Freight": 708.95, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10395, - "EmployeeID": 6, - "OrderDate": "1996-12-26T00:00:00", - "RequiredDate": "1997-01-23T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 1, - "Freight": 184.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10564, + "EmployeeID": 4, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-08T00:00:00", + "ShippedDate": "1997-06-16T00:00:00", + "ShipVia": 3, + "Freight": 13.75, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 70, - "Discount": 0.1 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 8, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10396, + "OrderID": 10569, + "EmployeeID": 5, + "OrderDate": "1997-06-16T00:00:00", + "RequiredDate": "1997-07-14T00:00:00", + "ShippedDate": "1997-07-11T00:00:00", + "ShipVia": 1, + "Freight": 58.98, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10598, "EmployeeID": 1, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1997-01-06T00:00:00", + "OrderDate": "1997-07-14T00:00:00", + "RequiredDate": "1997-08-11T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", "ShipVia": 3, - "Freight": 135.35, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 44.42, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 50, "Discount": 0 }, { "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 21, + "UnitPrice": 21.5, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10397, + "OrderID": 10761, "EmployeeID": 5, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-24T00:00:00", - "ShippedDate": "1997-01-02T00:00:00", - "ShipVia": 1, - "Freight": 60.26, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 2, + "Freight": 18.66, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 42.4, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 18, - "Discount": 0.16 + "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10398, - "EmployeeID": 2, - "OrderDate": "1996-12-30T00:00:00", - "RequiredDate": "1997-01-27T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 89.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "OrderID": 10820, + "EmployeeID": 3, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 37.52, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 30, "Discount": 0 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10399, + "OrderID": 10852, "EmployeeID": 8, - "OrderDate": "1996-12-31T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", - "ShipVia": 3, - "Freight": 27.36, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 174.05, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 35, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 14, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10400, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderID": 10889, + "EmployeeID": 9, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 3, - "Freight": 83.93, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 25000, - "ShipCountry": "UK", + "Freight": 280.61, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 35, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10401, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", - "ShipVia": 1, - "Freight": 12.51, + "OrderID": 10988, + "EmployeeID": 3, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 61.14, "ShipName": "Rattlesnake Canyon Grocery", "ShipAddress": "2817 Milton Dr.", "ShipCity": "Albuquerque", @@ -7102,341 +5332,217 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 70, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11000, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 3, + "Freight": 55.12, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10402, - "EmployeeID": 8, - "OrderDate": "1997-01-02T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", + "OrderID": 11077, + "EmployeeID": 1, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-07-03T00:00:00", "ShipVia": 2, - "Freight": 67.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 8.53, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 60, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 24, + "Discount": 0.2 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 65, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 4, "Discount": 0 - } - ] - }, - { - "OrderID": 10403, - "EmployeeID": 4, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 73.79, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ + }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 1, + "Discount": 0 }, { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 70, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10404, - "EmployeeID": 2, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", - "ShipVia": 1, - "Freight": 155.97, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 1, + "Discount": 0.02 + }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 1, "Discount": 0.06 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 2, + "Discount": 0.1 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10405, - "EmployeeID": 1, - "OrderDate": "1997-01-06T00:00:00", - "RequiredDate": "1997-02-03T00:00:00", - "ShippedDate": "1997-01-22T00:00:00", - "ShipVia": 1, - "Freight": 34.82, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 50, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 1, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10406, - "EmployeeID": 7, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-13T00:00:00", - "ShipVia": 1, - "Freight": 108.04, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ + }, { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 10, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 1, + "Discount": 0.04 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 42, - "Discount": 0.1 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 2, + "Discount": 0.04 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 5, - "Discount": 0.1 + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 1, + "Discount": 0.04 }, { - "ProductID": 40, - "UnitPrice": 14.7, + "ProductID": 23, + "UnitPrice": 9, "Quantity": 2, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10407, - "EmployeeID": 2, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-04T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", - "ShipVia": 2, - "Freight": 91.48, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ + "Discount": 0 + }, { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 3, + "Discount": 0.02 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ - { - "OrderID": 10408, - "EmployeeID": 8, - "OrderDate": "1997-01-08T00:00:00", - "RequiredDate": "1997-02-05T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", - "ShipVia": 1, - "Freight": 11.26, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", - "OrderDetails": [ + }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 10, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 2, + "Discount": 0.04 + }, + { + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 2, + "Discount": 0.0099999998 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, "Discount": 0 } ] @@ -7444,1232 +5550,851 @@ ] }, { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ - { - "OrderID": 10409, - "EmployeeID": 3, - "OrderDate": "1997-01-09T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", - "ShipVia": 1, - "Freight": 29.83, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 43000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 33000, + "Country": "Sweden", + "Phone": "0695-34 67 21", + "Fax": "0695-34 67 22", "Orders": [ { - "OrderID": 10410, - "EmployeeID": 3, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", + "OrderID": 10264, + "EmployeeID": 6, + "OrderDate": "1996-07-24T00:00:00", + "RequiredDate": "1996-08-21T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", "ShipVia": 3, - "Freight": 2.4, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "Freight": 3.67, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 27000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 49, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 16, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 25, + "Discount": 0.16 } ] }, { - "OrderID": 10411, - "EmployeeID": 9, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-21T00:00:00", - "ShipVia": 3, - "Freight": 23.65, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10327, + "EmployeeID": 2, + "OrderDate": "1996-10-11T00:00:00", + "RequiredDate": "1996-11-08T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 63.36, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 17000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 25, "Discount": 0.2 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 40, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 50, "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10412, - "EmployeeID": 8, - "OrderDate": "1997-01-13T00:00:00", - "RequiredDate": "1997-02-10T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", - "ShipVia": 2, - "Freight": 3.77, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10378, + "EmployeeID": 5, + "OrderDate": "1996-12-10T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-19T00:00:00", + "ShipVia": 3, + "Freight": 5.44, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 49000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10413, + "OrderID": 10434, "EmployeeID": 3, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-02-13T00:00:00", "ShipVia": 2, - "Freight": 95.66, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 17.92, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 23000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0 }, { "ProductID": 76, "UnitPrice": 14.4, - "Quantity": 14, - "Discount": 0 + "Quantity": 18, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10414, - "EmployeeID": 2, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-17T00:00:00", - "ShipVia": 3, - "Freight": 21.48, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10460, + "EmployeeID": 8, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 1, + "Freight": 16.27, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 40000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 21, + "Discount": 0.25 }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 4, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10533, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-22T00:00:00", + "ShipVia": 1, + "Freight": 188.04, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 45000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 24, + "Discount": 0.06 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10415, - "EmployeeID": 3, - "OrderDate": "1997-01-15T00:00:00", - "RequiredDate": "1997-02-12T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", - "ShipVia": 1, - "Freight": 0.2, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "OrderID": 10561, + "EmployeeID": 2, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 2, + "Freight": 242.21, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 23000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 2, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10416, - "EmployeeID": 8, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 3, - "Freight": 22.72, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10703, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-10-20T00:00:00", + "ShipVia": 2, + "Freight": 152.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 28000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 20, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 10, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 20, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10417, - "EmployeeID": 4, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-28T00:00:00", - "ShipVia": 3, - "Freight": 70.29, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10762, + "EmployeeID": 3, + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 328.74, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 44000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 35, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10418, + "OrderID": 10774, "EmployeeID": 4, - "OrderDate": "1997-01-17T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", "ShipVia": 1, - "Freight": 17.55, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 48.2, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 55, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 16, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 2, + "Discount": 0.25 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 15, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10419, - "EmployeeID": 4, - "OrderDate": "1997-01-20T00:00:00", - "RequiredDate": "1997-02-17T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", - "ShipVia": 2, - "Freight": 137.35, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10824, + "EmployeeID": 8, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 1.23, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 39000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10420, - "EmployeeID": 3, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10880, + "EmployeeID": 7, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 1, - "Freight": 44.12, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 88.01, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 15000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 77.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.2 }, { "ProductID": 70, - "UnitPrice": 12, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.1 + "UnitPrice": 15, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10421, - "EmployeeID": 8, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-03-04T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10902, + "EmployeeID": 1, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", "ShipVia": 1, - "Freight": 99.23, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 44.15, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 11000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 4, - "Discount": 0.16 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 10, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 6, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10422, - "EmployeeID": 2, - "OrderDate": "1997-01-22T00:00:00", - "RequiredDate": "1997-02-19T00:00:00", - "ShippedDate": "1997-01-31T00:00:00", - "ShipVia": 1, - "Freight": 3.02, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10955, + "EmployeeID": 8, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 20000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 2, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10423, - "EmployeeID": 6, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", + "OrderID": 10977, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 3, - "Freight": 24.5, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 208.5, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 14, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 30000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10424, - "EmployeeID": 7, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-20T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 2, - "Freight": 370.61, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 22000, - "ShipCountry": "Canada", + "OrderID": 10980, + "EmployeeID": 4, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 1, + "Freight": 1.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0.2 - }, - { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 49, - "Discount": 0.2 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10425, - "EmployeeID": 6, - "OrderDate": "1997-01-24T00:00:00", - "RequiredDate": "1997-02-21T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 7.93, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10993, + "EmployeeID": 7, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 3, + "Freight": 8.81, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 50, "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 20, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10426, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-02-06T00:00:00", - "ShipVia": 1, - "Freight": 18.69, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 11001, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 2, + "Freight": 197.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 30000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 7, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10427, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 11050, + "EmployeeID": 8, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", "ShipVia": 2, - "Freight": 31.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 59.41, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 11000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 35, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", + "CustomerID": "BLONP", + "Company": "Blondesddsl père et fils", + "ContactName": "Frédérique Citeaux", + "ContactTitle": "Marketing Manager", + "Address": "24, place Kléber", + "City": "Strasbourg", + "PostalCode": 67000, + "Country": "France", + "Phone": "88.60.15.31", + "Fax": "88.60.15.32", "Orders": [ { - "OrderID": 10428, - "EmployeeID": 7, - "OrderDate": "1997-01-28T00:00:00", - "RequiredDate": "1997-02-25T00:00:00", - "ShippedDate": "1997-02-04T00:00:00", + "OrderID": 10265, + "EmployeeID": 2, + "OrderDate": "1996-07-25T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", "ShipVia": 1, - "Freight": 11.09, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 55.28, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10429, - "EmployeeID": 3, - "OrderDate": "1997-01-29T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderID": 10297, + "EmployeeID": 5, + "OrderDate": "1996-09-04T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", "ShipVia": 2, - "Freight": 56.63, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 5.74, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 40, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10430, + "OrderID": 10360, "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-03T00:00:00", - "ShipVia": 1, - "Freight": 458.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 131.7, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 50, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.2 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 28, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 47000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10431, - "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderID": 10436, + "EmployeeID": 3, + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-11T00:00:00", "ShipVia": 2, - "Freight": 44.17, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 49000, - "ShipCountry": "Canada", + "Freight": 156.66, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 47, - "UnitPrice": 7.6, + "ProductID": 64, + "UnitPrice": 26.6, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.1 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 24, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10432, + "OrderID": 10449, "EmployeeID": 3, - "OrderDate": "1997-01-31T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderDate": "1997-02-18T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-27T00:00:00", "ShipVia": 2, - "Freight": 4.34, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 53.3, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 10, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 40, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ - { - "OrderID": 10433, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", - "ShipVia": 3, - "Freight": 73.83, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", - "OrderDetails": [ + }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 28, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 23000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10434, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-02-13T00:00:00", - "ShipVia": 2, - "Freight": 17.92, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 23000, - "ShipCountry": "Sweden", + "OrderID": 10559, + "EmployeeID": 6, + "OrderDate": "1997-06-05T00:00:00", + "RequiredDate": "1997-07-03T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 1, + "Freight": 8.05, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 76, - "UnitPrice": 14.4, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 18, - "Discount": 0.16 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 38000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ + }, { - "OrderID": 10435, - "EmployeeID": 8, - "OrderDate": "1997-02-04T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", - "ShipVia": 2, - "Freight": 9.21, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "OrderID": 10566, + "EmployeeID": 9, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", + "ShipVia": 1, + "Freight": 88.4, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 10, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 18, + "Discount": 0.16 }, { - "ProductID": 72, - "UnitPrice": 27.8, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10436, - "EmployeeID": 3, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-11T00:00:00", - "ShipVia": 2, - "Freight": 156.66, + "OrderID": 10584, + "EmployeeID": 4, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 1, + "Freight": 59.14, "ShipName": "Blondel père et fils", "ShipAddress": "24, place Kléber", "ShipCity": "Strasbourg", @@ -8677,28 +6402,82 @@ "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10628, + "EmployeeID": 4, + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 30.36, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10679, + "EmployeeID": 8, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 27.94, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 40, - "Discount": 0.1 - }, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10826, + "EmployeeID": 6, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 1, + "Freight": 7.09, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, + "Discount": 0 } ] } @@ -8717,13 +6496,13 @@ "Fax": "981-443655", "Orders": [ { - "OrderID": 10437, - "EmployeeID": 8, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-12T00:00:00", - "ShipVia": 1, - "Freight": 19.97, + "OrderID": 10266, + "EmployeeID": 3, + "OrderDate": "1996-07-26T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 25.73, "ShipName": "Wartian Herkku", "ShipAddress": "Torikatu 38", "ShipCity": "Oulu", @@ -8731,669 +6510,449 @@ "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 12, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10438, - "EmployeeID": 3, - "OrderDate": "1997-02-06T00:00:00", - "RequiredDate": "1997-03-06T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 8.24, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "OrderID": 10270, + "EmployeeID": 1, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 1, + "Freight": 136.54, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 37000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10439, - "EmployeeID": 6, - "OrderDate": "1997-02-07T00:00:00", - "RequiredDate": "1997-03-07T00:00:00", - "ShippedDate": "1997-02-10T00:00:00", + "OrderID": 10320, + "EmployeeID": 5, + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-18T00:00:00", "ShipVia": 3, - "Freight": 4.07, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "Freight": 34.57, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 16, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10440, - "EmployeeID": 4, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-10T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 86.53, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10333, + "EmployeeID": 5, + "OrderDate": "1996-10-18T00:00:00", + "RequiredDate": "1996-11-15T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", + "ShipVia": 3, + "Freight": 0.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 45, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 49, - "Discount": 0.16 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 90, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 40, + "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10441, - "EmployeeID": 3, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-24T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10412, + "EmployeeID": 8, + "OrderDate": "1997-01-13T00:00:00", + "RequiredDate": "1997-02-10T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", "ShipVia": 2, - "Freight": 73.02, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 3.77, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 50, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10442, - "EmployeeID": 3, - "OrderDate": "1997-02-11T00:00:00", - "RequiredDate": "1997-03-11T00:00:00", - "ShippedDate": "1997-02-18T00:00:00", - "ShipVia": 2, - "Freight": 47.94, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10416, + "EmployeeID": 8, + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 3, + "Freight": 22.72, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 80, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 60, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10443, + "OrderID": 10437, "EmployeeID": 8, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-12T00:00:00", "ShipVia": 1, - "Freight": 13.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 19.97, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.2 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 12, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 15000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10444, - "EmployeeID": 3, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-21T00:00:00", - "ShipVia": 3, - "Freight": 3.5, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 22000, - "ShipCountry": "Sweden", + "OrderID": 10455, + "EmployeeID": 8, + "OrderDate": "1997-02-24T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 2, + "Freight": 180.45, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 15, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 8, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 71, + "UnitPrice": 17.2, "Quantity": 30, "Discount": 0 } ] }, { - "OrderID": 10445, - "EmployeeID": 3, - "OrderDate": "1997-02-13T00:00:00", - "RequiredDate": "1997-03-13T00:00:00", - "ShippedDate": "1997-02-20T00:00:00", - "ShipVia": 1, - "Freight": 9.3, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 18000, - "ShipCountry": "Sweden", + "OrderID": 10526, + "EmployeeID": 4, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-15T00:00:00", + "ShipVia": 2, + "Freight": 58.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0.16 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10446, - "EmployeeID": 6, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-02-19T00:00:00", - "ShipVia": 1, - "Freight": 14.68, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "OrderID": 10553, + "EmployeeID": 2, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-03T00:00:00", + "ShipVia": 2, + "Freight": 149.49, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 12, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 24, + "Discount": 0 }, { "ProductID": 31, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "UnitPrice": 12.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10447, - "EmployeeID": 4, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-03-07T00:00:00", + "OrderID": 10583, + "EmployeeID": 2, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 2, - "Freight": 68.66, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 7.28, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 40, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 35, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10448, + "OrderID": 10636, "EmployeeID": 4, - "OrderDate": "1997-02-17T00:00:00", - "RequiredDate": "1997-03-17T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", - "ShipVia": 2, - "Freight": 38.82, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 1.15, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 6, - "Discount": 0 - }, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0 + }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10449, - "EmployeeID": 3, - "OrderDate": "1997-02-18T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-27T00:00:00", - "ShipVia": 2, - "Freight": 53.3, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10750, + "EmployeeID": 9, + "OrderDate": "1997-11-21T00:00:00", + "RequiredDate": "1997-12-19T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 79.3, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 14, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 5, + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10450, - "EmployeeID": 8, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-19T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", - "ShipVia": 2, - "Freight": 7.23, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10781, + "EmployeeID": 2, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 3, + "Freight": 73.16, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0.2 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10451, - "EmployeeID": 4, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", + "OrderID": 11025, + "EmployeeID": 6, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", "ShipVia": 3, - "Freight": 189.09, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 29.17, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 - }, - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 28, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 55, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0.1 } ] @@ -9401,783 +6960,619 @@ ] }, { - "CustomerID": "SAVEA", - "Company": "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", + "CustomerID": "FRANK", + "Company": "Frankenversand", + "ContactName": "Peter Franken", + "ContactTitle": "Marketing Manager", + "Address": "Berliner Platz 43", + "City": "München", + "PostalCode": 80805, + "Country": "Germany", + "Phone": "089-0877310", + "Fax": "089-0877451", "Orders": [ { - "OrderID": 10452, - "EmployeeID": 8, - "OrderDate": "1997-02-20T00:00:00", - "RequiredDate": "1997-03-20T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", + "OrderID": 10267, + "EmployeeID": 4, + "OrderDate": "1996-07-29T00:00:00", + "RequiredDate": "1996-08-26T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", "ShipVia": 1, - "Freight": 140.26, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 208.58, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 100, - "Discount": 0.06 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 46000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10453, - "EmployeeID": 1, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", - "ShipVia": 2, - "Freight": 25.36, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 40000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10454, + "OrderID": 10337, "EmployeeID": 4, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-25T00:00:00", + "OrderDate": "1996-10-24T00:00:00", + "RequiredDate": "1996-11-21T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", "ShipVia": 3, - "Freight": 2.74, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 108.26, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10455, - "EmployeeID": 8, - "OrderDate": "1997-02-24T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 10342, + "EmployeeID": 4, + "OrderDate": "1996-10-30T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", "ShipVia": 2, - "Freight": 180.45, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 54.83, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 24, + "Discount": 0.2 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 50, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 56, + "Discount": 0.2 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 25, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10456, - "EmployeeID": 8, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 8.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10396, + "EmployeeID": 1, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1997-01-06T00:00:00", + "ShipVia": 3, + "Freight": 135.35, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 23, + "UnitPrice": 7.2, "Quantity": 40, - "Discount": 0.16 + "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, "Quantity": 21, - "Discount": 0.16 + "Discount": 0 } ] }, { - "OrderID": 10457, - "EmployeeID": 2, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-03-25T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", - "ShipVia": 1, - "Freight": 11.57, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10488, + "EmployeeID": 8, + "OrderDate": "1997-03-27T00:00:00", + "RequiredDate": "1997-04-24T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 59, "UnitPrice": 44, - "Quantity": 36, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0.2 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 45000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10458, - "EmployeeID": 7, - "OrderDate": "1997-02-26T00:00:00", - "RequiredDate": "1997-03-26T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", - "ShipVia": 3, - "Freight": 147.06, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 16000, - "ShipCountry": "Belgium", + "OrderID": 10560, + "EmployeeID": 8, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 1, + "Freight": 36.65, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, + "ProductID": 30, + "UnitPrice": 25.89, "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0 + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10459, - "EmployeeID": 4, - "OrderDate": "1997-02-27T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", + "OrderID": 10623, + "EmployeeID": 8, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", "ShipVia": 2, - "Freight": 25.09, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 97.18, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 3, "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 19000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10460, - "EmployeeID": 8, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 10653, + "EmployeeID": 1, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", "ShipVia": 1, - "Freight": 16.27, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 40000, - "ShipCountry": "Sweden", + "Freight": 93.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10461, - "EmployeeID": 1, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-05T00:00:00", - "ShipVia": 3, - "Freight": 148.61, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10670, + "EmployeeID": 4, + "OrderDate": "1997-09-16T00:00:00", + "RequiredDate": "1997-10-14T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 1, + "Freight": 203.48, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 32, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 28, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 60, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 38000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ - { - "OrderID": 10462, - "EmployeeID": 2, - "OrderDate": "1997-03-03T00:00:00", - "RequiredDate": "1997-03-31T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 1, - "Freight": 6.17, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 50000, - "ShipCountry": "UK", - "OrderDetails": [ + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 25, + "Discount": 0 + }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 1, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 21, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 34000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10463, + "OrderID": 10675, "EmployeeID": 5, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-06T00:00:00", - "ShipVia": 3, - "Freight": 14.78, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 21000, - "ShipCountry": "Belgium", + "OrderDate": "1997-09-19T00:00:00", + "RequiredDate": "1997-10-17T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", + "ShipVia": 2, + "Freight": 31.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 21, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 50, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10464, - "EmployeeID": 4, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10717, + "EmployeeID": 1, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 2, - "Freight": 89, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 59.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 16, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 32, + "Discount": 0.06 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 3, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 25, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10791, + "EmployeeID": 6, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-01T00:00:00", + "ShipVia": 2, + "Freight": 16.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 14, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 27.2, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10465, + "OrderID": 10859, "EmployeeID": 1, - "OrderDate": "1997-03-05T00:00:00", - "RequiredDate": "1997-04-02T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 3, - "Freight": 145.04, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 76.1, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0 + "UnitPrice": 4.5, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 45, - "UnitPrice": 7.6, + "ProductID": 64, + "UnitPrice": 33.25, "Quantity": 30, - "Discount": 0.1 + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10929, + "EmployeeID": 6, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 1, + "Freight": 33.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 50, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 77, "UnitPrice": 13, - "Quantity": 25, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10466, - "EmployeeID": 4, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-13T00:00:00", - "ShipVia": 1, - "Freight": 11.93, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderID": 11012, + "EmployeeID": 1, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 3, + "Freight": 242.95, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 36, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.06 } ] } - ], - "Fax": "(11) 555-7647" + ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "GROSR", + "Company": "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", "Orders": [ { - "OrderID": 10467, + "OrderID": 10268, "EmployeeID": 8, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderDate": "1996-07-30T00:00:00", + "RequiredDate": "1996-08-27T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 3, + "Freight": 66.29, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 12, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10468, - "EmployeeID": 3, - "OrderDate": "1997-03-07T00:00:00", - "RequiredDate": "1997-04-04T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", + "OrderID": 10785, + "EmployeeID": 1, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", "ShipVia": 3, - "Freight": 44.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 1.51, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 15, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 10, "Discount": 0 } ] } - ], - "Fax": "0555-09876" + ] }, { "CustomerID": "WHITC", @@ -10193,13 +7588,13 @@ "Fax": "(206) 555-4115", "Orders": [ { - "OrderID": 10469, - "EmployeeID": 1, - "OrderDate": "1997-03-10T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10269, + "EmployeeID": 5, + "OrderDate": "1996-07-31T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", "ShipVia": 1, - "Freight": 60.18, + "Freight": 4.56, "ShipName": "White Clover Markets", "ShipAddress": "1029 - 12th Ave. S.", "ShipCity": "Seattle", @@ -10208,525 +7603,464 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10470, + "OrderID": 10344, "EmployeeID": 4, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderDate": "1996-11-01T00:00:00", + "RequiredDate": "1996-11-29T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", "ShipVia": 2, - "Freight": 64.56, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 23.29, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 15, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 8, - "Discount": 0 + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10471, - "EmployeeID": 2, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 3, - "Freight": 45.59, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 25000, - "ShipCountry": "UK", + "OrderID": 10469, + "EmployeeID": 1, + "OrderDate": "1997-03-10T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 1, + "Freight": 60.18, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 2, + "Discount": 0.16 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 25000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10472, - "EmployeeID": 8, - "OrderDate": "1997-03-12T00:00:00", - "RequiredDate": "1997-04-09T00:00:00", - "ShippedDate": "1997-03-19T00:00:00", - "ShipVia": 1, - "Freight": 4.2, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 21000, - "ShipCountry": "UK", + "OrderID": 10483, + "EmployeeID": 7, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-25T00:00:00", + "ShipVia": 2, + "Freight": 15.28, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 80, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 35, "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 18, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10473, - "EmployeeID": 1, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", + "OrderID": 10504, + "EmployeeID": 4, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-18T00:00:00", "ShipVia": 3, - "Freight": 16.37, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 90698, - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "Freight": 59.13, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 12, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 12, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10474, - "EmployeeID": 5, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-04-10T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 2, - "Freight": 83.49, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 18.6, + "ProductID": 21, + "UnitPrice": 10, "Quantity": 12, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 18, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 21, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 25, "Discount": 0 + } + ] + }, + { + "OrderID": 10596, + "EmployeeID": 8, + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", + "ShipVia": 1, + "Freight": 16.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0.2 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 24, + "Discount": 0.2 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0 + "UnitPrice": 7.75, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 45000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10475, - "EmployeeID": 9, - "OrderDate": "1997-03-14T00:00:00", - "RequiredDate": "1997-04-11T00:00:00", - "ShippedDate": "1997-04-04T00:00:00", - "ShipVia": 1, - "Freight": 68.52, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", + "OrderID": 10693, + "EmployeeID": 3, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-10-10T00:00:00", + "ShipVia": 3, + "Freight": 139.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 13.6, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 60, "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 42, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10476, + "OrderID": 10696, "EmployeeID": 8, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", "ShipVia": 3, - "Freight": 4.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 102.55, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 2, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 70, + "ProductID": 46, "UnitPrice": 12, - "Quantity": 12, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10477, - "EmployeeID": 5, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", - "ShipVia": 2, - "Freight": 13.02, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10723, + "EmployeeID": 3, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-11-27T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", + "ShipVia": 1, + "Freight": 21.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, + "ProductID": 26, + "UnitPrice": 31.23, "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10740, + "EmployeeID": 4, + "OrderDate": "1997-11-13T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", + "ShipVia": 2, + "Freight": 81.88, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, + "Discount": 0.2 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10478, - "EmployeeID": 2, - "OrderDate": "1997-03-18T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-26T00:00:00", - "ShipVia": 3, - "Freight": 4.81, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10861, + "EmployeeID": 4, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-02-27T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 14.93, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 42, + "Discount": 0 + }, + { + "ProductID": 18, + "UnitPrice": 62.5, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10479, + "OrderID": 10904, "EmployeeID": 3, - "OrderDate": "1997-03-19T00:00:00", - "RequiredDate": "1997-04-16T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", "ShipVia": 3, - "Freight": 708.95, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, + "Freight": 162.95, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 30, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 28, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 35, + "Discount": 0 + } + ] + }, + { + "OrderID": 11032, + "EmployeeID": 2, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 606.19, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10480, - "EmployeeID": 6, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", + "OrderID": 11066, + "EmployeeID": 7, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 44.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 30, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 42, + "Discount": 0 + }, + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 35, "Discount": 0 } ] @@ -10734,413 +8068,287 @@ ] }, { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", + "CustomerID": "SPLIR", + "Company": "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", "Orders": [ { - "OrderID": 10481, - "EmployeeID": 8, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", + "OrderID": 10271, + "EmployeeID": 6, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-30T00:00:00", "ShipVia": 2, - "Freight": 64.33, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 4.54, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 33, + "UnitPrice": 2, "Quantity": 24, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10482, - "EmployeeID": 1, - "OrderDate": "1997-03-21T00:00:00", - "RequiredDate": "1997-04-18T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 7.48, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, + "OrderID": 10329, + "EmployeeID": 4, + "OrderDate": "1996-10-15T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 2, + "Freight": 191.67, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ - { - "OrderID": 10483, - "EmployeeID": 7, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-25T00:00:00", - "ShipVia": 2, - "Freight": 15.28, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", - "OrderDetails": [ + "Discount": 0.06 + }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 35, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, "Discount": 0.06 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 12, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 45000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10484, - "EmployeeID": 3, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-01T00:00:00", - "ShipVia": 3, - "Freight": 6.88, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10349, + "EmployeeID": 7, + "OrderDate": "1996-11-08T00:00:00", + "RequiredDate": "1996-12-06T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 1, + "Freight": 8.63, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 14, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10369, + "EmployeeID": 8, + "OrderDate": "1996-12-02T00:00:00", + "RequiredDate": "1996-12-30T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 195.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 3, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 18, + "Discount": 0.25 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10485, - "EmployeeID": 4, - "OrderDate": "1997-03-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-31T00:00:00", + "OrderID": 10385, + "EmployeeID": 1, + "OrderDate": "1996-12-17T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1996-12-23T00:00:00", "ShipVia": 2, - "Freight": 64.45, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 30.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 3, - "UnitPrice": 8, + "ProductID": 60, + "UnitPrice": 27.2, "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 30, - "Discount": 0.1 + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10486, - "EmployeeID": 1, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", + "OrderID": 10432, + "EmployeeID": 3, + "OrderDate": "1997-01-31T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", "ShipVia": 2, - "Freight": 30.53, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 4.34, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 25, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 16, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10487, - "EmployeeID": 2, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-03-28T00:00:00", + "OrderID": 10756, + "EmployeeID": 8, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-02T00:00:00", "ShipVia": 2, - "Freight": 71.07, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 73.21, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 5, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 21, + "Discount": 0.2 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.2 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.2 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10488, - "EmployeeID": 8, - "OrderDate": "1997-03-27T00:00:00", - "RequiredDate": "1997-04-24T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10821, + "EmployeeID": 1, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-15T00:00:00", + "ShipVia": 1, + "Freight": 36.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10489, - "EmployeeID": 6, - "OrderDate": "1997-03-28T00:00:00", - "RequiredDate": "1997-04-25T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 5.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10974, + "EmployeeID": 3, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 12.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 18, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 10, "Discount": 0 } ] @@ -11148,1159 +8356,813 @@ ] }, { - "CustomerID": "HILAA", - "Company": "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": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Fax": "0372-035189", "Orders": [ { - "OrderID": 10490, - "EmployeeID": 7, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-03T00:00:00", - "ShipVia": 2, - "Freight": 210.19, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10273, + "EmployeeID": 3, + "OrderDate": "1996-08-05T00:00:00", + "RequiredDate": "1996-09-02T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", + "ShipVia": 3, + "Freight": 76.07, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 24, + "Discount": 0.06 }, { - "ProductID": 68, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 36, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 33, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10491, - "EmployeeID": 8, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-08T00:00:00", - "ShipVia": 3, - "Freight": 16.96, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10285, + "EmployeeID": 1, + "OrderDate": "1996-08-20T00:00:00", + "RequiredDate": "1996-09-17T00:00:00", + "ShippedDate": "1996-08-26T00:00:00", + "ShipVia": 2, + "Freight": 76.83, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0.16 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 36, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 10000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10492, - "EmployeeID": 3, - "OrderDate": "1997-04-01T00:00:00", - "RequiredDate": "1997-04-29T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 1, - "Freight": 62.89, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderID": 10313, + "EmployeeID": 2, + "OrderDate": "1996-09-24T00:00:00", + "RequiredDate": "1996-10-22T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 1.96, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10345, + "EmployeeID": 2, + "OrderDate": "1996-11-04T00:00:00", + "RequiredDate": "1996-12-02T00:00:00", + "ShippedDate": "1996-11-11T00:00:00", + "ShipVia": 2, + "Freight": 249.06, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 80, + "Discount": 0 }, { "ProductID": 42, "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.06 + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10493, - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 10.64, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10361, + "EmployeeID": 1, + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 183.17, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 54, "Discount": 0.1 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 55, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10494, + "OrderID": 10418, "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 65.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderDate": "1997-01-17T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "ShipVia": 1, + "Freight": 17.55, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 60, "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 19000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ - { - "OrderID": 10495, - "EmployeeID": 3, - "OrderDate": "1997-04-03T00:00:00", - "RequiredDate": "1997-05-01T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 3, - "Freight": 4.65, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 20000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 10, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10496, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 2, - "Freight": 46.77, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10497, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 1, - "Freight": 36.21, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "OrderID": 10451, + "EmployeeID": 4, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 189.09, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 14, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 120, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 28, + "Discount": 0.1 }, { "ProductID": 77, "UnitPrice": 10.4, - "Quantity": 25, - "Discount": 0 + "Quantity": 55, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10498, - "EmployeeID": 8, - "OrderDate": "1997-04-07T00:00:00", - "RequiredDate": "1997-05-05T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 2, - "Freight": 29.75, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10515, + "EmployeeID": 2, + "OrderDate": "1997-04-23T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 1, + "Freight": 204.47, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 14, + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 16, + "Discount": 0.16 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 120, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10499, - "EmployeeID": 4, - "OrderDate": "1997-04-08T00:00:00", - "RequiredDate": "1997-05-06T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 102.02, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, + "Discount": 0.16 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 84, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10500, - "EmployeeID": 6, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-17T00:00:00", + "OrderID": 10527, + "EmployeeID": 7, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", "ShipVia": 1, - "Freight": 42.68, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 41.9, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10501, - "EmployeeID": 9, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", + "OrderID": 10540, + "EmployeeID": 3, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", "ShipVia": 3, - "Freight": 8.85, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, + "Freight": 1007.64, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10502, - "EmployeeID": 2, - "OrderDate": "1997-04-10T00:00:00", - "RequiredDate": "1997-05-08T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 69.32, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 21, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10503, - "EmployeeID": 6, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 16.74, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10549, + "EmployeeID": 5, + "OrderDate": "1997-05-27T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 171.24, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 70, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 55, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 100, + "Discount": 0.16 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 48, + "Discount": 0.16 + } + ] + }, { - "OrderID": 10504, - "EmployeeID": 4, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-18T00:00:00", + "OrderID": 10588, + "EmployeeID": 2, + "OrderDate": "1997-07-03T00:00:00", + "RequiredDate": "1997-07-31T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", "ShipVia": 3, - "Freight": 59.13, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 194.67, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 40, + "Discount": 0.2 }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 100, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10658, + "EmployeeID": 4, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 1, + "Freight": 364.15, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { "ProductID": 21, "UnitPrice": 10, - "Quantity": 12, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 25, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 55, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 70, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 21000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10505, - "EmployeeID": 3, - "OrderDate": "1997-04-14T00:00:00", - "RequiredDate": "1997-05-12T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 7.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 33000, - "ShipCountry": "Canada", + "OrderID": 10691, + "EmployeeID": 2, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-10-22T00:00:00", + "ShipVia": 2, + "Freight": 810.05, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 24, + "Discount": 0 + }, { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 3, + "Quantity": 48, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10506, - "EmployeeID": 9, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 21.19, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10694, + "EmployeeID": 8, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-11-03T00:00:00", + "ShippedDate": "1997-10-09T00:00:00", + "ShipVia": 3, + "Freight": 398.36, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 90, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 }, { "ProductID": 70, "UnitPrice": 15, - "Quantity": 14, - "Discount": 0.1 + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10507, - "EmployeeID": 7, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-04-22T00:00:00", - "ShipVia": 1, - "Freight": 47.45, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 15, - "Discount": 0.16 - }, + "OrderID": 10721, + "EmployeeID": 5, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-11-26T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", + "ShipVia": 3, + "Freight": 48.92, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 50, + "Discount": 0.06 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10508, - "EmployeeID": 1, - "OrderDate": "1997-04-16T00:00:00", - "RequiredDate": "1997-05-14T00:00:00", - "ShippedDate": "1997-05-13T00:00:00", - "ShipVia": 2, - "Freight": 4.99, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, + "OrderID": 10745, + "EmployeeID": 9, + "OrderDate": "1997-11-18T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 1, + "Freight": 3.52, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 7, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10509, - "EmployeeID": 4, - "OrderDate": "1997-04-17T00:00:00", - "RequiredDate": "1997-05-15T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 0.15, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, + "OrderID": 10765, + "EmployeeID": 3, + "OrderDate": "1997-12-04T00:00:00", + "RequiredDate": "1998-01-01T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 3, + "Freight": 42.74, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 80, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10510, - "EmployeeID": 6, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", - "ShipVia": 3, - "Freight": 367.63, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10788, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 42.7, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 36, - "Discount": 0.1 + "Quantity": 40, + "Discount": 0.06 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10511, - "EmployeeID": 4, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 350.64, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10845, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 212.98, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10512, - "EmployeeID": 7, - "OrderDate": "1997-04-21T00:00:00", - "RequiredDate": "1997-05-19T00:00:00", - "ShippedDate": "1997-04-24T00:00:00", - "ShipVia": 2, - "Freight": 3.53, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.16 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 9, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 42, + "Discount": 0.1 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 48, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10513, - "EmployeeID": 7, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-06-03T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", + "OrderID": 10865, + "EmployeeID": 2, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", "ShipVia": 1, - "Freight": 105.65, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, + "Freight": 348.14, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.2 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10514, - "EmployeeID": 3, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", - "ShipVia": 2, - "Freight": 789.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10878, + "EmployeeID": 4, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 46.69, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 20, "UnitPrice": 81, - "Quantity": 39, - "Discount": 0 - }, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10938, + "EmployeeID": 3, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 31.89, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 35, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 70, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0.25 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 39, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 49, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10515, - "EmployeeID": 2, - "OrderDate": "1997-04-23T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 1, - "Freight": 204.47, + "OrderID": 10962, + "EmployeeID": 8, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 275.79, "ShipName": "QUICK-Stop", "ShipAddress": "Taucherstraße 10", "ShipCity": "Cunewalde", @@ -12308,131 +9170,135 @@ "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 16, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, + "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 77, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 120, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0.16 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 84, - "Discount": 0.16 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 44, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10516, - "EmployeeID": 2, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 62.78, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10991, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 1, + "Freight": 38.51, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.2 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 80, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 20, + "Discount": 0.2 }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 90, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10996, + "EmployeeID": 4, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 1.12, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { "ProductID": 42, "UnitPrice": 14, - "Quantity": 20, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 13000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ + }, { - "OrderID": 10517, + "OrderID": 11021, "EmployeeID": 3, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 3, - "Freight": 32.07, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 19000, - "ShipCountry": "UK", + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 1, + "Freight": 297.18, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 11, + "Discount": 0.25 + }, + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 4, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 63, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 44, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, "Discount": 0 } ] @@ -12440,347 +9306,299 @@ ] }, { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", + "CustomerID": "MAGAA", + "Company": "Magazzini Alimentari Riuniti", + "ContactName": "Giovanni Rovelli", + "ContactTitle": "Marketing Manager", + "Address": "Via Ludovico il Moro 22", + "City": "Bergamo", + "PostalCode": 24100, + "Country": "Italy", + "Phone": "035-640230", + "Fax": "035-640231", "Orders": [ { - "OrderID": 10518, - "EmployeeID": 4, - "OrderDate": "1997-04-25T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-05-05T00:00:00", - "ShipVia": 2, - "Freight": 218.15, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10275, + "EmployeeID": 1, + "OrderDate": "1996-08-07T00:00:00", + "RequiredDate": "1996-09-04T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", + "ShipVia": 1, + "Freight": 26.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 6, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10300, + "EmployeeID": 2, + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 17.68, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 9, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10519, - "EmployeeID": 6, - "OrderDate": "1997-04-28T00:00:00", - "RequiredDate": "1997-05-26T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 91.76, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10404, + "EmployeeID": 2, + "OrderDate": "1997-01-03T00:00:00", + "RequiredDate": "1997-01-31T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", + "ShipVia": 1, + "Freight": 155.97, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 42, + "UnitPrice": 11.2, "Quantity": 40, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10520, - "EmployeeID": 7, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 1, - "Freight": 13.37, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10467, + "EmployeeID": 8, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 8, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 5, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10521, + "OrderID": 10635, "EmployeeID": 8, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 17.22, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-08-18T00:00:00", + "RequiredDate": "1997-09-15T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 47.46, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10522, - "EmployeeID": 4, - "OrderDate": "1997-04-30T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-06T00:00:00", - "ShipVia": 1, - "Freight": 45.33, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10754, + "EmployeeID": 6, + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 3, + "Freight": 2.38, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.2 - }, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10784, + "EmployeeID": 4, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 70.09, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 24, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 10000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10523, + "OrderID": 10818, "EmployeeID": 7, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 2, - "Freight": 77.63, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 16000, - "ShipCountry": "UK", + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", + "ShipVia": 3, + "Freight": 65.48, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0.1 + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 37000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10524, - "EmployeeID": 1, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", + "OrderID": 10939, + "EmployeeID": 2, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 2, - "Freight": 244.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 12000, - "ShipCountry": "Sweden", + "Freight": 76.33, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 10, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 60, - "Discount": 0 - }, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10950, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-13T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 2.5, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 5, "Discount": 0 } ] @@ -12788,1370 +9606,1092 @@ ] }, { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", + "CustomerID": "TORTU", + "Company": "Tortuga Restaurante", + "ContactName": "Miguel Angel Paolino", "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", + "Address": "Avda. Azteca 123", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 555-2933", + "Fax": "(5) 555-2934", "Orders": [ { - "OrderID": 10525, - "EmployeeID": 1, - "OrderDate": "1997-05-02T00:00:00", - "RequiredDate": "1997-05-30T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 11.06, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10276, + "EmployeeID": 8, + "OrderDate": "1996-08-08T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-14T00:00:00", + "ShipVia": 3, + "Freight": 13.84, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10526, - "EmployeeID": 4, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-15T00:00:00", - "ShipVia": 2, - "Freight": 58.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10293, + "EmployeeID": 1, + "OrderDate": "1996-08-29T00:00:00", + "RequiredDate": "1996-09-26T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", + "ShipVia": 3, + "Freight": 21.18, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 24, + "UnitPrice": 3.6, "Quantity": 10, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10527, - "EmployeeID": 7, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", - "ShipVia": 1, - "Freight": 41.9, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.1 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10528, - "EmployeeID": 6, - "OrderDate": "1997-05-06T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", + "OrderID": 10304, + "EmployeeID": 1, + "OrderDate": "1996-09-12T00:00:00", + "RequiredDate": "1996-10-10T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", "ShipVia": 2, - "Freight": 3.35, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 63.79, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 3, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 9, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 11000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10529, - "EmployeeID": 5, - "OrderDate": "1997-05-07T00:00:00", - "RequiredDate": "1997-06-04T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", - "ShipVia": 2, - "Freight": 66.69, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 26000, - "ShipCountry": "Belgium", + "OrderID": 10319, + "EmployeeID": 7, + "OrderDate": "1996-10-02T00:00:00", + "RequiredDate": "1996-10-30T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 3, + "Freight": 64.5, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 14, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10530, - "EmployeeID": 3, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", + "OrderID": 10518, + "EmployeeID": 4, + "OrderDate": "1997-04-25T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-05-05T00:00:00", "ShipVia": 2, - "Freight": 339.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 218.15, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 25, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 10576, + "EmployeeID": 3, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", + "ShipVia": 3, + "Freight": 18.56, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 20, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10531, - "EmployeeID": 7, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", - "ShipVia": 1, - "Freight": 8.12, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10676, + "EmployeeID": 2, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-29T00:00:00", + "ShipVia": 2, + "Freight": 2.01, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 2, "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10532, - "EmployeeID": 7, - "OrderDate": "1997-05-09T00:00:00", - "RequiredDate": "1997-06-06T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", + "OrderID": 10842, + "EmployeeID": 1, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 3, - "Freight": 74.46, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 23000, - "ShipCountry": "UK", + "Freight": 54.42, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 11, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 24, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 5, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 21000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10533, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-22T00:00:00", - "ShipVia": 1, - "Freight": 188.04, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 45000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 73, + "ProductID": 70, "UnitPrice": 15, - "Quantity": 24, - "Discount": 0.06 + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10534, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-14T00:00:00", + "OrderID": 10915, + "EmployeeID": 2, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", "ShipVia": 2, - "Freight": 27.94, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 3.51, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 17, + "UnitPrice": 39, "Quantity": 10, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 54, "UnitPrice": 7.45, "Quantity": 10, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10535, - "EmployeeID": 4, - "OrderDate": "1997-05-13T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-21T00:00:00", - "ShipVia": 1, - "Freight": 15.64, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", + "OrderID": 11069, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 15.67, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", "ShipCity": "México D.F.", - "ShipPostalCode": 5023, + "ShipPostalCode": 5033, "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 } ] } - ], - "Fax": "(5) 555-3932" + ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, + "CustomerID": "MORGK", + "Company": "Morgenstern Gesundkost", + "ContactName": "Alexander Feuer", + "ContactTitle": "Marketing Assistant", + "Address": "Heerstr. 22", + "City": "Leipzig", + "PostalCode": 4179, "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "Phone": "0342-023176", + "Fax": "0342-023177", "Orders": [ { - "OrderID": 10536, - "EmployeeID": 3, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-06-11T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 2, - "Freight": 58.88, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "OrderID": 10277, + "EmployeeID": 2, + "OrderDate": "1996-08-09T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-08-13T00:00:00", + "ShipVia": 3, + "Freight": 125.77, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 20, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 12, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, - "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10537, - "EmployeeID": 1, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", + "OrderID": 10575, + "EmployeeID": 5, + "OrderDate": "1997-06-20T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 1, - "Freight": 78.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 127.34, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 6, "Discount": 0 }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 20, - "Discount": 0 - }, { "ProductID": 72, "UnitPrice": 34.8, - "Quantity": 21, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 9, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 44000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10538, - "EmployeeID": 9, - "OrderDate": "1997-05-15T00:00:00", - "RequiredDate": "1997-06-12T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", + "OrderID": 10699, + "EmployeeID": 3, + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", "ShipVia": 3, - "Freight": 4.87, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 27000, - "ShipCountry": "UK", + "Freight": 0.58, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 1, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 12, "Discount": 0 } ] }, { - "OrderID": 10539, - "EmployeeID": 6, - "OrderDate": "1997-05-16T00:00:00", - "RequiredDate": "1997-06-13T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 3, - "Freight": 12.36, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 39000, - "ShipCountry": "UK", + "OrderID": 10779, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 2, + "Freight": 58.13, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 8, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10945, + "EmployeeID": 4, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-04-09T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 10.22, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 6, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 } ] } - ], - "Fax": "(171) 555-1212" + ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10540, - "EmployeeID": 3, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 3, - "Freight": 1007.64, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 14000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", + "Orders": [ + { + "OrderID": 10278, + "EmployeeID": 8, + "OrderDate": "1996-08-12T00:00:00", + "RequiredDate": "1996-09-09T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 92.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 35, + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10541, + "OrderID": 10280, "EmployeeID": 2, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-05-29T00:00:00", + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-09-11T00:00:00", + "ShippedDate": "1996-09-12T00:00:00", "ShipVia": 1, - "Freight": 68.65, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 8.98, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.1 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 4, - "Discount": 0.1 + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 36, - "Discount": 0.1 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10542, - "EmployeeID": 1, - "OrderDate": "1997-05-20T00:00:00", - "RequiredDate": "1997-06-17T00:00:00", - "ShippedDate": "1997-05-26T00:00:00", + "OrderID": 10384, + "EmployeeID": 3, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", "ShipVia": 3, - "Freight": 10.95, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 168.64, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 24, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10543, - "EmployeeID": 8, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 48.17, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10444, + "EmployeeID": 3, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-21T00:00:00", + "ShipVia": 3, + "Freight": 3.5, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 22000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10544, - "EmployeeID": 4, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 24.91, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10524, + "EmployeeID": 1, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", + "ShipVia": 2, + "Freight": 244.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 12000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 7, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 7, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10545, - "EmployeeID": 8, - "OrderDate": "1997-05-22T00:00:00", - "RequiredDate": "1997-06-19T00:00:00", - "ShippedDate": "1997-06-26T00:00:00", + "OrderID": 10572, + "EmployeeID": 3, + "OrderDate": "1997-06-18T00:00:00", + "RequiredDate": "1997-07-16T00:00:00", + "ShippedDate": "1997-06-25T00:00:00", "ShipVia": 2, - "Freight": 11.92, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, - "ShipCountry": "USA", + "Freight": 116.43, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 40000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 32, + "UnitPrice": 32, "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10546, + "OrderID": 10626, "EmployeeID": 1, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-05-27T00:00:00", - "ShipVia": 3, - "Freight": 194.72, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-08T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 2, + "Freight": 138.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 34000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 10, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 27000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10547, - "EmployeeID": 3, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", - "ShipVia": 2, - "Freight": 178.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10654, + "EmployeeID": 5, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 1, + "Freight": 55.26, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 12000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 60, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10548, - "EmployeeID": 3, - "OrderDate": "1997-05-26T00:00:00", - "RequiredDate": "1997-06-23T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", + "OrderID": 10672, + "EmployeeID": 9, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", "ShipVia": 2, - "Freight": 1.43, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 95.75, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 50000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10549, - "EmployeeID": 5, - "OrderDate": "1997-05-27T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 171.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10689, + "EmployeeID": 1, + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-29T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", + "ShipVia": 2, + "Freight": 13.42, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 16000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 55, - "Discount": 0.16 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 100, - "Discount": 0.16 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 48, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10550, - "EmployeeID": 7, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-06-25T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", + "OrderID": 10733, + "EmployeeID": 1, + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-10T00:00:00", "ShipVia": 3, - "Freight": 4.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 110.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 34000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 16, + "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0.1 - }, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10778, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", + "ShipVia": 1, + "Freight": 6.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 39000, + "ShipCountry": "Sweden", + "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 10, - "Discount": 0.1 + "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10551, - "EmployeeID": 4, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", + "OrderID": 10837, + "EmployeeID": 9, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 3, - "Freight": 72.95, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 13.32, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 17000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, + "ProductID": 47, + "UnitPrice": 9.5, "Quantity": 40, - "Discount": 0 + "Discount": 0.25 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10552, - "EmployeeID": 2, - "OrderDate": "1997-05-29T00:00:00", - "RequiredDate": "1997-06-26T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 1, - "Freight": 83.22, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10857, + "EmployeeID": 8, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 2, + "Freight": 188.85, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 18, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.25 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10553, - "EmployeeID": 2, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-03T00:00:00", + "OrderID": 10866, + "EmployeeID": 5, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-03T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 109.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 37000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 6, + "Discount": 0.25 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 40, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10875, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", "ShipVia": 2, - "Freight": 149.49, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 32.37, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 18000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 14, - "Discount": 0 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0.1 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 24, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10924, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 2, + "Freight": 151.52, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 35000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 30, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 35, - "UnitPrice": 18, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 6, "Discount": 0 } @@ -14160,169 +10700,261 @@ ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, + "CustomerID": "LEHMS", + "Company": "Lehmanns Marktstand", + "ContactName": "Renate Messner", + "ContactTitle": "Sales Representative", + "Address": "Magazinweg 7", + "City": "Frankfurt a.M.", + "PostalCode": 60528, "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", + "Phone": "069-0245984", + "Fax": "069-0245874", "Orders": [ { - "OrderID": 10554, + "OrderID": 10279, + "EmployeeID": 8, + "OrderDate": "1996-08-13T00:00:00", + "RequiredDate": "1996-09-10T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 25.83, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10284, "EmployeeID": 4, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 3, - "Freight": 120.97, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, + "OrderDate": "1996-08-19T00:00:00", + "RequiredDate": "1996-09-16T00:00:00", + "ShippedDate": "1996-08-27T00:00:00", + "ShipVia": 1, + "Freight": 76.56, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 60, + "UnitPrice": 27.2, "Quantity": 20, - "Discount": 0.06 + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, + "ProductID": 67, + "UnitPrice": 11.2, + "Quantity": 5, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10343, + "EmployeeID": 4, + "OrderDate": "1996-10-31T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-11-06T00:00:00", + "ShipVia": 1, + "Freight": 110.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 4, "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10555, - "EmployeeID": 6, - "OrderDate": "1997-06-02T00:00:00", - "RequiredDate": "1997-06-30T00:00:00", - "ShippedDate": "1997-06-04T00:00:00", - "ShipVia": 3, - "Freight": 252.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10497, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", + "ShipVia": 1, + "Freight": 36.21, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10522, + "EmployeeID": 4, + "OrderDate": "1997-04-30T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-06T00:00:00", + "ShipVia": 1, + "Freight": 45.33, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0.2 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 18, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, "Discount": 0.2 + } + ] + }, + { + "OrderID": 10534, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-14T00:00:00", + "ShipVia": 2, + "Freight": 27.94, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 40, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10556, - "EmployeeID": 2, - "OrderDate": "1997-06-03T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 9.8, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10536, + "EmployeeID": 3, + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-06-11T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 2, + "Freight": 58.88, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 15, + "Discount": 0.25 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { "OrderID": 10557, "EmployeeID": 9, @@ -14350,418 +10982,349 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10558, - "EmployeeID": 1, - "OrderDate": "1997-06-04T00:00:00", - "RequiredDate": "1997-07-02T00:00:00", - "ShippedDate": "1997-06-10T00:00:00", - "ShipVia": 2, - "Freight": 72.97, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 35000, - "ShipCountry": "UK", + "OrderID": 10592, + "EmployeeID": 3, + "OrderDate": "1997-07-08T00:00:00", + "RequiredDate": "1997-08-05T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 32.1, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 15, + "UnitPrice": 15.5, "Quantity": 25, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 5, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10772, + "EmployeeID": 3, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 91.28, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10862, + "EmployeeID": 8, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 53.23, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 18, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 3, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10559, - "EmployeeID": 6, - "OrderDate": "1997-06-05T00:00:00", - "RequiredDate": "1997-07-03T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 8.05, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10891, + "EmployeeID": 7, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 2, + "Freight": 20.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, "Discount": 0.06 - }, + } + ] + }, + { + "OrderID": 10934, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 3, + "Freight": 32.01, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10560, - "EmployeeID": 8, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", + "OrderID": 11070, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-02T00:00:00", "ShipVia": 1, - "Freight": 36.65, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, + "Freight": 136, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 2, + "UnitPrice": 19, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10561, - "EmployeeID": 2, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", - "ShipVia": 2, - "Freight": 242.21, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 23000, - "ShipCountry": "Sweden", + "CustomerID": "ROMEY", + "Company": "Romero y tomillo", + "ContactName": "Alejandra Camino", + "ContactTitle": "Accounting Manager", + "Address": "Gran Vía, 1", + "City": "Madrid", + "PostalCode": 28001, + "Country": "Spain", + "Phone": "(91) 745 6200", + "Fax": "(91) 745 6210", + "Orders": [ + { + "OrderID": 10281, + "EmployeeID": 4, + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-08-28T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 2.94, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 50, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 6, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10562, - "EmployeeID": 1, - "OrderDate": "1997-06-09T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-12T00:00:00", - "ShipVia": 1, - "Freight": 22.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 20, - "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10563, - "EmployeeID": 2, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-06-24T00:00:00", - "ShipVia": 2, - "Freight": 60.43, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10282, + "EmployeeID": 4, + "OrderDate": "1996-08-15T00:00:00", + "RequiredDate": "1996-09-12T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 70, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10564, - "EmployeeID": 4, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-08T00:00:00", - "ShippedDate": "1997-06-16T00:00:00", + "OrderID": 10306, + "EmployeeID": 1, + "OrderDate": "1996-09-16T00:00:00", + "RequiredDate": "1996-10-14T00:00:00", + "ShippedDate": "1996-09-23T00:00:00", "ShipVia": 3, - "Freight": 13.75, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 7.56, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 38000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10565, - "EmployeeID": 8, - "OrderDate": "1997-06-11T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", + "OrderID": 10917, + "EmployeeID": 4, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", "ShipVia": 2, - "Freight": 7.15, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 21000, - "ShipCountry": "Canada", + "Freight": 8.29, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 1, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10566, - "EmployeeID": 9, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", + "OrderID": 11013, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 1, - "Freight": 88.4, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 32.99, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 18, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 2, "Discount": 0 } ] @@ -14769,1433 +11332,1162 @@ ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "LILAS", + "Company": "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", "Orders": [ { - "OrderID": 10567, - "EmployeeID": 1, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-17T00:00:00", - "ShipVia": 1, - "Freight": 33.97, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10283, + "EmployeeID": 3, + "OrderDate": "1996-08-16T00:00:00", + "RequiredDate": "1996-09-13T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", + "ShipVia": 3, + "Freight": 84.81, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 60, - "Discount": 0.2 + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ - { - "OrderID": 10568, - "EmployeeID": 3, - "OrderDate": "1997-06-13T00:00:00", - "RequiredDate": "1997-07-11T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 3, - "Freight": 6.54, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", - "OrderDetails": [ + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 35, + "Discount": 0 + }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 5, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10569, - "EmployeeID": 5, - "OrderDate": "1997-06-16T00:00:00", - "RequiredDate": "1997-07-14T00:00:00", - "ShippedDate": "1997-07-11T00:00:00", + "OrderID": 10296, + "EmployeeID": 6, + "OrderDate": "1996-09-03T00:00:00", + "RequiredDate": "1996-10-01T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 1, - "Freight": 58.98, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 0.12, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 16, + "UnitPrice": 13.9, "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 22000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10570, + "OrderID": 10330, "EmployeeID": 3, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-19T00:00:00", - "ShipVia": 3, - "Freight": 188.99, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", + "ShipVia": 1, + "Freight": 12.75, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10571, - "EmployeeID": 8, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", + "OrderID": 10357, + "EmployeeID": 1, + "OrderDate": "1996-11-19T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", "ShipVia": 3, - "Freight": 26.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 34.88, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 11, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10572, + "OrderID": 10381, "EmployeeID": 3, - "OrderDate": "1997-06-18T00:00:00", - "RequiredDate": "1997-07-16T00:00:00", - "ShippedDate": "1997-06-25T00:00:00", - "ShipVia": 2, - "Freight": 116.43, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 40000, - "ShipCountry": "Sweden", + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 7.99, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, - "Discount": 0.1 - }, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 14, + "Discount": 0 + } + ] + }, + { + "OrderID": 10461, + "EmployeeID": 1, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-05T00:00:00", + "ShipVia": 3, + "Freight": 148.61, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 28, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10573, - "EmployeeID": 7, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-20T00:00:00", - "ShipVia": 3, - "Freight": 84.84, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10499, + "EmployeeID": 4, + "OrderDate": "1997-04-08T00:00:00", + "RequiredDate": "1997-05-06T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 2, + "Freight": 102.02, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 40, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 49, + "UnitPrice": 20, "Quantity": 25, "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "TRAIH", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10574, - "EmployeeID": 4, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10543, + "EmployeeID": 8, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", "ShipVia": 2, - "Freight": 37.6, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", + "Freight": 48.17, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 2, - "Discount": 0 - }, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10780, + "EmployeeID": 2, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-25T00:00:00", + "ShipVia": 1, + "Freight": 42.13, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 6, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10575, + "OrderID": 10823, "EmployeeID": 5, - "OrderDate": "1997-06-20T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 1, - "Freight": 127.34, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 163.97, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 6, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10576, - "EmployeeID": 3, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10899, + "EmployeeID": 5, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", "ShipVia": 3, - "Freight": 18.56, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 1.21, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, - "Discount": 0 + "Quantity": 8, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10577, - "EmployeeID": 9, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10997, + "EmployeeID": 8, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 25.41, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", + "Freight": 73.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 46, + "UnitPrice": 12, "Quantity": 20, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10578, - "EmployeeID": 4, - "OrderDate": "1997-06-24T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", - "ShipVia": 3, - "Freight": 29.6, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 31000, - "ShipCountry": "UK", + "OrderID": 11065, + "EmployeeID": 8, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-29T00:00:00", + "ShipVia": 1, + "Freight": 12.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 6, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, + "Discount": 0.25 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10579, + "OrderID": 11071, "EmployeeID": 1, - "OrderDate": "1997-06-25T00:00:00", - "RequiredDate": "1997-07-23T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 2, - "Freight": 13.73, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-10T00:00:00", + "ShipVia": 1, + "Freight": 0.93, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 10, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 21, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0.06 } ] } - ], - "Fax": "(415) 555-5938" + ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", + "CustomerID": "RICAR", + "Company": "Ricardo Adocicados", + "ContactName": "Janete Limeira", + "ContactTitle": "Sales Associate", + "Address": "Av. Copacabana, 267", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-3412", + "Fax": "(21) 555-3413", "Orders": [ { - "OrderID": 10580, - "EmployeeID": 4, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-01T00:00:00", + "OrderID": 10287, + "EmployeeID": 8, + "OrderDate": "1996-08-22T00:00:00", + "RequiredDate": "1996-09-19T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", "ShipVia": 3, - "Freight": 75.89, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 12.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10581, - "EmployeeID": 3, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-02T00:00:00", - "ShipVia": 1, - "Freight": 3.01, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", + "OrderID": 10299, + "EmployeeID": 4, + "OrderDate": "1996-09-06T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-13T00:00:00", + "ShipVia": 2, + "Freight": 29.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10582, - "EmployeeID": 3, - "OrderDate": "1997-06-27T00:00:00", - "RequiredDate": "1997-07-25T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 10447, + "EmployeeID": 4, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-03-07T00:00:00", "ShipVia": 2, - "Freight": 27.71, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "Freight": 68.66, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 4, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 14, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10583, - "EmployeeID": 2, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", + "OrderID": 10481, + "EmployeeID": 8, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", "ShipVia": 2, - "Freight": 7.28, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 64.33, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 24, "Discount": 0 }, { "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.16 + "UnitPrice": 27.2, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10563, + "EmployeeID": 2, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-06-24T00:00:00", + "ShipVia": 2, + "Freight": 60.43, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 70, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10584, + "OrderID": 10622, "EmployeeID": 4, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 1, - "Freight": 59.14, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderDate": "1997-08-06T00:00:00", + "RequiredDate": "1997-09-03T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 3, + "Freight": 50.97, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 31, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 68, "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.06 + "Quantity": 18, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10585, - "EmployeeID": 7, - "OrderDate": "1997-07-01T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 1, - "Freight": 13.41, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, + "OrderID": 10648, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-09T00:00:00", + "ShipVia": 2, + "Freight": 14.25, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 22, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10586, - "EmployeeID": 9, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 1, - "Freight": 0.48, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10813, + "EmployeeID": 1, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 1, + "Freight": 47.38, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 12, + "Discount": 0.2 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10587, - "EmployeeID": 1, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", + "OrderID": 10851, + "EmployeeID": 5, + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-23T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", "ShipVia": 1, - "Freight": 62.52, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 160.55, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", "ShipCity": "Sao Paulo", "ShipRegion": "RJ", "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, + "Discount": 0.06 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10588, - "EmployeeID": 2, - "OrderDate": "1997-07-03T00:00:00", - "RequiredDate": "1997-07-31T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 3, - "Freight": 194.67, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10877, + "EmployeeID": 1, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 1, + "Freight": 38.06, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 100, - "Discount": 0.2 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10589, - "EmployeeID": 8, - "OrderDate": "1997-07-04T00:00:00", - "RequiredDate": "1997-08-01T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 11059, + "EmployeeID": 2, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-06-10T00:00:00", + "ShippedDate": "1998-06-15T00:00:00", "ShipVia": 2, - "Freight": 4.42, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 85.8, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 30, "Discount": 0 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 43000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10590, - "EmployeeID": 4, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 3, - "Freight": 44.77, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 40000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0 } ] } ] }, { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10591, - "EmployeeID": 1, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-07-21T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", + "CustomerID": "REGGC", + "Company": "Reggiani Caseifici", + "ContactName": "Maurizio Moroni", + "ContactTitle": "Sales Associate", + "Address": "Strada Provinciale 124", + "City": "Reggio Emilia", + "PostalCode": 42100, + "Country": "Italy", + "Phone": "0522-556721", + "Fax": "0522-556722", + "Orders": [ + { + "OrderID": 10288, + "EmployeeID": 4, + "OrderDate": "1996-08-23T00:00:00", + "RequiredDate": "1996-09-20T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", "ShipVia": 1, - "Freight": 55.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 7.45, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 54, + "UnitPrice": 5.9, "Quantity": 10, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 50, - "Discount": 0 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10592, - "EmployeeID": 3, - "OrderDate": "1997-07-08T00:00:00", - "RequiredDate": "1997-08-05T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", + "OrderID": 10428, + "EmployeeID": 7, + "OrderDate": "1997-01-28T00:00:00", + "RequiredDate": "1997-02-25T00:00:00", + "ShippedDate": "1997-02-04T00:00:00", "ShipVia": 1, - "Freight": 32.1, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 11.09, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 25, - "Discount": 0.06 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0 } ] }, { - "OrderID": 10593, - "EmployeeID": 7, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-08-13T00:00:00", - "ShipVia": 2, - "Freight": 174.2, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10443, + "EmployeeID": 8, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 1, + "Freight": 13.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10594, - "EmployeeID": 3, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", - "ShipVia": 2, - "Freight": 5.24, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10562, + "EmployeeID": 1, + "OrderDate": "1997-06-09T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-12T00:00:00", + "ShipVia": 1, + "Freight": 22.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 24, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10595, - "EmployeeID": 2, - "OrderDate": "1997-07-10T00:00:00", - "RequiredDate": "1997-08-07T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 10586, + "EmployeeID": 9, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", "ShipVia": 1, - "Freight": 96.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 0.48, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 120, - "Discount": 0.25 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 65, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10596, - "EmployeeID": 8, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", - "ShipVia": 1, - "Freight": 16.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10655, + "EmployeeID": 1, + "OrderDate": "1997-09-03T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 4.41, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, "Discount": 0.2 + } + ] + }, + { + "OrderID": 10727, + "EmployeeID": 2, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-12-01T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 89.9, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 24, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10597, - "EmployeeID": 7, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", - "ShipVia": 3, - "Freight": 35.12, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10812, + "EmployeeID": 5, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", + "ShipVia": 1, + "Freight": 59.78, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 16, + "Discount": 0.1 }, { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, "Quantity": 20, "Discount": 0 + } + ] + }, + { + "OrderID": 10908, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 32.96, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 14, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10598, - "EmployeeID": 1, - "OrderDate": "1997-07-14T00:00:00", - "RequiredDate": "1997-08-11T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", + "OrderID": 10942, + "EmployeeID": 9, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 3, - "Freight": 44.42, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 17.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 50, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 28, + "Discount": 0 + } + ] + }, + { + "OrderID": 11010, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 28.71, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, "Discount": 0 } ] - } + }, + { + "OrderID": 11062, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-06-28T00:00:00", + "ShipVia": 2, + "Freight": 29.93, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 12, + "Discount": 0.2 + } + ] + } ] }, { @@ -16205,1875 +12497,1438 @@ "ContactTitle": "Sales Representative", "Address": "Fauntleroy Circus", "City": "London", - "PostalCode": 20000, + "PostalCode": 22000, "Country": "UK", "Phone": "(171) 555-1212", "Orders": [ { - "OrderID": 10599, - "EmployeeID": 6, - "OrderDate": "1997-07-15T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", + "OrderID": 10289, + "EmployeeID": 7, + "OrderDate": "1996-08-26T00:00:00", + "RequiredDate": "1996-09-23T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", "ShipVia": 3, - "Freight": 29.98, + "Freight": 22.77, "ShipName": "Best Beverages", "ShipAddress": "Fauntleroy Circus", "ShipCity": "London", - "ShipPostalCode": 14000, + "ShipPostalCode": 22000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10600, - "EmployeeID": 4, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-13T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", - "ShipVia": 1, - "Freight": 45.13, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "OrderID": 10471, + "EmployeeID": 2, + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 3, + "Freight": 45.59, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 25000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 4, + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10601, - "EmployeeID": 7, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", - "ShipVia": 1, - "Freight": 58.3, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10484, + "EmployeeID": 3, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-01T00:00:00", + "ShipVia": 3, + "Freight": 6.88, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 60, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10602, - "EmployeeID": 8, - "OrderDate": "1997-07-17T00:00:00", - "RequiredDate": "1997-08-14T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", - "ShipVia": 2, - "Freight": 2.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10603, - "EmployeeID": 8, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", - "ShipVia": 2, - "Freight": 48.77, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10538, + "EmployeeID": 9, + "OrderDate": "1997-05-15T00:00:00", + "RequiredDate": "1997-06-12T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 3, + "Freight": 4.87, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 27000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 48, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 1, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10604, - "EmployeeID": 1, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", - "ShipVia": 1, - "Freight": 7.46, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10578, + "EmployeeID": 4, + "OrderDate": "1997-06-24T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 3, + "Freight": 29.6, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 31000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 6, + "Discount": 0 + } + ] + }, + { + "OrderID": 10599, + "EmployeeID": 6, + "OrderDate": "1997-07-15T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", + "ShipVia": 3, + "Freight": 29.98, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 14000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 10, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 32000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10605, - "EmployeeID": 1, - "OrderDate": "1997-07-21T00:00:00", - "RequiredDate": "1997-08-18T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", + "OrderID": 10943, + "EmployeeID": 4, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 379.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", + "Freight": 2.17, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 21, + "Discount": 0 }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10947, + "EmployeeID": 3, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", + "OrderDetails": [ { "ProductID": 59, "UnitPrice": 55, - "Quantity": 20, - "Discount": 0.06 - }, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11023, + "EmployeeID": 1, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 123.83, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 36000, + "ShipCountry": "UK", + "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0 } ] } - ] + ], + "Fax": "(171) 555-1212" }, { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", + "CustomerID": "COMMI", + "Company": "Comércio Mineiro", + "ContactName": "Pedro Afonso", + "ContactTitle": "Sales Associate", + "Address": "Av. dos Lusíadas, 23", "City": "Sao Paulo", "Region": "SP", - "PostalCode": 5634, + "PostalCode": 5432, "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", + "Phone": "(11) 555-7647", "Orders": [ { - "OrderID": 10606, - "EmployeeID": 4, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-31T00:00:00", - "ShipVia": 3, - "Freight": 79.4, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", + "OrderID": 10290, + "EmployeeID": 8, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", + "ShipVia": 1, + "Freight": 79.7, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", "ShipCity": "Sao Paulo", "ShipRegion": "SP", - "ShipPostalCode": 5634, + "ShipPostalCode": 5432, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 5, + "UnitPrice": 17, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10607, - "EmployeeID": 5, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", - "ShipVia": 1, - "Freight": 200.24, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 100, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10466, + "EmployeeID": 4, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-13T00:00:00", + "ShipVia": 1, + "Freight": 11.93, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 42, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 12, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10608, + "OrderID": 10494, "EmployeeID": 4, - "OrderDate": "1997-07-23T00:00:00", - "RequiredDate": "1997-08-20T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", "ShipVia": 2, - "Freight": 27.79, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 65.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10609, - "EmployeeID": 7, - "OrderDate": "1997-07-24T00:00:00", - "RequiredDate": "1997-08-21T00:00:00", - "ShippedDate": "1997-07-30T00:00:00", + "OrderID": 10969, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", "ShipVia": 2, - "Freight": 1.85, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 0.21, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 3, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11042, + "EmployeeID": 2, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 29.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, "Discount": 0 } ] } - ] + ], + "Fax": "(11) 555-7647" }, { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", + "CustomerID": "TRADH", + "Company": "Tradição Hipermercados", + "ContactName": "Anabela Domingues", + "ContactTitle": "Sales Representative", + "Address": "Av. Inês de Castro, 414", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5634, + "Country": "Brazil", + "Phone": "(11) 555-2167", + "Fax": "(11) 555-2168", "Orders": [ { - "OrderID": 10610, - "EmployeeID": 8, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", - "ShipVia": 1, - "Freight": 26.78, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10292, + "EmployeeID": 1, + "OrderDate": "1996-08-28T00:00:00", + "RequiredDate": "1996-09-25T00:00:00", + "ShippedDate": "1996-09-02T00:00:00", + "ShipVia": 2, + "Freight": 1.35, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10611, - "EmployeeID": 6, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderID": 10496, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", "ShipVia": 2, - "Freight": 80.65, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 46.77, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10606, + "EmployeeID": 4, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-31T00:00:00", + "ShipVia": 3, + "Freight": 79.4, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10612, - "EmployeeID": 1, - "OrderDate": "1997-07-28T00:00:00", - "RequiredDate": "1997-08-25T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderID": 10830, + "EmployeeID": 4, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", "ShipVia": 2, - "Freight": 544.08, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 81.83, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 55, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 18, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 28, "Discount": 0 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 40, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 80, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 24, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10613, - "EmployeeID": 4, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 8.11, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10834, + "EmployeeID": 1, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 3, + "Freight": 29.78, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 8, + "Discount": 0.06 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10839, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-22T00:00:00", + "ShipVia": 3, + "Freight": 35.43, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "PostalCode": 48637, + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", "Orders": [ { - "OrderID": 10614, - "EmployeeID": 8, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 3, - "Freight": 1.93, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10298, + "EmployeeID": 6, + "OrderDate": "1996-09-05T00:00:00", + "RequiredDate": "1996-10-03T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", + "ShipVia": 2, + "Freight": 168.22, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 14, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 8, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 5, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10615, - "EmployeeID": 2, - "OrderDate": "1997-07-30T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", - "ShipVia": 3, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10309, + "EmployeeID": 3, + "OrderDate": "1996-09-19T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 1, + "Freight": 47.3, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ - { - "OrderID": 10616, - "EmployeeID": 1, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-05T00:00:00", - "ShipVia": 2, - "Freight": 116.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, + "Discount": 0 }, { "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "UnitPrice": 17.2, + "Quantity": 3, + "Discount": 0 } ] }, { - "OrderID": 10617, - "EmployeeID": 4, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-04T00:00:00", + "OrderID": 10335, + "EmployeeID": 7, + "OrderDate": "1996-10-22T00:00:00", + "RequiredDate": "1996-11-19T00:00:00", + "ShippedDate": "1996-10-24T00:00:00", "ShipVia": 2, - "Freight": 18.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 42.11, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 28000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10618, - "EmployeeID": 1, - "OrderDate": "1997-08-01T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", - "ShipVia": 1, - "Freight": 154.68, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 30000, - "ShipCountry": "Canada", - "OrderDetails": [ + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 7, + "Discount": 0.2 + }, { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 70, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 48, + "Discount": 0.2 } ] }, { - "OrderID": 10619, - "EmployeeID": 3, - "OrderDate": "1997-08-04T00:00:00", - "RequiredDate": "1997-09-01T00:00:00", - "ShippedDate": "1997-08-07T00:00:00", + "OrderID": 10373, + "EmployeeID": 4, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-11T00:00:00", "ShipVia": 3, - "Freight": 91.05, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 21000, - "ShipCountry": "Canada", + "Freight": 124.12, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 42, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 80, + "Discount": 0.2 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 49000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ + }, { - "OrderID": 10620, - "EmployeeID": 2, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", + "OrderID": 10380, + "EmployeeID": 8, + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", "ShipVia": 3, - "Freight": 0.94, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 31000, - "ShipCountry": "Canada", + "Freight": 35.03, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 21000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10621, - "EmployeeID": 4, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", - "ShipVia": 2, - "Freight": 23.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 50269, - "ShipPostalCode": 39000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 10, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 6, + "Discount": 0.1 }, { "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10622, - "EmployeeID": 4, - "OrderDate": "1997-08-06T00:00:00", - "RequiredDate": "1997-09-03T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", - "ShipVia": 3, - "Freight": 50.97, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10429, + "EmployeeID": 3, + "OrderDate": "1997-01-29T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 56.63, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, - "Discount": 0.2 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10623, - "EmployeeID": 8, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", + "OrderID": 10503, + "EmployeeID": 6, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", "ShipVia": 2, - "Freight": 97.18, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 16.74, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { "ProductID": 14, "UnitPrice": 23.25, - "Quantity": 21, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 3, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10624, - "EmployeeID": 4, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 2, - "Freight": 94.8, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "OrderID": 10516, + "EmployeeID": 2, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 62.78, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 6, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 80, + "Discount": 0.1 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10625, - "EmployeeID": 3, - "OrderDate": "1997-08-08T00:00:00", - "RequiredDate": "1997-09-05T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", + "OrderID": 10567, + "EmployeeID": 1, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-17T00:00:00", "ShipVia": 1, - "Freight": 43.9, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 33.97, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 5, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 19000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10626, - "EmployeeID": 1, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-08T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 2, - "Freight": 138.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 34000, - "ShipCountry": "Sweden", + "OrderID": 10646, + "EmployeeID": 9, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 142.33, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.25 }, { "ProductID": 71, "UnitPrice": 21.5, - "Quantity": 20, - "Discount": 0 + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10627, - "EmployeeID": 8, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10661, + "EmployeeID": 7, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", "ShipVia": 3, - "Freight": 107.46, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 17.55, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 49, + "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10628, - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 3, - "Freight": 30.36, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10687, + "EmployeeID": 9, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-30T00:00:00", + "ShipVia": 2, + "Freight": 296.43, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ - { - "OrderID": 10629, - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 3, - "Freight": 85.46, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", - "OrderDetails": [ + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 50, + "Discount": 0.25 + }, { "ProductID": 29, "UnitPrice": 123.79, - "Quantity": 20, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 9, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0.25 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10630, - "EmployeeID": 1, - "OrderDate": "1997-08-13T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 2, - "Freight": 32.35, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10701, + "EmployeeID": 6, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-10-27T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 3, + "Freight": 220.31, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.16 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0.16 }, { "ProductID": 76, "UnitPrice": 18, "Quantity": 35, - "Discount": 0 + "Discount": 0.16 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10631, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-15T00:00:00", + "OrderID": 10712, + "EmployeeID": 3, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", "ShipVia": 1, - "Freight": 0.87, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 89.93, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10632, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 1, - "Freight": 41.38, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10736, + "EmployeeID": 9, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 44.1, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10633, - "EmployeeID": 7, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-18T00:00:00", - "ShipVia": 3, - "Freight": 477.9, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10897, + "EmployeeID": 3, + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-25T00:00:00", + "ShipVia": 2, + "Freight": 603.54, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 80, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 13, - "Discount": 0.16 - }, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 36, + "Discount": 0 + } + ] + }, + { + "OrderID": 10912, + "EmployeeID": 2, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 580.91, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 80, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10634, - "EmployeeID": 4, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", - "ShipVia": 3, - "Freight": 487.38, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "OrderID": 10985, + "EmployeeID": 2, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 91.51, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 36, + "Discount": 0.1 }, { "ProductID": 18, "UnitPrice": 62.5, - "Quantity": 50, - "Discount": 0 + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 15, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 35, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11063, + "EmployeeID": 3, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 81.73, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 2, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "WANDK", + "Company": "Die Wandernde Kuh", + "ContactName": "Rita Müller", + "ContactTitle": "Sales Representative", + "Address": "Adenauerallee 900", + "City": "Stuttgart", + "PostalCode": 70563, + "Country": "Germany", + "Phone": "0711-020361", + "Fax": "0711-035428", "Orders": [ { - "OrderID": 10635, + "OrderID": 10301, "EmployeeID": 8, - "OrderDate": "1997-08-18T00:00:00", - "RequiredDate": "1997-09-15T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", - "ShipVia": 3, - "Freight": 47.46, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", + "ShipVia": 2, + "Freight": 45.08, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 40, + "UnitPrice": 14.7, "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 15, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10636, - "EmployeeID": 4, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 1.15, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10312, + "EmployeeID": 2, + "OrderDate": "1996-09-23T00:00:00", + "RequiredDate": "1996-10-21T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 40.26, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 6, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10637, - "EmployeeID": 6, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 201.29, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10348, + "EmployeeID": 4, + "OrderDate": "1996-11-07T00:00:00", + "RequiredDate": "1996-12-05T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 2, + "Freight": 0.78, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 50, - "UnitPrice": 16.25, + "ProductID": 23, + "UnitPrice": 7.2, "Quantity": 25, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10638, - "EmployeeID": 3, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", - "ShipVia": 1, - "Freight": 158.44, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10356, + "EmployeeID": 6, + "OrderDate": "1996-11-18T00:00:00", + "RequiredDate": "1996-12-16T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", + "ShipVia": 2, + "Freight": 36.71, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 60, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10639, + "OrderID": 10513, "EmployeeID": 7, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-08-27T00:00:00", - "ShipVia": 3, - "Freight": 38.64, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ - { - "OrderID": 10640, - "EmployeeID": 4, - "OrderDate": "1997-08-21T00:00:00", - "RequiredDate": "1997-09-18T00:00:00", - "ShippedDate": "1997-08-28T00:00:00", + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-06-03T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", "ShipVia": 1, - "Freight": 23.55, + "Freight": 105.65, "ShipName": "Die Wandernde Kuh", "ShipAddress": "Adenauerallee 900", "ShipCity": "Stuttgart", @@ -18081,996 +13936,833 @@ "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, "Quantity": 15, - "Discount": 0.25 + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10641, - "EmployeeID": 4, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 2, - "Freight": 179.61, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10632, + "EmployeeID": 8, + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 1, + "Freight": 41.38, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 19, - "Quantity": 50, - "Discount": 0 + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10642, - "EmployeeID": 7, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-09-05T00:00:00", - "ShipVia": 3, - "Freight": 41.89, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10640, + "EmployeeID": 4, + "OrderDate": "1997-08-21T00:00:00", + "RequiredDate": "1997-09-18T00:00:00", + "ShippedDate": "1997-08-28T00:00:00", + "ShipVia": 1, + "Freight": 23.55, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10643, - "EmployeeID": 6, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", - "ShipVia": 1, - "Freight": 29.46, - "ShipName": "Alfreds Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, + "OrderID": 10651, + "EmployeeID": 8, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 20.6, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0.25 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 2, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 20, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10644, - "EmployeeID": 3, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", + "OrderID": 10668, + "EmployeeID": 1, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", "ShipVia": 2, - "Freight": 0.14, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 47.22, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, "Quantity": 4, "Discount": 0.1 }, { - "ProductID": 43, - "UnitPrice": 46, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 15, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11046, + "EmployeeID": 8, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 71.64, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 12, + "UnitPrice": 38, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0.1 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 18, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", + "CustomerID": "GODOS", + "Company": "Godos Cocina Típica", + "ContactName": "José Pedro Freyre", + "ContactTitle": "Sales Manager", + "Address": "C/ Romero, 33", + "City": "Sevilla", + "PostalCode": 41101, + "Country": "Spain", + "Phone": "(95) 555 82 82", "Orders": [ { - "OrderID": 10645, - "EmployeeID": 4, - "OrderDate": "1997-08-26T00:00:00", - "RequiredDate": "1997-09-23T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", - "ShipVia": 1, - "Freight": 12.41, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10303, + "EmployeeID": 7, + "OrderDate": "1996-09-11T00:00:00", + "RequiredDate": "1996-10-09T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 107.83, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 10, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10646, - "EmployeeID": 9, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", + "OrderID": 10550, + "EmployeeID": 7, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-06-25T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", "ShipVia": 3, - "Freight": 142.33, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 4.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10647, + "OrderID": 10629, "EmployeeID": 4, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 2, - "Freight": 45.54, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 85.46, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10648, + "OrderID": 10872, "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-09T00:00:00", + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", "ShipVia": 2, - "Freight": 14.25, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 175.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, "Quantity": 15, - "Discount": 0.16 + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 28000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10649, + "OrderID": 10874, "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-09-25T00:00:00", - "ShippedDate": "1997-08-29T00:00:00", - "ShipVia": 3, - "Freight": 6.2, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 47000, - "ShipCountry": "Belgium", + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", + "ShipVia": 2, + "Freight": 19.58, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10888, + "EmployeeID": 1, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", + "ShipVia": 2, + "Freight": 51.87, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, "Quantity": 20, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10650, - "EmployeeID": 5, - "OrderDate": "1997-08-29T00:00:00", - "RequiredDate": "1997-09-26T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 3, - "Freight": 176.81, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10911, + "EmployeeID": 3, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", + "ShipVia": 1, + "Freight": 38.19, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10651, - "EmployeeID": 8, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 2, - "Freight": 20.6, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10948, + "EmployeeID": 3, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", + "ShipVia": 3, + "Freight": 23.39, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10652, - "EmployeeID": 4, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", - "ShipVia": 2, - "Freight": 7.14, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 11009, + "EmployeeID": 2, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 59.11, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 2, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 18, "Discount": 0.25 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10653, - "EmployeeID": 1, - "OrderDate": "1997-09-02T00:00:00", - "RequiredDate": "1997-09-30T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", + "OrderID": 11037, + "EmployeeID": 7, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", "ShipVia": 1, - "Freight": 93.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 3.2, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 4, + "Discount": 0 } ] } - ] + ], + "Fax": "(95) 555 82 82" }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 33000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "OLDWO", + "Company": "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", "Orders": [ { - "OrderID": 10654, - "EmployeeID": 5, - "OrderDate": "1997-09-02T00:00:00", - "RequiredDate": "1997-09-30T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 1, - "Freight": 55.26, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 12000, - "ShipCountry": "Sweden", + "OrderID": 10305, + "EmployeeID": 8, + "OrderDate": "1996-09-13T00:00:00", + "RequiredDate": "1996-10-11T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 3, + "Freight": 257.62, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 12, + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 25, "Discount": 0.1 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 25, "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10655, - "EmployeeID": 1, - "OrderDate": "1997-09-03T00:00:00", - "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 2, - "Freight": 4.41, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10656, - "EmployeeID": 6, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", - "ShipVia": 1, - "Freight": 57.15, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, + "OrderID": 10338, + "EmployeeID": 4, + "OrderDate": "1996-10-25T00:00:00", + "RequiredDate": "1996-11-22T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", + "ShipVia": 3, + "Freight": 84.21, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0.1 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10657, - "EmployeeID": 2, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", + "OrderID": 10441, + "EmployeeID": 3, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-24T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 352.69, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "Freight": 73.02, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, + "ProductID": 27, + "UnitPrice": 35.1, "Quantity": 50, "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, + } + ] + }, + { + "OrderID": 10594, + "EmployeeID": 3, + "OrderDate": "1997-07-09T00:00:00", + "RequiredDate": "1997-08-06T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 2, + "Freight": 5.24, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, "Quantity": 24, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 45, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10680, + "EmployeeID": 1, + "OrderDate": "1997-09-24T00:00:00", + "RequiredDate": "1997-10-22T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 1, + "Freight": 26.61, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 10, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, + "Discount": 0.25 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 45, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.25 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10658, - "EmployeeID": 4, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", - "ShipVia": 1, - "Freight": 364.15, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10706, + "EmployeeID": 8, + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-11-13T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 3, + "Freight": 135.63, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 55, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10808, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 45.53, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10659, - "EmployeeID": 7, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", - "ShipVia": 2, - "Freight": 105.81, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10855, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 170.97, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, + "Discount": 0 + }, { "ProductID": 31, "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0.06 + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 24, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10660, - "EmployeeID": 8, - "OrderDate": "1997-09-08T00:00:00", - "RequiredDate": "1997-10-06T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", - "ShipVia": 1, - "Freight": 111.29, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "OrderID": 10965, + "EmployeeID": 6, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", + "ShipVia": 3, + "Freight": 144.38, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10661, - "EmployeeID": 7, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", - "ShipVia": 3, - "Freight": 17.55, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 11034, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 40.32, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 49, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 6, + "Discount": 0 } ] } @@ -19090,13 +14782,13 @@ "Fax": "(503) 555-9646", "Orders": [ { - "OrderID": 10662, - "EmployeeID": 3, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", + "OrderID": 10307, + "EmployeeID": 2, + "OrderDate": "1996-09-17T00:00:00", + "RequiredDate": "1996-10-15T00:00:00", + "ShippedDate": "1996-09-25T00:00:00", "ShipVia": 2, - "Freight": 1.28, + "Freight": 0.56, "ShipName": "Lonesome Pine Restaurant", "ShipAddress": "89 Chiaroscuro Rd.", "ShipCity": "Portland", @@ -19105,132 +14797,50 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10663, - "EmployeeID": 2, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-09-24T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", - "ShipVia": 2, - "Freight": 113.15, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10664, - "EmployeeID": 1, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 3, - "Freight": 1.27, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10317, + "EmployeeID": 6, + "OrderDate": "1996-09-30T00:00:00", + "RequiredDate": "1996-10-28T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10665, - "EmployeeID": 1, - "OrderDate": "1997-09-11T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-17T00:00:00", - "ShipVia": 2, - "Freight": 26.31, + "OrderID": 10544, + "EmployeeID": 4, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 24.91, "ShipName": "Lonesome Pine Restaurant", "ShipAddress": "89 Chiaroscuro Rd.", "ShipCity": "Portland", @@ -19239,249 +14849,292 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 1, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 7, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10662, + "EmployeeID": 3, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 2, + "Freight": 1.28, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10666, - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", + "OrderID": 10665, + "EmployeeID": 1, + "OrderDate": "1997-09-11T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-17T00:00:00", "ShipVia": 2, - "Freight": 232.42, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 26.31, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10667, - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", + "OrderID": 10867, + "EmployeeID": 6, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", "ShipVia": 1, - "Freight": 78.09, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 1.93, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 45, - "Discount": 0.2 - }, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10883, + "EmployeeID": 8, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 3, + "Freight": 0.53, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 14, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10668, - "EmployeeID": 1, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", + "OrderID": 11018, + "EmployeeID": 4, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", "ShipVia": 2, - "Freight": 47.22, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 11.65, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", + "CustomerID": "ANATR", + "Company": "Ana Trujillo Emparedados y helados", + "ContactName": "Ana Trujillo", "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", + "Address": "Avda. de la Constitución 2222", + "City": "México D.F.", + "PostalCode": 5021, + "Country": "Mexico", + "Phone": "(5) 555-4729", + "Fax": "(5) 555-3745", "Orders": [ { - "OrderID": 10669, - "EmployeeID": 2, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", - "ShipVia": 1, - "Freight": 24.39, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - } + "OrderID": 10308, + "EmployeeID": 7, + "OrderDate": "1996-09-18T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-24T00:00:00", + "ShipVia": 3, + "Freight": 1.61, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 5, + "Discount": 0 + } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10670, - "EmployeeID": 4, - "OrderDate": "1997-09-16T00:00:00", - "RequiredDate": "1997-10-14T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", + "OrderID": 10625, + "EmployeeID": 3, + "OrderDate": "1997-08-08T00:00:00", + "RequiredDate": "1997-09-05T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", "ShipVia": 1, - "Freight": 203.48, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 43.9, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 32, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 60, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 25, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10759, + "EmployeeID": 3, + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 3, + "Freight": 11.99, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10926, + "EmployeeID": 4, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 39.92, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 25, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, "Discount": 0 } ] @@ -19489,1902 +15142,1343 @@ ] }, { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", + "CustomerID": "THEBI", + "Company": "The Big Cheese", + "ContactName": "Liz Nixon", "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", + "Address": "89 Jefferson Way Suite 2", + "City": "Portland", + "Region": "OR", + "PostalCode": 97201, + "Country": "USA", + "Phone": "(503) 555-3612", "Orders": [ { - "OrderID": 10671, - "EmployeeID": 1, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-09-24T00:00:00", - "ShipVia": 1, - "Freight": 30.34, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10310, + "EmployeeID": 8, + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-18T00:00:00", + "ShippedDate": "1996-09-27T00:00:00", + "ShipVia": 2, + "Freight": 17.52, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 16, - "UnitPrice": 17.45, + "UnitPrice": 13.9, "Quantity": 10, "Discount": 0 }, { "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, + "UnitPrice": 39.4, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10672, - "EmployeeID": 9, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", + "OrderID": 10708, + "EmployeeID": 6, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 95.75, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 50000, - "ShipCountry": "Sweden", + "Freight": 2.96, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10673, + "OrderID": 10805, "EmployeeID": 2, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 1, - "Freight": 22.76, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 237.34, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 42, + "ProductID": 34, "UnitPrice": 14, - "Quantity": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 35000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10674, - "EmployeeID": 4, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 2, - "Freight": 0.9, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60699, - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10992, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 4.27, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 5, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 2, "Discount": 0 } ] } ], - "Fax": "(198) 555-8888" + "Fax": "(503) 555-3612" }, { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", + "CustomerID": "DUMON", + "Company": "Du monde entier", + "ContactName": "Janine Labrune", + "ContactTitle": "Owner", + "Address": "67, rue des Cinquante Otages", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.67.88.88", + "Fax": "40.67.89.89", "Orders": [ { - "OrderID": 10675, - "EmployeeID": 5, - "OrderDate": "1997-09-19T00:00:00", - "RequiredDate": "1997-10-17T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", - "ShipVia": 2, - "Freight": 31.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10311, + "EmployeeID": 1, + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-26T00:00:00", + "ShipVia": 3, + "Freight": 24.69, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 7, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10676, - "EmployeeID": 2, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-29T00:00:00", + "OrderID": 10609, + "EmployeeID": 7, + "OrderDate": "1997-07-24T00:00:00", + "RequiredDate": "1997-08-21T00:00:00", + "ShippedDate": "1997-07-30T00:00:00", "ShipVia": 2, - "Freight": 2.01, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 1.85, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10677, - "EmployeeID": 1, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", - "ShipVia": 3, - "Freight": 4.03, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10683, + "EmployeeID": 2, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 1, + "Freight": 4.4, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 9, + "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10678, + "OrderID": 10890, "EmployeeID": 7, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", - "ShipVia": 3, - "Freight": 388.98, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 32.76, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 100, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 120, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, + "Quantity": 14, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", + "CustomerID": "ISLAT", + "Company": "Island Trading", + "ContactName": "Helen Bennett", "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", + "Address": "Garden House Crowther Way", + "City": "Cowes", + "Region": "Northeast", + "PostalCode": 26000, + "Country": "UK", + "Phone": "(198) 555-8888", "Orders": [ { - "OrderID": 10679, - "EmployeeID": 8, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 3, - "Freight": 27.94, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10315, + "EmployeeID": 4, + "OrderDate": "1996-09-26T00:00:00", + "RequiredDate": "1996-10-24T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 41.76, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 80379, + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10680, - "EmployeeID": 1, - "OrderDate": "1997-09-24T00:00:00", - "RequiredDate": "1997-10-22T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", - "ShipVia": 1, - "Freight": 26.61, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10318, + "EmployeeID": 8, + "OrderDate": "1996-10-01T00:00:00", + "RequiredDate": "1996-10-29T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 4.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 30676, + "ShipPostalCode": 36000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0.25 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 20, - "Discount": 0.25 + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10681, + "OrderID": 10321, "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 3, - "Freight": 76.13, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-31T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 2, + "Freight": 3.43, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 20137, + "ShipPostalCode": 41000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 28, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10682, - "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 2, - "Freight": 36.13, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10473, + "EmployeeID": 1, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", + "ShipVia": 3, + "Freight": 16.37, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 90698, + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 4, + "UnitPrice": 2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 12, "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10683, - "EmployeeID": 2, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 1, - "Freight": 4.4, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10621, + "EmployeeID": 4, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 2, + "Freight": 23.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 50269, + "ShipPostalCode": 39000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 9, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10684, - "EmployeeID": 3, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 1, - "Freight": 145.63, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ + }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 20, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10685, + "OrderID": 10674, "EmployeeID": 4, - "OrderDate": "1997-09-29T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", "ShipVia": 2, - "Freight": 33.75, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 0.9, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60699, + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10749, + "EmployeeID": 4, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 61.53, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 30222, + "ShipPostalCode": 50000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 15, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10686, + "OrderID": 10798, "EmployeeID": 2, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-08T00:00:00", + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 1, - "Freight": 96.5, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 2.33, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60634, + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10687, + "OrderID": 10829, "EmployeeID": 9, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-30T00:00:00", - "ShipVia": 2, - "Freight": 296.43, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-10T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 1, + "Freight": 154.72, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 50889, + "ShipPostalCode": 16000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, "Quantity": 10, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, - "Discount": 0.25 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10688, - "EmployeeID": 4, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", - "ShipVia": 2, - "Freight": 299.09, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderID": 10933, + "EmployeeID": 6, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 3, + "Freight": 54.15, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40624, + "ShipPostalCode": 44000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 14, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, "Discount": 0 } ] } - ] + ], + "Fax": "(198) 555-8888" }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "PERIC", + "Company": "Pericles Comidas clásicas", + "ContactName": "Guillermo Fernández", + "ContactTitle": "Sales Representative", + "Address": "Calle Dr. Jorge Cash 321", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 552-3745", + "Fax": "(5) 545-3745", "Orders": [ { - "OrderID": 10689, - "EmployeeID": 1, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-29T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", - "ShipVia": 2, - "Freight": 13.42, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 16000, - "ShipCountry": "Sweden", + "OrderID": 10322, + "EmployeeID": 7, + "OrderDate": "1996-10-04T00:00:00", + "RequiredDate": "1996-11-01T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 3, + "Freight": 0.4, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10690, - "EmployeeID": 1, - "OrderDate": "1997-10-02T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", - "ShipVia": 1, - "Freight": 15.8, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10354, + "EmployeeID": 8, + "OrderDate": "1996-11-14T00:00:00", + "RequiredDate": "1996-12-12T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 3, + "Freight": 53.8, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.25 - }, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 12, + "Discount": 0 + }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10691, - "EmployeeID": 2, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-10-22T00:00:00", + "OrderID": 10474, + "EmployeeID": 5, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-04-10T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", "ShipVia": 2, - "Freight": 810.05, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 83.49, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 40, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 40, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 24, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 48, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10692, - "EmployeeID": 4, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-10-31T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", - "ShipVia": 2, - "Freight": 61.02, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "OrderID": 10502, + "EmployeeID": 2, + "OrderDate": "1997-04-10T00:00:00", + "RequiredDate": "1997-05-08T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", + "ShipVia": 1, + "Freight": 69.32, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10693, - "EmployeeID": 3, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-10-10T00:00:00", + "OrderID": 10995, + "EmployeeID": 1, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", "ShipVia": 3, - "Freight": 139.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 46, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 6, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 60, - "Discount": 0.16 - }, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11073, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-15T00:00:00", + "ShipVia": 2, + "Freight": 24.95, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, + "CustomerID": "KOENE", + "Company": "Königlich Essen", + "ContactName": "Philip Cramer", + "ContactTitle": "Sales Associate", + "Address": "Maubelstr. 90", + "City": "Brandenburg", + "PostalCode": 14776, "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "Phone": "0555-09876", "Orders": [ { - "OrderID": 10694, - "EmployeeID": 8, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-11-03T00:00:00", - "ShippedDate": "1997-10-09T00:00:00", - "ShipVia": 3, - "Freight": 398.36, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10323, + "EmployeeID": 4, + "OrderDate": "1996-10-07T00:00:00", + "RequiredDate": "1996-11-04T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 4.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 90, + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10695, - "EmployeeID": 7, - "OrderDate": "1997-10-07T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 1, - "Freight": 16.72, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10325, + "EmployeeID": 1, + "OrderDate": "1996-10-09T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 3, + "Freight": 64.86, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 10, "Quantity": 4, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10696, + "OrderID": 10456, "EmployeeID": 8, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 3, - "Freight": 102.55, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderDate": "1997-02-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 8.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 18, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 21, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10697, + "OrderID": 10468, "EmployeeID": 3, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-05T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 1, - "Freight": 45.52, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderDate": "1997-03-07T00:00:00", + "RequiredDate": "1997-04-04T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 44.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 9, - "Discount": 0.25 - }, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10506, + "EmployeeID": 9, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 21.19, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 18, + "Discount": 0.1 }, { "ProductID": 70, "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.25 + "Quantity": 14, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10698, - "EmployeeID": 4, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-17T00:00:00", - "ShipVia": 1, - "Freight": 272.47, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10542, + "EmployeeID": 1, + "OrderDate": "1997-05-20T00:00:00", + "RequiredDate": "1997-06-17T00:00:00", + "ShippedDate": "1997-05-26T00:00:00", + "ShipVia": 3, + "Freight": 10.95, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 11, "UnitPrice": 21, "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 65, "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 24, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10699, - "EmployeeID": 3, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", - "ShipVia": 3, - "Freight": 0.58, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, + "OrderID": 10630, + "EmployeeID": 1, + "OrderDate": "1997-08-13T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 2, + "Freight": 32.35, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10700, - "EmployeeID": 3, - "OrderDate": "1997-10-10T00:00:00", - "RequiredDate": "1997-11-07T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", - "ShipVia": 1, - "Freight": 65.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10718, + "EmployeeID": 1, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 3, + "Freight": 170.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0.2 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 40, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.2 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10701, - "EmployeeID": 6, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-10-27T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", + "OrderID": 10799, + "EmployeeID": 9, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 3, - "Freight": 220.31, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 30.76, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 20, "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10702, - "EmployeeID": 4, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", - "ShipVia": 1, - "Freight": 23.94, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0 + "OrderID": 10817, + "EmployeeID": 3, + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 306.07, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 15, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10703, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-10-20T00:00:00", + "OrderID": 10849, + "EmployeeID": 9, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 2, - "Freight": 152.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 28000, - "ShipCountry": "Sweden", + "Freight": 0.56, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 49, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 18, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10704, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", - "ShipVia": 1, - "Freight": 4.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10893, + "EmployeeID": 9, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 2, + "Freight": 77.78, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 6, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, "Discount": 0 }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 35, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 48, - "UnitPrice": 12.75, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 24, "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10705, - "EmployeeID": 9, - "OrderDate": "1997-10-15T00:00:00", - "RequiredDate": "1997-11-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 2, - "Freight": 3.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ + }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 4, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10706, - "EmployeeID": 8, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-11-13T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", - "ShipVia": 3, - "Freight": 135.63, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 11028, + "EmployeeID": 2, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 1, + "Freight": 29.59, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { "ProductID": 59, "UnitPrice": 55, - "Quantity": 8, + "Quantity": 24, "Discount": 0 } ] } - ] + ], + "Fax": "0555-09876" }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", + "CustomerID": "SAVEA", + "Company": "Save-a-lot Markets", + "ContactName": "Jose Pavarotti", "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 10000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Address": "187 Suffolk Ln.", + "City": "Boise", + "Region": "ID", + "PostalCode": 83720, + "Country": "USA", + "Phone": "(208) 555-8097", "Orders": [ { - "OrderID": 10707, - "EmployeeID": 4, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", - "ShipVia": 3, - "Freight": 21.74, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 28000, - "ShipCountry": "UK", + "OrderID": 10324, + "EmployeeID": 9, + "OrderDate": "1996-10-08T00:00:00", + "RequiredDate": "1996-11-05T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", + "ShipVia": 1, + "Freight": 214.27, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 16, + "UnitPrice": 13.9, "Quantity": 21, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 40, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 70, + "Discount": 0.16 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 28, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 40, "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ - { - "OrderID": 10708, - "EmployeeID": 6, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 2.96, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 4, - "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 80, + "Discount": 0.16 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10709, + "OrderID": 10393, "EmployeeID": 1, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-11-20T00:00:00", + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", "ShipVia": 3, - "Freight": 210.8, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 126.56, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 40, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 28, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 42, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ - { - "OrderID": 10710, - "EmployeeID": 1, - "OrderDate": "1997-10-20T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", - "ShipVia": 1, - "Freight": 4.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", - "OrderDetails": [ + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 7, + "Discount": 0.25 + }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 70, + "Discount": 0.25 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 32, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10711, - "EmployeeID": 5, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 2, - "Freight": 52.41, + "OrderID": 10398, + "EmployeeID": 2, + "OrderDate": "1996-12-30T00:00:00", + "RequiredDate": "1997-01-27T00:00:00", + "ShippedDate": "1997-01-09T00:00:00", + "ShipVia": 3, + "Freight": 89.16, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21393,92 +16487,68 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 42, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 55, + "UnitPrice": 19.2, "Quantity": 120, - "Discount": 0 + "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10712, - "EmployeeID": 3, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", - "ShipVia": 1, - "Freight": 89.93, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10440, + "EmployeeID": 4, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-10T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 86.53, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 45, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 49, + "Discount": 0.16 + }, + { + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 24, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 90, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10713, - "EmployeeID": 1, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-24T00:00:00", + "OrderID": 10452, + "EmployeeID": 8, + "OrderDate": "1997-02-20T00:00:00", + "RequiredDate": "1997-03-20T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", "ShipVia": 1, - "Freight": 167.05, + "Freight": 140.26, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21487,39 +16557,56 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0 - }, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 100, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10510, + "EmployeeID": 6, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", + "ShipVia": 3, + "Freight": 367.63, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 110, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 24, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 36, + "Discount": 0.1 } ] }, { - "OrderID": 10714, - "EmployeeID": 5, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", + "OrderID": 10555, + "EmployeeID": 6, + "OrderDate": "1997-06-02T00:00:00", + "RequiredDate": "1997-06-30T00:00:00", + "ShippedDate": "1997-06-04T00:00:00", "ShipVia": 3, - "Freight": 24.49, + "Freight": 252.49, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21528,382 +16615,291 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 14, + "UnitPrice": 23.25, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.2 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 27, - "Discount": 0.25 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 18, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, + "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10715, - "EmployeeID": 3, - "OrderDate": "1997-10-23T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 1, - "Freight": 63.2, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10603, + "EmployeeID": 8, + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 2, + "Freight": 48.77, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 21, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 48, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10716, - "EmployeeID": 4, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", - "ShipVia": 2, - "Freight": 22.57, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10607, + "EmployeeID": 5, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 1, + "Freight": 200.24, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 7, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 100, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10717, - "EmployeeID": 1, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 2, - "Freight": 59.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 32, - "Discount": 0.06 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 42, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10718, + "OrderID": 10612, "EmployeeID": 1, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 3, - "Freight": 170.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderDate": "1997-07-28T00:00:00", + "RequiredDate": "1997-08-25T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 2, + "Freight": 544.08, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, "Quantity": 40, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 80, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10719, + "OrderID": 10627, "EmployeeID": 8, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 51.44, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 107.46, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 12, - "Discount": 0.25 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 3, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, + "Discount": 0.16 } ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10720, - "EmployeeID": 8, - "OrderDate": "1997-10-28T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", + "OrderID": 10657, + "EmployeeID": 2, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", "ShipVia": 2, - "Freight": 9.53, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 352.69, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 8, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10721, - "EmployeeID": 5, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-11-26T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", + "OrderID": 10678, + "EmployeeID": 7, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", "ShipVia": 3, - "Freight": 48.92, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 388.98, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 100, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 120, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10722, - "EmployeeID": 8, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-04T00:00:00", + "OrderID": 10700, + "EmployeeID": 3, + "OrderDate": "1997-10-10T00:00:00", + "RequiredDate": "1997-11-07T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", "ShipVia": 1, - "Freight": 74.58, + "Freight": 65.1, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21912,1506 +16908,1248 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 3, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.2 }, { "ProductID": 68, "UnitPrice": 12.5, - "Quantity": 45, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10711, + "EmployeeID": 5, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 2, + "Freight": 52.41, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 42, "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 120, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10723, - "EmployeeID": 3, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-11-27T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", + "OrderID": 10713, + "EmployeeID": 1, + "OrderDate": "1997-10-22T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-24T00:00:00", "ShipVia": 1, - "Freight": 21.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, + "Freight": 167.05, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0 + }, { "ProductID": 26, "UnitPrice": 31.23, - "Quantity": 15, + "Quantity": 30, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 26000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10724, - "EmployeeID": 8, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 57.75, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 20000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 110, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10725, - "EmployeeID": 4, - "OrderDate": "1997-10-31T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 3, - "Freight": 10.83, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10722, + "EmployeeID": 8, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-04T00:00:00", + "ShipVia": 1, + "Freight": 74.58, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 43000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10726, - "EmployeeID": 4, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", + "OrderID": 10748, + "EmployeeID": 3, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", "ShipVia": 1, - "Freight": 16.56, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 24000, - "ShipCountry": "UK", + "Freight": 232.55, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 44, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10727, - "EmployeeID": 2, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-12-01T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", + "OrderID": 10757, + "EmployeeID": 6, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", "ShipVia": 1, - "Freight": 89.9, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 8.19, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 59, "UnitPrice": 55, - "Quantity": 10, - "Discount": 0.06 + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 24, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10728, - "EmployeeID": 4, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-11-11T00:00:00", - "ShipVia": 2, - "Freight": 58.33, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10815, + "EmployeeID": 2, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 3, + "Freight": 14.62, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10847, + "EmployeeID": 4, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 3, + "Freight": 487.57, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.2 }, { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 19, + "UnitPrice": 9.2, "Quantity": 12, - "Discount": 0 + "Discount": 0.2 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 60, + "Discount": 0.2 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 36, + "Discount": 0.2 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "Quantity": 45, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 55, + "Discount": 0.2 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10729, - "EmployeeID": 8, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", + "OrderID": 10882, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 3, - "Freight": 141.06, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 23.1, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 50, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 40, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 32, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10730, - "EmployeeID": 5, - "OrderDate": "1997-11-05T00:00:00", - "RequiredDate": "1997-12-03T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", + "OrderID": 10894, + "EmployeeID": 1, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 1, - "Freight": 20.12, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 116.13, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 28, "Discount": 0.06 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 3, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 50, "Discount": 0.06 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 120, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10731, + "OrderID": 10941, "EmployeeID": 7, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", - "ShipVia": 1, - "Freight": 96.65, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 2, + "Freight": 400.81, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 44, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 30, - "Discount": 0.06 + "Discount": 0.25 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 80, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10732, - "EmployeeID": 3, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", - "ShipVia": 1, - "Freight": 16.97, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10983, + "EmployeeID": 2, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", + "ShipVia": 2, + "Freight": 657.54, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 84, + "Discount": 0.16 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 30000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10733, - "EmployeeID": 1, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-10T00:00:00", - "ShipVia": 3, - "Freight": 110.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 34000, - "ShipCountry": "Sweden", + "OrderID": 11002, + "EmployeeID": 4, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 1, + "Freight": 141.16, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 16, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 56, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 25, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.16 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10734, - "EmployeeID": 2, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-12T00:00:00", - "ShipVia": 3, - "Freight": 1.63, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 11030, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 2, + "Freight": 830.75, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 100, + "Discount": 0.25 + }, + { + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 100, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11064, + "EmployeeID": 1, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 30.09, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 77, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 55, "Discount": 0 } ] } ], - "Fax": "(11) 555-9482" + "Fax": "(208) 555-8097" }, { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", + "CustomerID": "BOLID", + "Company": "Bólido Comidas preparadas", + "ContactName": "Martín Sommer", "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", + "Address": "C/ Araquil, 67", + "City": "Madrid", + "PostalCode": 28023, + "Country": "Spain", + "Phone": "(91) 555 22 82", + "Fax": "(91) 555 91 99", "Orders": [ { - "OrderID": 10735, - "EmployeeID": 6, - "OrderDate": "1997-11-10T00:00:00", - "RequiredDate": "1997-12-08T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderID": 10326, + "EmployeeID": 4, + "OrderDate": "1996-10-10T00:00:00", + "RequiredDate": "1996-11-07T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", "ShipVia": 2, - "Freight": 45.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "Freight": 77.92, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10736, - "EmployeeID": 9, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 2, - "Freight": 44.1, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 40, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 16, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, + "UnitPrice": 6.2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10737, - "EmployeeID": 2, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10801, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", "ShipVia": 2, - "Freight": 7.79, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 97.09, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 4, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 10738, - "EmployeeID": 2, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10970, + "EmployeeID": 9, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", "ShipVia": 1, - "Freight": 2.91, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 16.16, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 40, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", + "CustomerID": "FURIB", + "Company": "Furia Bacalhau e Frutos do Mar", + "ContactName": "Lino Rodriguez", + "ContactTitle": "Sales Manager", + "Address": "Jardim das rosas n. 32", + "City": "Lisboa", + "PostalCode": 1675, + "Country": "Portugal", + "Phone": "(1) 354-2534", + "Fax": "(1) 354-2535", "Orders": [ { - "OrderID": 10739, - "EmployeeID": 3, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-17T00:00:00", + "OrderID": 10328, + "EmployeeID": 4, + "OrderDate": "1996-10-14T00:00:00", + "RequiredDate": "1996-11-11T00:00:00", + "ShippedDate": "1996-10-17T00:00:00", "ShipVia": 3, - "Freight": 11.08, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 87.03, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 18, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 40, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, + "Discount": 0 + } + ] + }, { - "OrderID": 10740, + "OrderID": 10352, + "EmployeeID": 3, + "OrderDate": "1996-11-12T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-18T00:00:00", + "ShipVia": 3, + "Freight": 1.3, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 20, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10464, "EmployeeID": 4, - "OrderDate": "1997-11-13T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 81.88, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 89, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 16, "Discount": 0.2 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, - "Discount": 0.2 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10741, - "EmployeeID": 4, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10491, + "EmployeeID": 8, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-08T00:00:00", "ShipVia": 3, - "Freight": 10.96, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 27000, - "ShipCountry": "UK", + "Freight": 16.96, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 44, + "UnitPrice": 15.5, "Quantity": 15, - "Discount": 0.2 + "Discount": 0.16 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 17000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10742, - "EmployeeID": 3, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-12-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10551, + "EmployeeID": 4, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", "ShipVia": 3, - "Freight": 243.73, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 17000, - "ShipCountry": "Canada", + "Freight": 72.95, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 41000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10743, + "OrderID": 10604, "EmployeeID": 1, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", + "ShipVia": 1, + "Freight": 7.46, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 28, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10744, - "EmployeeID": 6, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", - "ShipVia": 1, - "Freight": 69.19, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 6, + "Discount": 0.1 + }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10745, - "EmployeeID": 9, - "OrderDate": "1997-11-18T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 1, - "Freight": 3.52, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10664, + "EmployeeID": 1, + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 3, + "Freight": 1.27, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 24, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 45, - "Discount": 0 - }, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10963, + "EmployeeID": 9, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 3, + "Freight": 2.7, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", + "CustomerID": "BONAP", + "Company": "Bon app", + "ContactName": "Laurence Lebihan", "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", "Orders": [ { - "OrderID": 10746, - "EmployeeID": 1, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 3, - "Freight": 31.43, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10331, + "EmployeeID": 9, + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-27T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", + "ShipVia": 1, + "Freight": 10.19, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 15, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10340, + "EmployeeID": 1, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 166.31, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 9, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, + "ProductID": 43, + "UnitPrice": 36.8, "Quantity": 40, - "Discount": 0 + "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10747, - "EmployeeID": 6, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-26T00:00:00", + "OrderID": 10362, + "EmployeeID": 3, + "OrderDate": "1996-11-25T00:00:00", + "RequiredDate": "1996-12-23T00:00:00", + "ShippedDate": "1996-11-28T00:00:00", "ShipVia": 1, - "Freight": 117.33, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 96.04, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 9, - "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10748, - "EmployeeID": 3, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", - "ShipVia": 1, - "Freight": 232.55, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 44, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 14000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10749, + "OrderID": 10470, "EmployeeID": 4, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 61.53, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 30222, - "ShipPostalCode": 50000, - "ShipCountry": "UK", + "Freight": 64.56, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 15, + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 6, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10750, - "EmployeeID": 9, - "OrderDate": "1997-11-21T00:00:00", - "RequiredDate": "1997-12-19T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", - "ShipVia": 1, - "Freight": 79.3, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10511, + "EmployeeID": 4, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 350.64, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, "Discount": 0.16 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 50, "Discount": 0.16 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10751, - "EmployeeID": 3, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-12-03T00:00:00", - "ShipVia": 3, - "Freight": 130.79, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10525, + "EmployeeID": 1, + "OrderDate": "1997-05-02T00:00:00", + "RequiredDate": "1997-05-30T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 2, + "Freight": 11.06, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 30, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 73, - "UnitPrice": 15, + "ProductID": 40, + "UnitPrice": 18.4, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 36000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ + }, { - "OrderID": 10752, + "OrderID": 10663, "EmployeeID": 2, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", - "ShipVia": 3, - "Freight": 1.39, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-09-24T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 113.15, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 3, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10753, + "OrderID": 10715, "EmployeeID": 3, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", + "OrderDate": "1997-10-23T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 1, - "Freight": 7.7, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "Freight": 63.2, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 4, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10754, - "EmployeeID": 6, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 3, - "Freight": 2.38, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10730, + "EmployeeID": 5, + "OrderDate": "1997-11-05T00:00:00", + "RequiredDate": "1997-12-03T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 1, + "Freight": 20.12, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10732, + "EmployeeID": 3, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", + "ShipVia": 1, + "Freight": 16.97, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { "OrderID": 10755, "EmployeeID": 4, @@ -23451,247 +18189,195 @@ "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10756, - "EmployeeID": 8, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-02T00:00:00", + "OrderID": 10827, + "EmployeeID": 1, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", "ShipVia": 2, - "Freight": 73.21, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 63.54, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10757, - "EmployeeID": 6, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 1, - "Freight": 8.19, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10871, + "EmployeeID": 9, + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 112.27, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 50, + "Discount": 0.06 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 7, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 30, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10876, + "EmployeeID": 7, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 60.42, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 21, "Discount": 0 }, { "ProductID": 64, "UnitPrice": 33.25, - "Quantity": 24, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10758, - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-04T00:00:00", - "ShipVia": 3, - "Freight": 138.17, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10932, + "EmployeeID": 8, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", + "ShipVia": 1, + "Freight": 134.64, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 60, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 14, + "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 16, "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10759, - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", + "OrderID": 10940, + "EmployeeID": 8, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", "ShipVia": 3, - "Freight": 11.99, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 19.77, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10760, + "OrderID": 11076, "EmployeeID": 4, - "OrderDate": "1997-12-01T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1997-12-10T00:00:00", - "ShipVia": 1, - "Freight": 155.64, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-06-08T00:00:00", + "ShipVia": 2, + "Freight": 38.28, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 12, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, "Discount": 0.25 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 40, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, "Discount": 0.25 } ] @@ -23699,4607 +18385,398 @@ ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "MEREP", + "Company": "Mère Paillarde", + "ContactName": "Jean Fresnière", + "ContactTitle": "Marketing Assistant", + "Address": "43 rue St. Laurent", + "City": "Montréal", + "Region": "Québec", + "PostalCode": 20000, + "Country": "Canada", + "Phone": "(514) 555-8054", + "Fax": "(514) 555-8055", "Orders": [ { - "OrderID": 10761, - "EmployeeID": 5, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", + "OrderID": 10332, + "EmployeeID": 3, + "OrderDate": "1996-10-17T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", "ShipVia": 2, - "Freight": 18.66, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 52.84, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 28000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 18, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 16, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 13000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10762, - "EmployeeID": 3, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 1, - "Freight": 328.74, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 44000, - "ShipCountry": "Sweden", + "OrderID": 10339, + "EmployeeID": 2, + "OrderDate": "1996-10-28T00:00:00", + "RequiredDate": "1996-11-25T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", + "ShipVia": 2, + "Freight": 15.66, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 16, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 28, "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10763, - "EmployeeID": 3, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", - "ShipVia": 3, - "Freight": 37.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "OrderID": 10376, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 2, + "Freight": 20.39, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 39000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 21, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "Quantity": 42, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10424, + "EmployeeID": 7, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-20T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 2, + "Freight": 370.61, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 22000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 6, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 49, + "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10764, + "OrderID": 10439, "EmployeeID": 6, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", + "OrderDate": "1997-02-07T00:00:00", + "RequiredDate": "1997-03-07T00:00:00", + "ShippedDate": "1997-02-10T00:00:00", "ShipVia": 3, - "Freight": 145.45, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 130, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10765, - "EmployeeID": 3, - "OrderDate": "1997-12-04T00:00:00", - "RequiredDate": "1998-01-01T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 3, - "Freight": 42.74, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 80, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10766, - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 1, - "Freight": 157.55, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 28000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10767, - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 3, - "Freight": 1.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 44000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 22000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10768, - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 2, - "Freight": 146.32, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10769, - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 65.06, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10770, - "EmployeeID": 8, - "OrderDate": "1997-12-09T00:00:00", - "RequiredDate": "1998-01-06T00:00:00", - "ShippedDate": "1997-12-17T00:00:00", - "ShipVia": 3, - "Freight": 5.32, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10771, - "EmployeeID": 9, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 2, - "Freight": 11.19, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10772, - "EmployeeID": 3, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 2, - "Freight": 91.28, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10773, - "EmployeeID": 1, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1998-01-08T00:00:00", - "ShippedDate": "1997-12-16T00:00:00", - "ShipVia": 3, - "Freight": 96.43, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 33, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 70, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 7, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10774, - "EmployeeID": 4, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 48.2, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 2, - "Discount": 0.25 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "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", - "Orders": [ - { - "OrderID": 10775, - "EmployeeID": 7, - "OrderDate": "1997-12-12T00:00:00", - "RequiredDate": "1998-01-09T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 20.25, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10776, - "EmployeeID": 1, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1998-01-12T00:00:00", - "ShippedDate": "1997-12-18T00:00:00", - "ShipVia": 3, - "Freight": 351.53, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 27, - "Discount": 0.06 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 120, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 10777, - "EmployeeID": 7, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 2, - "Freight": 3.01, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 11000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10778, - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 1, - "Freight": 6.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 39000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ - { - "OrderID": 10779, - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 2, - "Freight": 58.13, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0 - } - ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10780, - "EmployeeID": 2, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-25T00:00:00", - "ShipVia": 1, - "Freight": 42.13, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10781, - "EmployeeID": 2, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 3, - "Freight": 73.16, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0.2 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10782, - "EmployeeID": 9, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 1.1, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 1, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10783, - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 2, - "Freight": 124.98, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10784, - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 70.09, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.16 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "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", - "Orders": [ - { - "OrderID": 10785, - "EmployeeID": 1, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 3, - "Freight": 1.51, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10786, - "EmployeeID": 8, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-16T00:00:00", - "ShippedDate": "1997-12-23T00:00:00", - "ShipVia": 1, - "Freight": 110.87, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 42, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10787, - "EmployeeID": 2, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 249.93, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10788, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 42.7, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ - { - "OrderID": 10789, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 2, - "Freight": 100.6, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 10790, - "EmployeeID": 6, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 28.23, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 3, - "Discount": 0.16 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.16 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10791, - "EmployeeID": 6, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-01T00:00:00", - "ShipVia": 2, - "Freight": 16.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10792, - "EmployeeID": 1, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 3, - "Freight": 23.79, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 19000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10793, - "EmployeeID": 3, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", - "ShipVia": 3, - "Freight": 4.52, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 32000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ - { - "OrderID": 10794, - "EmployeeID": 6, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 1, - "Freight": 21.49, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10795, - "EmployeeID": 8, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-20T00:00:00", - "ShipVia": 2, - "Freight": 126.66, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 65, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 35, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10796, - "EmployeeID": 3, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 1, - "Freight": 26.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 24, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ - { - "OrderID": 10797, - "EmployeeID": 7, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 2, - "Freight": 33.35, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10798, - "EmployeeID": 2, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 1, - "Freight": 2.33, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60634, - "ShipPostalCode": 40000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10799, - "EmployeeID": 9, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 3, - "Freight": 30.76, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10800, - "EmployeeID": 1, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 3, - "Freight": 137.44, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 41000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 7, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ - { - "OrderID": 10801, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 2, - "Freight": 97.09, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ - { - "OrderID": 10802, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 2, - "Freight": 257.26, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 5, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ - { - "OrderID": 10803, - "EmployeeID": 4, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-06T00:00:00", - "ShipVia": 1, - "Freight": 55.23, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 24, - "Discount": 0.06 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10804, - "EmployeeID": 6, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 2, - "Freight": 27.33, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 38000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 36, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 4, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ - { - "OrderID": 10805, - "EmployeeID": 2, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 3, - "Freight": 237.34, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10806, - "EmployeeID": 3, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 2, - "Freight": 22.11, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ - { - "OrderID": 10807, - "EmployeeID": 4, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 1, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ - { - "OrderID": 10808, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 3, - "Freight": 45.53, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ - { - "OrderID": 10809, - "EmployeeID": 7, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 1, - "Freight": 4.87, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 28000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ - { - "OrderID": 10810, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 3, - "Freight": 4.33, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 48000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10811, - "EmployeeID": 8, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", - "ShipVia": 1, - "Freight": 31.22, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10812, - "EmployeeID": 5, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 1, - "Freight": 59.78, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.1 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ - { - "OrderID": 10813, - "EmployeeID": 1, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 1, - "Freight": 47.38, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0.2 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10814, - "EmployeeID": 3, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 130.94, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 8, - "Discount": 0.16 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10815, - "EmployeeID": 2, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 14.62, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ - { - "OrderID": 10816, - "EmployeeID": 4, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-02-03T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 2, - "Freight": 719.78, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10817, - "EmployeeID": 3, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 306.07, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 25, - "Discount": 0.16 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10818, - "EmployeeID": 7, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 3, - "Freight": 65.48, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10819, - "EmployeeID": 2, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 19.76, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10820, - "EmployeeID": 3, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 37.52, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ - { - "OrderID": 10821, - "EmployeeID": 1, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-15T00:00:00", - "ShipVia": 1, - "Freight": 36.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "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", - "Orders": [ - { - "OrderID": 10822, - "EmployeeID": 6, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 7, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10823, - "EmployeeID": 5, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 163.97, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 29000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10824, - "EmployeeID": 8, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 1.23, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 39000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ - { - "OrderID": 10825, - "EmployeeID": 1, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 1, - "Freight": 79.25, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10826, - "EmployeeID": 6, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", - "ShipVia": 1, - "Freight": 7.09, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10827, - "EmployeeID": 1, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", - "ShipVia": 2, - "Freight": 63.54, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ - { - "OrderID": 10828, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 1, - "Freight": 90.85, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10829, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-10T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 1, - "Freight": 154.72, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 50889, - "ShipPostalCode": 16000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10830, - "EmployeeID": 4, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 2, - "Freight": 81.83, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ - { - "OrderID": 10831, - "EmployeeID": 3, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 2, - "Freight": 72.19, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10832, - "EmployeeID": 2, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 43.26, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 3, - "Discount": 0.2 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0.2 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10833, - "EmployeeID": 6, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 2, - "Freight": 71.49, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 9, - "Discount": 0.1 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 9, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10834, - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 3, - "Freight": 29.78, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 8, - "Discount": 0.06 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ - { - "OrderID": 10835, - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 3, - "Freight": 69.53, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10836, - "EmployeeID": 7, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 1, - "Freight": 411.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 52, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 47000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10837, - "EmployeeID": 9, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 13.32, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 17000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10838, - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 59.28, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10839, - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-22T00:00:00", - "ShipVia": 3, - "Freight": 35.43, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10840, - "EmployeeID": 4, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", - "ShipVia": 2, - "Freight": 2.71, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 6, - "Discount": 0.2 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 22000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10841, - "EmployeeID": 5, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 2, - "Freight": 424.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 27000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10842, - "EmployeeID": 1, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 3, - "Freight": 54.42, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10843, - "EmployeeID": 4, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 9.26, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 4, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10844, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 25.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10845, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 212.98, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.1 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 42, - "Discount": 0.1 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 60, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 48, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 15000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10846, - "EmployeeID": 2, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 56.46, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 15000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10847, - "EmployeeID": 4, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 3, - "Freight": 487.57, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.2 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.2 - }, - { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 60, - "Discount": 0.2 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 36, - "Discount": 0.2 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 45, - "Discount": 0.2 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 55, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 43000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ - { - "OrderID": 10848, - "EmployeeID": 7, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 2, - "Freight": 38.24, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 36000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10849, - "EmployeeID": 9, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 49, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 18, - "Discount": 0.16 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10850, - "EmployeeID": 1, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 49.19, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 4, - "Discount": 0.16 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ - { - "OrderID": 10851, - "EmployeeID": 5, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-23T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", - "ShipVia": 1, - "Freight": 160.55, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 4.07, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0.06 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.06 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10852, - "EmployeeID": 8, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 174.05, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 39, + "ProductID": 64, + "UnitPrice": 26.6, "Quantity": 6, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 50, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10853, - "EmployeeID": 9, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", - "ShipVia": 2, - "Freight": 53.83, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10505, + "EmployeeID": 3, + "OrderDate": "1997-04-14T00:00:00", + "RequiredDate": "1997-05-12T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 7.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 33000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10854, - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-05T00:00:00", + "OrderID": 10565, + "EmployeeID": 8, + "OrderDate": "1997-06-11T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", "ShipVia": 2, - "Freight": 100.22, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 7.15, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 21000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 100, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 18, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10855, + "OrderID": 10570, "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 1, - "Freight": 170.97, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 14, - "Discount": 0 + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-19T00:00:00", + "ShipVia": 3, + "Freight": 188.99, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0.06 }, { "ProductID": 56, "UnitPrice": 38, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "Quantity": 60, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10856, - "EmployeeID": 3, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 2, - "Freight": 58.43, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10590, + "EmployeeID": 4, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 3, + "Freight": 44.77, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 20, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 60, + "Discount": 0.06 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 48000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10857, - "EmployeeID": 8, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", + "OrderID": 10605, + "EmployeeID": 1, + "OrderDate": "1997-07-21T00:00:00", + "RequiredDate": "1997-08-18T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", "ShipVia": 2, - "Freight": 188.85, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", + "Freight": 379.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.25 + "Discount": 0.06 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ - { - "OrderID": 10858, - "EmployeeID": 2, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", - "ShipVia": 1, - "Freight": 52.51, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 5, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 10, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10859, + "OrderID": 10618, "EmployeeID": 1, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", - "ShipVia": 2, - "Freight": 76.1, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderDate": "1997-08-01T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 1, + "Freight": 154.68, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 30000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, { - "OrderID": 10860, - "EmployeeID": 3, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 3, - "Freight": 19.26, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10724, + "EmployeeID": 8, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 2, + "Freight": 57.75, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 20000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] @@ -28307,2480 +18784,2081 @@ ] }, { - "CustomerID": "WHITC", - "Company": "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": "PRINI", + "Company": "Princesa Isabel Vinhos", + "ContactName": "Isabel de Castro", + "ContactTitle": "Sales Representative", + "Address": "Estrada da saúde n. 58", + "City": "Lisboa", + "PostalCode": 1756, + "Country": "Portugal", + "Phone": "(1) 356-5634", "Orders": [ { - "OrderID": 10861, - "EmployeeID": 4, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-02-27T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", + "OrderID": 10336, + "EmployeeID": 7, + "OrderDate": "1996-10-23T00:00:00", + "RequiredDate": "1996-11-20T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", "ShipVia": 2, - "Freight": 14.93, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 15.51, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 42, - "Discount": 0 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, - "Discount": 0 - }, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 18, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10397, + "EmployeeID": 5, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-24T00:00:00", + "ShippedDate": "1997-01-02T00:00:00", + "ShipVia": 1, + "Freight": 60.26, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ { "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 35, - "Discount": 0 - }, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10433, + "EmployeeID": 3, + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 73.83, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10862, - "EmployeeID": 8, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderID": 10477, + "EmployeeID": 5, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", "ShipVia": 2, - "Freight": 53.23, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 13.02, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 25, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10863, - "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", + "OrderID": 11007, + "EmployeeID": 8, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 30.26, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 202.24, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 14, + "Discount": 0 } ] } - ] + ], + "Fax": "(1) 356-5634" }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 31000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "CustomerID": "SIMOB", + "Company": "Simons bistro", + "ContactName": "Jytte Petersen", + "ContactTitle": "Owner", + "Address": "Vinbæltet 34", + "City": "Kobenhavn", + "PostalCode": 1734, + "Country": "Denmark", + "Phone": "31 12 34 56", + "Fax": "31 13 35 57", "Orders": [ { - "OrderID": 10864, + "OrderID": 10341, + "EmployeeID": 7, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", + "ShipVia": 3, + "Freight": 26.78, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10417, "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 2, - "Freight": 3.04, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 37000, - "ShipCountry": "UK", + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-28T00:00:00", + "ShipVia": 3, + "Freight": 70.29, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 2, + "Discount": 0.25 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 36, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10865, + "OrderID": 10556, "EmployeeID": 2, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderDate": "1997-06-03T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", "ShipVia": 1, - "Freight": 348.14, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 9.8, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10642, + "EmployeeID": 7, + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-09-05T00:00:00", + "ShipVia": 3, + "Freight": 41.89, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 48000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10866, - "EmployeeID": 5, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-03T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderID": 10669, + "EmployeeID": 2, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", "ShipVia": 1, - "Freight": 109.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 37000, - "ShipCountry": "Sweden", + "Freight": 24.39, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 2, + "ProductID": 36, "UnitPrice": 19, - "Quantity": 21, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10802, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 2, + "Freight": 257.26, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, "Discount": 0.25 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 6, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 60, "Discount": 0.25 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 40, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 5, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10867, - "EmployeeID": 6, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 1, - "Freight": 1.93, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 11074, + "EmployeeID": 7, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-06-03T00:00:00", + "ShipVia": 2, + "Freight": 18.44, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", + "CustomerID": "FAMIA", + "Company": "Familia Arquibaldo", + "ContactName": "Aria Cruz", "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", + "Address": "Rua Orós, 92", "City": "Sao Paulo", "Region": "SP", - "PostalCode": 5487, + "PostalCode": 5442, "Country": "Brazil", - "Phone": "(11) 555-1189", + "Phone": "(11) 555-9857", "Orders": [ { - "OrderID": 10868, - "EmployeeID": 7, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 2, - "Freight": 191.27, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", + "OrderID": 10347, + "EmployeeID": 4, + "OrderDate": "1996-11-06T00:00:00", + "RequiredDate": "1996-12-04T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 3.1, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", "ShipCity": "Sao Paulo", "ShipRegion": "SP", - "ShipPostalCode": 5487, + "ShipPostalCode": 5442, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 42, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 29000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10869, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 1, - "Freight": 143.28, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 48000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 11, - "UnitPrice": 21, + "ProductID": 25, + "UnitPrice": 11.2, "Quantity": 10, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, + "ProductID": 39, + "UnitPrice": 14.4, "Quantity": 50, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10870, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", - "ShipVia": 3, - "Freight": 12.04, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 2, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10871, + "OrderID": 10386, "EmployeeID": 9, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 2, - "Freight": 112.27, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-25T00:00:00", + "ShipVia": 3, + "Freight": 13.99, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10414, + "EmployeeID": 2, + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-17T00:00:00", + "ShipVia": 3, + "Freight": 21.48, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, "Discount": 0.06 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10872, - "EmployeeID": 5, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", + "OrderID": 10512, + "EmployeeID": 7, + "OrderDate": "1997-04-21T00:00:00", + "RequiredDate": "1997-05-19T00:00:00", + "ShippedDate": "1997-04-24T00:00:00", "ShipVia": 2, - "Freight": 175.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 3.53, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 10, - "Discount": 0.06 + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 12, + "Discount": 0.16 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10873, - "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", + "OrderID": 10581, + "EmployeeID": 3, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-02T00:00:00", "ShipVia": 1, - "Freight": 0.82, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 3.01, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10874, + "OrderID": 10650, "EmployeeID": 5, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 2, - "Freight": 19.58, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderDate": "1997-08-29T00:00:00", + "RequiredDate": "1997-09-26T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 176.81, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 34000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10875, + "OrderID": 10725, "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 2, - "Freight": 32.37, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 18000, - "ShipCountry": "Sweden", + "OrderDate": "1997-10-31T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 3, + "Freight": 10.83, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 25, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 21, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 15, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] } - ] + ], + "Fax": "(11) 555-9857" }, { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, + "CustomerID": "LAMAI", + "Company": "La maison de Asie", + "ContactName": "Annette Roulet", + "ContactTitle": "Sales Manager", + "Address": "1 rue Alsace-Lorraine", + "City": "Toulouse", + "PostalCode": 31000, "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", + "Phone": "61.77.61.10", + "Fax": "61.77.61.11", "Orders": [ { - "OrderID": 10876, - "EmployeeID": 7, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 3, - "Freight": 60.42, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, + "OrderID": 10350, + "EmployeeID": 6, + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 64.19, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 18, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10877, - "EmployeeID": 1, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", + "OrderID": 10358, + "EmployeeID": 5, + "OrderDate": "1996-11-20T00:00:00", + "RequiredDate": "1996-12-18T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", "ShipVia": 1, - "Freight": 38.06, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 19.64, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10878, - "EmployeeID": 4, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderID": 10371, + "EmployeeID": 1, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", "ShipVia": 1, - "Freight": 46.69, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 0.45, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 6, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10879, + "OrderID": 10413, "EmployeeID": 3, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 3, - "Freight": 8.5, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 2, + "Freight": 95.66, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 14, + "Discount": 0 + } + ] + }, + { + "OrderID": 10425, + "EmployeeID": 6, + "OrderDate": "1997-01-24T00:00:00", + "RequiredDate": "1997-02-21T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 2, + "Freight": 7.93, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, + "ProductID": 55, + "UnitPrice": 19.2, "Quantity": 10, - "Discount": 0 + "Discount": 0.25 }, { "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 43000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10880, - "EmployeeID": 7, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 88.01, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 15000, - "ShipCountry": "Sweden", + "OrderID": 10454, + "EmployeeID": 4, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-25T00:00:00", + "ShipVia": 3, + "Freight": 2.74, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 30, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 10, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10881, + "OrderID": 10493, "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 2.84, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 10.64, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 73, - "UnitPrice": 15, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, "Quantity": 10, - "Discount": 0 + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10882, - "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 3, - "Freight": 23.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10500, + "EmployeeID": 6, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-17T00:00:00", + "ShipVia": 1, + "Freight": 42.68, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 25, - "Discount": 0 + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 20, - "Discount": 0.16 - }, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10610, + "EmployeeID": 8, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 1, + "Freight": 26.78, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 32, - "Discount": 0.16 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10883, + "OrderID": 10631, "EmployeeID": 8, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 3, - "Freight": 0.53, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-15T00:00:00", + "ShipVia": 1, + "Freight": 0.87, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 8, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10884, - "EmployeeID": 4, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", - "ShipVia": 2, - "Freight": 90.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10787, + "EmployeeID": 2, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 249.93, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 21, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, "Discount": 0.06 + } + ] + }, + { + "OrderID": 10832, + "EmployeeID": 2, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 43.26, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0.2 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 3, + "Discount": 0 } ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 10000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10885, - "EmployeeID": 6, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", + "OrderID": 10923, + "EmployeeID": 7, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 3, - "Freight": 5.64, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 40000, - "ShipCountry": "Belgium", + "Freight": 68.26, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 - }, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 11051, + "EmployeeID": 7, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-09-25T00:00:00", + "ShipVia": 3, + "Freight": 2.79, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 25, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", + "CustomerID": "PICCO", + "Company": "Piccolo und mehr", + "ContactName": "Georg Pipps", + "ContactTitle": "Sales Manager", + "Address": "Geislweg 14", + "City": "Salzburg", + "PostalCode": 5020, + "Country": "Austria", + "Phone": "6562-9722", + "Fax": "6562-9723", "Orders": [ { - "OrderID": 10886, - "EmployeeID": 1, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 1, - "Freight": 4.99, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10353, + "EmployeeID": 7, + "OrderDate": "1996-11-13T00:00:00", + "RequiredDate": "1996-12-11T00:00:00", + "ShippedDate": "1996-11-25T00:00:00", + "ShipVia": 3, + "Freight": 360.63, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 40, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10887, - "EmployeeID": 8, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", + "OrderID": 10392, + "EmployeeID": 2, + "OrderDate": "1996-12-24T00:00:00", + "RequiredDate": "1997-01-21T00:00:00", + "ShippedDate": "1997-01-01T00:00:00", "ShipVia": 3, - "Freight": 1.25, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "Freight": 122.46, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10888, - "EmployeeID": 1, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", + "OrderID": 10427, + "EmployeeID": 4, + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", "ShipVia": 2, - "Freight": 51.87, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 31.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10889, - "EmployeeID": 9, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 3, - "Freight": 280.61, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10489, + "EmployeeID": 6, + "OrderDate": "1997-03-28T00:00:00", + "RequiredDate": "1997-04-25T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", + "ShipVia": 2, + "Freight": 5.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10890, - "EmployeeID": 7, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 32.76, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10530, + "EmployeeID": 3, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", + "ShipVia": 2, + "Freight": 339.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 17, "UnitPrice": 39, - "Quantity": 15, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10891, + "OrderID": 10597, "EmployeeID": 7, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 20.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", + "ShipVia": 3, + "Freight": 35.12, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10892, - "EmployeeID": 4, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 120.27, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 45000, - "ShipCountry": "Belgium", + "OrderID": 10686, + "EmployeeID": 2, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-08T00:00:00", + "ShipVia": 1, + "Freight": 96.5, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10893, - "EmployeeID": 9, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 2, - "Freight": 77.78, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10747, + "EmployeeID": 6, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-26T00:00:00", + "ShipVia": 1, + "Freight": 117.33, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 24, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 35, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10844, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", + "ShipVia": 2, + "Freight": 25.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10894, - "EmployeeID": 1, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 1, - "Freight": 116.13, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11053, + "EmployeeID": 2, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 28, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 120, - "Discount": 0.06 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 25, + "Discount": 0.2 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "AROUT", + "Company": "Around the Horn", + "ContactName": "Thomas Hardy", + "ContactTitle": "Sales Representative", + "Address": "120 Hanover Sq.", + "City": "London", + "PostalCode": 12000, + "Country": "UK", + "Phone": "(171) 555-7788", + "Fax": "(171) 555-6750", "Orders": [ { - "OrderID": 10895, - "EmployeeID": 3, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 1, - "Freight": 162.75, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10355, + "EmployeeID": 6, + "OrderDate": "1996-11-15T00:00:00", + "RequiredDate": "1996-12-13T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 41.95, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 31000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 110, + "UnitPrice": 3.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 45, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10383, + "EmployeeID": 8, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-18T00:00:00", + "ShipVia": 3, + "Freight": 34.24, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 19000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 91, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 100, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 11000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10896, - "EmployeeID": 7, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 32.45, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 28000, - "ShipCountry": "Belgium", + "OrderID": 10453, + "EmployeeID": 1, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", + "ShipVia": 2, + "Freight": 25.36, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 48, + "UnitPrice": 10.2, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 16, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10897, - "EmployeeID": 3, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-25T00:00:00", + "OrderID": 10558, + "EmployeeID": 1, + "OrderDate": "1997-06-04T00:00:00", + "RequiredDate": "1997-07-02T00:00:00", + "ShippedDate": "1997-06-10T00:00:00", "ShipVia": 2, - "Freight": 603.54, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 72.97, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 35000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 80, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 36, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10898, + "OrderID": 10707, "EmployeeID": 4, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 1.27, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 3, + "Freight": 21.74, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10899, - "EmployeeID": 5, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", + "OrderID": 10741, + "EmployeeID": 4, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 1.21, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 10.96, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 27000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10900, + "OrderID": 10743, "EmployeeID": 1, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", "ShipVia": 2, - "Freight": 1.66, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 28, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10901, - "EmployeeID": 4, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", - "ShipVia": 1, - "Freight": 62.09, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10768, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 2, + "Freight": 146.32, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 }, { "ProductID": 71, "UnitPrice": 21.5, - "Quantity": 30, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 39000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10902, - "EmployeeID": 1, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 1, - "Freight": 44.15, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 11000, - "ShipCountry": "Sweden", + "OrderID": 10793, + "EmployeeID": 3, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", + "ShipVia": 3, + "Freight": 4.52, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10903, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 36.71, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10864, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 2, + "Freight": 3.04, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10904, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 162.95, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10920, + "EmployeeID": 4, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", + "ShipVia": 2, + "Freight": 29.61, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 35000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 35, + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10905, + "OrderID": 10953, "EmployeeID": 9, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-25T00:00:00", "ShipVia": 2, - "Freight": 13.72, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10906, - "EmployeeID": 4, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 3, - "Freight": 26.29, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 11016, + "EmployeeID": 9, + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 2, + "Freight": 33.8, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 20000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 16, + "Discount": 0 } ] } ] }, { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", + "CustomerID": "SEVES", + "Company": "Seven Seas Imports", + "ContactName": "Hari Kumar", + "ContactTitle": "Sales Manager", + "Address": "90 Wadhurst Rd.", + "City": "London", + "PostalCode": 23000, + "Country": "UK", + "Phone": "(171) 555-1717", + "Fax": "(171) 555-5646", "Orders": [ { - "OrderID": 10907, - "EmployeeID": 6, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-25T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", + "OrderID": 10359, + "EmployeeID": 5, + "OrderDate": "1996-11-21T00:00:00", + "RequiredDate": "1996-12-19T00:00:00", + "ShippedDate": "1996-11-26T00:00:00", "ShipVia": 3, - "Freight": 9.19, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 288.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 43000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 14, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 56, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 70, + "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10908, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 32.96, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10377, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 22.21, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 20, - "Discount": 0.06 + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 14, - "Discount": 0.06 + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10909, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-10T00:00:00", - "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10388, + "EmployeeID": 2, + "OrderDate": "1996-12-19T00:00:00", + "RequiredDate": "1997-01-16T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", + "ShipVia": 1, + "Freight": 34.86, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 43000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 12, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 7.6, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 5, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10910, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 38.11, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10472, + "EmployeeID": 8, + "OrderDate": "1997-03-12T00:00:00", + "RequiredDate": "1997-04-09T00:00:00", + "ShippedDate": "1997-03-19T00:00:00", + "ShipVia": 1, + "Freight": 4.2, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 21000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 10, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 80, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10911, - "EmployeeID": 3, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", - "ShipVia": 1, - "Freight": 38.19, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10523, + "EmployeeID": 7, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 2, + "Freight": 77.63, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 16000, + "ShipCountry": "UK", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, { "ProductID": 17, "UnitPrice": 39, - "Quantity": 12, - "Discount": 0 + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 67, - "UnitPrice": 14, + "ProductID": 20, + "UnitPrice": 81, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 6, + "Discount": 0.1 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10912, - "EmployeeID": 2, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10547, + "EmployeeID": 3, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", "ShipVia": 2, - "Freight": 580.91, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 178.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 60, - "Discount": 0.25 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10913, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 1, - "Freight": 33.05, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10800, + "EmployeeID": 1, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 3, + "Freight": 137.44, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 41000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 7, + "Discount": 0.1 } ] }, { - "OrderID": 10914, + "OrderID": 10804, "EmployeeID": 6, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 1, - "Freight": 21.19, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 25, - "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10915, - "EmployeeID": 2, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 2, - "Freight": 3.51, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 27.33, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 38000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 10, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 4, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10916, - "EmployeeID": 1, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 2, - "Freight": 63.77, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10869, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 143.28, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 48000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 6, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 6, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 20, "Discount": 0 } @@ -30789,172 +20867,169 @@ ] }, { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", + "CustomerID": "DRACD", + "Company": "Drachenblut Delikatessen", + "ContactName": "Sven Ottlieb", + "ContactTitle": "Order Administrator", + "Address": "Walserweg 21", + "City": "Aachen", + "PostalCode": 52066, + "Country": "Germany", + "Phone": "0241-039123", + "Fax": "0241-059428", "Orders": [ { - "OrderID": 10917, + "OrderID": 10363, "EmployeeID": 4, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 2, - "Freight": 8.29, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1996-12-24T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", + "ShipVia": 3, + "Freight": 30.54, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 1, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 32000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10918, + "OrderID": 10391, "EmployeeID": 3, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-31T00:00:00", "ShipVia": 3, - "Freight": 48.83, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 45000, - "ShipCountry": "Canada", + "Freight": 5.45, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 18, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10919, - "EmployeeID": 2, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", + "OrderID": 10797, + "EmployeeID": 7, + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 2, - "Freight": 19.8, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 33.35, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 24, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10825, + "EmployeeID": 1, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 1, + "Freight": 79.25, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 24, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 53, + "UnitPrice": 32.8, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 41000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10920, - "EmployeeID": 4, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", + "OrderID": 11036, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 3, + "Freight": 149.47, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 11067, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", "ShipVia": 2, - "Freight": 29.61, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 35000, - "ShipCountry": "UK", + "Freight": 7.98, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 24, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, "Discount": 0 } ] @@ -30962,327 +21037,267 @@ ] }, { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", + "CustomerID": "EASTC", + "Company": "Eastern Connection", + "ContactName": "Ann Devon", + "ContactTitle": "Sales Agent", + "Address": "35 King George", + "City": "London", + "PostalCode": 46000, + "Country": "UK", + "Phone": "(171) 555-0297", + "Fax": "(171) 555-3373", "Orders": [ { - "OrderID": 10921, + "OrderID": 10364, "EmployeeID": 1, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", "ShipVia": 1, - "Freight": 176.48, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 71.97, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 10000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10922, - "EmployeeID": 5, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", + "OrderID": 10400, + "EmployeeID": 1, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", "ShipVia": 3, - "Freight": 62.74, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 83.93, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 25000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 15, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 35, + "UnitPrice": 14.4, "Quantity": 35, "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10923, + "OrderID": 10532, "EmployeeID": 7, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderDate": "1997-05-09T00:00:00", + "RequiredDate": "1997-06-06T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", "ShipVia": 3, - "Freight": 68.26, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 74.46, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 23000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, + "ProductID": 66, + "UnitPrice": 17, "Quantity": 24, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 28000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10924, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 2, - "Freight": 151.52, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 35000, - "ShipCountry": "Sweden", + "OrderID": 10726, + "EmployeeID": 4, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 16.56, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 24000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 6, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10925, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderID": 10987, + "EmployeeID": 8, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", "ShipVia": 1, - "Freight": 2.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 185.48, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 12, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 20, + "Discount": 0 + } + ] + }, { - "OrderID": 10926, + "OrderID": 11024, "EmployeeID": 4, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 3, - "Freight": 39.92, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 74.36, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 23000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 2, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ + }, { - "OrderID": 10927, - "EmployeeID": 4, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 19.79, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "OrderID": 11047, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 46.62, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 14000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11056, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 2, + "Freight": 278.96, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 17000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 } ] @@ -31290,837 +21305,693 @@ ] }, { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", + "CustomerID": "ANTON", + "Company": "Antonio Moreno Taquería", + "ContactName": "Antonio Moreno", + "ContactTitle": "Owner", + "Address": "Mataderos 2312", + "City": "México D.F.", + "PostalCode": 5023, + "Country": "Mexico", + "Phone": "(5) 555-3932", "Orders": [ { - "OrderID": 10928, - "EmployeeID": 1, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 10365, + "EmployeeID": 3, + "OrderDate": "1996-11-27T00:00:00", + "RequiredDate": "1996-12-25T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 22, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 24, "Discount": 0 + } + ] + }, + { + "OrderID": 10507, + "EmployeeID": 7, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-04-22T00:00:00", + "ShipVia": 1, + "Freight": 47.45, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0 + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10929, - "EmployeeID": 6, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", + "OrderID": 10535, + "EmployeeID": 4, + "OrderDate": "1997-05-13T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-21T00:00:00", "ShipVia": 1, - "Freight": 33.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 15.64, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 49, - "Discount": 0 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 5, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 14000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10930, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10573, + "EmployeeID": 7, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-20T00:00:00", "ShipVia": 3, - "Freight": 15.55, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 17000, - "ShipCountry": "Belgium", + "Freight": 84.84, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 36, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 25, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 53, + "UnitPrice": 32.8, "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10931, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 2, - "Freight": 13.6, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10677, + "EmployeeID": 1, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 3, + "Freight": 4.03, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 42, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 30, "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10932, - "EmployeeID": 8, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", - "ShipVia": 1, - "Freight": 134.64, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10682, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 2, + "Freight": 36.13, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, + "ProductID": 33, + "UnitPrice": 2.5, "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 14, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 16, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 4, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.1 + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 27000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10933, - "EmployeeID": 6, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 3, - "Freight": 54.15, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40624, - "ShipPostalCode": 44000, - "ShipCountry": "UK", + "OrderID": 10856, + "EmployeeID": 3, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 58.43, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 2, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] } ], - "Fax": "(198) 555-8888" + "Fax": "(5) 555-3932" }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "CustomerID": "GALED", + "Company": "Galería del gastrónomo", + "ContactName": "Eduardo Saavedra", + "ContactTitle": "Marketing Manager", + "Address": "Rambla de Cataluña, 23", + "City": "Barcelona", + "PostalCode": 8022, + "Country": "Spain", + "Phone": "(93) 203 4560", + "Fax": "(93) 203 4561", "Orders": [ { - "OrderID": 10934, - "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", - "ShipVia": 3, - "Freight": 32.01, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10366, + "EmployeeID": 8, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-30T00:00:00", + "ShipVia": 2, + "Freight": 10.14, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10935, + "OrderID": 10426, "EmployeeID": 4, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 47.59, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-02-06T00:00:00", + "ShipVia": 1, + "Freight": 18.69, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 8, - "Discount": 0.25 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10936, + "OrderID": 10568, "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 2, - "Freight": 33.68, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1997-06-13T00:00:00", + "RequiredDate": "1997-07-11T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 3, + "Freight": 6.54, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 5, + "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10937, - "EmployeeID": 7, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderID": 10887, + "EmployeeID": 8, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", "ShipVia": 3, - "Freight": 31.51, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 1.25, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 34, + "ProductID": 25, "UnitPrice": 14, - "Quantity": 20, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10938, - "EmployeeID": 3, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 31.89, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10928, + "EmployeeID": 1, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 1.36, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 49, - "Discount": 0.25 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "VAFFE", + "Company": "Vaffeljernet", + "ContactName": "Palle Ibsen", + "ContactTitle": "Sales Manager", + "Address": "Smagsloget 45", + "City": "Århus", + "PostalCode": 8200, + "Country": "Denmark", + "Phone": "86 21 32 43", + "Fax": "86 22 33 44", "Orders": [ { - "OrderID": 10939, - "EmployeeID": 2, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 2, - "Freight": 76.33, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10367, + "EmployeeID": 7, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1996-12-26T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 13.55, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10940, + "OrderID": 10399, "EmployeeID": 8, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderDate": "1996-12-31T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", "ShipVia": 3, - "Freight": 19.77, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 27.36, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 8, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10941, - "EmployeeID": 7, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 400.81, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10465, + "EmployeeID": 1, + "OrderDate": "1997-03-05T00:00:00", + "RequiredDate": "1997-04-02T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 3, + "Freight": 145.04, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 44, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 45, + "UnitPrice": 7.6, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.1 + }, + { + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10591, + "EmployeeID": 1, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-07-21T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 55.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 80, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 50, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10942, - "EmployeeID": 9, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 17.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10602, + "EmployeeID": 8, + "OrderDate": "1997-07-17T00:00:00", + "RequiredDate": "1997-08-14T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", + "ShipVia": 2, + "Freight": 2.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 28, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 5, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 15000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10943, + "OrderID": 10688, "EmployeeID": 4, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", "ShipVia": 2, - "Freight": 2.17, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", + "Freight": 299.09, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 15, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 21, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 15, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 14, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 44000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10944, + "OrderID": 10744, "EmployeeID": 6, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 3, - "Freight": 52.92, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 69.19, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10769, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 1, + "Freight": 65.06, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10945, - "EmployeeID": 4, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-04-09T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10921, + "EmployeeID": 1, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 1, - "Freight": 10.22, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 176.48, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 40, "Discount": 0 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { "OrderID": 10946, "EmployeeID": 1, @@ -32154,1106 +22025,1060 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 39000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10947, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "OrderID": 10994, + "EmployeeID": 2, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-04-09T00:00:00", + "ShipVia": 3, + "Freight": 65.53, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { "ProductID": 59, "UnitPrice": 55, - "Quantity": 4, - "Discount": 0 + "Quantity": 18, + "Discount": 0.06 } ] } - ], - "Fax": "(171) 555-1212" + ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "CustomerID": "QUEEN", + "Company": "Queen Cozinha", + "ContactName": "Lúcia Carvalho", + "ContactTitle": "Marketing Assistant", + "Address": "Alameda dos Canàrios, 891", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5487, + "Country": "Brazil", + "Phone": "(11) 555-1189", "Orders": [ { - "OrderID": 10948, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 3, - "Freight": 23.39, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10372, + "EmployeeID": 5, + "OrderDate": "1996-12-04T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 890.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 9, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 40, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 70, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 42, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10406, + "EmployeeID": 7, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-13T00:00:00", + "ShipVia": 1, + "Freight": 108.04, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 42, + "Discount": 0.1 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 2, + "Discount": 0.1 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 17000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10949, + "OrderID": 10487, "EmployeeID": 2, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-17T00:00:00", - "ShipVia": 3, - "Freight": 74.44, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 34000, - "ShipCountry": "Canada", + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-03-28T00:00:00", + "ShipVia": 2, + "Freight": 71.07, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 12, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 30, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10637, + "EmployeeID": 6, + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 201.29, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 25, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 60, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10950, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-13T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10659, + "EmployeeID": 7, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 2, - "Freight": 2.5, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 105.81, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 24, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10704, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", + "ShipVia": 1, + "Freight": 4.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { "ProductID": 4, "UnitPrice": 22, - "Quantity": 5, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10951, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", + "OrderID": 10728, + "EmployeeID": 4, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-11-11T00:00:00", "ShipVia": 2, - "Freight": 30.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 58.33, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, + "ProductID": 30, + "UnitPrice": 25.89, "Quantity": 15, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, + "ProductID": 40, + "UnitPrice": 18.4, "Quantity": 6, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10952, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "OrderID": 10786, + "EmployeeID": 8, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-16T00:00:00", + "ShippedDate": "1997-12-23T00:00:00", "ShipVia": 1, - "Freight": 40.42, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 110.87, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 2, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0.2 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, + "Discount": 0.2 } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 36000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10953, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-25T00:00:00", + ] + }, + { + "OrderID": 10868, + "EmployeeID": 7, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 37000, - "ShipCountry": "UK", + "Freight": 191.27, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 42, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10954, - "EmployeeID": 5, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 10913, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 1, - "Freight": 27.91, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", + "Freight": 33.05, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 17000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10955, + "OrderID": 10961, "EmployeeID": 8, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 20000, - "ShipCountry": "Sweden", + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", + "ShipVia": 1, + "Freight": 104.47, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10956, - "EmployeeID": 6, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 11068, + "EmployeeID": 8, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-11-01T00:00:00", "ShipVia": 2, - "Freight": 44.65, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "Freight": 81.75, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.16 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 14, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 36, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 8, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 28, + "Discount": 0.16 } ] } - ] + ], + "Fax": "(11) 555-1189" }, { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10957, - "EmployeeID": 8, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "CustomerID": "WOLZA", + "Company": "Wolski Zajazd", + "ContactName": "Zbyszek Piestrzeniewicz", + "ContactTitle": "Owner", + "Address": "ul. Filtrowa 68", + "City": "Warszawa", + "PostalCode": 12000, + "Country": "Poland", + "Phone": "(26) 642-7012", + "Fax": "(26) 642-7012", + "Orders": [ + { + "OrderID": 10374, + "EmployeeID": 1, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", "ShipVia": 3, - "Freight": 105.36, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 3.94, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 31, + "UnitPrice": 10, "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 8, + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10958, - "EmployeeID": 7, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "OrderID": 10611, + "EmployeeID": 6, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 49.56, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 80.65, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 20, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 6, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 5, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10959, - "EmployeeID": 6, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", - "ShipVia": 2, - "Freight": 4.98, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 10792, + "EmployeeID": 1, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 3, + "Freight": 23.79, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10960, - "EmployeeID": 3, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 2.08, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10870, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", + "ShipVia": 3, + "Freight": 12.04, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 24, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10961, - "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", - "ShipVia": 1, - "Freight": 104.47, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, - "Discount": 0.06 - }, + "OrderID": 10906, + "EmployeeID": 4, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", + "ShipVia": 3, + "Freight": 26.29, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 60, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 15, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10962, + "OrderID": 10998, "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", "ShipVia": 2, - "Freight": 275.79, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 20.31, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 77, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 74, + "UnitPrice": 10, "Quantity": 20, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 9, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 44, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10963, - "EmployeeID": 9, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", - "ShipVia": 3, - "Freight": 2.7, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 11044, + "EmployeeID": 4, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 8.72, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0 } ] } ] }, { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", + "CustomerID": "HUNGC", + "Company": "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", "Orders": [ { - "OrderID": 10964, + "OrderID": 10375, "EmployeeID": 3, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "OrderDate": "1996-12-06T00:00:00", + "RequiredDate": "1997-01-03T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", "ShipVia": 2, - "Freight": 87.38, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 20.12, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 6, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10394, + "EmployeeID": 1, + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 3, + "Freight": 30.34, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10965, - "EmployeeID": 6, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", - "ShipVia": 3, - "Freight": 144.38, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "OrderID": 10415, + "EmployeeID": 3, + "OrderDate": "1997-01-15T00:00:00", + "RequiredDate": "1997-02-12T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "ShipVia": 1, + "Freight": 0.2, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 16, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10966, + "OrderID": 10600, "EmployeeID": 4, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-13T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", "ShipVia": 1, - "Freight": 27.19, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 45.13, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 - }, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10660, + "EmployeeID": 8, + "OrderDate": "1997-09-08T00:00:00", + "RequiredDate": "1997-10-06T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 1, + "Freight": 111.29, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 21, + "Discount": 0 } ] } - ], - "Fax": "0452-076545" + ] }, { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", + "CustomerID": "SANTG", + "Company": "Santé Gourmet", + "ContactName": "Jonas Bergulfsen", + "ContactTitle": "Owner", + "Address": "Erling Skakkes gate 78", + "City": "Stavern", + "PostalCode": 4110, + "Country": "Norway", + "Phone": "07-98 92 35", + "Fax": "07-98 92 47", "Orders": [ { - "OrderID": 10967, - "EmployeeID": 2, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10387, + "EmployeeID": 1, + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-15T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", "ShipVia": 2, - "Freight": 62.22, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 93.63, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, "Quantity": 12, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10968, - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-01T00:00:00", - "ShipVia": 3, - "Freight": 74.6, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10520, + "EmployeeID": 7, + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 1, + "Freight": 13.37, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 30, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 4, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10969, - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", + "OrderID": 10639, + "EmployeeID": 7, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-08-27T00:00:00", + "ShipVia": 3, + "Freight": 38.64, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10831, + "EmployeeID": 3, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 2, - "Freight": 0.21, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 72.19, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ + }, { - "OrderID": 10970, - "EmployeeID": 9, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 1, - "Freight": 16.16, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", + "OrderID": 10909, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-10T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10971, + "OrderID": 11015, "EmployeeID": 2, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 2, - "Freight": 121.82, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 4.62, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] @@ -33261,462 +23086,321 @@ ] }, { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", + "CustomerID": "BOTTM", + "Company": "Bottom-Dollar Markets", + "ContactName": "Elizabeth Lincoln", + "ContactTitle": "Accounting Manager", + "Address": "23 Tsawassen Blvd.", + "City": "Tsawassen", + "Region": "BC", + "PostalCode": 14000, + "Country": "Canada", + "Phone": "(604) 555-4729", + "Fax": "(604) 555-3745", "Orders": [ { - "OrderID": 10972, + "OrderID": 10389, "EmployeeID": 4, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", + "OrderDate": "1996-12-20T00:00:00", + "RequiredDate": "1997-01-17T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", "ShipVia": 2, - "Freight": 0.02, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "Freight": 47.42, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 28000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 7, - "Discount": 0 - } - ] - }, - { - "OrderID": 10973, - "EmployeeID": 6, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 2, - "Freight": 15.17, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10974, + "OrderID": 10410, "EmployeeID": 3, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderDate": "1997-01-10T00:00:00", + "RequiredDate": "1997-02-07T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", "ShipVia": 3, - "Freight": 12.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 2.4, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 19000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10975, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-22T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 3, - "Freight": 32.27, + "OrderID": 10431, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 44.17, "ShipName": "Bottom-Dollar Markets", "ShipAddress": "23 Tsawassen Blvd.", "ShipCity": "Tsawassen", "ShipRegion": "BC", - "ShipPostalCode": 45000, + "ShipPostalCode": 49000, "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 16, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 50, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10976, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderID": 10492, + "EmployeeID": 3, + "OrderDate": "1997-04-01T00:00:00", + "RequiredDate": "1997-04-29T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 1, - "Freight": 37.97, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 62.89, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 41000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10977, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10742, + "EmployeeID": 3, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-12-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 208.5, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", + "Freight": 243.73, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 17000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 46000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10978, - "EmployeeID": 9, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", - "ShipVia": 2, - "Freight": 32.82, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", + "OrderID": 10918, + "EmployeeID": 3, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 48.83, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", "ShipPostalCode": 45000, - "ShipCountry": "Belgium", + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.16 - }, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 25, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10944, + "EmployeeID": 6, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 52.92, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, + "Discount": 0.25 }, { "ProductID": 44, "UnitPrice": 19.45, - "Quantity": 6, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10979, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-03-31T00:00:00", - "ShipVia": 2, - "Freight": 353.07, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, "Quantity": 18, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 12, + "ProductID": 56, "UnitPrice": 38, - "Quantity": 20, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10949, + "EmployeeID": 2, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-17T00:00:00", + "ShipVia": 3, + "Freight": 74.44, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 34000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 80, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 30, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 24, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 35, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 21000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10980, - "EmployeeID": 4, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 1, - "Freight": 1.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "OrderID": 10975, + "EmployeeID": 1, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-22T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 32.27, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 45000, + "ShipCountry": "Canada", "OrderDetails": [ + { + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 16, + "Discount": 0 + }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10981, - "EmployeeID": 1, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 193.37, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 16000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { "OrderID": 10982, "EmployeeID": 2, @@ -33745,588 +23429,513 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10983, - "EmployeeID": 2, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 2, - "Freight": 657.54, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11027, + "EmployeeID": 1, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 52.52, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 11000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 21, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11045, + "EmployeeID": 6, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-05-23T00:00:00", + "ShipVia": 2, + "Freight": 70.58, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 36000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 84, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 24, "Discount": 0 } ] }, { - "OrderID": 10984, - "EmployeeID": 1, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderID": 11048, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", "ShipVia": 3, - "Freight": 211.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 24.12, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 15000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 55, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 42, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "LINOD", + "Company": "LINO-Delicateses", + "ContactName": "Felipe Izquierdo", + "ContactTitle": "Owner", + "Address": "Ave. 5 de Mayo Porlamar", + "City": "Sao Paulo", + "Region": "Nueva Esparta", + "PostalCode": 4980, + "Country": "Venezuela", + "Phone": "(8) 34-56-12", + "Fax": "(8) 34-93-93", "Orders": [ { - "OrderID": 10985, - "EmployeeID": 2, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10405, + "EmployeeID": 1, + "OrderDate": "1997-01-06T00:00:00", + "RequiredDate": "1997-02-03T00:00:00", + "ShippedDate": "1997-01-22T00:00:00", "ShipVia": 1, - "Freight": 91.51, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 34.82, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 36, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 + } + ] + }, + { + "OrderID": 10485, + "EmployeeID": 4, + "OrderDate": "1997-03-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-31T00:00:00", + "ShipVia": 2, + "Freight": 64.45, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 35, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 60, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10986, - "EmployeeID": 8, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 2, - "Freight": 217.86, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10638, + "EmployeeID": 3, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", + "ShipVia": 1, + "Freight": 158.44, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 16000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10987, - "EmployeeID": 8, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 1, - "Freight": 185.48, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 32000, - "ShipCountry": "UK", + "OrderID": 10697, + "EmployeeID": 3, + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-05T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", + "ShipVia": 1, + "Freight": 45.52, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0.25 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 9, + "Discount": 0.25 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10988, - "EmployeeID": 3, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 61.14, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10729, + "EmployeeID": 8, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 3, + "Freight": 141.06, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 50, + "UnitPrice": 16.25, "Quantity": 40, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10989, - "EmployeeID": 2, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10811, + "EmployeeID": 8, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", "ShipVia": 1, - "Freight": 34.76, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 31.22, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 40, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10990, - "EmployeeID": 2, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", + "OrderID": 10838, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 3, - "Freight": 117.61, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 59.28, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 65, - "Discount": 0 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 60, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 66, - "Discount": 0.16 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10991, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 1, - "Freight": 38.51, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10840, + "EmployeeID": 4, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", + "ShipVia": 2, + "Freight": 2.71, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.2 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 76, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 90, + "Quantity": 10, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10992, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 4.27, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "OrderID": 10919, + "EmployeeID": 2, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 2, + "Freight": 19.8, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 2, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 50000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10993, - "EmployeeID": 7, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 3, - "Freight": 8.81, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "OrderID": 10954, + "EmployeeID": 5, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 1, + "Freight": 27.91, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 28, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 25, + "Discount": 0.16 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10994, + "OrderID": 11014, "EmployeeID": 2, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-04-09T00:00:00", + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", "ShipVia": 3, - "Freight": 65.53, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 23.6, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 28, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10995, + "OrderID": 11039, "EmployeeID": 1, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 3, - "Freight": 46, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-05-25T00:00:00", + "ShipVia": 2, + "Freight": 65, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 28, "Discount": 0 } ] @@ -34334,935 +23943,905 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "FOLIG", + "Company": "Folies gourmandes", + "ContactName": "Martine Rancé", + "ContactTitle": "Sales Associate", + "Address": "184, chaussée de Tournai", + "City": "Lille", + "PostalCode": 59000, + "Country": "France", + "Phone": "20.16.10.16", + "Fax": "20.16.10.17", "Orders": [ { - "OrderID": 10996, - "EmployeeID": 4, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 1.12, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10408, + "EmployeeID": 8, + "OrderDate": "1997-01-08T00:00:00", + "RequiredDate": "1997-02-05T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 11.26, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10997, - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10480, + "EmployeeID": 6, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", "ShipVia": 2, - "Freight": 73.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 1.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10998, - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 2, - "Freight": 20.31, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10634, + "EmployeeID": 4, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 487.38, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 7, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 30, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10999, - "EmployeeID": 6, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-01T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10763, + "EmployeeID": 3, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 3, + "Freight": 37.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10789, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", "ShipVia": 2, - "Freight": 96.35, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 100.6, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 35, + "UnitPrice": 18, "Quantity": 15, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 21, - "Discount": 0.06 + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "OCEAN", + "Company": "Océano Atlántico Ltda.", + "ContactName": "Yvonne Moncada", + "ContactTitle": "Sales Agent", + "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5333", + "Fax": "(1) 135-5535", "Orders": [ { - "OrderID": 11000, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", - "ShipVia": 3, - "Freight": 55.12, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10409, + "EmployeeID": 3, + "OrderDate": "1997-01-09T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 29.83, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 - }, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10531, + "EmployeeID": 7, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", + "ShipVia": 1, + "Freight": 8.12, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 30000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 11001, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", + "OrderID": 10898, + "EmployeeID": 4, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", "ShipVia": 2, - "Freight": 197.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 30000, - "ShipCountry": "Sweden", + "Freight": 1.27, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 5, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10958, + "EmployeeID": 7, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 2, + "Freight": 49.56, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 25, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 25, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11002, - "EmployeeID": 4, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", - "ShipVia": 1, - "Freight": 141.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10986, + "EmployeeID": 8, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 217.86, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 56, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, + "ProductID": 20, + "UnitPrice": 81, "Quantity": 15, - "Discount": 0.16 + "Discount": 0 }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0.16 + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 40, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "THECR", - "Company": "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": "FRANS", + "Company": "Franchi S.p.A.", + "ContactName": "Paolo Accorti", + "ContactTitle": "Sales Representative", + "Address": "Via Monte Bianco 34", + "City": "Torino", + "PostalCode": 10100, + "Country": "Italy", + "Phone": "011-4988260", + "Fax": "011-4988261", "Orders": [ { - "OrderID": 11003, - "EmployeeID": 3, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 3, - "Freight": 14.91, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "OrderID": 10422, + "EmployeeID": 2, + "OrderDate": "1997-01-22T00:00:00", + "RequiredDate": "1997-02-19T00:00:00", + "ShippedDate": "1997-01-31T00:00:00", + "ShipVia": 1, + "Freight": 3.02, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 2, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10710, + "EmployeeID": 1, + "OrderDate": "1997-10-20T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 1, + "Freight": 4.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 10, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 37000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 11004, + "OrderID": 10753, "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", "ShipVia": 1, - "Freight": 44.84, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 33000, - "ShipCountry": "Belgium", + "Freight": 7.7, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 6, + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 11005, - "EmployeeID": 2, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10807, + "EmployeeID": 4, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 1.36, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 2, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 1, + "Discount": 0 + } + ] + }, + { + "OrderID": 11026, + "EmployeeID": 4, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", + "ShipVia": 1, + "Freight": 47.09, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 51, + "UnitPrice": 53, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11006, - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", + "OrderID": 11060, + "EmployeeID": 2, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", "ShipVia": 2, - "Freight": 25.19, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 10.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0 } ] } - ], - "Fax": "(503) 555-7555" + ] }, { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", + "CustomerID": "GOURL", + "Company": "Gourmet Lanchonetes", + "ContactName": "André Fonseca", + "ContactTitle": "Sales Associate", + "Address": "Av. Brasil, 442", + "City": "Campinas", + "Region": "SP", + "PostalCode": 4876, + "Country": "Brazil", + "Phone": "(11) 555-9482", "Orders": [ { - "OrderID": 11007, - "EmployeeID": 8, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 2, - "Freight": 202.24, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10423, + "EmployeeID": 6, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", + "ShipVia": 3, + "Freight": 24.5, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 20, "Discount": 0 + } + ] + }, + { + "OrderID": 10652, + "EmployeeID": 4, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 2, + "Freight": 7.14, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 2, + "Discount": 0.25 }, { "ProductID": 42, "UnitPrice": 14, - "Quantity": 14, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11008, - "EmployeeID": 7, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-05-09T00:00:00", - "ShipVia": 3, - "Freight": 79.46, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10685, + "EmployeeID": 4, + "OrderDate": "1997-09-29T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 33.75, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 90, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 21, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 11009, - "EmployeeID": 2, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 59.11, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10709, + "EmployeeID": 1, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-11-20T00:00:00", + "ShipVia": 3, + "Freight": 210.8, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 9, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11010, + "OrderID": 10734, "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 2, - "Freight": 28.71, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-12T00:00:00", + "ShipVia": 3, + "Freight": 1.63, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 11011, - "EmployeeID": 3, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10777, + "EmployeeID": 7, + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 2, + "Freight": 3.01, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10790, + "EmployeeID": 6, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", "ShipVia": 1, - "Freight": 1.21, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 28.23, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 3, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 11012, - "EmployeeID": 1, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 3, - "Freight": 242.95, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10959, + "EmployeeID": 6, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 4.98, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 - }, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 11049, + "EmployeeID": 3, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 8.34, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 36, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, + "Discount": 0.2 } ] } - ] + ], + "Fax": "(11) 555-9482" }, { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", + "CustomerID": "CONSH", + "Company": "Consolidated Holdings", + "ContactName": "Elizabeth Brown", + "ContactTitle": "Sales Representative", + "Address": "Berkeley Gardens 12 Brewery", + "City": "London", + "PostalCode": 38000, + "Country": "UK", + "Phone": "(171) 555-2282", + "Fax": "(171) 555-9199", "Orders": [ { - "OrderID": 11013, - "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 32.99, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10435, + "EmployeeID": 8, + "OrderDate": "1997-02-04T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 9.21, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 10, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 4, + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10462, + "EmployeeID": 2, + "OrderDate": "1997-03-03T00:00:00", + "RequiredDate": "1997-03-31T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 1, + "Freight": 6.17, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 50000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 2, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 11014, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", - "ShipVia": 3, - "Freight": 23.6, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 28, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 11015, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10848, + "EmployeeID": 7, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 2, - "Freight": 4.62, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 38.24, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 36000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 3, "Discount": 0 } ] @@ -35270,158 +24849,141 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", + "CustomerID": "RANCH", + "Company": "Rancho grande", + "ContactName": "Sergio Gutiérrez", "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 42000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Address": "Av. del Libertador 900", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 123-5555", + "Fax": "(1) 123-5556", "Orders": [ { - "OrderID": 11016, - "EmployeeID": 9, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10448, + "EmployeeID": 4, + "OrderDate": "1997-02-17T00:00:00", + "RequiredDate": "1997-03-17T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", "ShipVia": 2, - "Freight": 33.8, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 20000, - "ShipCountry": "UK", + "Freight": 38.82, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 16, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11017, - "EmployeeID": 9, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10716, + "EmployeeID": 4, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-27T00:00:00", "ShipVia": 2, - "Freight": 754.26, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 22.57, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 3, + "ProductID": 21, "UnitPrice": 10, - "Quantity": 25, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 110, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11018, - "EmployeeID": 4, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10828, + "EmployeeID": 9, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 90.85, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 10916, + "EmployeeID": 1, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 2, - "Freight": 11.65, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 63.77, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { "OrderID": 11019, "EmployeeID": 6, @@ -35453,139 +25015,60 @@ ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 11020, - "EmployeeID": 2, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", - "ShipVia": 2, - "Freight": 43.3, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "LAZYK", + "Company": "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", "Orders": [ { - "OrderID": 11021, - "EmployeeID": 3, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 1, - "Freight": 297.18, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10482, + "EmployeeID": 1, + "OrderDate": "1997-03-21T00:00:00", + "RequiredDate": "1997-04-18T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 7.48, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 11, - "Discount": 0.25 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 63, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 44, - "Discount": 0.25 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 11022, - "EmployeeID": 9, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10545, + "EmployeeID": 8, + "OrderDate": "1997-05-22T00:00:00", + "RequiredDate": "1997-06-19T00:00:00", + "ShippedDate": "1997-06-26T00:00:00", "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 11.92, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 } ] @@ -35593,460 +25076,323 @@ ] }, { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", + "CustomerID": "LAUGB", + "Company": "Laughing Bacchus Wine Cellars", + "ContactName": "Yoshi Tannamuri", + "ContactTitle": "Marketing Assistant", + "Address": "1900 Oak St.", + "City": "Vancouver", + "Region": "BC", "PostalCode": 19000, - "Country": "UK", - "Phone": "(171) 555-1212", + "Country": "Canada", + "Phone": "(604) 555-3392", + "Fax": "(604) 555-7293", "Orders": [ { - "OrderID": 11023, - "EmployeeID": 1, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 123.83, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 36000, - "ShipCountry": "UK", + "OrderID": 10495, + "EmployeeID": 3, + "OrderDate": "1997-04-03T00:00:00", + "RequiredDate": "1997-05-01T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", + "ShipVia": 3, + "Freight": 4.65, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 20000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 4, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 16000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11024, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 1, - "Freight": 74.36, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 23000, - "ShipCountry": "UK", + "OrderID": 10620, + "EmployeeID": 2, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", + "ShipVia": 3, + "Freight": 0.94, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 31000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 50, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 11025, - "EmployeeID": 6, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10810, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 3, - "Freight": 29.17, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 4.33, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 48000, + "ShipCountry": "Canada", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.1 - }, { "ProductID": 13, "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.1 + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", + "CustomerID": "BLAUS", + "Company": "Blauer See Delikatessen", + "ContactName": "Hanna Moos", "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", + "Address": "Forsterstr. 57", + "City": "Mannheim", + "PostalCode": 68306, + "Country": "Germany", + "Phone": "0621-08460", + "Fax": "0621-08924", "Orders": [ { - "OrderID": 11026, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", - "ShipVia": 1, - "Freight": 47.09, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10501, + "EmployeeID": 9, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 3, + "Freight": 8.85, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 49000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11027, - "EmployeeID": 1, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10509, + "EmployeeID": 4, + "OrderDate": "1997-04-17T00:00:00", + "RequiredDate": "1997-05-15T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 1, - "Freight": 52.52, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 11000, - "ShipCountry": "Canada", + "Freight": 0.15, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 11028, - "EmployeeID": 2, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", - "ShipVia": 1, - "Freight": 29.59, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10582, + "EmployeeID": 3, + "OrderDate": "1997-06-27T00:00:00", + "RequiredDate": "1997-07-25T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 27.71, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 24, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 14, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 11029, - "EmployeeID": 4, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 47.84, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10614, + "EmployeeID": 8, + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 3, + "Freight": 1.93, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 12, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11030, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", + "OrderID": 10853, + "EmployeeID": 9, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", "ShipVia": 2, - "Freight": 830.75, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 53.83, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 100, - "Discount": 0.25 - }, - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 70, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 100, - "Discount": 0.25 } ] }, { - "OrderID": 11031, + "OrderID": 10956, "EmployeeID": 6, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 227.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 44.65, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 45, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 80, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 21, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11032, - "EmployeeID": 2, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 11058, + "EmployeeID": 9, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShippedDate": "1998-08-27T00:00:00", "ShipVia": 3, - "Freight": 606.19, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 31.14, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 35, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 25, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, "Discount": 0 } ] @@ -36054,145 +25400,97 @@ ] }, { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", + "CustomerID": "NORTS", + "Company": "North/South", + "ContactName": "Simon Crowther", + "ContactTitle": "Sales Associate", + "Address": "South House 300 Queensbridge", + "City": "London", + "PostalCode": 13000, + "Country": "UK", + "Phone": "(171) 555-7733", + "Fax": "(171) 555-2530", "Orders": [ { - "OrderID": 11033, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 10517, + "EmployeeID": 3, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 3, - "Freight": 84.74, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 70, - "Discount": 0.1 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 36, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ - { - "OrderID": 11034, - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 40.32, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 32.07, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 19000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 12, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 23000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 11035, + "OrderID": 10752, "EmployeeID": 2, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 0.17, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 30000, - "ShipCountry": "Belgium", + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", + "ShipVia": 3, + "Freight": 1.39, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 1, "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 60, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 3, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11057, + "EmployeeID": 3, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 4.13, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 47000, + "ShipCountry": "UK", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] @@ -36200,181 +25498,175 @@ ] }, { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", + "CustomerID": "CACTU", + "Company": "Cactus Comidas para llevar", + "ContactName": "Patricio Simpson", + "ContactTitle": "Sales Agent", + "Address": "Cerrito 333", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5555", + "Fax": "(1) 135-4892", "Orders": [ { - "OrderID": 11036, + "OrderID": 10521, "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", - "ShipVia": 3, - "Freight": 149.47, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 17.22, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 11037, - "EmployeeID": 7, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 3.2, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10782, + "EmployeeID": 9, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 1.1, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 1, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 11038, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", - "ShipVia": 2, - "Freight": 29.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 44000, - "ShipCountry": "Belgium", + "OrderID": 10819, + "EmployeeID": 2, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", + "ShipVia": 3, + "Freight": 19.76, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 7, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 2, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10881, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 2.84, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 11039, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-05-25T00:00:00", - "ShipVia": 2, - "Freight": 65, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10937, + "EmployeeID": 7, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 31.51, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { "ProductID": 28, "UnitPrice": 45.6, - "Quantity": 20, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 24, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11054, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShippedDate": "1998-05-26T00:00:00", + "ShipVia": 1, + "Freight": 0.33, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 60, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 28, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] @@ -36394,13 +25686,48 @@ "Phone": "(503) 555-7555", "Orders": [ { - "OrderID": 11040, - "EmployeeID": 4, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-05-20T00:00:00", - "ShipVia": 3, - "Freight": 18.84, + "OrderID": 10528, + "EmployeeID": 6, + "OrderDate": "1997-05-06T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 3.35, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.2 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 10589, + "EmployeeID": 8, + "OrderDate": "1997-07-04T00:00:00", + "RequiredDate": "1997-08-01T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 4.42, "ShipName": "Great Lakes Food Market", "ShipAddress": "2732 Baker Blvd.", "ShipCity": "Eugene", @@ -36409,590 +25736,476 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 11041, - "EmployeeID": 3, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", + "OrderID": 10616, + "EmployeeID": 1, + "OrderDate": "1997-07-31T00:00:00", + "RequiredDate": "1997-08-28T00:00:00", + "ShippedDate": "1997-08-05T00:00:00", "ShipVia": 2, - "Freight": 48.22, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 116.53, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 11042, - "EmployeeID": 2, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10656, + "EmployeeID": 6, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 1, - "Freight": 29.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 57.15, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, + "Discount": 0.1 + }, { "ProductID": 44, "UnitPrice": 19.45, - "Quantity": 15, - "Discount": 0 + "Quantity": 28, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 4, - "Discount": 0 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.1 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 11043, - "EmployeeID": 5, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", - "ShipVia": 2, - "Freight": 8.8, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "OrderID": 10681, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 76.13, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 11044, + "OrderID": 10816, "EmployeeID": 4, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 1, - "Freight": 8.72, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-02-03T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 2, + "Freight": 719.78, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10936, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 33.68, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 31000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11045, - "EmployeeID": 6, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-05-23T00:00:00", + "OrderID": 11006, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", "ShipVia": 2, - "Freight": 70.58, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", + "Freight": 25.19, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 24, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 2, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 11046, - "EmployeeID": 8, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 71.64, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 11040, + "EmployeeID": 4, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-05-20T00:00:00", + "ShipVia": 3, + "Freight": 18.84, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, + "ProductID": 21, + "UnitPrice": 10, "Quantity": 20, - "Discount": 0.06 - }, + "Discount": 0 + } + ] + }, + { + "OrderID": 11061, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-06-11T00:00:00", + "ShippedDate": "1998-06-11T00:00:00", + "ShipVia": 3, + "Freight": 14.01, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, + "ProductID": 60, + "UnitPrice": 34, "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 18, - "Discount": 0.06 + "Discount": 0 } ] } - ] + ], + "Fax": "(503) 555-7555" }, { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", + "CustomerID": "MAISD", + "Company": "Maison Dewey", + "ContactName": "Catherine Dewey", "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", + "Address": "Rue Joseph-Bens 532", + "City": "Bruxelles", + "PostalCode": 11000, + "Country": "Belgium", + "Phone": "(02) 201 24 67", + "Fax": "(02) 201 24 68", "Orders": [ { - "OrderID": 11047, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 3, - "Freight": 46.62, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 14000, - "ShipCountry": "UK", + "OrderID": 10529, + "EmployeeID": 5, + "OrderDate": "1997-05-07T00:00:00", + "RequiredDate": "1997-06-04T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 66.69, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 26000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 48000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11048, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", + "OrderID": 10649, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-09-25T00:00:00", + "ShippedDate": "1997-08-29T00:00:00", "ShipVia": 3, - "Freight": 24.12, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 15000, - "ShipCountry": "Canada", + "Freight": 6.2, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 47000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 42, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 11049, - "EmployeeID": 3, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10760, + "EmployeeID": 4, + "OrderDate": "1997-12-01T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1997-12-10T00:00:00", "ShipVia": 1, - "Freight": 8.34, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 155.64, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.25 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 35000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 11050, - "EmployeeID": 8, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10892, + "EmployeeID": 4, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", "ShipVia": 2, - "Freight": 59.41, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 11000, - "ShipCountry": "Sweden", + "Freight": 120.27, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 45000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 11051, + "OrderID": 10896, "EmployeeID": 7, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-09-25T00:00:00", + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", "ShipVia": 3, - "Freight": 2.79, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 11052, - "EmployeeID": 3, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 1, - "Freight": 67.26, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 32.45, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 28000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 16, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 11053, - "EmployeeID": 2, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", + "OrderID": 10978, + "EmployeeID": 9, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 32.82, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 45000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 11054, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", - "ShippedDate": "1998-05-26T00:00:00", + "OrderID": 11004, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 1, - "Freight": 0.33, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 44.84, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 33000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 10, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 } ] @@ -37000,187 +26213,119 @@ ] }, { - "CustomerID": "HILAA", - "Company": "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": "TRAIH", + "Company": "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", "Orders": [ { - "OrderID": 11055, - "EmployeeID": 7, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10574, + "EmployeeID": 4, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 120.92, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 37.6, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 35000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11056, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10577, + "EmployeeID": 9, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 278.96, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 17000, - "ShipCountry": "UK", + "Freight": 25.41, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 40, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 14000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ - { - "OrderID": 11057, - "EmployeeID": 3, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 3, - "Freight": 4.13, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 47000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 11058, - "EmployeeID": 9, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShippedDate": "1998-08-27T00:00:00", - "ShipVia": 3, - "Freight": 31.14, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10822, + "EmployeeID": 6, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", + "ShipVia": 3, + "Freight": 7, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 3, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 4, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 6, "Discount": 0 } ] @@ -37188,413 +26333,370 @@ ] }, { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", + "CustomerID": "LETSS", + "Company": "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", "Orders": [ { - "OrderID": 11059, - "EmployeeID": 2, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-06-10T00:00:00", - "ShippedDate": "1998-06-15T00:00:00", + "OrderID": 10579, + "EmployeeID": 1, + "OrderDate": "1997-06-25T00:00:00", + "RequiredDate": "1997-07-23T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 2, - "Freight": 85.8, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 13.73, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 12, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 11060, - "EmployeeID": 2, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10719, + "EmployeeID": 8, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 10.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "Freight": 51.44, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 3, + "Discount": 0.25 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 40, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11061, - "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-06-11T00:00:00", - "ShippedDate": "1998-06-11T00:00:00", - "ShipVia": 3, - "Freight": 14.01, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, + "OrderID": 10735, + "EmployeeID": 6, + "OrderDate": "1997-11-10T00:00:00", + "RequiredDate": "1997-12-08T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 45.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.1 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11062, + "OrderID": 10884, "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-06-28T00:00:00", + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", "ShipVia": 2, - "Freight": 29.93, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 90.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 21, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, "Quantity": 12, - "Discount": 0.2 + "Discount": 0.06 } ] } - ] + ], + "Fax": "(415) 555-5938" }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "WILMK", + "Company": "Wilman Kala", + "ContactName": "Matti Karttunen", + "ContactTitle": "Owner/Marketing Assistant", + "Address": "Keskuskatu 45", + "City": "Helsinki", + "PostalCode": 21240, + "Country": "Finland", + "Phone": "90-224 8858", + "Fax": "90-224 8858", "Orders": [ { - "OrderID": 11063, - "EmployeeID": 3, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 81.73, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10615, + "EmployeeID": 2, + "OrderDate": "1997-07-30T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 3, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10673, + "EmployeeID": 2, + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 22.76, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11064, - "EmployeeID": 1, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10695, + "EmployeeID": 7, + "OrderDate": "1997-10-07T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", "ShipVia": 1, - "Freight": 30.09, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 16.72, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 77, - "Discount": 0.1 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.1 - }, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10873, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 0.82, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 55, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11065, - "EmployeeID": 8, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-29T00:00:00", - "ShipVia": 1, - "Freight": 12.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10879, + "EmployeeID": 3, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 8.5, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11066, - "EmployeeID": 7, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 2, - "Freight": 44.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10910, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 3, + "Freight": 38.11, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 42, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 35, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 11067, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 7.98, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderID": 11005, + "EmployeeID": 2, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, "Discount": 0 } ] @@ -37602,85 +26704,113 @@ ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", + "CustomerID": "THECR", + "Company": "The Cracker Box", + "ContactName": "Liu Wong", "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", + "Address": "55 Grizzly Peak Rd.", + "City": "Butte", + "Region": "MT", + "PostalCode": 59801, + "Country": "USA", + "Phone": "(406) 555-5834", + "Fax": "(406) 555-8083", "Orders": [ { - "OrderID": 11068, - "EmployeeID": 8, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-11-01T00:00:00", + "OrderID": 10624, + "EmployeeID": 4, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", "ShipVia": 2, - "Freight": 81.75, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 94.8, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 28, "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.16 + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 11069, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 15.67, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10775, + "EmployeeID": 7, + "OrderDate": "1997-12-12T00:00:00", + "RequiredDate": "1998-01-09T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 20.25, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 11003, + "EmployeeID": 3, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 3, + "Freight": 14.91, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 10, "Discount": 0 } ] @@ -37688,507 +26818,503 @@ ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", + "CustomerID": "ALFKI", + "Company": "Alfreds Futterkiste", + "ContactName": "Maria Anders", "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, + "Address": "Obere Str. 57", + "City": "Berlin", + "PostalCode": 12209, "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "Phone": "030-0074321", + "Fax": "030-0076545", "Orders": [ { - "OrderID": 11070, - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-02T00:00:00", + "OrderID": 10643, + "EmployeeID": 6, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", "ShipVia": 1, - "Freight": 136, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "Freight": 29.46, + "ShipName": "Alfreds Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 15, + "Discount": 0.25 + }, + { + "ProductID": 39, "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.16 + "Quantity": 21, + "Discount": 0.25 }, { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 2, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10692, + "EmployeeID": 4, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-10-31T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", + "ShipVia": 2, + "Freight": 61.02, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 20, - "Discount": 0.16 - }, + "Discount": 0 + } + ] + }, + { + "OrderID": 10702, + "EmployeeID": 4, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 1, + "Freight": 23.94, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11071, + "OrderID": 10835, "EmployeeID": 1, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-10T00:00:00", - "ShipVia": 1, - "Freight": 0.93, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 3, + "Freight": 69.53, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10952, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", + "ShipVia": 1, + "Freight": 40.42, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 16, "Discount": 0.06 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 11011, + "EmployeeID": 3, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 1, + "Freight": 1.21, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 40, "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "FRANR", + "Company": "France restauration", + "ContactName": "Carine Schmitt", + "ContactTitle": "Marketing Manager", + "Address": "54, rue Royale", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.32.21.21", + "Fax": "40.32.21.20", "Orders": [ { - "OrderID": 11072, - "EmployeeID": 4, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-08-02T00:00:00", - "ShipVia": 2, - "Freight": 258.64, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10671, + "EmployeeID": 1, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-09-24T00:00:00", + "ShipVia": 1, + "Freight": 30.34, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 22, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 130, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 11073, - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-15T00:00:00", - "ShipVia": 2, - "Freight": 24.95, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10860, + "EmployeeID": 3, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 3, + "Freight": 19.26, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 11074, - "EmployeeID": 7, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-06-03T00:00:00", + "OrderID": 10971, + "EmployeeID": 2, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", "ShipVia": 2, - "Freight": 18.44, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 121.82, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 14, - "Discount": 0.06 + "Discount": 0 } ] } ] }, { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", + "CustomerID": "SPECD", + "Company": "Spécialités du monde", + "ContactName": "Dominique Perrier", + "ContactTitle": "Marketing Manager", + "Address": "25, rue Lauriston", + "City": "Paris", + "PostalCode": 75016, + "Country": "France", + "Phone": "(1) 47.55.60.10", + "Fax": "(1) 47.55.60.20", "Orders": [ { - "OrderID": 11075, - "EmployeeID": 8, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-05-03T00:00:00", - "ShipVia": 2, - "Freight": 6.19, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10738, + "EmployeeID": 2, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 1, + "Freight": 2.91, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0.16 - }, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10907, + "EmployeeID": 6, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-25T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 9.19, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 14, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 11076, - "EmployeeID": 4, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-06-08T00:00:00", + "OrderID": 10964, + "EmployeeID": 3, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 2, - "Freight": 38.28, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, + "Freight": 87.38, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 69, + "UnitPrice": 36, "Quantity": 10, - "Discount": 0.25 + "Discount": 0 + } + ] + }, + { + "OrderID": 11043, + "EmployeeID": 5, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 8.8, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "LACOR", + "Company": "La corne de abondance", + "ContactName": "Daniel Tonini", + "ContactTitle": "Sales Representative", + "Address": "67, avenue de Europe", + "City": "Versailles", + "PostalCode": 78000, + "Country": "France", + "Phone": "30.59.84.10", + "Fax": "30.59.85.11", "Orders": [ { - "OrderID": 11077, - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-07-03T00:00:00", - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10858, + "EmployeeID": 2, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", + "ShipVia": 1, + "Freight": 52.51, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 24, - "Discount": 0.2 - }, - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 1, - "Discount": 0.02 - }, { "ProductID": 7, "UnitPrice": 30, - "Quantity": 1, - "Discount": 0.06 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 2, - "Discount": 0.1 - }, - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 1, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 2, - "Discount": 0.06 + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 4, "Discount": 0 - }, - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 2, - "Discount": 0.04 - }, + } + ] + }, + { + "OrderID": 10927, + "EmployeeID": 4, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 19.79, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { "ProductID": 20, "UnitPrice": 81, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 3, + "Quantity": 5, "Discount": 0 }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 3, - "Discount": 0.02 - }, { "ProductID": 52, "UnitPrice": 7, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 2, - "Discount": 0.04 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 1, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 2, - "Discount": 0.0099999998 - }, + } + ] + }, + { + "OrderID": 10972, + "EmployeeID": 4, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 2, + "Freight": 0.02, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 4, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 7, "Discount": 0 } ] diff --git a/samples/grids/hierarchical-grid/column-moving-styles/src/index.tsx b/samples/grids/hierarchical-grid/column-moving-styles/src/index.tsx index af074f53c1..053b41a5fb 100644 --- a/samples/grids/hierarchical-grid/column-moving-styles/src/index.tsx +++ b/samples/grids/hierarchical-grid/column-moving-styles/src/index.tsx @@ -184,9 +184,9 @@ export default class Sample extends React.Component { public hierarchicalGridPinHeaderTemplate = (props: {dataContext: IgrColumnTemplateContext}) => { const column = (props.dataContext as any).column; return ( -
- {column.field} - this.toggleColumnPin(column)}>📌 +
+ {column.field} + this.toggleColumnPin(column)}>📌
); } diff --git a/samples/grids/hierarchical-grid/column-pinning-options/src/HierarchicalCustomersData.json b/samples/grids/hierarchical-grid/column-pinning-options/src/HierarchicalCustomersData.json index 8c1cb2c4ac..956627e3f6 100644 --- a/samples/grids/hierarchical-grid/column-pinning-options/src/HierarchicalCustomersData.json +++ b/samples/grids/hierarchical-grid/column-pinning-options/src/HierarchicalCustomersData.json @@ -53,6 +53,112 @@ "TotalPrice": 220.25 } ] + }, + { + "OrderID": 10274, + "EmployeeID": 6, + "OrderDate": "1996-08-06T00:00:00", + "RequiredDate": "1996-09-03T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 1, + "Freight": 6.01, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 7, + "Discount": 0 + } + ] + }, + { + "OrderID": 10295, + "EmployeeID": 2, + "OrderDate": "1996-09-02T00:00:00", + "RequiredDate": "1996-09-30T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", + "ShipVia": 2, + "Freight": 1.15, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 10737, + "EmployeeID": 2, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 7.79, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10739, + "EmployeeID": 3, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-17T00:00:00", + "ShipVia": 3, + "Freight": 11.08, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 18, + "Discount": 0 + } + ] } ] }, @@ -101,267 +207,155 @@ "TotalPrice": 225.75 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Madrid", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10250, - "EmployeeID": 4, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-12T00:00:00", + "OrderID": 10438, + "EmployeeID": 3, + "OrderDate": "1997-02-06T00:00:00", + "RequiredDate": "1997-03-06T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", "ShipVia": 2, - "Freight": 65.83, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 8.24, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0, - "Weight": 2.9, - "Length": 26.9, - "TotalPrice": 233.5 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 35, - "Discount": 0.16, - "Weight": 3.5, - "Length": 27.4, - "TotalPrice": 261.25 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 15, - "Discount": 0.16, - "Weight": 2.2, - "Length": 30.2, - "TotalPrice": 249.75 + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10251, - "EmployeeID": 3, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", + "OrderID": 10446, + "EmployeeID": 6, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-02-19T00:00:00", "ShipVia": 1, - "Freight": 41.34, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 14.68, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.06, - "Weight": 2.6, - "Length": 26.8, - "TotalPrice": 226.5 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.06, - "Weight": 3.1, - "Length": 24.3, - "TotalPrice": 219.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0, - "Weight": 2.4, - "Length": 23.7, - "TotalPrice": 207 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 + }, + { + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10252, - "EmployeeID": 4, - "OrderDate": "1996-07-09T00:00:00", - "RequiredDate": "1996-08-06T00:00:00", - "ShippedDate": "1996-07-11T00:00:00", + "OrderID": 10548, + "EmployeeID": 3, + "OrderDate": "1997-05-26T00:00:00", + "RequiredDate": "1997-06-23T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", "ShipVia": 2, - "Freight": 51.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 1.43, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 40, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10254, - "EmployeeID": 5, - "OrderDate": "1996-07-11T00:00:00", - "RequiredDate": "1996-08-08T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderID": 10608, + "EmployeeID": 4, + "OrderDate": "1997-07-23T00:00:00", + "RequiredDate": "1997-08-20T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 22.98, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 27.79, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 21, - "Discount": 0.16 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10255, - "EmployeeID": 9, - "OrderDate": "1996-07-12T00:00:00", - "RequiredDate": "1996-08-09T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", - "ShipVia": 3, - "Freight": 148.33, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10967, + "EmployeeID": 2, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 62.22, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 25, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 40, "Discount": 0 } ] @@ -369,1393 +363,1191 @@ ] }, { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, + "CustomerID": "HANAR", + "Company": "Hanari Carnes", + "ContactName": "Mario Pontes", + "ContactTitle": "Accounting Manager", + "Address": "Rua do Paço, 67", + "City": "Madrid", + "Region": "RJ", + "PostalCode": 5454, "Country": "Brazil", - "Phone": "(14) 555-8122", + "Phone": "(21) 555-0091", + "Fax": "(21) 555-8765", "Orders": [ { - "OrderID": 10256, - "EmployeeID": 3, - "OrderDate": "1996-07-15T00:00:00", - "RequiredDate": "1996-08-12T00:00:00", - "ShippedDate": "1996-07-17T00:00:00", + "OrderID": 10250, + "EmployeeID": 4, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-12T00:00:00", "ShipVia": 2, - "Freight": 13.97, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, + "Freight": 65.83, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, + "Discount": 0, + "Weight": 2.9, + "Length": 26.9, + "TotalPrice": 233.5 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 35, + "Discount": 0.16, + "Weight": 3.5, + "Length": 27.4, + "TotalPrice": 261.25 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.16, + "Weight": 2.2, + "Length": 30.2, + "TotalPrice": 249.75 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10257, - "EmployeeID": 4, - "OrderDate": "1996-07-16T00:00:00", - "RequiredDate": "1996-08-13T00:00:00", - "ShippedDate": "1996-07-22T00:00:00", - "ShipVia": 3, - "Freight": 81.91, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10541, + "EmployeeID": 2, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-05-29T00:00:00", + "ShipVia": 1, + "Freight": 68.65, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 25, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.1 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 9, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10645, + "EmployeeID": 4, + "OrderDate": "1997-08-26T00:00:00", + "RequiredDate": "1997-09-23T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", + "ShipVia": 1, + "Freight": 12.41, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10258, + "OrderID": 10690, "EmployeeID": 1, - "OrderDate": "1996-07-17T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderDate": "1997-10-02T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", "ShipVia": 1, - "Freight": 140.51, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 15.8, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 65, - "Discount": 0.2 - }, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10770, + "EmployeeID": 8, + "OrderDate": "1997-12-09T00:00:00", + "RequiredDate": "1998-01-06T00:00:00", + "ShippedDate": "1997-12-17T00:00:00", + "ShipVia": 3, + "Freight": 5.32, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "CENTC", - "Company": "Centro comercial Moctezuma", - "ContactName": "Francisco Chang", - "ContactTitle": "Marketing Manager", - "Address": "Sierras de Granada 9993", - "City": "México D.F.", - "PostalCode": 5022, - "Country": "Mexico", - "Phone": "(5) 555-3392", - "Fax": "(5) 555-7293", - "Orders": [ + }, { - "OrderID": 10259, + "OrderID": 10783, "EmployeeID": 4, - "OrderDate": "1996-07-18T00:00:00", - "RequiredDate": "1996-08-15T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", - "ShipVia": 3, - "Freight": 3.25, - "ShipName": "Centro comercial Moctezuma", - "ShipAddress": "Sierras de Granada 9993", - "ShipCity": "México D.F.", - "ShipPostalCode": 5022, - "ShipCountry": "Mexico", + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 124.98, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 10, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 1, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10260, - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-29T00:00:00", + "OrderID": 10886, + "EmployeeID": 1, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", "ShipVia": 1, - "Freight": 55.09, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 4.99, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 16, - "Discount": 0.25 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 50, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10261, - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-30T00:00:00", - "ShipVia": 2, - "Freight": 3.05, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "OrderID": 10903, + "EmployeeID": 3, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 3, + "Freight": 36.71, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", "ShipCity": "Lyon", "ShipRegion": "RJ", - "ShipPostalCode": 2389, + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 20, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10262, - "EmployeeID": 8, - "OrderDate": "1996-07-22T00:00:00", - "RequiredDate": "1996-08-19T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", + "OrderID": 10922, + "EmployeeID": 5, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", "ShipVia": 3, - "Freight": 48.29, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 62.74, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 12, - "Discount": 0.2 - }, - { - "ProductID": 7, - "UnitPrice": 24, + "ProductID": 17, + "UnitPrice": 39, "Quantity": 15, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 2, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10263, - "EmployeeID": 9, - "OrderDate": "1996-07-23T00:00:00", - "RequiredDate": "1996-08-20T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", - "ShipVia": 3, - "Freight": 146.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10925, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 1, + "Freight": 2.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0.16 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 36000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10264, - "EmployeeID": 6, - "OrderDate": "1996-07-24T00:00:00", - "RequiredDate": "1996-08-21T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", - "ShipVia": 3, - "Freight": 3.67, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 15000, - "ShipCountry": "Sweden", + "OrderID": 10981, + "EmployeeID": 1, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 193.37, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 35, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 25, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10265, - "EmployeeID": 2, - "OrderDate": "1996-07-25T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", - "ShipVia": 1, - "Freight": 55.28, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 11022, + "EmployeeID": 9, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 30, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10266, + "OrderID": 11052, "EmployeeID": 3, - "OrderDate": "1996-07-26T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", - "ShipVia": 3, - "Freight": 25.73, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 67.26, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", + "CustomerID": "VICTE", + "Company": "Victuailles en stock", + "ContactName": "Mary Saveley", + "ContactTitle": "Sales Agent", + "Address": "2, rue du Commerce", + "City": "Lyon", + "PostalCode": 69004, + "Country": "France", + "Phone": "78.32.54.86", + "Fax": "78.32.54.87", "Orders": [ { - "OrderID": 10267, - "EmployeeID": 4, - "OrderDate": "1996-07-29T00:00:00", - "RequiredDate": "1996-08-26T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", + "OrderID": 10251, + "EmployeeID": 3, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", "ShipVia": 1, - "Freight": 208.58, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 41.34, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, - "Discount": 0 + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 6, + "Discount": 0.06, + "Weight": 2.6, + "Length": 26.8, + "TotalPrice": 226.5 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 15, + "Discount": 0.06, + "Weight": 3.1, + "Length": 24.3, + "TotalPrice": 219.25 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0, + "Weight": 2.4, + "Length": 23.7, + "TotalPrice": 207 } ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10268, + "OrderID": 10334, "EmployeeID": 8, - "OrderDate": "1996-07-30T00:00:00", - "RequiredDate": "1996-08-27T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 3, - "Freight": 66.29, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", + "OrderDate": "1996-10-21T00:00:00", + "RequiredDate": "1996-11-18T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", + "ShipVia": 2, + "Freight": 8.56, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 10, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 4, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10269, - "EmployeeID": 5, - "OrderDate": "1996-07-31T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", - "ShipVia": 1, - "Freight": 4.56, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10450, + "EmployeeID": 8, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-19T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", + "ShipVia": 2, + "Freight": 7.23, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 6, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10270, - "EmployeeID": 1, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 1, - "Freight": 136.54, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10459, + "EmployeeID": 4, + "OrderDate": "1997-02-27T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 25.09, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 25, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10271, - "EmployeeID": 6, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", - "ShipVia": 2, - "Freight": 4.54, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 10478, + "EmployeeID": 2, + "OrderDate": "1997-03-18T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-26T00:00:00", + "ShipVia": 3, + "Freight": 4.81, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 24, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10272, - "EmployeeID": 6, - "OrderDate": "1996-08-02T00:00:00", - "RequiredDate": "1996-08-30T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", - "ShipVia": 2, - "Freight": 98.03, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10546, + "EmployeeID": 1, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-05-27T00:00:00", + "ShipVia": 3, + "Freight": 194.72, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 6, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 24, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10273, + "OrderID": 10806, "EmployeeID": 3, - "OrderDate": "1996-08-05T00:00:00", - "RequiredDate": "1996-09-02T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", - "ShipVia": 3, - "Freight": 76.07, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 2, + "Freight": 22.11, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 24, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.06 - }, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 2, + "Discount": 0 + }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10814, + "EmployeeID": 3, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 3, + "Freight": 130.94, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 33, - "Discount": 0.06 + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 8, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10274, - "EmployeeID": 6, - "OrderDate": "1996-08-06T00:00:00", - "RequiredDate": "1996-09-03T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", + "OrderID": 10843, + "EmployeeID": 4, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", + "ShipVia": 2, + "Freight": 9.26, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 4, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10850, + "EmployeeID": 1, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 6.01, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, + "Freight": 49.19, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, + "ProductID": 25, + "UnitPrice": 14, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 4, + "Discount": 0.16 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "SUPRD", + "Company": "Suprêmes délices", + "ContactName": "Pascale Cartrain", + "ContactTitle": "Accounting Manager", + "Address": "Boulevard Tirou, 255", + "City": "Charleroi", + "PostalCode": 6000, + "Country": "Belgium", + "Phone": "(071) 23 67 22 20", + "Fax": "(071) 23 67 22 21", "Orders": [ { - "OrderID": 10275, - "EmployeeID": 1, - "OrderDate": "1996-08-07T00:00:00", - "RequiredDate": "1996-09-04T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", - "ShipVia": 1, - "Freight": 26.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10252, + "EmployeeID": 4, + "OrderDate": "1996-07-09T00:00:00", + "RequiredDate": "1996-08-06T00:00:00", + "ShippedDate": "1996-07-11T00:00:00", + "ShipVia": 2, + "Freight": 51.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 40, "Discount": 0.06 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 6, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 25, "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10276, - "EmployeeID": 8, - "OrderDate": "1996-08-08T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-14T00:00:00", - "ShipVia": 3, - "Freight": 13.84, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10302, + "EmployeeID": 4, + "OrderDate": "1996-09-10T00:00:00", + "RequiredDate": "1996-10-08T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 15, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10277, - "EmployeeID": 2, - "OrderDate": "1996-08-09T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-08-13T00:00:00", + "OrderID": 10458, + "EmployeeID": 7, + "OrderDate": "1997-02-26T00:00:00", + "RequiredDate": "1997-03-26T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", "ShipVia": 3, - "Freight": 125.77, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 147.06, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, + "Discount": 0 + }, { "ProductID": 28, "UnitPrice": 36.4, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 12, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10278, - "EmployeeID": 8, - "OrderDate": "1996-08-12T00:00:00", - "RequiredDate": "1996-09-09T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 2, - "Freight": 92.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 26000, - "ShipCountry": "Sweden", + "OrderID": 10463, + "EmployeeID": 5, + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-06T00:00:00", + "ShipVia": 3, + "Freight": 14.78, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 16, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 50, "Discount": 0 + } + ] + }, + { + "OrderID": 10475, + "EmployeeID": 9, + "OrderDate": "1997-03-14T00:00:00", + "RequiredDate": "1997-04-11T00:00:00", + "ShippedDate": "1997-04-04T00:00:00", + "ShipVia": 1, + "Freight": 68.52, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 8, - "Discount": 0 + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, + "Discount": 0.16 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 42, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10279, - "EmployeeID": 8, - "OrderDate": "1996-08-13T00:00:00", - "RequiredDate": "1996-09-10T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 2, - "Freight": 25.83, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10767, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 3, + "Freight": 1.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 2, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 34000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10280, - "EmployeeID": 2, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-09-11T00:00:00", - "ShippedDate": "1996-09-12T00:00:00", - "ShipVia": 1, - "Freight": 8.98, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 50000, - "ShipCountry": "Sweden", + "OrderID": 10841, + "EmployeeID": 5, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", + "ShipVia": 2, + "Freight": 424.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 20, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10281, - "EmployeeID": 4, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-08-28T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 2.94, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10846, + "EmployeeID": 2, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 56.46, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 1, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 6, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 } ] }, { - "OrderID": 10282, - "EmployeeID": 4, - "OrderDate": "1996-08-15T00:00:00", - "RequiredDate": "1996-09-12T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10283, - "EmployeeID": 3, - "OrderDate": "1996-08-16T00:00:00", - "RequiredDate": "1996-09-13T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", + "OrderID": 10885, + "EmployeeID": 6, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 3, - "Freight": 84.81, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 5.64, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 12.4, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 20, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 35, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 3, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10284, + "OrderID": 10930, "EmployeeID": 4, - "OrderDate": "1996-08-19T00:00:00", - "RequiredDate": "1996-09-16T00:00:00", - "ShippedDate": "1996-08-27T00:00:00", - "ShipVia": 1, - "Freight": 76.56, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 3, + "Freight": 15.55, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 21, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 67, - "UnitPrice": 11.2, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10285, - "EmployeeID": 1, - "OrderDate": "1996-08-20T00:00:00", - "RequiredDate": "1996-09-17T00:00:00", - "ShippedDate": "1996-08-26T00:00:00", + "OrderID": 11035, + "EmployeeID": 2, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", "ShipVia": 2, - "Freight": 76.83, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 0.17, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 45, - "Discount": 0.2 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.2 + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 36, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, + "Discount": 0 } ] }, { - "OrderID": 10286, - "EmployeeID": 8, - "OrderDate": "1996-08-21T00:00:00", - "RequiredDate": "1996-09-18T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", - "ShipVia": 3, - "Freight": 229.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 11038, + "EmployeeID": 1, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", + "ShipVia": 2, + "Freight": 29.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 100, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, + "Discount": 0.2 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] @@ -1763,327 +1555,272 @@ ] }, { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", + "CustomerID": "CHOPS", + "Company": "Chop-suey Chinese", + "ContactName": "Yang Wang", + "ContactTitle": "Owner", + "Address": "Hauptstr. 29", + "City": "Bern", + "PostalCode": 3012, + "Country": "Switzerland", + "Phone": "0452-076545", "Orders": [ { - "OrderID": 10287, - "EmployeeID": 8, - "OrderDate": "1996-08-22T00:00:00", - "RequiredDate": "1996-09-19T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", - "ShipVia": 3, - "Freight": 12.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10254, + "EmployeeID": 5, + "OrderDate": "1996-07-11T00:00:00", + "RequiredDate": "1996-08-08T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 2, + "Freight": 22.98, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, "Discount": 0.16 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 21, + "Discount": 0.16 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10288, - "EmployeeID": 4, - "OrderDate": "1996-08-23T00:00:00", - "RequiredDate": "1996-09-20T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", - "ShipVia": 1, - "Freight": 7.45, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10370, + "EmployeeID": 6, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-27T00:00:00", + "ShipVia": 2, + "Freight": 1.17, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10289, - "EmployeeID": 7, - "OrderDate": "1996-08-26T00:00:00", - "RequiredDate": "1996-09-23T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", + "OrderID": 10519, + "EmployeeID": 6, + "OrderDate": "1997-04-28T00:00:00", + "RequiredDate": "1997-05-26T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", "ShipVia": 3, - "Freight": 22.77, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 18000, - "ShipCountry": "UK", + "Freight": 91.76, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 9, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10290, - "EmployeeID": 8, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", + "OrderID": 10731, + "EmployeeID": 7, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", "ShipVia": 1, - "Freight": 79.7, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 96.65, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10746, + "EmployeeID": 1, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 3, + "Freight": 31.43, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10291, - "EmployeeID": 6, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-04T00:00:00", - "ShipVia": 2, - "Freight": 6.4, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10966, + "EmployeeID": 4, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 27.19, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10292, - "EmployeeID": 1, - "OrderDate": "1996-08-28T00:00:00", - "RequiredDate": "1996-09-25T00:00:00", - "ShippedDate": "1996-09-02T00:00:00", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "OrderID": 11029, + "EmployeeID": 4, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 47.84, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10293, - "EmployeeID": 1, - "OrderDate": "1996-08-29T00:00:00", - "RequiredDate": "1996-09-26T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 3, - "Freight": 21.18, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 11041, + "EmployeeID": 3, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", + "ShipVia": 2, + "Freight": 48.22, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 }, { "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, + "UnitPrice": 43.9, + "Quantity": 30, "Discount": 0 } ] @@ -2091,1519 +1828,1223 @@ ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "RICSU", + "Company": "Richter Supermarkt", + "ContactName": "Michael Holz", + "ContactTitle": "Sales Manager", + "Address": "Grenzacherweg 237", + "City": "Genève", + "PostalCode": 1203, + "Country": "Switzerland", + "Phone": "0897-034214", "Orders": [ { - "OrderID": 10294, - "EmployeeID": 4, - "OrderDate": "1996-08-30T00:00:00", - "RequiredDate": "1996-09-27T00:00:00", - "ShippedDate": "1996-09-05T00:00:00", - "ShipVia": 2, - "Freight": 147.26, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10255, + "EmployeeID": 9, + "OrderDate": "1996-07-12T00:00:00", + "RequiredDate": "1996-08-09T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", + "ShipVia": 3, + "Freight": 148.33, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 15, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 21, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10295, - "EmployeeID": 2, - "OrderDate": "1996-09-02T00:00:00", - "RequiredDate": "1996-09-30T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", + "OrderID": 10419, + "EmployeeID": 4, + "OrderDate": "1997-01-20T00:00:00", + "RequiredDate": "1997-02-17T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", "ShipVia": 2, - "Freight": 1.15, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 137.35, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 4, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10296, - "EmployeeID": 6, - "OrderDate": "1996-09-03T00:00:00", - "RequiredDate": "1996-10-01T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", + "OrderID": 10537, + "EmployeeID": 1, + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", "ShipVia": 1, - "Freight": 0.12, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 78.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 12, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 30, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10297, - "EmployeeID": 5, - "OrderDate": "1996-09-04T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", + "OrderID": 10666, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", "ShipVia": 2, - "Freight": 5.74, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 232.42, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 60, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, - "Discount": 0 - } + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0 + } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10298, - "EmployeeID": 6, - "OrderDate": "1996-09-05T00:00:00", - "RequiredDate": "1996-10-03T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 2, - "Freight": 168.22, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10751, + "EmployeeID": 3, + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-12-03T00:00:00", + "ShipVia": 3, + "Freight": 130.79, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 39.4, + "ProductID": 73, + "UnitPrice": 15, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10299, - "EmployeeID": 4, - "OrderDate": "1996-09-06T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-13T00:00:00", - "ShipVia": 2, - "Freight": 29.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10758, + "EmployeeID": 3, + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-04T00:00:00", + "ShipVia": 3, + "Freight": 138.17, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 60, "Discount": 0 }, { "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, + "UnitPrice": 15, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10300, - "EmployeeID": 2, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", + "OrderID": 10931, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 17.68, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 13.6, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 30, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 42, + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10301, - "EmployeeID": 8, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", + "OrderID": 10951, + "EmployeeID": 9, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", "ShipVia": 2, - "Freight": 45.08, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 30.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10302, - "EmployeeID": 4, - "OrderDate": "1996-09-10T00:00:00", - "RequiredDate": "1996-10-08T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 11033, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 84.74, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 28, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 36, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10303, - "EmployeeID": 7, - "OrderDate": "1996-09-11T00:00:00", - "RequiredDate": "1996-10-09T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", + "OrderID": 11075, + "EmployeeID": 8, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", "ShipVia": 2, - "Freight": 107.83, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 6.19, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 46, + "UnitPrice": 12, "Quantity": 30, - "Discount": 0.1 + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", + "CustomerID": "WELLI", + "Company": "Wellington Importadora", + "ContactName": "Paula Parente", + "ContactTitle": "Sales Manager", + "Address": "Rua do Mercado, 12", + "City": "Resende", + "Region": "SP", + "PostalCode": 8737, + "Country": "Brazil", + "Phone": "(14) 555-8122", "Orders": [ { - "OrderID": 10304, - "EmployeeID": 1, - "OrderDate": "1996-09-12T00:00:00", - "RequiredDate": "1996-10-10T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", + "OrderID": 10256, + "EmployeeID": 3, + "OrderDate": "1996-07-15T00:00:00", + "RequiredDate": "1996-08-12T00:00:00", + "ShippedDate": "1996-07-17T00:00:00", "ShipVia": 2, - "Freight": 63.79, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 13.97, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 10, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10305, - "EmployeeID": 8, - "OrderDate": "1996-09-13T00:00:00", - "RequiredDate": "1996-10-11T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 3, - "Freight": 257.62, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10420, + "EmployeeID": 3, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 1, + "Freight": 44.12, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 25, + "ProductID": 9, + "UnitPrice": 77.6, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 25, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 2, "Discount": 0.1 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 30, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10306, - "EmployeeID": 1, - "OrderDate": "1996-09-16T00:00:00", - "RequiredDate": "1996-10-14T00:00:00", - "ShippedDate": "1996-09-23T00:00:00", - "ShipVia": 3, - "Freight": 7.56, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10585, + "EmployeeID": 7, + "OrderDate": "1997-07-01T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", + "ShipVia": 1, + "Freight": 13.41, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 5, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10307, - "EmployeeID": 2, - "OrderDate": "1996-09-17T00:00:00", - "RequiredDate": "1996-10-15T00:00:00", - "ShippedDate": "1996-09-25T00:00:00", + "OrderID": 10644, + "EmployeeID": 3, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 0.14, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ - { - "OrderID": 10308, - "EmployeeID": 7, - "OrderDate": "1996-09-18T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-24T00:00:00", - "ShipVia": 3, - "Freight": 1.61, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 1, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 70, + "ProductID": 46, "UnitPrice": 12, - "Quantity": 5, - "Discount": 0 + "Quantity": 21, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10309, - "EmployeeID": 3, - "OrderDate": "1996-09-19T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", + "OrderID": 10803, + "EmployeeID": 4, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-06T00:00:00", "ShipVia": 1, - "Freight": 47.3, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 55.23, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 24, + "Discount": 0.06 }, { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 30, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 2, - "Discount": 0 - }, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 15, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10809, + "EmployeeID": 7, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", + "ShipVia": 1, + "Freight": 4.87, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 43, - "UnitPrice": 36.8, + "ProductID": 52, + "UnitPrice": 7, "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 3, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10310, - "EmployeeID": 8, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-18T00:00:00", - "ShippedDate": "1996-09-27T00:00:00", + "OrderID": 10900, + "EmployeeID": 1, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 2, - "Freight": 17.52, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "Freight": 1.66, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 10, - "Discount": 0 - }, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10905, + "EmployeeID": 9, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 13.72, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 5, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10311, - "EmployeeID": 1, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-26T00:00:00", + "OrderID": 10935, + "EmployeeID": 4, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 3, - "Freight": 24.69, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 47.59, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 6, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.25 + }, + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 8, + "Discount": 0.25 } ] } ] }, { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", + "CustomerID": "HILAA", + "Company": "HILARION-Abastos", + "ContactName": "Carlos Hernández", "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", + "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", "Orders": [ { - "OrderID": 10312, - "EmployeeID": 2, - "OrderDate": "1996-09-23T00:00:00", - "RequiredDate": "1996-10-21T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", - "ShipVia": 2, - "Freight": 40.26, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10257, + "EmployeeID": 4, + "OrderDate": "1996-07-16T00:00:00", + "RequiredDate": "1996-08-13T00:00:00", + "ShippedDate": "1996-07-22T00:00:00", + "ShipVia": 3, + "Freight": 81.91, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 4, + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 24, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10395, + "EmployeeID": 6, + "OrderDate": "1996-12-26T00:00:00", + "RequiredDate": "1997-01-23T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 1, + "Freight": 184.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 28, + "Discount": 0.1 }, { "ProductID": 53, "UnitPrice": 26.2, - "Quantity": 20, - "Discount": 0 + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10313, - "EmployeeID": 2, - "OrderDate": "1996-09-24T00:00:00", - "RequiredDate": "1996-10-22T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", - "ShipVia": 2, - "Freight": 1.96, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10476, + "EmployeeID": 8, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", + "ShipVia": 3, + "Freight": 4.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 12, "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10314, + "OrderID": 10486, "EmployeeID": 1, - "OrderDate": "1996-09-25T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", "ShipVia": 2, - "Freight": 74.16, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 30.53, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 10.6, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 16, + "Discount": 0 + } + ] + }, + { + "OrderID": 10490, + "EmployeeID": 7, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-03T00:00:00", + "ShipVia": 2, + "Freight": 210.19, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, "Quantity": 30, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 36, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 42000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10315, - "EmployeeID": 4, - "OrderDate": "1996-09-26T00:00:00", - "RequiredDate": "1996-10-24T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", + "OrderID": 10498, + "EmployeeID": 8, + "OrderDate": "1997-04-07T00:00:00", + "RequiredDate": "1997-05-05T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 2, - "Freight": 41.76, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40301, - "ShipPostalCode": 32000, - "ShipCountry": "UK", + "Freight": 29.75, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 14, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10316, - "EmployeeID": 1, - "OrderDate": "1996-09-27T00:00:00", - "RequiredDate": "1996-10-25T00:00:00", - "ShippedDate": "1996-10-08T00:00:00", - "ShipVia": 3, - "Freight": 150.15, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10552, + "EmployeeID": 2, + "OrderDate": "1997-05-29T00:00:00", + "RequiredDate": "1997-06-26T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 1, + "Freight": 83.22, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 70, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10317, - "EmployeeID": 6, - "OrderDate": "1996-09-30T00:00:00", - "RequiredDate": "1996-10-28T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", + "OrderID": 10601, + "EmployeeID": 7, + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 58.3, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 20, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10318, - "EmployeeID": 8, - "OrderDate": "1996-10-01T00:00:00", - "RequiredDate": "1996-10-29T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderID": 10613, + "EmployeeID": 4, + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 4.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 30575, - "ShipPostalCode": 43000, - "ShipCountry": "UK", + "Freight": 8.11, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 6, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10319, - "EmployeeID": 7, - "OrderDate": "1996-10-02T00:00:00", - "RequiredDate": "1996-10-30T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", - "ShipVia": 3, - "Freight": 64.5, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10641, + "EmployeeID": 4, + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 2, + "Freight": 179.61, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 14, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10320, - "EmployeeID": 5, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-18T00:00:00", - "ShipVia": 3, - "Freight": 34.57, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10705, + "EmployeeID": 9, + "OrderDate": "1997-10-15T00:00:00", + "RequiredDate": "1997-11-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 3.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10321, + "OrderID": 10796, "EmployeeID": 3, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-31T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", - "ShipVia": 2, - "Freight": 3.43, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 80331, - "ShipPostalCode": 24000, - "ShipCountry": "UK", + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 1, + "Freight": 26.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 21, + "Discount": 0.2 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10322, - "EmployeeID": 7, - "OrderDate": "1996-10-04T00:00:00", - "RequiredDate": "1996-11-01T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", - "ShipVia": 3, - "Freight": 0.4, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 24, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10323, + "OrderID": 10863, "EmployeeID": 4, - "OrderDate": "1996-10-07T00:00:00", - "RequiredDate": "1996-11-04T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 1, - "Freight": 4.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 30.26, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 12.4, - "Quantity": 5, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 4, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 12, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10901, + "EmployeeID": 4, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", + "ShipVia": 1, + "Freight": 62.09, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10324, - "EmployeeID": 9, - "OrderDate": "1996-10-08T00:00:00", - "RequiredDate": "1996-11-05T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", - "ShipVia": 1, - "Freight": 214.27, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10957, + "EmployeeID": 8, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 105.36, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.16 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 70, - "Discount": 0.16 + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 30, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 8, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10960, + "EmployeeID": 3, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 2.08, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 80, - "Discount": 0.16 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10325, + "OrderID": 10976, "EmployeeID": 1, - "OrderDate": "1996-10-09T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 3, - "Freight": 64.86, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 1, + "Freight": 37.97, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 6, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 11055, + "EmployeeID": 7, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", + "ShipVia": 2, + "Freight": 120.92, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 12, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 9, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ - { - "OrderID": 10326, - "EmployeeID": 4, - "OrderDate": "1996-10-10T00:00:00", - "RequiredDate": "1996-11-07T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 2, - "Freight": 77.92, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 24, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 16, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 50, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] @@ -3611,1149 +3052,787 @@ ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 31000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", "Orders": [ { - "OrderID": 10327, - "EmployeeID": 2, - "OrderDate": "1996-10-11T00:00:00", - "RequiredDate": "1996-11-08T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", + "OrderID": 10258, + "EmployeeID": 1, + "OrderDate": "1996-07-17T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", "ShipVia": 1, - "Freight": 63.36, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", + "Freight": 140.51, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 11, - "UnitPrice": 16.8, "Quantity": 50, "Discount": 0.2 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 35, + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 65, "Discount": 0.2 }, { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10328, - "EmployeeID": 4, - "OrderDate": "1996-10-14T00:00:00", - "RequiredDate": "1996-11-11T00:00:00", - "ShippedDate": "1996-10-17T00:00:00", + "OrderID": 10263, + "EmployeeID": 9, + "OrderDate": "1996-07-23T00:00:00", + "RequiredDate": "1996-08-20T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", "ShipVia": 3, - "Freight": 87.03, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 146.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 36, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10329, - "EmployeeID": 4, - "OrderDate": "1996-10-15T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", - "ShipVia": 2, - "Freight": 191.67, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 10351, + "EmployeeID": 1, + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 162.33, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 10, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 20, "Discount": 0.06 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 13, + "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 20, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 77, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 12, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 10, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10330, - "EmployeeID": 3, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", - "ShipVia": 1, - "Freight": 12.75, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10368, + "EmployeeID": 2, + "OrderDate": "1996-11-29T00:00:00", + "RequiredDate": "1996-12-27T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 101.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 5, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 13, + "Discount": 0.1 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 25, - "Discount": 0.16 + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10331, - "EmployeeID": 9, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-27T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", + "OrderID": 10382, + "EmployeeID": 4, + "OrderDate": "1996-12-13T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1996-12-16T00:00:00", "ShipVia": 1, - "Freight": 10.19, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 94.77, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 32, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 49000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10332, - "EmployeeID": 3, - "OrderDate": "1996-10-17T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", - "ShipVia": 2, - "Freight": 52.84, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { "ProductID": 18, "UnitPrice": 50, - "Quantity": 40, - "Discount": 0.2 + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 16, - "Discount": 0.2 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10333, - "EmployeeID": 5, - "OrderDate": "1996-10-18T00:00:00", - "RequiredDate": "1996-11-15T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", - "ShipVia": 3, - "Freight": 0.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10390, + "EmployeeID": 6, + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-26T00:00:00", + "ShipVia": 1, + "Freight": 126.38, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 40, "Discount": 0.1 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 40, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10334, + "OrderID": 10402, "EmployeeID": 8, - "OrderDate": "1996-10-21T00:00:00", - "RequiredDate": "1996-11-18T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", + "OrderDate": "1997-01-02T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", "ShipVia": 2, - "Freight": 8.56, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 67.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 8, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 65, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10335, - "EmployeeID": 7, - "OrderDate": "1996-10-22T00:00:00", - "RequiredDate": "1996-11-19T00:00:00", - "ShippedDate": "1996-10-24T00:00:00", - "ShipVia": 2, - "Freight": 42.11, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10430, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-03T00:00:00", + "ShipVia": 1, + "Freight": 458.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 7, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 45, "Discount": 0.2 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 48, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10336, - "EmployeeID": 7, - "OrderDate": "1996-10-23T00:00:00", - "RequiredDate": "1996-11-20T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", + "OrderID": 10442, + "EmployeeID": 3, + "OrderDate": "1997-02-11T00:00:00", + "RequiredDate": "1997-03-11T00:00:00", + "ShippedDate": "1997-02-18T00:00:00", "ShipVia": 2, - "Freight": 15.51, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "Freight": 47.94, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 80, + "Discount": 0 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10337, - "EmployeeID": 4, - "OrderDate": "1996-10-24T00:00:00", - "RequiredDate": "1996-11-21T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", - "ShipVia": 3, - "Freight": 108.26, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10514, + "EmployeeID": 3, + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 2, + "Freight": 789.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 39, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 24, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 20, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 28, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 39, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10338, - "EmployeeID": 4, - "OrderDate": "1996-10-25T00:00:00", - "RequiredDate": "1996-11-22T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", + "OrderID": 10571, + "EmployeeID": 8, + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 3, - "Freight": 84.21, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 20, - "Discount": 0 + "Freight": 26.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 11, + "Discount": 0.16 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 15, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 46000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10339, + "OrderID": 10595, "EmployeeID": 2, - "OrderDate": "1996-10-28T00:00:00", - "RequiredDate": "1996-11-25T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 15.66, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 40000, - "ShipCountry": "Canada", + "OrderDate": "1997-07-10T00:00:00", + "RequiredDate": "1997-08-07T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 1, + "Freight": 96.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 120, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 28, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 65, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10340, - "EmployeeID": 1, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", + "OrderID": 10633, + "EmployeeID": 7, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-18T00:00:00", "ShipVia": 3, - "Freight": 166.31, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 477.9, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 13, + "Discount": 0.16 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 80, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10341, + "OrderID": 10667, "EmployeeID": 7, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", - "ShipVia": 3, - "Freight": 26.78, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 78.09, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 8, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 14, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10342, + "OrderID": 10698, "EmployeeID": 4, - "OrderDate": "1996-10-30T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 54.83, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-17T00:00:00", + "ShipVia": 1, + "Freight": 272.47, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 24, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 56, - "Discount": 0.2 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.06 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 65, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 8, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10343, - "EmployeeID": 4, - "OrderDate": "1996-10-31T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-11-06T00:00:00", - "ShipVia": 1, - "Freight": 110.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10764, + "EmployeeID": 6, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 3, + "Freight": 145.45, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 68, + "ProductID": 3, "UnitPrice": 10, - "Quantity": 4, - "Discount": 0.06 + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 130, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10344, - "EmployeeID": 4, - "OrderDate": "1996-11-01T00:00:00", - "RequiredDate": "1996-11-29T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", + "OrderID": 10771, + "EmployeeID": 9, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", "ShipVia": 2, - "Freight": 23.29, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 11.19, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 35, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 16, "Discount": 0 - }, - { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10345, - "EmployeeID": 2, - "OrderDate": "1996-11-04T00:00:00", - "RequiredDate": "1996-12-02T00:00:00", - "ShippedDate": "1996-11-11T00:00:00", - "ShipVia": 2, - "Freight": 249.06, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10773, + "EmployeeID": 1, + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1998-01-08T00:00:00", + "ShippedDate": "1997-12-16T00:00:00", + "ShipVia": 3, + "Freight": 96.43, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 33, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 80, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 70, + "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 9, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 7, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10346, - "EmployeeID": 3, - "OrderDate": "1996-11-05T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", + "OrderID": 10776, + "EmployeeID": 1, + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1998-01-12T00:00:00", + "ShippedDate": "1997-12-18T00:00:00", "ShipVia": 3, - "Freight": 142.08, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 351.53, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 36, - "Discount": 0.1 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10347, - "EmployeeID": 4, - "OrderDate": "1996-11-06T00:00:00", - "RequiredDate": "1996-12-04T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 3.1, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 4, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 27, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 120, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10348, - "EmployeeID": 4, - "OrderDate": "1996-11-07T00:00:00", - "RequiredDate": "1996-12-05T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", + "OrderID": 10795, + "EmployeeID": 8, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-20T00:00:00", "ShipVia": 2, - "Freight": 0.78, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 126.66, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 65, + "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 25, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10349, + "OrderID": 10836, "EmployeeID": 7, - "OrderDate": "1996-11-08T00:00:00", - "RequiredDate": "1996-12-06T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", "ShipVia": 1, - "Freight": 8.63, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 411.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 52, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, "Quantity": 24, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10350, - "EmployeeID": 6, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", - "ShipVia": 2, - "Freight": 64.19, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ + }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10351, - "EmployeeID": 1, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 162.33, + "OrderID": 10854, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-05T00:00:00", + "ShipVia": 2, + "Freight": 100.22, "ShipName": "Ernst Handel", "ShipAddress": "Kirchgasse 6", "ShipCity": "Graz", @@ -4761,450 +3840,329 @@ "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 100, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 13, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 77, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 65, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10352, + "OrderID": 10895, "EmployeeID": 3, - "OrderDate": "1996-11-12T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-18T00:00:00", - "ShipVia": 3, - "Freight": 1.3, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", + "ShipVia": 1, + "Freight": 162.75, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, + "UnitPrice": 4.5, + "Quantity": 110, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 91, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 100, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10353, - "EmployeeID": 7, - "OrderDate": "1996-11-13T00:00:00", - "RequiredDate": "1996-12-11T00:00:00", - "ShippedDate": "1996-11-25T00:00:00", + "OrderID": 10968, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-01T00:00:00", "ShipVia": 3, - "Freight": 360.63, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, + "Freight": 74.6, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10354, + "OrderID": 10979, "EmployeeID": 8, - "OrderDate": "1996-11-14T00:00:00", - "RequiredDate": "1996-12-12T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 3, - "Freight": 53.8, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-03-31T00:00:00", + "ShipVia": 2, + "Freight": 353.07, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 12, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 4, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 19000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10355, - "EmployeeID": 6, - "OrderDate": "1996-11-15T00:00:00", - "RequiredDate": "1996-12-13T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 41.95, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 37000, - "ShipCountry": "UK", - "OrderDetails": [ + }, { "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, + "UnitPrice": 4.5, + "Quantity": 80, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10356, - "EmployeeID": 6, - "OrderDate": "1996-11-18T00:00:00", - "RequiredDate": "1996-12-16T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 2, - "Freight": 36.71, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10990, + "EmployeeID": 2, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 3, + "Freight": 117.61, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 31, + "ProductID": 21, "UnitPrice": 10, - "Quantity": 30, + "Quantity": 65, "Discount": 0 }, + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 60, + "Discount": 0.16 + }, { "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 12, - "Discount": 0 + "UnitPrice": 24, + "Quantity": 65, + "Discount": 0.16 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 66, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10357, - "EmployeeID": 1, - "OrderDate": "1996-11-19T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 11008, + "EmployeeID": 7, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", "ShipVia": 3, - "Freight": 34.88, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 79.46, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 16, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 90, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 8, - "Discount": 0.2 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10358, - "EmployeeID": 5, - "OrderDate": "1996-11-20T00:00:00", - "RequiredDate": "1996-12-18T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 1, - "Freight": 19.64, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 11017, + "EmployeeID": 9, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 2, + "Freight": 754.26, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 110, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10359, - "EmployeeID": 5, - "OrderDate": "1996-11-21T00:00:00", - "RequiredDate": "1996-12-19T00:00:00", - "ShippedDate": "1996-11-26T00:00:00", - "ShipVia": 3, - "Freight": 288.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "OrderID": 11072, + "EmployeeID": 4, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShipVia": 2, + "Freight": 258.64, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 56, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 22, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 130, + "Discount": 0 } ] } ] }, { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", + "CustomerID": "CENTC", + "Company": "Centro comercial Moctezuma", + "ContactName": "Francisco Chang", "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", + "Address": "Sierras de Granada 9993", + "City": "México D.F.", + "PostalCode": 5022, + "Country": "Mexico", + "Phone": "(5) 555-3392", + "Fax": "(5) 555-7293", "Orders": [ { - "OrderID": 10360, + "OrderID": 10259, "EmployeeID": 4, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderDate": "1996-07-18T00:00:00", + "RequiredDate": "1996-08-15T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", "ShipVia": 3, - "Freight": 131.7, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 3.25, + "ShipName": "Centro comercial Moctezuma", + "ShipAddress": "Sierras de Granada 9993", + "ShipCity": "México D.F.", + "ShipPostalCode": 5022, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 210.8, + "ProductID": 21, + "UnitPrice": 8, "Quantity": 10, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 28, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 1, "Discount": 0 } ] @@ -5212,815 +4170,636 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, + "CustomerID": "OTTIK", + "Company": "Ottilies Käseladen", + "ContactName": "Henriette Pfalzheim", + "ContactTitle": "Owner", + "Address": "Mehrheimerstr. 369", + "City": "Köln", + "PostalCode": 50739, "Country": "Germany", - "Phone": "0372-035188", + "Phone": "0221-0644327", + "Fax": "0221-0765721", "Orders": [ { - "OrderID": 10361, - "EmployeeID": 1, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", - "ShipVia": 2, - "Freight": 183.17, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, + "OrderID": 10260, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-29T00:00:00", + "ShipVia": 1, + "Freight": 55.09, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 54, - "Discount": 0.1 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 16, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 55, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10362, - "EmployeeID": 3, - "OrderDate": "1996-11-25T00:00:00", - "RequiredDate": "1996-12-23T00:00:00", - "ShippedDate": "1996-11-28T00:00:00", - "ShipVia": 1, - "Freight": 96.04, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 11.2, + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 50, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10363, - "EmployeeID": 4, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1996-12-24T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", - "ShipVia": 3, - "Freight": 30.54, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, + "OrderID": 10407, + "EmployeeID": 2, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-04T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", + "ShipVia": 2, + "Freight": 91.48, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 12, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, "Discount": 0 }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ - { - "OrderID": 10364, - "EmployeeID": 1, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", - "ShipVia": 1, - "Freight": 71.97, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 20000, - "ShipCountry": "UK", - "OrderDetails": [ { "ProductID": 69, "UnitPrice": 28.8, - "Quantity": 30, + "Quantity": 15, "Discount": 0 }, { "ProductID": 71, "UnitPrice": 17.2, - "Quantity": 5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10365, - "EmployeeID": 3, - "OrderDate": "1996-11-27T00:00:00", - "RequiredDate": "1996-12-25T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 10508, + "EmployeeID": 1, + "OrderDate": "1997-04-16T00:00:00", + "RequiredDate": "1997-05-14T00:00:00", + "ShippedDate": "1997-05-13T00:00:00", "ShipVia": 2, - "Freight": 22, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "Freight": 4.99, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 24, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10366, - "EmployeeID": 8, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1996-12-30T00:00:00", - "ShipVia": 2, - "Freight": 10.14, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 10554, + "EmployeeID": 4, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 3, + "Freight": 120.97, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 5, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 }, { "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, - "Discount": 0 + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10367, - "EmployeeID": 7, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1996-12-26T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 10580, + "EmployeeID": 4, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-01T00:00:00", "ShipVia": 3, - "Freight": 13.55, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 75.89, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 36, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 18, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, + "Discount": 0.06 }, { "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0 + "UnitPrice": 21.05, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10368, - "EmployeeID": 2, - "OrderDate": "1996-11-29T00:00:00", - "RequiredDate": "1996-12-27T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 2, - "Freight": 101.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10684, + "EmployeeID": 3, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 1, + "Freight": 145.63, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 13, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10369, - "EmployeeID": 8, - "OrderDate": "1996-12-02T00:00:00", - "RequiredDate": "1996-12-30T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 2, - "Freight": 195.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 10766, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 157.55, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 20, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10370, + "OrderID": 10833, "EmployeeID": 6, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-27T00:00:00", + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 2, - "Freight": 1.17, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 71.49, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 9, + "Discount": 0.1 }, { - "ProductID": 74, - "UnitPrice": 8, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 9, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10999, + "EmployeeID": 6, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-01T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 96.35, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 21, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10371, - "EmployeeID": 1, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", - "ShipVia": 1, - "Freight": 0.45, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 11020, + "EmployeeID": 2, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 2, + "Freight": 43.3, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 24, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", + "CustomerID": "QUEDE", + "Company": "Que Delícia", + "ContactName": "Bernardo Batista", + "ContactTitle": "Accounting Manager", + "Address": "Rua da Panificadora, 12", "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, + "Region": "RJ", + "PostalCode": 2389, "Country": "Brazil", - "Phone": "(11) 555-1189", + "Phone": "(21) 555-4252", + "Fax": "(21) 555-4545", "Orders": [ { - "OrderID": 10372, - "EmployeeID": 5, - "OrderDate": "1996-12-04T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", + "OrderID": 10261, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-30T00:00:00", "ShipVia": 2, - "Freight": 890.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, + "Freight": 3.05, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 12, - "Discount": 0.25 - }, - { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 70, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 42, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10373, - "EmployeeID": 4, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-11T00:00:00", - "ShipVia": 3, - "Freight": 124.12, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10291, + "EmployeeID": 6, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-04T00:00:00", + "ShipVia": 2, + "Freight": 6.4, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 80, - "Discount": 0.2 + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 24, + "Discount": 0.1 + }, + { + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10374, - "EmployeeID": 1, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 3, - "Freight": 3.94, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10379, + "EmployeeID": 2, + "OrderDate": "1996-12-11T00:00:00", + "RequiredDate": "1997-01-08T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 1, + "Freight": 45.03, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 15, - "Discount": 0 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 16, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10375, - "EmployeeID": 3, - "OrderDate": "1996-12-06T00:00:00", - "RequiredDate": "1997-01-03T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 2, - "Freight": 20.12, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "OrderID": 10421, + "EmployeeID": 8, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-03-04T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 1, + "Freight": 99.23, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 15, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 4, + "Discount": 0.16 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0.16 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, "Quantity": 10, - "Discount": 0 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 34000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10376, + "OrderID": 10587, "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 2, - "Freight": 20.39, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 11000, - "ShipCountry": "Canada", + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 1, + "Freight": 62.52, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 42, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 13000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10377, - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 22.21, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 41000, - "ShipCountry": "UK", + "OrderID": 10647, + "EmployeeID": 4, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 2, + "Freight": 45.54, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 39, - "UnitPrice": 14.4, + "UnitPrice": 18, "Quantity": 20, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 27000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10378, - "EmployeeID": 5, - "OrderDate": "1996-12-10T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-19T00:00:00", - "ShipVia": 3, - "Freight": 5.44, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "OrderID": 10720, + "EmployeeID": 8, + "OrderDate": "1997-10-28T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 2, + "Freight": 9.53, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 + }, { "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 6, + "UnitPrice": 21.5, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10379, + "OrderID": 10794, + "EmployeeID": 6, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 1, + "Freight": 21.49, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, + "Discount": 0.2 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10989, "EmployeeID": 2, - "OrderDate": "1996-12-11T00:00:00", - "RequiredDate": "1997-01-08T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", "ShipVia": 1, - "Freight": 45.03, + "Freight": 34.76, "ShipName": "Que Delícia", "ShipAddress": "Rua da Panificadora, 12", "ShipCity": "Lyon", @@ -6029,982 +4808,767 @@ "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 16, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, + "Discount": 0 } ] } ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", "Orders": [ { - "OrderID": 10380, + "OrderID": 10262, "EmployeeID": 8, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderDate": "1996-07-22T00:00:00", + "RequiredDate": "1996-08-19T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", "ShipVia": 3, - "Freight": 35.03, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 48.29, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10381, - "EmployeeID": 3, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 7.99, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10272, + "EmployeeID": 6, + "OrderDate": "1996-08-02T00:00:00", + "RequiredDate": "1996-08-30T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", + "ShipVia": 2, + "Freight": 98.03, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 14, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10382, + "OrderID": 10294, "EmployeeID": 4, - "OrderDate": "1996-12-13T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1996-12-16T00:00:00", - "ShipVia": 1, - "Freight": 94.77, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderDate": "1996-08-30T00:00:00", + "RequiredDate": "1996-09-27T00:00:00", + "ShippedDate": "1996-09-05T00:00:00", + "ShipVia": 2, + "Freight": 147.26, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 32, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 9, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 14, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 50, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 25000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10383, - "EmployeeID": 8, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-18T00:00:00", - "ShipVia": 3, - "Freight": 34.24, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 36000, - "ShipCountry": "UK", + "OrderID": 10314, + "EmployeeID": 1, + "OrderDate": "1996-09-25T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 74.16, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 25, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 13000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10384, - "EmployeeID": 3, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", + "OrderID": 10316, + "EmployeeID": 1, + "OrderDate": "1996-09-27T00:00:00", + "RequiredDate": "1996-10-25T00:00:00", + "ShippedDate": "1996-10-08T00:00:00", "ShipVia": 3, - "Freight": 168.64, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 33000, - "ShipCountry": "Sweden", + "Freight": 150.15, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 28, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 70, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10385, - "EmployeeID": 1, - "OrderDate": "1996-12-17T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1996-12-23T00:00:00", - "ShipVia": 2, - "Freight": 30.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, + "OrderID": 10346, + "EmployeeID": 3, + "OrderDate": "1996-11-05T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 142.08, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 36, + "Discount": 0.1 }, { - "ProductID": 60, - "UnitPrice": 27.2, + "ProductID": 56, + "UnitPrice": 30.4, "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 8, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10386, - "EmployeeID": 9, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-25T00:00:00", - "ShipVia": 3, - "Freight": 13.99, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10401, + "EmployeeID": 1, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", + "ShipVia": 1, + "Freight": 12.51, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10387, - "EmployeeID": 1, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-15T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 2, - "Freight": 93.63, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10479, + "EmployeeID": 3, + "OrderDate": "1997-03-19T00:00:00", + "RequiredDate": "1997-04-16T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", + "ShipVia": 3, + "Freight": 708.95, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 6, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 28, "Discount": 0 }, { "ProductID": 59, "UnitPrice": 44, - "Quantity": 12, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 12000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10388, - "EmployeeID": 2, - "OrderDate": "1996-12-19T00:00:00", - "RequiredDate": "1997-01-16T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 1, - "Freight": 34.86, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 45000, - "ShipCountry": "UK", + "OrderID": 10564, + "EmployeeID": 4, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-08T00:00:00", + "ShippedDate": "1997-06-16T00:00:00", + "ShipVia": 3, + "Freight": 13.75, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 7.6, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10569, + "EmployeeID": 5, + "OrderDate": "1997-06-16T00:00:00", + "RequiredDate": "1997-07-14T00:00:00", + "ShippedDate": "1997-07-11T00:00:00", + "ShipVia": 1, + "Freight": 58.98, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0.2 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 40, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 26000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10389, - "EmployeeID": 4, - "OrderDate": "1996-12-20T00:00:00", - "RequiredDate": "1997-01-17T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", - "ShipVia": 2, - "Freight": 47.42, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10598, + "EmployeeID": 1, + "OrderDate": "1997-07-14T00:00:00", + "RequiredDate": "1997-08-11T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", + "ShipVia": 3, + "Freight": 44.42, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 16, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 15, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 9, "Discount": 0 + } + ] + }, + { + "OrderID": 10761, + "EmployeeID": 5, + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 2, + "Freight": 18.66, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 20, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10820, + "EmployeeID": 3, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 37.52, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 12, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10390, - "EmployeeID": 6, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-26T00:00:00", + "OrderID": 10852, + "EmployeeID": 8, + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 126.38, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 174.05, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 45, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 50, + "Discount": 0 + } + ] + }, + { + "OrderID": 10889, + "EmployeeID": 9, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", + "ShipVia": 3, + "Freight": 280.61, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10391, + "OrderID": 10988, "EmployeeID": 3, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-31T00:00:00", - "ShipVia": 3, - "Freight": 5.45, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 61.14, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 18, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10392, + "OrderID": 11000, "EmployeeID": 2, - "OrderDate": "1996-12-24T00:00:00", - "RequiredDate": "1997-01-21T00:00:00", - "ShippedDate": "1997-01-01T00:00:00", - "ShipVia": 3, - "Freight": 122.46, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10393, - "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", "ShipVia": 3, - "Freight": 126.56, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "Freight": 55.12, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, + "ProductID": 4, + "UnitPrice": 22, "Quantity": 25, "Discount": 0.25 }, { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 42, - "Discount": 0.25 - }, - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 7, - "Discount": 0.25 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 70, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 32, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10394, + "OrderID": 11077, "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 3, - "Freight": 30.34, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShipVia": 2, + "Freight": 8.53, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 24, + "Discount": 0.2 + }, + { + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 1, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10395, - "EmployeeID": 6, - "OrderDate": "1996-12-26T00:00:00", - "RequiredDate": "1997-01-23T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 1, - "Freight": 184.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ + }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 1, + "Discount": 0.02 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 70, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 1, + "Discount": 0.06 + }, + { + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 2, "Discount": 0.1 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 8, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 1, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10396, - "EmployeeID": 1, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1997-01-06T00:00:00", - "ShipVia": 3, - "Freight": 135.35, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ + }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 2, + "Discount": 0.06 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 21, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 1, + "Discount": 0.04 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 2, + "Discount": 0.04 + }, + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 1, + "Discount": 0.04 + }, + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 2, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ - { - "OrderID": 10397, - "EmployeeID": 5, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-24T00:00:00", - "ShippedDate": "1997-01-02T00:00:00", - "ShipVia": 1, - "Freight": 60.26, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", - "OrderDetails": [ + }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 1, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 18, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10398, - "EmployeeID": 2, - "OrderDate": "1996-12-30T00:00:00", - "RequiredDate": "1997-01-27T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 89.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.06 + }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 30, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10399, - "EmployeeID": 8, - "OrderDate": "1996-12-31T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", - "ShipVia": 3, - "Freight": 27.36, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 3, + "Discount": 0.02 + }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 35, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 2, + "Discount": 0.04 + }, + { + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 2, + "Discount": 0.0099999998 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 4, "Discount": 0 }, { "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 14, + "UnitPrice": 13, + "Quantity": 2, "Discount": 0 } ] @@ -7012,1094 +5576,932 @@ ] }, { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 47000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 36000, + "Country": "Sweden", + "Phone": "0695-34 67 21", "Orders": [ { - "OrderID": 10400, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderID": 10264, + "EmployeeID": 6, + "OrderDate": "1996-07-24T00:00:00", + "RequiredDate": "1996-08-21T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", "ShipVia": 3, - "Freight": 83.93, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "Freight": 3.67, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 15000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 35, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10401, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", + "OrderID": 10327, + "EmployeeID": 2, + "OrderDate": "1996-10-11T00:00:00", + "RequiredDate": "1996-11-08T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", "ShipVia": 1, - "Freight": 12.51, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 63.36, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 70, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 50, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 35, + "Discount": 0.2 }, + { + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10378, + "EmployeeID": 5, + "OrderDate": "1996-12-10T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-19T00:00:00", + "ShipVia": 3, + "Freight": 5.44, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", + "OrderDetails": [ { "ProductID": 71, "UnitPrice": 17.2, - "Quantity": 60, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10402, - "EmployeeID": 8, - "OrderDate": "1997-01-02T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", + "OrderID": 10434, + "EmployeeID": 3, + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-02-13T00:00:00", "ShipVia": 2, - "Freight": 67.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 17.92, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 10000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 60, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 65, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 18, + "Discount": 0.16 } ] }, { - "OrderID": 10403, - "EmployeeID": 4, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 73.79, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10460, + "EmployeeID": 8, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 1, + "Freight": 16.27, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 44000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, + "ProductID": 68, + "UnitPrice": 10, "Quantity": 21, - "Discount": 0.16 + "Discount": 0.25 }, { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 4, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10404, - "EmployeeID": 2, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", + "OrderID": 10533, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-22T00:00:00", "ShipVia": 1, - "Freight": 155.97, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 188.04, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, "Discount": 0.06 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 24, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10405, - "EmployeeID": 1, - "OrderDate": "1997-01-06T00:00:00", - "RequiredDate": "1997-02-03T00:00:00", - "ShippedDate": "1997-01-22T00:00:00", - "ShipVia": 1, - "Freight": 34.82, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10406, - "EmployeeID": 7, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-13T00:00:00", - "ShipVia": 1, - "Freight": 108.04, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10561, + "EmployeeID": 2, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 2, + "Freight": 242.21, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 18000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, + "ProductID": 44, + "UnitPrice": 19.45, "Quantity": 10, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 42, - "Discount": 0.1 - }, - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10407, - "EmployeeID": 2, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-04T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", + "OrderID": 10703, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-10-20T00:00:00", "ShipVia": 2, - "Freight": 91.48, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 152.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 22000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10408, - "EmployeeID": 8, - "OrderDate": "1997-01-08T00:00:00", - "RequiredDate": "1997-02-05T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", + "OrderID": 10762, + "EmployeeID": 3, + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", "ShipVia": 1, - "Freight": 11.26, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 328.74, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10409, - "EmployeeID": 3, - "OrderDate": "1997-01-09T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", + "OrderID": 10774, + "EmployeeID": 4, + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", "ShipVia": 1, - "Freight": 29.83, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 48.2, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 20000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 12, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 2, + "Discount": 0.25 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 12, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 28000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10410, - "EmployeeID": 3, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", - "ShipVia": 3, - "Freight": 2.4, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 30000, - "ShipCountry": "Canada", + "OrderID": 10824, + "EmployeeID": 8, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 1.23, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 23000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 49, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 16, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 9, "Discount": 0 } ] }, { - "OrderID": 10411, - "EmployeeID": 9, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-21T00:00:00", - "ShipVia": 3, - "Freight": 23.65, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 10000, - "ShipCountry": "Canada", + "OrderID": 10880, + "EmployeeID": 7, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 88.01, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 26000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 25, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 40, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 50, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10412, + "OrderID": 10902, + "EmployeeID": 1, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", + "ShipVia": 1, + "Freight": 44.15, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 33000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 6, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10955, "EmployeeID": 8, - "OrderDate": "1997-01-13T00:00:00", - "RequiredDate": "1997-02-10T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 3.77, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 3.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 47000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10413, - "EmployeeID": 3, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", - "ShipVia": 2, - "Freight": 95.66, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10977, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 3, + "Freight": 208.5, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 24, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 14, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10414, - "EmployeeID": 2, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-17T00:00:00", - "ShipVia": 3, - "Freight": 21.48, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10980, + "EmployeeID": 4, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 1, + "Freight": 1.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, - "Discount": 0.06 - }, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10993, + "EmployeeID": 7, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 3, + "Freight": 8.81, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 15000, + "ShipCountry": "Sweden", + "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11001, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 2, + "Freight": 197.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 14000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] + }, + { + "OrderID": 11050, + "EmployeeID": 8, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", + "ShipVia": 2, + "Freight": 59.41, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.1 + } + ] } ] }, { - "CustomerID": "HUNGC", - "Company": "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": "BLONP", + "Company": "Blondesddsl père et fils", + "ContactName": "Frédérique Citeaux", + "ContactTitle": "Marketing Manager", + "Address": "24, place Kléber", + "City": "Strasbourg", + "PostalCode": 67000, + "Country": "France", + "Phone": "88.60.15.31", + "Fax": "88.60.15.32", "Orders": [ { - "OrderID": 10415, - "EmployeeID": 3, - "OrderDate": "1997-01-15T00:00:00", - "RequiredDate": "1997-02-12T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", + "OrderID": 10265, + "EmployeeID": 2, + "OrderDate": "1996-07-25T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", "ShipVia": 1, - "Freight": 0.2, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "Freight": 55.28, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 17, "UnitPrice": 31.2, - "Quantity": 2, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 70, + "UnitPrice": 12, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10416, - "EmployeeID": 8, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 3, - "Freight": 22.72, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10297, + "EmployeeID": 5, + "OrderDate": "1996-09-04T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", + "ShipVia": 2, + "Freight": 5.74, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, + "ProductID": 72, + "UnitPrice": 27.8, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10417, + "OrderID": 10360, "EmployeeID": 4, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-28T00:00:00", + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", "ShipVia": 3, - "Freight": 70.29, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 131.7, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, + "ProductID": 49, + "UnitPrice": 16, "Quantity": 35, "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 28, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10418, - "EmployeeID": 4, - "OrderDate": "1997-01-17T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", - "ShipVia": 1, - "Freight": 17.55, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10436, + "EmployeeID": 3, + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-11T00:00:00", + "ShipVia": 2, + "Freight": 156.66, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 60, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 55, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 24, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10449, + "EmployeeID": 3, + "OrderDate": "1997-02-18T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-27T00:00:00", + "ShipVia": 2, + "Freight": 53.3, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 16, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10419, - "EmployeeID": 4, - "OrderDate": "1997-01-20T00:00:00", - "RequiredDate": "1997-02-17T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", - "ShipVia": 2, - "Freight": 137.35, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10559, + "EmployeeID": 6, + "OrderDate": "1997-06-05T00:00:00", + "RequiredDate": "1997-07-03T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 1, + "Freight": 8.05, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 60, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 18, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10420, - "EmployeeID": 3, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10566, + "EmployeeID": 9, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", "ShipVia": 1, - "Freight": 44.12, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 88.4, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 77.6, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 18, + "Discount": 0.16 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10421, - "EmployeeID": 8, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-03-04T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10584, + "EmployeeID": 4, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 1, - "Freight": 99.23, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 59.14, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 4, - "Discount": 0.16 - }, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10628, + "EmployeeID": 4, + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 30.36, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 10, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10422, - "EmployeeID": 2, - "OrderDate": "1997-01-22T00:00:00", - "RequiredDate": "1997-02-19T00:00:00", - "ShippedDate": "1997-01-31T00:00:00", - "ShipVia": 1, - "Freight": 3.02, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10679, + "EmployeeID": 8, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 27.94, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 2, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10423, + "OrderID": 10826, "EmployeeID": 6, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", - "ShipVia": 3, - "Freight": 24.5, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 1, + "Freight": 7.09, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 31, - "UnitPrice": 10, - "Quantity": 14, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 20, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 } ] @@ -8107,599 +6509,459 @@ ] }, { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 11000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", + "CustomerID": "WARTH", + "Company": "Wartian Herkku", + "ContactName": "Pirkko Koskitalo", + "ContactTitle": "Accounting Manager", + "Address": "Torikatu 38", + "City": "Oulu", + "PostalCode": 90110, + "Country": "Finland", + "Phone": "981-443655", + "Fax": "981-443655", "Orders": [ { - "OrderID": 10424, - "EmployeeID": 7, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-20T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 2, - "Freight": 370.61, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "OrderID": 10266, + "EmployeeID": 3, + "OrderDate": "1996-07-26T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 25.73, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0.2 - }, + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 12, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10270, + "EmployeeID": 1, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 1, + "Freight": 136.54, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 49, - "Discount": 0.2 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10425, - "EmployeeID": 6, - "OrderDate": "1997-01-24T00:00:00", - "RequiredDate": "1997-02-21T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 7.93, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10320, + "EmployeeID": 5, + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-18T00:00:00", + "ShipVia": 3, + "Freight": 34.57, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 10, - "Discount": 0.25 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10426, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-02-06T00:00:00", - "ShipVia": 1, - "Freight": 18.69, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 10333, + "EmployeeID": 5, + "OrderDate": "1996-10-18T00:00:00", + "RequiredDate": "1996-11-15T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", + "ShipVia": 3, + "Freight": 0.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 5, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 7, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 40, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10427, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 10412, + "EmployeeID": 8, + "OrderDate": "1997-01-13T00:00:00", + "RequiredDate": "1997-02-10T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", "ShipVia": 2, - "Freight": 31.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 3.77, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { "ProductID": 14, "UnitPrice": 18.6, - "Quantity": 35, - "Discount": 0 + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10428, - "EmployeeID": 7, - "OrderDate": "1997-01-28T00:00:00", - "RequiredDate": "1997-02-25T00:00:00", - "ShippedDate": "1997-02-04T00:00:00", - "ShipVia": 1, - "Freight": 11.09, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10416, + "EmployeeID": 8, + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 3, + "Freight": 22.72, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10429, - "EmployeeID": 3, - "OrderDate": "1997-01-29T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", - "ShipVia": 2, - "Freight": 56.63, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ + }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 40, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10430, - "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-03T00:00:00", + "OrderID": 10437, + "EmployeeID": 8, + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-12T00:00:00", "ShipVia": 1, - "Freight": 458.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 19.97, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10455, + "EmployeeID": 8, + "OrderDate": "1997-02-24T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 2, + "Freight": 180.45, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 53, + "UnitPrice": 26.2, "Quantity": 50, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.2 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 46000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10431, + "OrderID": 10526, "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-15T00:00:00", "ShipVia": 2, - "Freight": 44.17, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 16000, - "ShipCountry": "Canada", + "Freight": 58.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 7.6, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10432, - "EmployeeID": 3, - "OrderDate": "1997-01-31T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderID": 10553, + "EmployeeID": 2, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-03T00:00:00", "ShipVia": 2, - "Freight": 4.34, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 149.49, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 10, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10433, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", - "ShipVia": 3, - "Freight": 73.83, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10583, + "EmployeeID": 2, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 2, + "Freight": 7.28, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 28, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 40000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10434, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-02-13T00:00:00", - "ShipVia": 2, - "Freight": 17.92, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 10000, - "ShipCountry": "Sweden", - "OrderDetails": [ + }, { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 18, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ + }, { - "OrderID": 10435, - "EmployeeID": 8, - "OrderDate": "1997-02-04T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", - "ShipVia": 2, - "Freight": 9.21, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 38000, - "ShipCountry": "UK", + "OrderID": 10636, + "EmployeeID": 4, + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 1.15, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 12, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 10, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10436, - "EmployeeID": 3, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-11T00:00:00", - "ShipVia": 2, - "Freight": 156.66, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10750, + "EmployeeID": 9, + "OrderDate": "1997-11-21T00:00:00", + "RequiredDate": "1997-12-19T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 79.3, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 14, + "UnitPrice": 23.25, "Quantity": 5, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 30.4, + "ProductID": 45, + "UnitPrice": 9.5, "Quantity": 40, - "Discount": 0.1 + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10781, + "EmployeeID": 2, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 3, + "Freight": 73.16, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10437, - "EmployeeID": 8, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-12T00:00:00", - "ShipVia": 1, - "Freight": 19.97, + "OrderID": 11025, + "EmployeeID": 6, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 3, + "Freight": 29.17, "ShipName": "Wartian Herkku", "ShipAddress": "Torikatu 38", "ShipCity": "Oulu", @@ -8707,709 +6969,557 @@ "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", + "CustomerID": "FRANK", + "Company": "Frankenversand", + "ContactName": "Peter Franken", "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, + "Address": "Berliner Platz 43", + "City": "München", + "PostalCode": 80805, "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", + "Phone": "089-0877310", + "Fax": "089-0877451", "Orders": [ { - "OrderID": 10438, - "EmployeeID": 3, - "OrderDate": "1997-02-06T00:00:00", - "RequiredDate": "1997-03-06T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 8.24, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, + "OrderID": 10267, + "EmployeeID": 4, + "OrderDate": "1996-07-29T00:00:00", + "RequiredDate": "1996-08-26T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", + "ShipVia": 1, + "Freight": 208.58, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 15.6, + "ProductID": 76, + "UnitPrice": 14.4, "Quantity": 15, - "Discount": 0.2 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 38000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10439, - "EmployeeID": 6, - "OrderDate": "1997-02-07T00:00:00", - "RequiredDate": "1997-03-07T00:00:00", - "ShippedDate": "1997-02-10T00:00:00", + "OrderID": 10337, + "EmployeeID": 4, + "OrderDate": "1996-10-24T00:00:00", + "RequiredDate": "1996-11-21T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", "ShipVia": 3, - "Freight": 4.07, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "Freight": 108.26, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 15, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 16, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 6, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 30, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10440, + "OrderID": 10342, "EmployeeID": 4, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-10T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", + "OrderDate": "1996-10-30T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", "ShipVia": 2, - "Freight": 86.53, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 54.83, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 15.2, - "Quantity": 45, - "Discount": 0.16 + "Quantity": 24, + "Discount": 0.2 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 49, - "Discount": 0.16 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 56, + "Discount": 0.2 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 90, - "Discount": 0.16 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10441, - "EmployeeID": 3, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-24T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 2, - "Freight": 73.02, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10396, + "EmployeeID": 1, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1997-01-06T00:00:00", + "ShipVia": 3, + "Freight": 135.35, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 50, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10442, - "EmployeeID": 3, - "OrderDate": "1997-02-11T00:00:00", - "RequiredDate": "1997-03-11T00:00:00", - "ShippedDate": "1997-02-18T00:00:00", - "ShipVia": 2, - "Freight": 47.94, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10488, + "EmployeeID": 8, + "OrderDate": "1997-03-27T00:00:00", + "RequiredDate": "1997-04-24T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, + "ProductID": 59, + "UnitPrice": 44, "Quantity": 30, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 80, - "Discount": 0 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 60, - "Discount": 0 + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10443, + "OrderID": 10560, "EmployeeID": 8, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", "ShipVia": 1, - "Freight": 13.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 36.65, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 19000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10444, - "EmployeeID": 3, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-21T00:00:00", - "ShipVia": 3, - "Freight": 3.5, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 21000, - "ShipCountry": "Sweden", + "OrderID": 10623, + "EmployeeID": 8, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", + "ShipVia": 2, + "Freight": 97.18, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 10, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, + "ProductID": 19, + "UnitPrice": 9.2, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 8, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 35, + "UnitPrice": 18, "Quantity": 30, - "Discount": 0 + "Discount": 0.1 } ] }, { - "OrderID": 10445, - "EmployeeID": 3, - "OrderDate": "1997-02-13T00:00:00", - "RequiredDate": "1997-03-13T00:00:00", - "ShippedDate": "1997-02-20T00:00:00", + "OrderID": 10653, + "EmployeeID": 1, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", "ShipVia": 1, - "Freight": 9.3, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 11000, - "ShipCountry": "Sweden", + "Freight": 93.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10446, - "EmployeeID": 6, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-02-19T00:00:00", + "OrderID": 10670, + "EmployeeID": 4, + "OrderDate": "1997-09-16T00:00:00", + "RequiredDate": "1997-10-14T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", "ShipVia": 1, - "Freight": 14.68, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, + "Freight": 203.48, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 12, - "Discount": 0.1 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 32, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 15, - "Discount": 0.1 - } + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 25, + "Discount": 0 + } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10447, - "EmployeeID": 4, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-03-07T00:00:00", + "OrderID": 10675, + "EmployeeID": 5, + "OrderDate": "1997-09-19T00:00:00", + "RequiredDate": "1997-10-17T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", "ShipVia": 2, - "Freight": 68.66, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 31.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 40, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 35, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10448, - "EmployeeID": 4, - "OrderDate": "1997-02-17T00:00:00", - "RequiredDate": "1997-03-17T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", + "OrderID": 10717, + "EmployeeID": 1, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 2, - "Freight": 38.82, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 59.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 6, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 32, + "Discount": 0.06 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10449, - "EmployeeID": 3, - "OrderDate": "1997-02-18T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-27T00:00:00", + "OrderID": 10791, + "EmployeeID": 6, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-01T00:00:00", "ShipVia": 2, - "Freight": 53.3, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 16.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 14, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 52, - "UnitPrice": 5.6, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10450, - "EmployeeID": 8, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-19T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", + "OrderID": 10859, + "EmployeeID": 1, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", "ShipVia": 2, - "Freight": 7.23, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 76.1, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 40, + "Discount": 0.25 }, { "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, - "Discount": 0.2 + "UnitPrice": 7.45, + "Quantity": 35, + "Discount": 0.25 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10451, - "EmployeeID": 4, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", - "ShipVia": 3, - "Freight": 189.09, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, + "OrderID": 10929, + "EmployeeID": 6, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 1, + "Freight": 33.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 49, + "Discount": 0 }, { "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 55, - "Discount": 0.1 + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10452, - "EmployeeID": 8, - "OrderDate": "1997-02-20T00:00:00", - "RequiredDate": "1997-03-20T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", - "ShipVia": 1, - "Freight": 140.26, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11012, + "EmployeeID": 1, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 3, + "Freight": 242.95, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 15, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 100, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 36, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, "Discount": 0.06 } ] @@ -9417,8638 +7527,2449 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 44000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "CustomerID": "GROSR", + "Company": "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", "Orders": [ { - "OrderID": 10453, - "EmployeeID": 1, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", - "ShipVia": 2, - "Freight": 25.36, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 46000, - "ShipCountry": "UK", + "OrderID": 10268, + "EmployeeID": 8, + "OrderDate": "1996-07-30T00:00:00", + "RequiredDate": "1996-08-27T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 3, + "Freight": 66.29, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10454, - "EmployeeID": 4, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-25T00:00:00", + "OrderID": 10785, + "EmployeeID": 1, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", "ShipVia": 3, - "Freight": 2.74, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 1.51, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 10, - "Discount": 0.2 + "Discount": 0 } ] } ] }, { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", + "CustomerID": "WHITC", + "Company": "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", "Orders": [ { - "OrderID": 10455, - "EmployeeID": 8, - "OrderDate": "1997-02-24T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", - "ShipVia": 2, - "Freight": 180.45, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10269, + "EmployeeID": 5, + "OrderDate": "1996-07-31T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", + "ShipVia": 1, + "Freight": 4.56, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 50, - "Discount": 0 - }, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10344, + "EmployeeID": 4, + "OrderDate": "1996-11-01T00:00:00", + "RequiredDate": "1996-11-29T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", + "ShipVia": 2, + "Freight": 23.29, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 25, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10456, - "EmployeeID": 8, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 8.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10469, + "EmployeeID": 1, + "OrderDate": "1997-03-10T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 1, + "Freight": 60.18, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 40, "Discount": 0.16 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 21, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 2, "Discount": 0.16 } ] }, { - "OrderID": 10457, - "EmployeeID": 2, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-03-25T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", - "ShipVia": 1, - "Freight": 11.57, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10483, + "EmployeeID": 7, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-25T00:00:00", + "ShipVia": 2, + "Freight": 15.28, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 36, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 35, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10458, - "EmployeeID": 7, - "OrderDate": "1997-02-26T00:00:00", - "RequiredDate": "1997-03-26T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", + "OrderID": 10504, + "EmployeeID": 4, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-18T00:00:00", "ShipVia": 3, - "Freight": 147.06, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 59.13, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 15, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10459, - "EmployeeID": 4, - "OrderDate": "1997-02-27T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 25.09, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 31000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10460, + "OrderID": 10596, "EmployeeID": 8, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", "ShipVia": 1, - "Freight": 16.27, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 44000, - "ShipCountry": "Sweden", + "Freight": 16.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0.2 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 24, + "Discount": 0.2 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 4, - "Discount": 0.25 + "UnitPrice": 7.75, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10461, - "EmployeeID": 1, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-05T00:00:00", + "OrderID": 10693, + "EmployeeID": 3, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-10-10T00:00:00", "ShipVia": 3, - "Freight": 148.61, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 139.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 28, - "Discount": 0.25 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 60, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 34000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ - { - "OrderID": 10462, - "EmployeeID": 2, - "OrderDate": "1997-03-03T00:00:00", - "RequiredDate": "1997-03-31T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 1, - "Freight": 6.17, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", - "OrderDetails": [ + "Discount": 0.16 + }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 1, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 21, - "Discount": 0 + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10463, - "EmployeeID": 5, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-06T00:00:00", + "OrderID": 10696, + "EmployeeID": 8, + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", "ShipVia": 3, - "Freight": 14.78, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 102.55, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 21, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 50, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10464, - "EmployeeID": 4, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 2, - "Freight": 89, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 16, - "Discount": 0.2 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10465, - "EmployeeID": 1, - "OrderDate": "1997-03-05T00:00:00", - "RequiredDate": "1997-04-02T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 3, - "Freight": 145.04, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 45, - "UnitPrice": 7.6, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ - { - "OrderID": 10466, - "EmployeeID": 4, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-13T00:00:00", - "ShipVia": 1, - "Freight": 11.93, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10467, - "EmployeeID": 8, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10468, + "OrderID": 10723, "EmployeeID": 3, - "OrderDate": "1997-03-07T00:00:00", - "RequiredDate": "1997-04-04T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", - "ShipVia": 3, - "Freight": 44.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ - { - "OrderID": 10469, - "EmployeeID": 1, - "OrderDate": "1997-03-10T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-11-27T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", "ShipVia": 1, - "Freight": 60.18, + "Freight": 21.72, "ShipName": "White Clover Markets", "ShipAddress": "1029 - 12th Ave. S.", "ShipCity": "Seattle", "ShipRegion": "WA", "ShipPostalCode": 98124, "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 2, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10470, - "EmployeeID": 4, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 2, - "Freight": 64.56, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 8, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 26000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10471, - "EmployeeID": 2, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 3, - "Freight": 45.59, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10472, - "EmployeeID": 8, - "OrderDate": "1997-03-12T00:00:00", - "RequiredDate": "1997-04-09T00:00:00", - "ShippedDate": "1997-03-19T00:00:00", - "ShipVia": 1, - "Freight": 4.2, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 33000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 80, - "Discount": 0.06 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 41000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10473, - "EmployeeID": 1, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 3, - "Freight": 16.37, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60471, - "ShipPostalCode": 37000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10474, - "EmployeeID": 5, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-04-10T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 2, - "Freight": 83.49, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10475, - "EmployeeID": 9, - "OrderDate": "1997-03-14T00:00:00", - "RequiredDate": "1997-04-11T00:00:00", - "ShippedDate": "1997-04-04T00:00:00", - "ShipVia": 1, - "Freight": 68.52, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 42, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10476, - "EmployeeID": 8, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", - "ShipVia": 3, - "Freight": 4.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ - { - "OrderID": 10477, - "EmployeeID": 5, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", - "ShipVia": 2, - "Freight": 13.02, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 21, - "Discount": 0.25 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10478, - "EmployeeID": 2, - "OrderDate": "1997-03-18T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-26T00:00:00", - "ShipVia": 3, - "Freight": 4.81, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10479, - "EmployeeID": 3, - "OrderDate": "1997-03-19T00:00:00", - "RequiredDate": "1997-04-16T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 3, - "Freight": 708.95, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ - { - "OrderID": 10480, - "EmployeeID": 6, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ - { - "OrderID": 10481, - "EmployeeID": 8, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", - "ShipVia": 2, - "Freight": 64.33, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "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", - "Orders": [ - { - "OrderID": 10482, - "EmployeeID": 1, - "OrderDate": "1997-03-21T00:00:00", - "RequiredDate": "1997-04-18T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 7.48, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ - { - "OrderID": 10483, - "EmployeeID": 7, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-25T00:00:00", - "ShipVia": 2, - "Freight": 15.28, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 35, - "Discount": 0.06 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 30, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 46000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10484, - "EmployeeID": 3, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-01T00:00:00", - "ShipVia": 3, - "Freight": 6.88, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 31000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10485, - "EmployeeID": 4, - "OrderDate": "1997-03-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-31T00:00:00", - "ShipVia": 2, - "Freight": 64.45, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 60, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10486, - "EmployeeID": 1, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", - "ShipVia": 2, - "Freight": 30.53, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 16, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10487, - "EmployeeID": 2, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-03-28T00:00:00", - "ShipVia": 2, - "Freight": 71.07, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10488, - "EmployeeID": 8, - "OrderDate": "1997-03-27T00:00:00", - "RequiredDate": "1997-04-24T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10489, - "EmployeeID": 6, - "OrderDate": "1997-03-28T00:00:00", - "RequiredDate": "1997-04-25T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 5.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10490, - "EmployeeID": 7, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-03T00:00:00", - "ShipVia": 2, - "Freight": 210.19, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 36, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ - { - "OrderID": 10491, - "EmployeeID": 8, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-08T00:00:00", - "ShipVia": 3, - "Freight": 16.96, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 33000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ - { - "OrderID": 10492, - "EmployeeID": 3, - "OrderDate": "1997-04-01T00:00:00", - "RequiredDate": "1997-04-29T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 1, - "Freight": 62.89, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 16000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 60, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10493, - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 10.64, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 10, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ - { - "OrderID": 10494, - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 65.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 24000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ - { - "OrderID": 10495, - "EmployeeID": 3, - "OrderDate": "1997-04-03T00:00:00", - "RequiredDate": "1997-05-01T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 3, - "Freight": 4.65, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 33000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10496, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 2, - "Freight": 46.77, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10497, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 1, - "Freight": 36.21, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10498, - "EmployeeID": 8, - "OrderDate": "1997-04-07T00:00:00", - "RequiredDate": "1997-05-05T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 2, - "Freight": 29.75, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10499, - "EmployeeID": 4, - "OrderDate": "1997-04-08T00:00:00", - "RequiredDate": "1997-05-06T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 102.02, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10500, - "EmployeeID": 6, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-17T00:00:00", - "ShipVia": 1, - "Freight": 42.68, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10501, - "EmployeeID": 9, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 3, - "Freight": 8.85, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10502, - "EmployeeID": 2, - "OrderDate": "1997-04-10T00:00:00", - "RequiredDate": "1997-05-08T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 69.32, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10503, - "EmployeeID": 6, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 16.74, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ - { - "OrderID": 10504, - "EmployeeID": 4, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-18T00:00:00", - "ShipVia": 3, - "Freight": 59.13, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 47000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10505, - "EmployeeID": 3, - "OrderDate": "1997-04-14T00:00:00", - "RequiredDate": "1997-05-12T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 7.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 11000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10506, - "EmployeeID": 9, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 21.19, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 14, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10507, - "EmployeeID": 7, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-04-22T00:00:00", - "ShipVia": 1, - "Freight": 47.45, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 15, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10508, - "EmployeeID": 1, - "OrderDate": "1997-04-16T00:00:00", - "RequiredDate": "1997-05-14T00:00:00", - "ShippedDate": "1997-05-13T00:00:00", - "ShipVia": 2, - "Freight": 4.99, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10509, - "EmployeeID": 4, - "OrderDate": "1997-04-17T00:00:00", - "RequiredDate": "1997-05-15T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 0.15, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10510, - "EmployeeID": 6, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", - "ShipVia": 3, - "Freight": 367.63, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 36, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10511, - "EmployeeID": 4, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 350.64, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.16 - }, - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 50, - "Discount": 0.16 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10512, - "EmployeeID": 7, - "OrderDate": "1997-04-21T00:00:00", - "RequiredDate": "1997-05-19T00:00:00", - "ShippedDate": "1997-04-24T00:00:00", - "ShipVia": 2, - "Freight": 3.53, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.16 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 9, - "Discount": 0.16 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.16 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 12, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ - { - "OrderID": 10513, - "EmployeeID": 7, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-06-03T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", - "ShipVia": 1, - "Freight": 105.65, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.2 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, - "Discount": 0.2 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 15, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10514, - "EmployeeID": 3, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", - "ShipVia": 2, - "Freight": 789.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 39, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 39, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10515, - "EmployeeID": 2, - "OrderDate": "1997-04-23T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 1, - "Freight": 204.47, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 16, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 120, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0.16 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 84, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10516, - "EmployeeID": 2, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 62.78, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 80, - "Discount": 0.1 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 17000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ - { - "OrderID": 10517, - "EmployeeID": 3, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 3, - "Freight": 32.07, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 16000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ - { - "OrderID": 10518, - "EmployeeID": 4, - "OrderDate": "1997-04-25T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-05-05T00:00:00", - "ShipVia": 2, - "Freight": 218.15, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ - { - "OrderID": 10519, - "EmployeeID": 6, - "OrderDate": "1997-04-28T00:00:00", - "RequiredDate": "1997-05-26T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 91.76, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ - { - "OrderID": 10520, - "EmployeeID": 7, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 1, - "Freight": 13.37, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10521, - "EmployeeID": 8, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 17.22, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10522, - "EmployeeID": 4, - "OrderDate": "1997-04-30T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-06T00:00:00", - "ShipVia": 1, - "Freight": 45.33, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.2 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 12000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10523, - "EmployeeID": 7, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 2, - "Freight": 77.63, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 42000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 37000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10524, - "EmployeeID": 1, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", - "ShipVia": 2, - "Freight": 244.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10525, - "EmployeeID": 1, - "OrderDate": "1997-05-02T00:00:00", - "RequiredDate": "1997-05-30T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 11.06, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10526, - "EmployeeID": 4, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-15T00:00:00", - "ShipVia": 2, - "Freight": 58.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10527, - "EmployeeID": 7, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", - "ShipVia": 1, - "Freight": 41.9, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ - { - "OrderID": 10528, - "EmployeeID": 6, - "OrderDate": "1997-05-06T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", - "ShipVia": 2, - "Freight": 3.35, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.2 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 45000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ - { - "OrderID": 10529, - "EmployeeID": 5, - "OrderDate": "1997-05-07T00:00:00", - "RequiredDate": "1997-06-04T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", - "ShipVia": 2, - "Freight": 66.69, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10530, - "EmployeeID": 3, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", - "ShipVia": 2, - "Freight": 339.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ - { - "OrderID": 10531, - "EmployeeID": 7, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", - "ShipVia": 1, - "Freight": 8.12, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 33000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ - { - "OrderID": 10532, - "EmployeeID": 7, - "OrderDate": "1997-05-09T00:00:00", - "RequiredDate": "1997-06-06T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", - "ShipVia": 3, - "Freight": 74.46, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 45000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 10000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10533, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-22T00:00:00", - "ShipVia": 1, - "Freight": 188.04, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.06 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 24, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10534, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-14T00:00:00", - "ShipVia": 2, - "Freight": 27.94, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10535, - "EmployeeID": 4, - "OrderDate": "1997-05-13T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-21T00:00:00", - "ShipVia": 1, - "Freight": 15.64, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10536, - "EmployeeID": 3, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-06-11T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 2, - "Freight": 58.88, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ - { - "OrderID": 10537, - "EmployeeID": 1, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", - "ShipVia": 1, - "Freight": 78.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10538, - "EmployeeID": 9, - "OrderDate": "1997-05-15T00:00:00", - "RequiredDate": "1997-06-12T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", - "ShipVia": 3, - "Freight": 4.87, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 45000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 1, - "Discount": 0 - } - ] - }, - { - "OrderID": 10539, - "EmployeeID": 6, - "OrderDate": "1997-05-16T00:00:00", - "RequiredDate": "1997-06-13T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 3, - "Freight": 12.36, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 14000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10540, - "EmployeeID": 3, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 3, - "Freight": 1007.64, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10541, - "EmployeeID": 2, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-05-29T00:00:00", - "ShipVia": 1, - "Freight": 68.65, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.1 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 4, - "Discount": 0.1 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 36, - "Discount": 0.1 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10542, - "EmployeeID": 1, - "OrderDate": "1997-05-20T00:00:00", - "RequiredDate": "1997-06-17T00:00:00", - "ShippedDate": "1997-05-26T00:00:00", - "ShipVia": 3, - "Freight": 10.95, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 24, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10543, - "EmployeeID": 8, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 48.17, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ - { - "OrderID": 10544, - "EmployeeID": 4, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 24.91, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 7, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "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", - "Orders": [ - { - "OrderID": 10545, - "EmployeeID": 8, - "OrderDate": "1997-05-22T00:00:00", - "RequiredDate": "1997-06-19T00:00:00", - "ShippedDate": "1997-06-26T00:00:00", - "ShipVia": 2, - "Freight": 11.92, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10546, - "EmployeeID": 1, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-05-27T00:00:00", - "ShipVia": 3, - "Freight": 194.72, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10547, - "EmployeeID": 3, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", - "ShipVia": 2, - "Freight": 178.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 48000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 24, - "Discount": 0.16 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 60, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ - { - "OrderID": 10548, - "EmployeeID": 3, - "OrderDate": "1997-05-26T00:00:00", - "RequiredDate": "1997-06-23T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", - "ShipVia": 2, - "Freight": 1.43, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.25 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10549, - "EmployeeID": 5, - "OrderDate": "1997-05-27T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 171.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 55, - "Discount": 0.16 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 100, - "Discount": 0.16 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 48, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ - { - "OrderID": 10550, - "EmployeeID": 7, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-06-25T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 3, - "Freight": 4.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0.1 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ - { - "OrderID": 10551, - "EmployeeID": 4, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 3, - "Freight": 72.95, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10552, - "EmployeeID": 2, - "OrderDate": "1997-05-29T00:00:00", - "RequiredDate": "1997-06-26T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 1, - "Freight": 83.22, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10553, - "EmployeeID": 2, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-03T00:00:00", - "ShipVia": 2, - "Freight": 149.49, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10554, - "EmployeeID": 4, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 3, - "Freight": 120.97, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10555, - "EmployeeID": 6, - "OrderDate": "1997-06-02T00:00:00", - "RequiredDate": "1997-06-30T00:00:00", - "ShippedDate": "1997-06-04T00:00:00", - "ShipVia": 3, - "Freight": 252.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 18, - "Discount": 0.2 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ - { - "OrderID": 10556, - "EmployeeID": 2, - "OrderDate": "1997-06-03T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 9.8, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10557, - "EmployeeID": 9, - "OrderDate": "1997-06-03T00:00:00", - "RequiredDate": "1997-06-17T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 2, - "Freight": 96.72, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 10000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10558, - "EmployeeID": 1, - "OrderDate": "1997-06-04T00:00:00", - "RequiredDate": "1997-07-02T00:00:00", - "ShippedDate": "1997-06-10T00:00:00", - "ShipVia": 2, - "Freight": 72.97, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 27000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10559, - "EmployeeID": 6, - "OrderDate": "1997-06-05T00:00:00", - "RequiredDate": "1997-07-03T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 8.05, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 18, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10560, - "EmployeeID": 8, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", - "ShipVia": 1, - "Freight": 36.65, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 20000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10561, - "EmployeeID": 2, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", - "ShipVia": 2, - "Freight": 242.21, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 18000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10562, - "EmployeeID": 1, - "OrderDate": "1997-06-09T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-12T00:00:00", - "ShipVia": 1, - "Freight": 22.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ - { - "OrderID": 10563, - "EmployeeID": 2, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-06-24T00:00:00", - "ShipVia": 2, - "Freight": 60.43, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 70, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10564, - "EmployeeID": 4, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-08T00:00:00", - "ShippedDate": "1997-06-16T00:00:00", - "ShipVia": 3, - "Freight": 13.75, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.06 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 25, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 15000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10565, - "EmployeeID": 8, - "OrderDate": "1997-06-11T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", - "ShipVia": 2, - "Freight": 7.15, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 24000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 18, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10566, - "EmployeeID": 9, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", - "ShipVia": 1, - "Freight": 88.4, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 18, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10567, - "EmployeeID": 1, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-17T00:00:00", - "ShipVia": 1, - "Freight": 33.97, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 60, - "Discount": 0.2 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ - { - "OrderID": 10568, - "EmployeeID": 3, - "OrderDate": "1997-06-13T00:00:00", - "RequiredDate": "1997-07-11T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 3, - "Freight": 6.54, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10569, - "EmployeeID": 5, - "OrderDate": "1997-06-16T00:00:00", - "RequiredDate": "1997-07-14T00:00:00", - "ShippedDate": "1997-07-11T00:00:00", - "ShipVia": 1, - "Freight": 58.98, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 34000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10570, - "EmployeeID": 3, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-19T00:00:00", - "ShipVia": 3, - "Freight": 188.99, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 40000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10571, - "EmployeeID": 8, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 3, - "Freight": 26.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 11, - "Discount": 0.16 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 43000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10572, - "EmployeeID": 3, - "OrderDate": "1997-06-18T00:00:00", - "RequiredDate": "1997-07-16T00:00:00", - "ShippedDate": "1997-06-25T00:00:00", - "ShipVia": 2, - "Freight": 116.43, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 25000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10573, - "EmployeeID": 7, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-20T00:00:00", - "ShipVia": 3, - "Freight": 84.84, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "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", - "Orders": [ - { - "OrderID": 10574, - "EmployeeID": 4, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 2, - "Freight": 37.6, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ - { - "OrderID": 10575, - "EmployeeID": 5, - "OrderDate": "1997-06-20T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 1, - "Freight": 127.34, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ - { - "OrderID": 10576, - "EmployeeID": 3, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 3, - "Freight": 18.56, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "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", - "Orders": [ - { - "OrderID": 10577, - "EmployeeID": 9, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 2, - "Freight": 25.41, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 44000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10578, - "EmployeeID": 4, - "OrderDate": "1997-06-24T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", - "ShipVia": 3, - "Freight": 29.6, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 44000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ - { - "OrderID": 10579, - "EmployeeID": 1, - "OrderDate": "1997-06-25T00:00:00", - "RequiredDate": "1997-07-23T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 2, - "Freight": 13.73, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10580, - "EmployeeID": 4, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-01T00:00:00", - "ShipVia": 3, - "Freight": 75.89, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 30, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10581, - "EmployeeID": 3, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-02T00:00:00", - "ShipVia": 1, - "Freight": 3.01, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10582, - "EmployeeID": 3, - "OrderDate": "1997-06-27T00:00:00", - "RequiredDate": "1997-07-25T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 2, - "Freight": 27.71, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 14, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10583, - "EmployeeID": 2, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 2, - "Freight": 7.28, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.16 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10584, - "EmployeeID": 4, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 1, - "Freight": 59.14, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ - { - "OrderID": 10585, - "EmployeeID": 7, - "OrderDate": "1997-07-01T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 1, - "Freight": 13.41, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10586, - "EmployeeID": 9, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 1, - "Freight": 0.48, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ - { - "OrderID": 10587, - "EmployeeID": 1, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 1, - "Freight": 62.52, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10588, - "EmployeeID": 2, - "OrderDate": "1997-07-03T00:00:00", - "RequiredDate": "1997-07-31T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 3, - "Freight": 194.67, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 40, - "Discount": 0.2 - }, + "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 100, - "Discount": 0.2 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10589, - "EmployeeID": 8, - "OrderDate": "1997-07-04T00:00:00", - "RequiredDate": "1997-08-01T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 10740, + "EmployeeID": 4, + "OrderDate": "1997-11-13T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", "ShipVia": 2, - "Freight": 4.42, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, + "Freight": 81.88, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 5, + "Discount": 0.2 + }, { "ProductID": 35, "UnitPrice": 18, - "Quantity": 4, - "Discount": 0 + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 22000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10590, + "OrderID": 10861, "EmployeeID": 4, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 3, - "Freight": 44.77, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 47000, - "ShipCountry": "Canada", + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-02-27T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 14.93, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 42, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 60, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10591, - "EmployeeID": 1, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-07-21T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", - "ShipVia": 1, - "Freight": 55.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 20, + "Discount": 0 + }, { - "ProductID": 3, + "ProductID": 21, "UnitPrice": 10, - "Quantity": 14, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 50, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10592, + "OrderID": 10904, "EmployeeID": 3, - "OrderDate": "1997-07-08T00:00:00", - "RequiredDate": "1997-08-05T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", - "ShipVia": 1, - "Freight": 32.1, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 162.95, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, - "Discount": 0.06 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 35, + "Discount": 0 + } + ] + }, + { + "OrderID": 11032, + "EmployeeID": 2, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 606.19, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 30, + "Discount": 0 } ] }, { - "OrderID": 10593, + "OrderID": 11066, "EmployeeID": 7, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-08-13T00:00:00", + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", "ShipVia": 2, - "Freight": 174.2, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 44.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, - "Discount": 0.2 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 42, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 35, + "Discount": 0 } ] } ] }, { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, + "CustomerID": "SPLIR", + "Company": "Split Rail Beer & Ale", + "ContactName": "Art Braunschweiger", + "ContactTitle": "Sales Manager", + "Address": "P.O. Box 555", + "City": "Lander", + "Region": "WY", + "PostalCode": 82520, "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", + "Phone": "(307) 555-4680", + "Fax": "(307) 555-6525", "Orders": [ { - "OrderID": 10594, - "EmployeeID": 3, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", + "OrderID": 10271, + "EmployeeID": 6, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-30T00:00:00", "ShipVia": 2, - "Freight": 5.24, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "Freight": 4.54, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, + "ProductID": 33, + "UnitPrice": 2, "Quantity": 24, "Discount": 0 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10595, - "EmployeeID": 2, - "OrderDate": "1997-07-10T00:00:00", - "RequiredDate": "1997-08-07T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 1, - "Freight": 96.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10329, + "EmployeeID": 4, + "OrderDate": "1996-10-15T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 2, + "Freight": 191.67, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 120, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 65, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 12, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10596, - "EmployeeID": 8, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", + "OrderID": 10349, + "EmployeeID": 7, + "OrderDate": "1996-11-08T00:00:00", + "RequiredDate": "1996-12-06T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", "ShipVia": 1, - "Freight": 16.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, + "Freight": 8.63, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, - "Discount": 0.2 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 24, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10597, - "EmployeeID": 7, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", - "ShipVia": 3, - "Freight": 35.12, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10369, + "EmployeeID": 8, + "OrderDate": "1996-12-02T00:00:00", + "RequiredDate": "1996-12-30T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 195.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 29, + "UnitPrice": 99, "Quantity": 20, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 18, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10598, + "OrderID": 10385, "EmployeeID": 1, - "OrderDate": "1997-07-14T00:00:00", - "RequiredDate": "1997-08-11T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", - "ShipVia": 3, - "Freight": 44.42, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, + "OrderDate": "1996-12-17T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1996-12-23T00:00:00", + "ShipVia": 2, + "Freight": 30.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 50, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 45000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10599, - "EmployeeID": 6, - "OrderDate": "1997-07-15T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", - "ShipVia": 3, - "Freight": 29.98, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 21000, - "ShipCountry": "UK", + "OrderID": 10432, + "EmployeeID": 3, + "OrderDate": "1997-01-31T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 4.34, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 26, + "UnitPrice": 24.9, "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10600, - "EmployeeID": 4, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-13T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", - "ShipVia": 1, - "Freight": 45.13, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "OrderID": 10756, + "EmployeeID": 8, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-02T00:00:00", + "ShipVia": 2, + "Freight": 73.21, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 4, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 21, + "Discount": 0.2 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.2 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10601, - "EmployeeID": 7, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", + "OrderID": 10821, + "EmployeeID": 1, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-15T00:00:00", "ShipVia": 1, - "Freight": 58.3, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 36.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 60, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10602, - "EmployeeID": 8, - "OrderDate": "1997-07-17T00:00:00", - "RequiredDate": "1997-08-14T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", - "ShipVia": 2, - "Freight": 2.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderID": 10974, + "EmployeeID": 3, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 12.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 10, + "Discount": 0 } ] } ] }, { - "CustomerID": "SAVEA", - "Company": "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", + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", "Orders": [ { - "OrderID": 10603, - "EmployeeID": 8, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", - "ShipVia": 2, - "Freight": 48.77, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10273, + "EmployeeID": 3, + "OrderDate": "1996-08-05T00:00:00", + "RequiredDate": "1996-09-02T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", + "ShipVia": 3, + "Freight": 76.07, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 48, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 24, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 33, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10604, + "OrderID": 10285, "EmployeeID": 1, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", - "ShipVia": 1, - "Freight": 7.46, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderDate": "1996-08-20T00:00:00", + "RequiredDate": "1996-09-17T00:00:00", + "ShippedDate": "1996-08-26T00:00:00", + "ShipVia": 2, + "Freight": 76.83, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 36, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 12000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10605, - "EmployeeID": 1, - "OrderDate": "1997-07-21T00:00:00", - "RequiredDate": "1997-08-18T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", + "OrderID": 10313, + "EmployeeID": 2, + "OrderDate": "1996-09-24T00:00:00", + "RequiredDate": "1996-10-22T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", "ShipVia": 2, - "Freight": 379.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 43000, - "ShipCountry": "Canada", + "Freight": 1.96, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10345, + "EmployeeID": 2, + "OrderDate": "1996-11-04T00:00:00", + "RequiredDate": "1996-12-02T00:00:00", + "ShippedDate": "1996-11-11T00:00:00", + "ShipVia": 2, + "Freight": 249.06, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 80, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10606, - "EmployeeID": 4, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-31T00:00:00", - "ShipVia": 3, - "Freight": 79.4, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "OrderID": 10361, + "EmployeeID": 1, + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 183.17, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 54, + "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 55, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10607, - "EmployeeID": 5, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", + "OrderID": 10418, + "EmployeeID": 4, + "OrderDate": "1997-01-17T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", "ShipVia": 1, - "Freight": 200.24, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 17.55, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 100, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 42, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 12, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10608, + "OrderID": 10451, "EmployeeID": 4, - "OrderDate": "1997-07-23T00:00:00", - "RequiredDate": "1997-08-20T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 27.79, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 189.09, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 120, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, "Quantity": 28, - "Discount": 0 + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 55, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10609, - "EmployeeID": 7, - "OrderDate": "1997-07-24T00:00:00", - "RequiredDate": "1997-08-21T00:00:00", - "ShippedDate": "1997-07-30T00:00:00", - "ShipVia": 2, - "Freight": 1.85, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10515, + "EmployeeID": 2, + "OrderDate": "1997-04-23T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 1, + "Freight": 204.47, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 16, + "Discount": 0.16 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 120, "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, + "Discount": 0.16 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 84, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10610, - "EmployeeID": 8, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", + "OrderID": 10527, + "EmployeeID": 7, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", "ShipVia": 1, - "Freight": 26.78, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 41.9, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, + "Discount": 0.1 + }, { "ProductID": 36, "UnitPrice": 19, - "Quantity": 21, - "Discount": 0.25 + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10611, - "EmployeeID": 6, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 80.65, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10540, + "EmployeeID": 3, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 3, + "Freight": 1007.64, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 6, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10612, - "EmployeeID": 1, - "OrderDate": "1997-07-28T00:00:00", - "RequiredDate": "1997-08-25T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 544.08, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10549, + "EmployeeID": 5, + "OrderDate": "1997-05-27T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 171.24, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 55, + "Discount": 0.16 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 100, + "Discount": 0.16 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 48, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10588, + "EmployeeID": 2, + "OrderDate": "1997-07-03T00:00:00", + "RequiredDate": "1997-07-31T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", + "ShipVia": 3, + "Freight": 194.67, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 100, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10658, + "EmployeeID": 4, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 1, + "Freight": 364.15, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 55, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 18, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 70, + "Discount": 0.06 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 40, - "Discount": 0 + "Quantity": 55, + "Discount": 0.06 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 70, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10613, - "EmployeeID": 4, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderID": 10691, + "EmployeeID": 2, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-10-22T00:00:00", "ShipVia": 2, - "Freight": 8.11, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 810.05, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 48, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10614, + "OrderID": 10694, "EmployeeID": 8, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-11-03T00:00:00", + "ShippedDate": "1997-10-09T00:00:00", "ShipVia": 3, - "Freight": 1.93, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, + "Freight": 398.36, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 14, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 90, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 8, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 5, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10615, - "EmployeeID": 2, - "OrderDate": "1997-07-30T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", + "OrderID": 10721, + "EmployeeID": 5, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-11-26T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", "ShipVia": 3, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 48.92, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 5, - "Discount": 0 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 50, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10616, - "EmployeeID": 1, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-05T00:00:00", - "ShipVia": 2, - "Freight": 116.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderID": 10745, + "EmployeeID": 9, + "OrderDate": "1997-11-18T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 1, + "Freight": 3.52, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 45, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 7, + "Discount": 0 } ] }, { - "OrderID": 10617, - "EmployeeID": 4, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-04T00:00:00", - "ShipVia": 2, - "Freight": 18.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderID": 10765, + "EmployeeID": 3, + "OrderDate": "1997-12-04T00:00:00", + "RequiredDate": "1998-01-01T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 3, + "Freight": 42.74, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 80, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 45000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10618, + "OrderID": 10788, "EmployeeID": 1, - "OrderDate": "1997-08-01T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 42.7, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10845, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 154.68, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 49000, - "ShipCountry": "Canada", + "Freight": 212.98, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, + "ProductID": 23, + "UnitPrice": 9, "Quantity": 70, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 42, + "Discount": 0.1 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 60, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 48, "Discount": 0 } ] }, { - "OrderID": 10619, - "EmployeeID": 3, - "OrderDate": "1997-08-04T00:00:00", - "RequiredDate": "1997-09-01T00:00:00", - "ShippedDate": "1997-08-07T00:00:00", - "ShipVia": 3, - "Freight": 91.05, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 20000, - "ShipCountry": "Canada", + "OrderID": 10865, + "EmployeeID": 2, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 348.14, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 42, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 48000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ + }, { - "OrderID": 10620, - "EmployeeID": 2, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", - "ShipVia": 3, - "Freight": 0.94, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 15000, - "ShipCountry": "Canada", + "OrderID": 10878, + "EmployeeID": 4, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 46.69, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10938, + "EmployeeID": 3, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 31.89, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0.25 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0.25 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 49, + "Discount": 0.25 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10621, - "EmployeeID": 4, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", + "OrderID": 10962, + "EmployeeID": 8, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", "ShipVia": 2, - "Freight": 23.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 90304, - "ShipPostalCode": 28000, - "ShipCountry": "UK", + "Freight": 275.79, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 10, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 77, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 53, + "UnitPrice": 32.8, "Quantity": 20, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 44, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10622, - "EmployeeID": 4, - "OrderDate": "1997-08-06T00:00:00", - "RequiredDate": "1997-09-03T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", - "ShipVia": 3, - "Freight": 50.97, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10991, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 1, + "Freight": 38.51, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.2 + }, + { + "ProductID": 70, + "UnitPrice": 15, "Quantity": 20, - "Discount": 0 + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 90, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10623, - "EmployeeID": 8, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", + "OrderID": 10996, + "EmployeeID": 4, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 2, - "Freight": 97.18, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, + "Freight": 1.12, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 21, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0 + } + ] + }, + { + "OrderID": 11021, + "EmployeeID": 3, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 1, + "Freight": 297.18, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 11, + "Discount": 0.25 }, { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 20, + "UnitPrice": 81, "Quantity": 15, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 63, + "Discount": 0 }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 44, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "MAGAA", + "Company": "Magazzini Alimentari Riuniti", + "ContactName": "Giovanni Rovelli", + "ContactTitle": "Marketing Manager", + "Address": "Via Ludovico il Moro 22", + "City": "Bergamo", + "PostalCode": 24100, + "Country": "Italy", + "Phone": "035-640230", + "Fax": "035-640231", + "Orders": [ + { + "OrderID": 10275, + "EmployeeID": 1, + "OrderDate": "1996-08-07T00:00:00", + "RequiredDate": "1996-09-04T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", + "ShipVia": 1, + "Freight": 26.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 3, - "Discount": 0 + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 6, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10624, - "EmployeeID": 4, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", + "OrderID": 10300, + "EmployeeID": 2, + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", "ShipVia": 2, - "Freight": 94.8, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "Freight": 17.68, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 6, + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10625, - "EmployeeID": 3, - "OrderDate": "1997-08-08T00:00:00", - "RequiredDate": "1997-09-05T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", + "OrderID": 10404, + "EmployeeID": 2, + "OrderDate": "1997-01-03T00:00:00", + "RequiredDate": "1997-01-31T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", "ShipVia": 1, - "Freight": 43.9, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 155.97, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, + "Discount": 0.06 }, { "ProductID": 42, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 + "UnitPrice": 11.2, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 47000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10626, - "EmployeeID": 1, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-08T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", + "OrderID": 10467, + "EmployeeID": 8, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", "ShipVia": 2, - "Freight": 138.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 39000, - "ShipCountry": "Sweden", + "Freight": 4.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 12, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 12, "Discount": 0 + } + ] + }, + { + "OrderID": 10635, + "EmployeeID": 8, + "OrderDate": "1997-08-18T00:00:00", + "RequiredDate": "1997-09-15T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 47.46, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 20, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10627, - "EmployeeID": 8, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10754, + "EmployeeID": 6, + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", "ShipVia": 3, - "Freight": 107.46, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 2.38, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 3, "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10628, + "OrderID": 10784, "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", "ShipVia": 3, - "Freight": 30.36, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 70.09, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10629, - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", + "OrderID": 10818, + "EmployeeID": 7, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", "ShipVia": 3, - "Freight": 85.46, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 65.48, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 32, + "UnitPrice": 32, "Quantity": 20, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 9, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10630, - "EmployeeID": 1, - "OrderDate": "1997-08-13T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", + "OrderID": 10939, + "EmployeeID": 2, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 2, - "Freight": 32.35, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 76.33, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10631, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-15T00:00:00", - "ShipVia": 1, - "Freight": 0.87, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10632, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 1, - "Freight": 41.38, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10950, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-13T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 2.5, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "TORTU", + "Company": "Tortuga Restaurante", + "ContactName": "Miguel Angel Paolino", + "ContactTitle": "Owner", + "Address": "Avda. Azteca 123", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 555-2933", "Orders": [ { - "OrderID": 10633, - "EmployeeID": 7, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-18T00:00:00", + "OrderID": 10276, + "EmployeeID": 8, + "OrderDate": "1996-08-08T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-14T00:00:00", "ShipVia": 3, - "Freight": 477.9, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 13.84, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 15, + "Discount": 0 }, { "ProductID": 13, - "UnitPrice": 6, - "Quantity": 13, - "Discount": 0.16 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 80, - "Discount": 0.16 + "UnitPrice": 4.8, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10634, - "EmployeeID": 4, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10293, + "EmployeeID": 1, + "OrderDate": "1996-08-29T00:00:00", + "RequiredDate": "1996-09-26T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 3, - "Freight": 487.38, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 21.18, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 50, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 15, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 5, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 7.75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0 + } + ] + }, + { + "OrderID": 10304, + "EmployeeID": 1, + "OrderDate": "1996-09-12T00:00:00", + "RequiredDate": "1996-10-10T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", + "ShipVia": 2, + "Freight": 63.79, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10635, - "EmployeeID": 8, - "OrderDate": "1997-08-18T00:00:00", - "RequiredDate": "1997-09-15T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10319, + "EmployeeID": 7, + "OrderDate": "1996-10-02T00:00:00", + "RequiredDate": "1996-10-30T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", "ShipVia": 3, - "Freight": 47.46, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 64.5, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10636, + "OrderID": 10518, "EmployeeID": 4, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 1.15, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderDate": "1997-04-25T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-05-05T00:00:00", + "ShipVia": 2, + "Freight": 218.15, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10637, - "EmployeeID": 6, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 201.29, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10576, + "EmployeeID": 3, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", + "ShipVia": 3, + "Freight": 18.56, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10638, - "EmployeeID": 3, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", - "ShipVia": 1, - "Freight": 158.44, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10676, + "EmployeeID": 2, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-29T00:00:00", + "ShipVia": 2, + "Freight": 2.01, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 60, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10639, - "EmployeeID": 7, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-08-27T00:00:00", + "OrderID": 10842, + "EmployeeID": 1, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 3, - "Freight": 38.64, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 54.42, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10640, - "EmployeeID": 4, - "OrderDate": "1997-08-21T00:00:00", - "RequiredDate": "1997-09-18T00:00:00", - "ShippedDate": "1997-08-28T00:00:00", - "ShipVia": 1, - "Freight": 23.55, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10915, + "EmployeeID": 2, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", + "ShipVia": 2, + "Freight": 3.51, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10641, - "EmployeeID": 4, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", + "OrderID": 11069, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", "ShipVia": 2, - "Freight": 179.61, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 15.67, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] @@ -18056,182 +9977,158 @@ ] }, { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", + "CustomerID": "MORGK", + "Company": "Morgenstern Gesundkost", + "ContactName": "Alexander Feuer", + "ContactTitle": "Marketing Assistant", + "Address": "Heerstr. 22", + "City": "Leipzig", + "PostalCode": 4179, + "Country": "Germany", + "Phone": "0342-023176", "Orders": [ { - "OrderID": 10642, - "EmployeeID": 7, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-09-05T00:00:00", + "OrderID": 10277, + "EmployeeID": 2, + "OrderDate": "1996-08-09T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-08-13T00:00:00", "ShipVia": 3, - "Freight": 41.89, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 125.77, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10643, - "EmployeeID": 6, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", + "OrderID": 10575, + "EmployeeID": 5, + "OrderDate": "1997-06-20T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 1, - "Freight": 29.46, - "ShipName": "Alfreds Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, + "Freight": 127.34, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10644, + "OrderID": 10699, "EmployeeID": 3, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", - "ShipVia": 2, - "Freight": 0.14, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", + "ShipVia": 3, + "Freight": 0.58, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 4, - "Discount": 0.1 - }, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10779, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 2, + "Freight": 58.13, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 43, - "UnitPrice": 46, + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 20, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0.1 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10645, + "OrderID": 10945, "EmployeeID": 4, - "OrderDate": "1997-08-26T00:00:00", - "RequiredDate": "1997-09-23T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-04-09T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 1, - "Freight": 12.41, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 10.22, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, + "ProductID": 13, + "UnitPrice": 6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 15, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 } ] @@ -18239,376 +10136,273 @@ ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 32000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", "Orders": [ { - "OrderID": 10646, - "EmployeeID": 9, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 3, - "Freight": 142.33, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10278, + "EmployeeID": 8, + "OrderDate": "1996-08-12T00:00:00", + "RequiredDate": "1996-09-09T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 92.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 26000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 16, + "Discount": 0 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10647, - "EmployeeID": 4, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 2, - "Freight": 45.54, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10280, + "EmployeeID": 2, + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-09-11T00:00:00", + "ShippedDate": "1996-09-12T00:00:00", + "ShipVia": 1, + "Freight": 8.98, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 50000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, + "ProductID": 55, + "UnitPrice": 19.2, "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ - { - "OrderID": 10648, - "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-09T00:00:00", - "ShipVia": 2, - "Freight": 14.25, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 43000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10649, - "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-09-25T00:00:00", - "ShippedDate": "1997-08-29T00:00:00", - "ShipVia": 3, - "Freight": 6.2, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 21000, - "ShipCountry": "Belgium", + "OrderID": 10384, + "EmployeeID": 3, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", + "ShipVia": 3, + "Freight": 168.64, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 33000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, + "ProductID": 60, + "UnitPrice": 27.2, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10650, - "EmployeeID": 5, - "OrderDate": "1997-08-29T00:00:00", - "RequiredDate": "1997-09-26T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", + "OrderID": 10444, + "EmployeeID": 3, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-21T00:00:00", "ShipVia": 3, - "Freight": 176.81, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "Freight": 3.5, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 21000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10651, - "EmployeeID": 8, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", + "OrderID": 10524, + "EmployeeID": 1, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", "ShipVia": 2, - "Freight": 20.6, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 244.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 2, + "Discount": 0 }, - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 10652, - "EmployeeID": 4, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", - "ShipVia": 2, - "Freight": 7.14, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", - "OrderDetails": [ { "ProductID": 30, "UnitPrice": 25.89, - "Quantity": 2, - "Discount": 0.25 + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10653, - "EmployeeID": 1, - "OrderDate": "1997-09-02T00:00:00", - "RequiredDate": "1997-09-30T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 1, - "Freight": 93.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10572, + "EmployeeID": 3, + "OrderDate": "1997-06-18T00:00:00", + "RequiredDate": "1997-07-16T00:00:00", + "ShippedDate": "1997-06-25T00:00:00", + "ShipVia": 2, + "Freight": 116.43, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 25000, + "ShipCountry": "Sweden", "OrderDetails": [ { "ProductID": 16, "UnitPrice": 17.45, - "Quantity": 30, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 15, "Discount": 0.1 + } + ] + }, + { + "OrderID": 10626, + "EmployeeID": 1, + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-08T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 2, + "Freight": 138.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 39000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 12, + "Discount": 0 }, { "ProductID": 60, "UnitPrice": 34, "Quantity": 20, - "Discount": 0.1 + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 28000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { "OrderID": 10654, "EmployeeID": 5, @@ -18642,838 +10436,738 @@ "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10655, - "EmployeeID": 1, - "OrderDate": "1997-09-03T00:00:00", + "OrderID": 10672, + "EmployeeID": 9, + "OrderDate": "1997-09-17T00:00:00", "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", "ShipVia": 2, - "Freight": 4.41, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ - { - "OrderID": 10656, - "EmployeeID": 6, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", - "ShipVia": 1, - "Freight": 57.15, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 95.75, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 16000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0.1 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 28, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, "Discount": 0.1 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10657, - "EmployeeID": 2, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", + "OrderID": 10689, + "EmployeeID": 1, + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-29T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", "ShipVia": 2, - "Freight": 352.69, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 13.42, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 24000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 45, - "Discount": 0 - }, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10733, + "EmployeeID": 1, + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-10T00:00:00", + "ShipVia": 3, + "Freight": 110.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 27000, + "ShipCountry": "Sweden", + "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 10, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 45, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10658, - "EmployeeID": 4, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", + "OrderID": 10778, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", "ShipVia": 1, - "Freight": 364.15, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 6.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 13000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10837, + "EmployeeID": 9, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 13.32, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 44000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, "Discount": 0 }, { "ProductID": 40, "UnitPrice": 18.4, - "Quantity": 70, - "Discount": 0.06 + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 55, - "Discount": 0.06 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10659, - "EmployeeID": 7, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", + "OrderID": 10857, + "EmployeeID": 8, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", "ShipVia": 2, - "Freight": 105.81, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 188.85, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 43000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 24, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10660, - "EmployeeID": 8, - "OrderDate": "1997-09-08T00:00:00", - "RequiredDate": "1997-10-06T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", + "OrderID": 10866, + "EmployeeID": 5, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-03T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", "ShipVia": 1, - "Freight": 111.29, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "Freight": 109.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10661, - "EmployeeID": 7, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", - "ShipVia": 3, - "Freight": 17.55, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ + "Discount": 0.25 + }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 6, + "Discount": 0.25 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 49, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 40, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10662, - "EmployeeID": 3, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", + "OrderID": 10875, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", "ShipVia": 2, - "Freight": 1.28, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 32.37, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 37000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0.1 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10663, - "EmployeeID": 2, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-09-24T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", + "OrderID": 10924, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", "ShipVia": 2, - "Freight": 113.15, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 151.52, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 42, - "UnitPrice": 14, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 30, - "Discount": 0.06 + "Discount": 0.1 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 6, + "Discount": 0 } ] } ] }, { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", + "CustomerID": "LEHMS", + "Company": "Lehmanns Marktstand", + "ContactName": "Renate Messner", + "ContactTitle": "Sales Representative", + "Address": "Magazinweg 7", + "City": "Frankfurt a.M.", + "PostalCode": 60528, + "Country": "Germany", + "Phone": "069-0245984", + "Fax": "069-0245874", "Orders": [ { - "OrderID": 10664, - "EmployeeID": 1, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 3, - "Freight": 1.27, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10279, + "EmployeeID": 8, + "OrderDate": "1996-08-13T00:00:00", + "RequiredDate": "1996-09-10T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 25.83, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10284, + "EmployeeID": 4, + "OrderDate": "1996-08-19T00:00:00", + "RequiredDate": "1996-09-16T00:00:00", + "ShippedDate": "1996-08-27T00:00:00", + "ShipVia": 1, + "Freight": 76.56, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0.25 + }, + { + "ProductID": 67, + "UnitPrice": 11.2, + "Quantity": 5, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10665, - "EmployeeID": 1, - "OrderDate": "1997-09-11T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-17T00:00:00", - "ShipVia": 2, - "Freight": 26.31, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10343, + "EmployeeID": 4, + "OrderDate": "1996-10-31T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-11-06T00:00:00", + "ShipVia": 1, + "Freight": 110.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 1, - "Discount": 0 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 4, + "Discount": 0.06 }, { "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "UnitPrice": 14.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10666, + "OrderID": 10497, "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", - "ShipVia": 2, - "Freight": 232.42, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", + "ShipVia": 1, + "Freight": 36.21, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10667, - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", + "OrderID": 10522, + "EmployeeID": 4, + "OrderDate": "1997-04-30T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-06T00:00:00", "ShipVia": 1, - "Freight": 78.09, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 45.33, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 45, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 14, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10668, - "EmployeeID": 1, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", + "OrderID": 10534, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-14T00:00:00", "ShipVia": 2, - "Freight": 47.22, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, + "Freight": 27.94, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ - { - "OrderID": 10669, - "EmployeeID": 2, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", - "ShipVia": 1, - "Freight": 24.39, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10670, - "EmployeeID": 4, - "OrderDate": "1997-09-16T00:00:00", - "RequiredDate": "1997-10-14T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", - "ShipVia": 1, - "Freight": 203.48, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, + "OrderID": 10536, + "EmployeeID": 3, + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-06-11T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 2, + "Freight": 58.88, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 32, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 60, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 25, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10557, + "EmployeeID": 9, + "OrderDate": "1997-06-03T00:00:00", + "RequiredDate": "1997-06-17T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 2, + "Freight": 96.72, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 25, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10671, - "EmployeeID": 1, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-09-24T00:00:00", + "OrderID": 10592, + "EmployeeID": 3, + "OrderDate": "1997-07-08T00:00:00", + "RequiredDate": "1997-08-05T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", "ShipVia": 1, - "Freight": 30.34, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 32.1, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 10, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 5, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10772, + "EmployeeID": 3, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 91.28, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10862, + "EmployeeID": 8, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 53.23, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10672, - "EmployeeID": 9, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", + "OrderID": 10891, + "EmployeeID": 7, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", "ShipVia": 2, - "Freight": 95.75, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 16000, - "ShipCountry": "Sweden", + "Freight": 20.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, + "ProductID": 30, + "UnitPrice": 25.89, "Quantity": 15, - "Discount": 0.1 + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10934, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 3, + "Freight": 32.01, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 11070, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShipVia": 1, + "Freight": 136, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.16 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 } ] @@ -19481,275 +11175,177 @@ ] }, { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", + "CustomerID": "ROMEY", + "Company": "Romero y tomillo", + "ContactName": "Alejandra Camino", + "ContactTitle": "Accounting Manager", + "Address": "Gran Vía, 1", + "City": "Madrid", + "PostalCode": 28001, + "Country": "Spain", + "Phone": "(91) 745 6200", + "Fax": "(91) 745 6210", "Orders": [ { - "OrderID": 10673, - "EmployeeID": 2, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 1, - "Freight": 22.76, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10281, + "EmployeeID": 4, + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-08-28T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 2.94, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, + "ProductID": 24, + "UnitPrice": 3.6, "Quantity": 6, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10674, + "OrderID": 10282, "EmployeeID": 4, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 2, - "Freight": 0.9, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60688, - "ShipPostalCode": 25000, - "ShipCountry": "UK", + "OrderDate": "1996-08-15T00:00:00", + "RequiredDate": "1996-09-12T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 5, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10675, - "EmployeeID": 5, - "OrderDate": "1997-09-19T00:00:00", - "RequiredDate": "1997-10-17T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", - "ShipVia": 2, - "Freight": 31.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10306, + "EmployeeID": 1, + "OrderDate": "1996-09-16T00:00:00", + "RequiredDate": "1996-10-14T00:00:00", + "ShippedDate": "1996-09-23T00:00:00", + "ShipVia": 3, + "Freight": 7.56, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 10, "Discount": 0 }, { "ProductID": 53, - "UnitPrice": 32.8, + "UnitPrice": 26.2, "Quantity": 10, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10676, - "EmployeeID": 2, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-29T00:00:00", + "OrderID": 10917, + "EmployeeID": 4, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", "ShipVia": 2, - "Freight": 2.01, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 8.29, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10677, - "EmployeeID": 1, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", - "ShipVia": 3, - "Freight": 4.03, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10678, - "EmployeeID": 7, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", - "ShipVia": 3, - "Freight": 388.98, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11013, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 32.99, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 100, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 120, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 2, "Discount": 0 } ] @@ -19757,1581 +11353,1417 @@ ] }, { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", + "CustomerID": "LILAS", + "Company": "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", "Orders": [ { - "OrderID": 10679, - "EmployeeID": 8, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", + "OrderID": 10283, + "EmployeeID": 3, + "OrderDate": "1996-08-16T00:00:00", + "RequiredDate": "1996-09-13T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", "ShipVia": 3, - "Freight": 27.94, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 84.81, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10680, - "EmployeeID": 1, - "OrderDate": "1997-09-24T00:00:00", - "RequiredDate": "1997-10-22T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", + "OrderID": 10296, + "EmployeeID": 6, + "OrderDate": "1996-09-03T00:00:00", + "RequiredDate": "1996-10-01T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 1, - "Freight": 26.61, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 0.12, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10681, + "OrderID": 10330, "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 3, - "Freight": 76.13, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", + "ShipVia": 1, + "Freight": 12.75, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0.1 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 28, - "Discount": 0 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10682, - "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 2, - "Freight": 36.13, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + }, + { + "OrderID": 10357, + "EmployeeID": 1, + "OrderDate": "1996-11-19T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 34.88, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, + "ProductID": 10, + "UnitPrice": 24.8, "Quantity": 30, - "Discount": 0 + "Discount": 0.2 }, { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 4, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10683, - "EmployeeID": 2, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 1, - "Freight": 4.4, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10381, + "EmployeeID": 3, + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 7.99, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 9, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10684, - "EmployeeID": 3, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 1, - "Freight": 145.63, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "OrderID": 10461, + "EmployeeID": 1, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-05T00:00:00", + "ShipVia": 3, + "Freight": 148.61, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 28, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10685, + "OrderID": 10499, "EmployeeID": 4, - "OrderDate": "1997-09-29T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", + "OrderDate": "1997-04-08T00:00:00", + "RequiredDate": "1997-05-06T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", "ShipVia": 2, - "Freight": 33.75, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 102.02, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 25, "Discount": 0 + } + ] + }, + { + "OrderID": 10543, + "EmployeeID": 8, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 2, + "Freight": 48.17, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10686, + "OrderID": 10780, "EmployeeID": 2, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-08T00:00:00", - "ShipVia": 1, - "Freight": 96.5, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-25T00:00:00", + "ShipVia": 1, + "Freight": 42.13, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, + "ProductID": 77, + "UnitPrice": 13, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10687, - "EmployeeID": 9, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-30T00:00:00", + "OrderID": 10823, + "EmployeeID": 5, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", "ShipVia": 2, - "Freight": 296.43, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 163.97, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10688, - "EmployeeID": 4, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", + "OrderID": 10899, + "EmployeeID": 5, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", + "ShipVia": 3, + "Freight": 1.21, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10997, + "EmployeeID": 8, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 299.09, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 73.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 14, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 21000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10689, - "EmployeeID": 1, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-29T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", - "ShipVia": 2, - "Freight": 13.42, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 24000, - "ShipCountry": "Sweden", + "OrderID": 11065, + "EmployeeID": 8, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShipVia": 1, + "Freight": 12.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 35, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 4, + "Discount": 0.25 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10690, - "EmployeeID": 1, - "OrderDate": "1997-10-02T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", - "ShipVia": 1, - "Freight": 15.8, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + }, + { + "OrderID": 11071, + "EmployeeID": 1, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShipVia": 1, + "Freight": 0.93, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", + "CustomerID": "RICAR", + "Company": "Ricardo Adocicados", + "ContactName": "Janete Limeira", + "ContactTitle": "Sales Associate", + "Address": "Av. Copacabana, 267", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-3412", "Orders": [ { - "OrderID": 10691, - "EmployeeID": 2, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-10-22T00:00:00", - "ShipVia": 2, - "Freight": 810.05, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10287, + "EmployeeID": 8, + "OrderDate": "1996-08-22T00:00:00", + "RequiredDate": "1996-09-19T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", + "ShipVia": 3, + "Freight": 12.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, + "ProductID": 16, + "UnitPrice": 13.9, "Quantity": 40, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 24, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 48, - "Discount": 0 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10692, + "OrderID": 10299, "EmployeeID": 4, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-10-31T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", + "OrderDate": "1996-09-06T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-13T00:00:00", "ShipVia": 2, - "Freight": 61.02, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 29.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10693, - "EmployeeID": 3, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-10-10T00:00:00", - "ShipVia": 3, - "Freight": 139.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10447, + "EmployeeID": 4, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-03-07T00:00:00", + "ShipVia": 2, + "Freight": 68.66, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 6, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10694, + "OrderID": 10481, "EmployeeID": 8, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-11-03T00:00:00", - "ShippedDate": "1997-10-09T00:00:00", - "ShipVia": 3, - "Freight": 398.36, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", + "ShipVia": 2, + "Freight": 64.33, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 90, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10563, + "EmployeeID": 2, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-06-24T00:00:00", + "ShipVia": 2, + "Freight": 60.43, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, "Quantity": 25, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 70, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10695, - "EmployeeID": 7, - "OrderDate": "1997-10-07T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 1, - "Freight": 16.72, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10622, + "EmployeeID": 4, + "OrderDate": "1997-08-06T00:00:00", + "RequiredDate": "1997-09-03T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 3, + "Freight": 50.97, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 4, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10648, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-09T00:00:00", + "ShipVia": 2, + "Freight": 14.25, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 15, "Discount": 0 }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0 + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10696, - "EmployeeID": 8, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 3, - "Freight": 102.55, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10813, + "EmployeeID": 1, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 1, + "Freight": 47.38, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 12, + "Discount": 0.2 }, { "ProductID": 46, "UnitPrice": 12, - "Quantity": 18, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10697, - "EmployeeID": 3, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-05T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", + "OrderID": 10851, + "EmployeeID": 5, + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-23T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", "ShipVia": 1, - "Freight": 45.52, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", + "Freight": 160.55, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, - "Discount": 0.25 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, + "Discount": 0.06 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 9, - "Discount": 0.25 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 58, - "UnitPrice": 13.25, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10877, + "EmployeeID": 1, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 1, + "Freight": 38.06, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 30, "Discount": 0.25 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10698, - "EmployeeID": 4, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-17T00:00:00", - "ShipVia": 1, - "Freight": 272.47, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 11059, + "EmployeeID": 2, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-06-10T00:00:00", + "ShipVia": 2, + "Freight": 85.8, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 30, "Discount": 0 }, { "ProductID": 17, "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 65, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 8, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0 } ] } ] }, { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", + "CustomerID": "REGGC", + "Company": "Reggiani Caseifici", + "ContactName": "Maurizio Moroni", + "ContactTitle": "Sales Associate", + "Address": "Strada Provinciale 124", + "City": "Reggio Emilia", + "PostalCode": 42100, + "Country": "Italy", + "Phone": "0522-556721", + "Fax": "0522-556722", "Orders": [ { - "OrderID": 10699, - "EmployeeID": 3, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", - "ShipVia": 3, - "Freight": 0.58, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "OrderID": 10288, + "EmployeeID": 4, + "OrderDate": "1996-08-23T00:00:00", + "RequiredDate": "1996-09-20T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", + "ShipVia": 1, + "Freight": 7.45, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 12, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10428, + "EmployeeID": 7, + "OrderDate": "1997-01-28T00:00:00", + "RequiredDate": "1997-02-25T00:00:00", + "ShippedDate": "1997-02-04T00:00:00", + "ShipVia": 1, + "Freight": 11.09, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10700, - "EmployeeID": 3, - "OrderDate": "1997-10-10T00:00:00", - "RequiredDate": "1997-11-07T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", + "OrderID": 10443, + "EmployeeID": 8, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", "ShipVia": 1, - "Freight": 65.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 13.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 5, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 34, - "UnitPrice": 14, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 12, - "Discount": 0.2 + "Discount": 0 + } + ] + }, + { + "OrderID": 10562, + "EmployeeID": 1, + "OrderDate": "1997-06-09T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-12T00:00:00", + "ShipVia": 1, + "Freight": 22.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 40, - "Discount": 0.2 - }, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10586, + "EmployeeID": 9, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 1, + "Freight": 0.48, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10655, + "EmployeeID": 1, + "OrderDate": "1997-09-03T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 4.41, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10701, - "EmployeeID": 6, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-10-27T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", - "ShipVia": 3, - "Freight": 220.31, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10727, + "EmployeeID": 2, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-12-01T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 89.9, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10702, - "EmployeeID": 4, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", + "OrderID": 10812, + "EmployeeID": 5, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", "ShipVia": 1, - "Freight": 23.94, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 59.78, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 16, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 47000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10703, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-10-20T00:00:00", + "OrderID": 10908, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", "ShipVia": 2, - "Freight": 152.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 22000, - "ShipCountry": "Sweden", + "Freight": 32.96, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 14, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10704, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", - "ShipVia": 1, - "Freight": 4.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10942, + "EmployeeID": 9, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 3, + "Freight": 17.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 28, + "Discount": 0 + } + ] + }, + { + "OrderID": 11010, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 28.71, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 6, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, "Discount": 0 }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 24, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10705, - "EmployeeID": 9, - "OrderDate": "1997-10-15T00:00:00", - "RequiredDate": "1997-11-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 11062, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", "ShipVia": 2, - "Freight": 3.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 29.93, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 4, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 12, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", + "CustomerID": "BSBEV", + "Company": "B's Beverages", + "ContactName": "Victoria Ashworth", "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", + "Address": "Fauntleroy Circus", + "City": "London", + "PostalCode": 20000, + "Country": "UK", + "Phone": "(171) 555-1212", "Orders": [ { - "OrderID": 10706, - "EmployeeID": 8, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-11-13T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", + "OrderID": 10289, + "EmployeeID": 7, + "OrderDate": "1996-08-26T00:00:00", + "RequiredDate": "1996-09-23T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", "ShipVia": 3, - "Freight": 135.63, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 22.77, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 18000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 10471, + "EmployeeID": 2, + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 3, + "Freight": 45.59, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 8, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 14000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10707, - "EmployeeID": 4, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", + "OrderID": 10484, + "EmployeeID": 3, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-01T00:00:00", "ShipVia": 3, - "Freight": 21.74, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 29000, + "Freight": 6.88, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 31000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 21, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 40, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ - { - "OrderID": 10708, - "EmployeeID": 6, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 2.96, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + }, + { + "OrderID": 10538, + "EmployeeID": 9, + "OrderDate": "1997-05-15T00:00:00", + "RequiredDate": "1997-06-12T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 3, + "Freight": 4.87, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 45000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 4, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 5, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 1, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10709, - "EmployeeID": 1, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-11-20T00:00:00", + "OrderID": 10578, + "EmployeeID": 4, + "OrderDate": "1997-06-24T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", "ShipVia": 3, - "Freight": 210.8, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 29.6, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 44000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 28, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10710, - "EmployeeID": 1, - "OrderDate": "1997-10-20T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", - "ShipVia": 1, - "Freight": 4.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10599, + "EmployeeID": 6, + "OrderDate": "1997-07-15T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", + "ShipVia": 3, + "Freight": 29.98, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 21000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10711, - "EmployeeID": 5, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", + "OrderID": 10943, + "EmployeeID": 4, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 52.41, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 2.17, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 42, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 120, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10712, + "OrderID": 10947, "EmployeeID": 3, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", - "ShipVia": 1, - "Freight": 89.93, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 13000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11023, + "EmployeeID": 1, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 123.83, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 43, + "UnitPrice": 46, "Quantity": 30, "Discount": 0 } @@ -21340,191 +12772,158 @@ ] }, { - "CustomerID": "SAVEA", - "Company": "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", + "CustomerID": "COMMI", + "Company": "Comércio Mineiro", + "ContactName": "Pedro Afonso", + "ContactTitle": "Sales Associate", + "Address": "Av. dos Lusíadas, 23", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5432, + "Country": "Brazil", + "Phone": "(11) 555-7647", "Orders": [ { - "OrderID": 10713, - "EmployeeID": 1, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-24T00:00:00", + "OrderID": 10290, + "EmployeeID": 8, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", "ShipVia": 1, - "Freight": 167.05, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 79.7, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 110, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 24, + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, "Discount": 0 } ] }, { - "OrderID": 10714, - "EmployeeID": 5, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", - "ShipVia": 3, - "Freight": 24.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10466, + "EmployeeID": 4, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-13T00:00:00", + "ShipVia": 1, + "Freight": 11.93, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 27, - "Discount": 0.25 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 50, - "Discount": 0.25 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10715, - "EmployeeID": 3, - "OrderDate": "1997-10-23T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 1, - "Freight": 63.2, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10494, + "EmployeeID": 4, + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", + "ShipVia": 2, + "Freight": 65.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, + "ProductID": 56, + "UnitPrice": 30.4, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10716, - "EmployeeID": 4, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", + "OrderID": 10969, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", "ShipVia": 2, - "Freight": 22.57, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 0.21, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11042, + "EmployeeID": 2, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 29.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 7, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 15, "Discount": 0 }, { "ProductID": 61, "UnitPrice": 28.5, - "Quantity": 10, + "Quantity": 4, "Discount": 0 } ] @@ -21532,900 +12931,820 @@ ] }, { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", + "CustomerID": "TRADH", + "Company": "Tradição Hipermercados", + "ContactName": "Anabela Domingues", + "ContactTitle": "Sales Representative", + "Address": "Av. Inês de Castro, 414", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5634, + "Country": "Brazil", + "Phone": "(11) 555-2167", + "Fax": "(11) 555-2168", "Orders": [ { - "OrderID": 10717, + "OrderID": 10292, "EmployeeID": 1, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", + "OrderDate": "1996-08-28T00:00:00", + "RequiredDate": "1996-09-25T00:00:00", + "ShippedDate": "1996-09-02T00:00:00", "ShipVia": 2, - "Freight": 59.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 1.35, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10496, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", + "ShipVia": 2, + "Freight": 46.77, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 31, "UnitPrice": 10, - "Quantity": 32, + "Quantity": 20, "Discount": 0.06 + } + ] + }, + { + "OrderID": 10606, + "EmployeeID": 4, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-31T00:00:00", + "ShipVia": 3, + "Freight": 79.4, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10718, - "EmployeeID": 1, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 3, - "Freight": 170.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10830, + "EmployeeID": 4, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 2, + "Freight": 81.83, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10719, - "EmployeeID": 8, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 51.44, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10834, + "EmployeeID": 1, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 3, + "Freight": 29.78, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 8, + "Discount": 0.06 }, { "ProductID": 30, "UnitPrice": 25.89, - "Quantity": 3, - "Discount": 0.25 + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10839, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-22T00:00:00", + "ShipVia": 3, + "Freight": 35.43, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", "Orders": [ { - "OrderID": 10720, - "EmployeeID": 8, - "OrderDate": "1997-10-28T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", + "OrderID": 10298, + "EmployeeID": 6, + "OrderDate": "1996-09-05T00:00:00", + "RequiredDate": "1996-10-03T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 2, - "Freight": 9.53, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 168.22, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 8, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.25 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10721, - "EmployeeID": 5, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-11-26T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", - "ShipVia": 3, - "Freight": 48.92, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10309, + "EmployeeID": 3, + "OrderDate": "1996-09-19T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 1, + "Freight": 47.3, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10722, - "EmployeeID": 8, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-04T00:00:00", - "ShipVia": 1, - "Freight": 74.58, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10335, + "EmployeeID": 7, + "OrderDate": "1996-10-22T00:00:00", + "RequiredDate": "1996-11-19T00:00:00", + "ShippedDate": "1996-10-24T00:00:00", + "ShipVia": 2, + "Freight": 42.11, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { "ProductID": 2, - "UnitPrice": 19, - "Quantity": 3, - "Discount": 0 + "UnitPrice": 15.2, + "Quantity": 7, + "Discount": 0.2 }, { "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0 + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 45, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 42, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 48, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10723, - "EmployeeID": 3, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-11-27T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", - "ShipVia": 1, - "Freight": 21.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10373, + "EmployeeID": 4, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-11T00:00:00", + "ShipVia": 3, + "Freight": 124.12, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 15, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 80, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 31000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10724, + "OrderID": 10380, "EmployeeID": 8, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 57.75, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 39000, - "ShipCountry": "Canada", + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 3, + "Freight": 35.03, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 6, + "Discount": 0.1 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10725, - "EmployeeID": 4, - "OrderDate": "1997-10-31T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 3, - "Freight": 10.83, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10429, + "EmployeeID": 3, + "OrderDate": "1997-01-29T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 56.63, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10503, + "EmployeeID": 6, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 2, + "Freight": 16.74, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 18000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10726, - "EmployeeID": 4, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", - "ShipVia": 1, - "Freight": 16.56, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 21000, - "ShipCountry": "UK", + "OrderID": 10516, + "EmployeeID": 2, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 62.78, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 18, + "UnitPrice": 62.5, "Quantity": 25, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 80, + "Discount": 0.1 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10727, - "EmployeeID": 2, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-12-01T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", + "OrderID": 10567, + "EmployeeID": 1, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-17T00:00:00", "ShipVia": 1, - "Freight": 89.9, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0.06 + "Freight": 33.97, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, + "Discount": 0 }, { "ProductID": 59, "UnitPrice": 55, - "Quantity": 10, - "Discount": 0.06 + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10728, - "EmployeeID": 4, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-11-11T00:00:00", - "ShipVia": 2, - "Freight": 58.33, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10646, + "EmployeeID": 9, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 142.33, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 15, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 12, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10729, - "EmployeeID": 8, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", + "OrderID": 10661, + "EmployeeID": 7, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", "ShipVia": 3, - "Freight": 141.06, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 17.55, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 40, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 49, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10730, - "EmployeeID": 5, - "OrderDate": "1997-11-05T00:00:00", - "RequiredDate": "1997-12-03T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", - "ShipVia": 1, - "Freight": 20.12, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10687, + "EmployeeID": 9, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-30T00:00:00", + "ShipVia": 2, + "Freight": 296.43, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 50, + "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 3, - "Discount": 0.06 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10731, - "EmployeeID": 7, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", - "ShipVia": 1, - "Freight": 96.65, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10701, + "EmployeeID": 6, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-10-27T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 3, + "Freight": 220.31, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.16 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10732, + "OrderID": 10712, "EmployeeID": 3, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", "ShipVia": 1, - "Freight": 16.97, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 89.93, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 29000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10733, - "EmployeeID": 1, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-10T00:00:00", - "ShipVia": 3, - "Freight": 110.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 27000, - "ShipCountry": "Sweden", + "OrderID": 10736, + "EmployeeID": 9, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 44.1, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 16, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 25, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10734, - "EmployeeID": 2, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-12T00:00:00", - "ShipVia": 3, - "Freight": 1.63, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 10897, + "EmployeeID": 3, + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-25T00:00:00", + "ShipVia": 2, + "Freight": 603.54, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 80, "Discount": 0 }, { "ProductID": 30, "UnitPrice": 25.89, - "Quantity": 15, + "Quantity": 36, "Discount": 0 + } + ] + }, + { + "OrderID": 10912, + "EmployeeID": 2, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 580.91, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10735, - "EmployeeID": 6, - "OrderDate": "1997-11-10T00:00:00", - "RequiredDate": "1997-12-08T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 2, - "Freight": 45.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10985, + "EmployeeID": 2, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 91.51, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 36, "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 35, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10736, - "EmployeeID": 9, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderID": 11063, + "EmployeeID": 3, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", "ShipVia": 2, - "Freight": 44.1, + "Freight": 81.73, "ShipName": "Hungry Owl All-Night Grocers", "ShipAddress": "8 Johnstown Road", "ShipCity": "Cork", @@ -22433,315 +13752,351 @@ "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 40, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", + "CustomerID": "WANDK", + "Company": "Die Wandernde Kuh", + "ContactName": "Rita Müller", + "ContactTitle": "Sales Representative", + "Address": "Adenauerallee 900", + "City": "Stuttgart", + "PostalCode": 70563, + "Country": "Germany", + "Phone": "0711-020361", + "Fax": "0711-035428", "Orders": [ { - "OrderID": 10737, - "EmployeeID": 2, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10301, + "EmployeeID": 8, + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", "ShipVia": 2, - "Freight": 7.79, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 45.08, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 4, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 10738, + "OrderID": 10312, "EmployeeID": 2, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 1, - "Freight": 2.91, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "OrderDate": "1996-09-23T00:00:00", + "RequiredDate": "1996-10-21T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 40.26, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10739, - "EmployeeID": 3, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-17T00:00:00", - "ShipVia": 3, - "Freight": 11.08, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "OrderID": 10348, + "EmployeeID": 4, + "OrderDate": "1996-11-07T00:00:00", + "RequiredDate": "1996-12-05T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 2, + "Freight": 0.78, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 18, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10740, - "EmployeeID": 4, - "OrderDate": "1997-11-13T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", - "ShipVia": 2, - "Freight": 81.88, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10356, + "EmployeeID": 6, + "OrderDate": "1996-11-18T00:00:00", + "RequiredDate": "1996-12-16T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", + "ShipVia": 2, + "Freight": 36.71, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 5, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10513, + "EmployeeID": 7, + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-06-03T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", + "ShipVia": 1, + "Freight": 105.65, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, "Quantity": 40, "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 15, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10741, - "EmployeeID": 4, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 3, - "Freight": 10.96, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 13000, - "ShipCountry": "UK", + "OrderID": 10632, + "EmployeeID": 8, + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 1, + "Freight": 41.38, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 19, - "Quantity": 15, - "Discount": 0.2 + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 14000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10742, - "EmployeeID": 3, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-12-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 3, - "Freight": 243.73, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 25000, - "ShipCountry": "Canada", + "OrderID": 10640, + "EmployeeID": 4, + "OrderDate": "1997-08-21T00:00:00", + "RequiredDate": "1997-09-18T00:00:00", + "ShippedDate": "1997-08-28T00:00:00", + "ShipVia": 1, + "Freight": 23.55, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, + "ProductID": 69, + "UnitPrice": 36, "Quantity": 20, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10651, + "EmployeeID": 8, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 20.6, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, - "Discount": 0 + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10743, + "OrderID": 10668, "EmployeeID": 1, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 48000, - "ShipCountry": "UK", + "Freight": 47.22, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 15, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11046, + "EmployeeID": 8, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 71.64, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 28, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 18, "Discount": 0.06 } ] @@ -22749,394 +14104,328 @@ ] }, { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", + "CustomerID": "GODOS", + "Company": "Godos Cocina Típica", + "ContactName": "José Pedro Freyre", "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", + "Address": "C/ Romero, 33", + "City": "Sevilla", + "PostalCode": 41101, + "Country": "Spain", + "Phone": "(95) 555 82 82", "Orders": [ { - "OrderID": 10744, - "EmployeeID": 6, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", - "ShipVia": 1, - "Freight": 69.19, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderID": 10303, + "EmployeeID": 7, + "OrderDate": "1996-09-11T00:00:00", + "RequiredDate": "1996-10-09T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 107.83, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0.2 + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10745, - "EmployeeID": 9, - "OrderDate": "1997-11-18T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 1, - "Freight": 3.52, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10550, + "EmployeeID": 7, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-06-25T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 3, + "Freight": 4.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 24, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 45, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10746, - "EmployeeID": 1, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderID": 10629, + "EmployeeID": 4, + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", "ShipVia": 3, - "Freight": 31.43, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 85.46, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 64, + "UnitPrice": 33.25, "Quantity": 9, "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 40, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10747, - "EmployeeID": 6, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-26T00:00:00", - "ShipVia": 1, - "Freight": 117.33, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10872, + "EmployeeID": 5, + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 2, + "Freight": 175.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 9, - "Discount": 0 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10748, - "EmployeeID": 3, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", - "ShipVia": 1, - "Freight": 232.55, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10874, + "EmployeeID": 5, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", + "ShipVia": 2, + "Freight": 19.58, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 44, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 36000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10749, - "EmployeeID": 4, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", + "OrderID": 10888, + "EmployeeID": 1, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 2, - "Freight": 61.53, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40198, - "ShipPostalCode": 33000, - "ShipCountry": "UK", + "Freight": 51.87, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 6, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10750, - "EmployeeID": 9, - "OrderDate": "1997-11-21T00:00:00", - "RequiredDate": "1997-12-19T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", + "OrderID": 10911, + "EmployeeID": 3, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", "ShipVia": 1, - "Freight": 79.3, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 38.19, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 5, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10751, + "OrderID": 10948, "EmployeeID": 3, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-12-03T00:00:00", + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 3, - "Freight": 130.79, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 23.39, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11009, + "EmployeeID": 2, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 59.11, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 18, + "Discount": 0.25 }, { - "ProductID": 73, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 11037, + "EmployeeID": 7, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 3.2, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 70, "UnitPrice": 15, - "Quantity": 15, + "Quantity": 4, "Discount": 0 } ] @@ -23144,721 +14433,563 @@ ] }, { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 15000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", + "CustomerID": "OLDWO", + "Company": "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", "Orders": [ { - "OrderID": 10752, - "EmployeeID": 2, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", + "OrderID": 10305, + "EmployeeID": 8, + "OrderDate": "1996-09-13T00:00:00", + "RequiredDate": "1996-10-11T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", "ShipVia": 3, - "Freight": 1.39, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "Freight": 257.62, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 3, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10753, - "EmployeeID": 3, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 1, - "Freight": 7.7, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10338, + "EmployeeID": 4, + "OrderDate": "1996-10-25T00:00:00", + "RequiredDate": "1996-11-22T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", + "ShipVia": 3, + "Freight": 84.21, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 4, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10754, - "EmployeeID": 6, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 3, - "Freight": 2.38, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10441, + "EmployeeID": 3, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-24T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 2, + "Freight": 73.02, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 3, + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10755, - "EmployeeID": 4, - "OrderDate": "1997-11-26T00:00:00", - "RequiredDate": "1997-12-24T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", + "OrderID": 10594, + "EmployeeID": 3, + "OrderDate": "1997-07-09T00:00:00", + "RequiredDate": "1997-08-06T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", "ShipVia": 2, - "Freight": 16.71, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 5.24, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 58, + "UnitPrice": 13.25, "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10680, + "EmployeeID": 1, + "OrderDate": "1997-09-24T00:00:00", + "RequiredDate": "1997-10-22T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 1, + "Freight": 26.61, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 14, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0.25 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 25, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10756, + "OrderID": 10706, "EmployeeID": 8, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-02T00:00:00", - "ShipVia": 2, - "Freight": 73.21, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-11-13T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 3, + "Freight": 135.63, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10757, - "EmployeeID": 6, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 1, - "Freight": 8.19, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "OrderID": 10808, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 45.53, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 30, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 24, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10758, + "OrderID": 10855, "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-04T00:00:00", - "ShipVia": 3, - "Freight": 138.17, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 170.97, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 60, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 24, "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10759, - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", + "OrderID": 10965, + "EmployeeID": 6, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", "ShipVia": 3, - "Freight": 11.99, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 144.38, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 38000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10760, - "EmployeeID": 4, - "OrderDate": "1997-12-01T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1997-12-10T00:00:00", + "OrderID": 11034, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", "ShipVia": 1, - "Freight": 155.64, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 12000, - "ShipCountry": "Belgium", + "Freight": 40.32, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 40, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 6, + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, + "CustomerID": "LONEP", + "Company": "Lonesome Pine Restaurant", + "ContactName": "Fran Wilson", + "ContactTitle": "Sales Manager", + "Address": "89 Chiaroscuro Rd.", + "City": "Portland", + "Region": "OR", + "PostalCode": 97219, "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "Phone": "(503) 555-9573", + "Fax": "(503) 555-9646", "Orders": [ { - "OrderID": 10761, - "EmployeeID": 5, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", + "OrderID": 10307, + "EmployeeID": 2, + "OrderDate": "1996-09-17T00:00:00", + "RequiredDate": "1996-10-15T00:00:00", + "ShippedDate": "1996-09-25T00:00:00", "ShipVia": 2, - "Freight": 18.66, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, + "Freight": 0.56, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 18, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 34000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10762, - "EmployeeID": 3, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", + "OrderID": 10317, + "EmployeeID": 6, + "OrderDate": "1996-09-30T00:00:00", + "RequiredDate": "1996-10-28T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", "ShipVia": 1, - "Freight": 328.74, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", + "Freight": 12.69, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 16, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10544, + "EmployeeID": 4, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 24.91, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 28, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 7, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10662, + "EmployeeID": 3, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 2, + "Freight": 1.28, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10763, - "EmployeeID": 3, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", - "ShipVia": 3, - "Freight": 37.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "OrderID": 10665, + "EmployeeID": 1, + "OrderDate": "1997-09-11T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-17T00:00:00", + "ShipVia": 2, + "Freight": 26.31, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 6, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10764, + "OrderID": 10867, "EmployeeID": 6, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", - "ShipVia": 3, - "Freight": 145.45, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", + "ShipVia": 1, + "Freight": 1.93, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 130, - "Discount": 0.1 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10765, - "EmployeeID": 3, - "OrderDate": "1997-12-04T00:00:00", - "RequiredDate": "1998-01-01T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", + "OrderID": 10883, + "EmployeeID": 8, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 3, - "Freight": 42.74, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 0.53, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 80, - "Discount": 0.1 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10766, + "OrderID": 11018, "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 1, - "Freight": 157.55, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 2, + "Freight": 11.65, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, "Discount": 0 }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10767, - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 3, - "Freight": 1.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 2, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, "Discount": 0 } ] @@ -23866,108 +14997,137 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 43000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "CustomerID": "ANATR", + "Company": "Ana Trujillo Emparedados y helados", + "ContactName": "Ana Trujillo", + "ContactTitle": "Owner", + "Address": "Avda. de la Constitución 2222", + "City": "México D.F.", + "PostalCode": 5021, + "Country": "Mexico", + "Phone": "(5) 555-4729", + "Fax": "(5) 555-3745", "Orders": [ { - "OrderID": 10768, - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 2, - "Freight": 146.32, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 32000, - "ShipCountry": "UK", + "OrderID": 10308, + "EmployeeID": 7, + "OrderDate": "1996-09-18T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-24T00:00:00", + "ShipVia": 3, + "Freight": 1.61, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 4, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10625, + "EmployeeID": 3, + "OrderDate": "1997-08-08T00:00:00", + "RequiredDate": "1997-09-05T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", + "ShipVia": 1, + "Freight": 43.9, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10769, + "OrderID": 10759, "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 65.06, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "ShipVia": 3, + "Freight": 11.99, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10926, + "EmployeeID": 4, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 39.92, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, "Discount": 0 } ] @@ -23975,115 +15135,123 @@ ] }, { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", + "CustomerID": "THEBI", + "Company": "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", "Orders": [ { - "OrderID": 10770, + "OrderID": 10310, "EmployeeID": 8, - "OrderDate": "1997-12-09T00:00:00", - "RequiredDate": "1998-01-06T00:00:00", - "ShippedDate": "1997-12-17T00:00:00", - "ShipVia": 3, - "Freight": 5.32, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-18T00:00:00", + "ShippedDate": "1996-09-27T00:00:00", + "ShipVia": 2, + "Freight": 17.52, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 5, + "Discount": 0 + } + ] + }, { - "OrderID": 10771, - "EmployeeID": 9, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", + "OrderID": 10708, + "EmployeeID": 6, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 11.19, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 2.96, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10772, - "EmployeeID": 3, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 2, - "Freight": 91.28, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10805, + "EmployeeID": 2, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 237.34, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 18, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10992, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 4.27, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 2, "Discount": 0 } ] @@ -24091,132 +15259,131 @@ ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "DUMON", + "Company": "Du monde entier", + "ContactName": "Janine Labrune", + "ContactTitle": "Owner", + "Address": "67, rue des Cinquante Otages", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.67.88.88", + "Fax": "40.67.89.89", "Orders": [ { - "OrderID": 10773, + "OrderID": 10311, "EmployeeID": 1, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1998-01-08T00:00:00", - "ShippedDate": "1997-12-16T00:00:00", + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-26T00:00:00", "ShipVia": 3, - "Freight": 96.43, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 24.69, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 33, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 70, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 69, + "UnitPrice": 28.8, "Quantity": 7, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 18000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10774, - "EmployeeID": 4, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 48.2, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 20000, - "ShipCountry": "Sweden", + "OrderID": 10609, + "EmployeeID": 7, + "OrderDate": "1997-07-24T00:00:00", + "RequiredDate": "1997-08-21T00:00:00", + "ShippedDate": "1997-07-30T00:00:00", + "ShipVia": 2, + "Freight": 1.85, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 50, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "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", - "Orders": [ + }, + { + "OrderID": 10683, + "EmployeeID": 2, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 1, + "Freight": 4.4, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 9, + "Discount": 0 + } + ] + }, { - "OrderID": 10775, + "OrderID": 10890, "EmployeeID": 7, - "OrderDate": "1997-12-12T00:00:00", - "RequiredDate": "1998-01-09T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 1, - "Freight": 20.25, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "Freight": 32.76, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 6, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 67, + "ProductID": 34, "UnitPrice": 14, - "Quantity": 3, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, "Discount": 0 } ] @@ -24224,1031 +15391,791 @@ ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "ISLAT", + "Company": "Island Trading", + "ContactName": "Helen Bennett", + "ContactTitle": "Marketing Manager", + "Address": "Garden House Crowther Way", + "City": "Cowes", + "Region": "Northeast", + "PostalCode": 42000, + "Country": "UK", + "Phone": "(198) 555-8888", "Orders": [ { - "OrderID": 10776, - "EmployeeID": 1, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1998-01-12T00:00:00", - "ShippedDate": "1997-12-18T00:00:00", - "ShipVia": 3, - "Freight": 351.53, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10315, + "EmployeeID": 4, + "OrderDate": "1996-09-26T00:00:00", + "RequiredDate": "1996-10-24T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 41.76, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40301, + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 27, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 120, - "Discount": 0.06 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10777, - "EmployeeID": 7, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", + "OrderID": 10318, + "EmployeeID": 8, + "OrderDate": "1996-10-01T00:00:00", + "RequiredDate": "1996-10-29T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", "ShipVia": 2, - "Freight": 3.01, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 4.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 30575, + "ShipPostalCode": 43000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 18000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10778, + "OrderID": 10321, "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 1, - "Freight": 6.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 13000, - "ShipCountry": "Sweden", + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-31T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 2, + "Freight": 3.43, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 80331, + "ShipPostalCode": 24000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, + "ProductID": 35, + "UnitPrice": 14.4, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10779, - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 2, - "Freight": 58.13, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "OrderID": 10473, + "EmployeeID": 1, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", + "ShipVia": 3, + "Freight": 16.37, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60471, + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10780, - "EmployeeID": 2, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-25T00:00:00", - "ShipVia": 1, - "Freight": 42.13, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10621, + "EmployeeID": 4, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 2, + "Freight": 23.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 90304, + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 35, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10781, - "EmployeeID": 2, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 3, - "Freight": 73.16, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 35, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10782, - "EmployeeID": 9, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 1.1, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10674, + "EmployeeID": 4, + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 2, + "Freight": 0.9, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60688, + "ShipPostalCode": 25000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 1, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10783, + "OrderID": 10749, "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", "ShippedDate": "1997-12-19T00:00:00", "ShipVia": 2, - "Freight": 124.98, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 61.53, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40198, + "ShipPostalCode": 33000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10784, - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 70.09, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10798, + "EmployeeID": 2, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 1, + "Freight": 2.33, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 50129, + "ShipPostalCode": 12000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 2, - "Discount": 0.16 + "Discount": 0 }, { "ProductID": 72, "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0.16 + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10785, - "EmployeeID": 1, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 3, - "Freight": 1.51, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", + "OrderID": 10829, + "EmployeeID": 9, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-10T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 1, + "Freight": 154.72, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 20759, + "ShipPostalCode": 13000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 10, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10786, - "EmployeeID": 8, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-16T00:00:00", - "ShippedDate": "1997-12-23T00:00:00", - "ShipVia": 1, - "Freight": 110.87, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10933, + "EmployeeID": 6, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 3, + "Freight": 54.15, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40216, + "ShipPostalCode": 24000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 42, - "Discount": 0.2 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0 } ] } ] }, { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", + "CustomerID": "PERIC", + "Company": "Pericles Comidas clásicas", + "ContactName": "Guillermo Fernández", + "ContactTitle": "Sales Representative", + "Address": "Calle Dr. Jorge Cash 321", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 552-3745", + "Fax": "(5) 545-3745", "Orders": [ { - "OrderID": 10787, - "EmployeeID": 2, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 249.93, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10322, + "EmployeeID": 7, + "OrderDate": "1996-10-04T00:00:00", + "RequiredDate": "1996-11-01T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 3, + "Freight": 0.4, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 52, + "UnitPrice": 5.6, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10788, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 42.7, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10354, + "EmployeeID": 8, + "OrderDate": "1996-11-14T00:00:00", + "RequiredDate": "1996-12-12T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 3, + "Freight": 53.8, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10789, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", + "OrderID": 10474, + "EmployeeID": 5, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-04-10T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", "ShipVia": 2, - "Freight": 100.6, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 83.49, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 30, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 15, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10790, - "EmployeeID": 6, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", + "OrderID": 10502, + "EmployeeID": 2, + "OrderDate": "1997-04-10T00:00:00", + "RequiredDate": "1997-05-08T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 1, - "Freight": 28.23, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 69.32, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 3, - "Discount": 0.16 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10995, + "EmployeeID": 1, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", + "ShipVia": 3, + "Freight": 46, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 51, + "UnitPrice": 53, "Quantity": 20, - "Discount": 0.16 + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10791, - "EmployeeID": 6, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-01T00:00:00", + "OrderID": 11073, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", "ShipVia": 2, - "Freight": 16.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 24.95, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, - "Discount": 0.06 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 } ] } ] }, { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", + "CustomerID": "KOENE", + "Company": "Königlich Essen", + "ContactName": "Philip Cramer", + "ContactTitle": "Sales Associate", + "Address": "Maubelstr. 90", + "City": "Brandenburg", + "PostalCode": 14776, + "Country": "Germany", + "Phone": "0555-09876", "Orders": [ { - "OrderID": 10792, - "EmployeeID": 1, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 3, - "Freight": 23.79, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10323, + "EmployeeID": 4, + "OrderDate": "1996-10-07T00:00:00", + "RequiredDate": "1996-11-04T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 4.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 18000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10793, - "EmployeeID": 3, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", + "OrderID": 10325, + "EmployeeID": 1, + "OrderDate": "1996-10-09T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", "ShipVia": 3, - "Freight": 4.52, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "Freight": 64.86, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 12, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ - { - "OrderID": 10794, - "EmployeeID": 6, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 1, - "Freight": 21.49, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ + }, { "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.2 + "UnitPrice": 18.6, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10795, + "OrderID": 10456, "EmployeeID": 8, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-20T00:00:00", + "OrderDate": "1997-02-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", "ShipVia": 2, - "Freight": 126.66, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 8.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 65, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 21, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10796, + "OrderID": 10468, "EmployeeID": 3, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 1, - "Freight": 26.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderDate": "1997-03-07T00:00:00", + "RequiredDate": "1997-04-04T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 44.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 21, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10506, + "EmployeeID": 9, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 21.19, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 14, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10542, + "EmployeeID": 1, + "OrderDate": "1997-05-20T00:00:00", + "RequiredDate": "1997-06-17T00:00:00", + "ShippedDate": "1997-05-26T00:00:00", + "ShipVia": 3, + "Freight": 10.95, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 24, - "Discount": 0.2 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10797, - "EmployeeID": 7, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", + "OrderID": 10630, + "EmployeeID": 1, + "OrderDate": "1997-08-13T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", "ShipVia": 2, - "Freight": 33.35, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, + "Freight": 32.35, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10798, - "EmployeeID": 2, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 1, - "Freight": 2.33, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 50129, - "ShipPostalCode": 12000, - "ShipCountry": "UK", + "OrderID": 10718, + "EmployeeID": 1, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 3, + "Freight": 170.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 2, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { "OrderID": 10799, "EmployeeID": 9, @@ -25282,723 +16209,469 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10800, - "EmployeeID": 1, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 3, - "Freight": 137.44, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 50000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 7, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ - { - "OrderID": 10801, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 2, - "Freight": 97.09, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10802, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", + "OrderID": 10817, + "EmployeeID": 3, + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", "ShipVia": 2, - "Freight": 257.26, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 306.07, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 38, + "UnitPrice": 263.5, "Quantity": 30, - "Discount": 0.25 + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 40, + "UnitPrice": 18.4, "Quantity": 60, - "Discount": 0.25 + "Discount": 0.16 }, { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 5, - "Discount": 0.25 + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10803, - "EmployeeID": 4, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-06T00:00:00", - "ShipVia": 1, - "Freight": 55.23, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderID": 10849, + "EmployeeID": 9, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 2, + "Freight": 0.56, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 24, - "Discount": 0.06 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 49, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 18, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10804, - "EmployeeID": 6, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", + "OrderID": 10893, + "EmployeeID": 9, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 2, - "Freight": 27.33, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 20000, - "ShipCountry": "UK", + "Freight": 77.78, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 36, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 24, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 4, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ - { - "OrderID": 10805, - "EmployeeID": 2, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 3, - "Freight": 237.34, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", - "OrderDetails": [ + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 24, + "Discount": 0 + }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 10, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10806, - "EmployeeID": 3, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 2, - "Freight": 22.11, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 11028, + "EmployeeID": 2, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 1, + "Freight": 29.59, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 2, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 24, + "Discount": 0 } ] } ] }, { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", + "CustomerID": "SAVEA", + "Company": "Save-a-lot Markets", + "ContactName": "Jose Pavarotti", "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", + "Address": "187 Suffolk Ln.", + "City": "Boise", + "Region": "ID", + "PostalCode": 83720, + "Country": "USA", + "Phone": "(208) 555-8097", "Orders": [ { - "OrderID": 10807, - "EmployeeID": 4, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10324, + "EmployeeID": 9, + "OrderDate": "1996-10-08T00:00:00", + "RequiredDate": "1996-11-05T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "Freight": 214.27, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 1, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 21, + "Discount": 0.16 + }, + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 70, + "Discount": 0.16 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 80, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10808, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", + "OrderID": 10393, + "EmployeeID": 1, + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", "ShipVia": 3, - "Freight": 45.53, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "Freight": 126.56, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 42, + "Discount": 0.25 + }, + { + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 7, + "Discount": 0.25 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 70, + "Discount": 0.25 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 32, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10809, - "EmployeeID": 7, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 1, - "Freight": 4.87, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderID": 10398, + "EmployeeID": 2, + "OrderDate": "1996-12-30T00:00:00", + "RequiredDate": "1997-01-27T00:00:00", + "ShippedDate": "1997-01-09T00:00:00", + "ShipVia": 3, + "Freight": 89.16, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 120, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 42000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ + }, { - "OrderID": 10810, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 3, - "Freight": 4.33, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10440, + "EmployeeID": 4, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-10T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 86.53, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 45, + "Discount": 0.16 + }, + { + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 49, + "Discount": 0.16 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 5, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 90, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10811, + "OrderID": 10452, "EmployeeID": 8, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", + "OrderDate": "1997-02-20T00:00:00", + "RequiredDate": "1997-03-20T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", "ShipVia": 1, - "Freight": 31.22, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 140.26, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 15, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 100, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10812, - "EmployeeID": 5, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 1, - "Freight": 59.78, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10510, + "EmployeeID": 6, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", + "ShipVia": 3, + "Freight": 367.63, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.1 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 40, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 36, "Discount": 0.1 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10813, - "EmployeeID": 1, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 1, - "Freight": 47.38, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10555, + "EmployeeID": 6, + "OrderDate": "1997-06-02T00:00:00", + "RequiredDate": "1997-06-30T00:00:00", + "ShippedDate": "1997-06-04T00:00:00", + "ShipVia": 3, + "Freight": 252.49, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 46, - "UnitPrice": 12, + "ProductID": 19, + "UnitPrice": 9.2, "Quantity": 35, - "Discount": 0 + "Discount": 0.2 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 18, + "Discount": 0.2 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10814, - "EmployeeID": 3, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 130.94, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10603, + "EmployeeID": 8, + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 2, + "Freight": 48.77, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 48, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 8, - "Discount": 0.16 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10815, - "EmployeeID": 2, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 14.62, + "OrderID": 10607, + "EmployeeID": 5, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 1, + "Freight": 200.24, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -26006,2194 +16679,1895 @@ "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 100, + "Discount": 0 + }, { "ProductID": 33, "UnitPrice": 2.5, - "Quantity": 16, + "Quantity": 14, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ - { - "OrderID": 10816, - "EmployeeID": 4, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-02-03T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 2, - "Freight": 719.78, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 42, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10817, - "EmployeeID": 3, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", + "OrderID": 10612, + "EmployeeID": 1, + "OrderDate": "1997-07-28T00:00:00", + "RequiredDate": "1997-08-25T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 306.07, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 544.08, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0.16 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 40, + "Discount": 0 }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0 + } + ] + }, + { + "OrderID": 10627, + "EmployeeID": 8, + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 107.46, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 25, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10818, - "EmployeeID": 7, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 3, - "Freight": 65.48, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10657, + "EmployeeID": 2, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", + "ShipVia": 2, + "Freight": 352.69, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 50, "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 20, + "Quantity": 24, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10819, - "EmployeeID": 2, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 19.76, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ + }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 7, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10820, - "EmployeeID": 3, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 37.52, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ + }, { "ProductID": 56, "UnitPrice": 38, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10821, - "EmployeeID": 1, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-15T00:00:00", - "ShipVia": 1, - "Freight": 36.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, + "OrderID": 10678, + "EmployeeID": 7, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", + "ShipVia": 3, + "Freight": 388.98, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 100, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 6, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "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", - "Orders": [ - { - "OrderID": 10822, - "EmployeeID": 6, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 7, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 120, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10823, - "EmployeeID": 5, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 163.97, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10700, + "EmployeeID": 3, + "OrderDate": "1997-10-10T00:00:00", + "RequiredDate": "1997-11-07T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", + "ShipVia": 1, + "Freight": 65.1, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 40, - "Discount": 0.1 + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 46000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10824, - "EmployeeID": 8, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 1.23, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 23000, - "ShipCountry": "Sweden", + "OrderID": 10711, + "EmployeeID": 5, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 2, + "Freight": 52.41, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0 + }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 12, + "Quantity": 42, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 9, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 120, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10825, + "OrderID": 10713, "EmployeeID": 1, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", + "OrderDate": "1997-10-22T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-24T00:00:00", "ShipVia": 1, - "Freight": 79.25, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 167.05, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0 + }, { "ProductID": 26, "UnitPrice": 31.23, - "Quantity": 12, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 20, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 110, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10826, - "EmployeeID": 6, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", + "OrderID": 10722, + "EmployeeID": 8, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-04T00:00:00", "ShipVia": 1, - "Freight": 7.09, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 74.58, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 3, + "Discount": 0 + }, { "ProductID": 31, "UnitPrice": 12.5, - "Quantity": 35, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10827, - "EmployeeID": 1, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", - "ShipVia": 2, - "Freight": 63.54, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10748, + "EmployeeID": 3, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", + "ShipVia": 1, + "Freight": 232.55, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 44, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, + "Discount": 0 + } + ] + }, + { + "OrderID": 10757, + "EmployeeID": 6, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 1, + "Freight": 8.19, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 15, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10828, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 1, - "Freight": 90.85, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10815, + "EmployeeID": 2, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 3, + "Freight": 14.62, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, "Discount": 0 + } + ] + }, + { + "OrderID": 10847, + "EmployeeID": 4, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 3, + "Freight": 487.57, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.2 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 2, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0.2 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 60, + "Discount": 0.2 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 36, + "Discount": 0.2 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 45, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 55, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10829, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-10T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 1, - "Freight": 154.72, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 20759, - "ShipPostalCode": 13000, - "ShipCountry": "UK", + "OrderID": 10882, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 3, + "Freight": 23.1, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 8, - "UnitPrice": 40, + "ProductID": 49, + "UnitPrice": 20, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 32, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10894, + "EmployeeID": 1, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 1, + "Freight": 116.13, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { "ProductID": 13, "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 + "Quantity": 28, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 120, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10830, - "EmployeeID": 4, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", + "OrderID": 10941, + "EmployeeID": 7, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 81.83, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "Freight": 400.81, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 28, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 44, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 30, - "Discount": 0 + "Discount": 0.25 }, { "ProductID": 68, "UnitPrice": 12.5, - "Quantity": 24, + "Quantity": 80, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10831, - "EmployeeID": 3, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderID": 10983, + "EmployeeID": 2, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", "ShipVia": 2, - "Freight": 72.19, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 657.54, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 8, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 84, + "Discount": 0.16 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 9, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10832, - "EmployeeID": 2, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 43.26, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 11002, + "EmployeeID": 4, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 1, + "Freight": 141.16, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 13, "UnitPrice": 6, - "Quantity": 3, - "Discount": 0.2 + "Quantity": 56, + "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0.2 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 3, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10833, - "EmployeeID": 6, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderID": 11030, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", "ShipVia": 2, - "Freight": 71.49, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 830.75, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 9, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 100, + "Discount": 0.25 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 9, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10834, - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 3, - "Freight": 29.78, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 70, + "Discount": 0 + }, { "ProductID": 29, "UnitPrice": 123.79, - "Quantity": 8, - "Discount": 0.06 + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 100, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10835, + "OrderID": 11064, "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 3, - "Freight": 69.53, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 30.09, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 77, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 55, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "BOLID", + "Company": "Bólido Comidas preparadas", + "ContactName": "Martín Sommer", + "ContactTitle": "Owner", + "Address": "C/ Araquil, 67", + "City": "Madrid", + "PostalCode": 28023, + "Country": "Spain", + "Phone": "(91) 555 22 82", + "Fax": "(91) 555 91 99", "Orders": [ { - "OrderID": 10836, - "EmployeeID": 7, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 1, - "Freight": 411.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10326, + "EmployeeID": 4, + "OrderDate": "1996-10-10T00:00:00", + "RequiredDate": "1996-11-07T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 2, + "Freight": 77.92, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 52, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 6, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 24, "Discount": 0 }, { "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 24, + "UnitPrice": 15.6, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 60, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 50, "Discount": 0 + } + ] + }, + { + "OrderID": 10801, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 2, + "Freight": 97.09, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10970, + "EmployeeID": 9, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 1, + "Freight": 16.16, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 40, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "FURIB", + "Company": "Furia Bacalhau e Frutos do Mar", + "ContactName": "Lino Rodriguez", + "ContactTitle": "Sales Manager", + "Address": "Jardim das rosas n. 32", + "City": "Lisboa", + "PostalCode": 1675, + "Country": "Portugal", + "Phone": "(1) 354-2534", + "Fax": "(1) 354-2535", "Orders": [ { - "OrderID": 10837, - "EmployeeID": 9, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderID": 10328, + "EmployeeID": 4, + "OrderDate": "1996-10-14T00:00:00", + "RequiredDate": "1996-11-11T00:00:00", + "ShippedDate": "1996-10-17T00:00:00", "ShipVia": 3, - "Freight": 13.32, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 44000, - "ShipCountry": "Sweden", + "Freight": 87.03, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 65, + "UnitPrice": 16.8, "Quantity": 40, - "Discount": 0.25 + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10838, + "OrderID": 10352, "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderDate": "1996-11-12T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-18T00:00:00", "ShipVia": 3, - "Freight": 59.28, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 1.3, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10839, - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-22T00:00:00", - "ShipVia": 3, - "Freight": 35.43, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "OrderID": 10464, + "EmployeeID": 4, + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 2, + "Freight": 89, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 16, + "Discount": 0.2 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, "Quantity": 30, - "Discount": 0.1 + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10840, - "EmployeeID": 4, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", - "ShipVia": 2, - "Freight": 2.71, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10491, + "EmployeeID": 8, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-08T00:00:00", + "ShipVia": 3, + "Freight": 16.96, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10841, - "EmployeeID": 5, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 2, - "Freight": 424.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10551, + "EmployeeID": 4, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 3, + "Freight": 72.95, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 50, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 40, "Discount": 0 + } + ] + }, + { + "OrderID": 10604, + "EmployeeID": 1, + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", + "ShipVia": 1, + "Freight": 7.46, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 6, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10842, + "OrderID": 10664, "EmployeeID": 1, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", "ShipVia": 3, - "Freight": 54.42, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 1.27, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 5, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 12, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10843, - "EmployeeID": 4, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 9.26, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10963, + "EmployeeID": 9, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 3, + "Freight": 2.7, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", + "CustomerID": "BONAP", + "Company": "Bon app'", + "ContactName": "Laurence Lebihan", + "ContactTitle": "Owner", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", "Orders": [ { - "OrderID": 10844, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 25.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10331, + "EmployeeID": 9, + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-27T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", + "ShipVia": 1, + "Freight": 10.19, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 35, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10845, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 212.98, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10340, + "EmployeeID": 1, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 166.31, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.1 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 42, - "Discount": 0.1 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 48, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 40, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10846, - "EmployeeID": 2, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 56.46, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10362, + "EmployeeID": 3, + "OrderDate": "1996-11-25T00:00:00", + "RequiredDate": "1996-12-23T00:00:00", + "ShippedDate": "1996-11-28T00:00:00", + "ShipVia": 1, + "Freight": 96.04, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 21, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10847, + "OrderID": 10470, "EmployeeID": 4, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 3, - "Freight": 487.57, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 2, + "Freight": 64.56, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.2 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 60, - "Discount": 0.2 - }, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10511, + "EmployeeID": 4, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 350.64, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 36, - "Discount": 0.2 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 55, - "Discount": 0.2 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ + }, { - "OrderID": 10848, - "EmployeeID": 7, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", + "OrderID": 10525, + "EmployeeID": 1, + "OrderDate": "1997-05-02T00:00:00", + "RequiredDate": "1997-05-30T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", "ShipVia": 2, - "Freight": 38.24, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 39000, - "ShipCountry": "UK", + "Freight": 11.06, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 30, "Discount": 0 }, { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 3, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10849, - "EmployeeID": 9, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10663, + "EmployeeID": 2, + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-09-24T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 113.15, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 49, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 18, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10850, - "EmployeeID": 1, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10715, + "EmployeeID": 3, + "OrderDate": "1997-10-23T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 1, - "Freight": 49.19, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, + "Freight": 63.2, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 4, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 71, + "UnitPrice": 21.5, "Quantity": 30, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10851, + "OrderID": 10730, "EmployeeID": 5, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-23T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderDate": "1997-11-05T00:00:00", + "RequiredDate": "1997-12-03T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", "ShipVia": 1, - "Freight": 160.55, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 20.12, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, "Discount": 0.06 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 3, "Discount": 0.06 }, { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 65, + "UnitPrice": 21.05, "Quantity": 10, "Discount": 0.06 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, - "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10852, - "EmployeeID": 8, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10732, + "EmployeeID": 3, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", "ShipVia": 1, - "Freight": 174.05, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 16.97, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 + } + ] + }, + { + "OrderID": 10755, + "EmployeeID": 4, + "OrderDate": "1997-11-26T00:00:00", + "RequiredDate": "1997-12-24T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", + "ShipVia": 2, + "Freight": 16.71, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 14, + "Discount": 0.25 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 25, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10827, + "EmployeeID": 1, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 2, + "Freight": 63.54, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 50, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10853, + "OrderID": 10871, "EmployeeID": 9, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", "ShipVia": 2, - "Freight": 53.83, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "Freight": 112.27, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, - "Discount": 0 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10854, - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-05T00:00:00", - "ShipVia": 2, - "Freight": 100.22, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10876, + "EmployeeID": 7, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 60.42, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 100, - "Discount": 0.16 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10855, - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", + "OrderID": 10932, + "EmployeeID": 8, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 1, - "Freight": 170.97, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 134.64, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 16, "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0 + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 14, + "Discount": 0.1 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 24, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10940, + "EmployeeID": 8, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 3, + "Freight": 19.77, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10856, - "EmployeeID": 3, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", + "OrderID": 11076, + "EmployeeID": 4, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", "ShipVia": 2, - "Freight": 58.43, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "Freight": 38.28, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, + "Discount": 0.25 + }, + { + "ProductID": 14, + "UnitPrice": 23.25, "Quantity": 20, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, + "Discount": 0.25 } ] } ] }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 33000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "MEREP", + "Company": "Mère Paillarde", + "ContactName": "Jean Fresnière", + "ContactTitle": "Marketing Assistant", + "Address": "43 rue St. Laurent", + "City": "Montréal", + "Region": "Québec", + "PostalCode": 49000, + "Country": "Canada", + "Phone": "(514) 555-8054", + "Fax": "(514) 555-8055", "Orders": [ { - "OrderID": 10857, - "EmployeeID": 8, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", + "OrderID": 10332, + "EmployeeID": 3, + "OrderDate": "1996-10-17T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", "ShipVia": 2, - "Freight": 188.85, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 43000, - "ShipCountry": "Sweden", + "Freight": 52.84, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 36000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0.25 + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 16, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne d'abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de l'Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ + }, { - "OrderID": 10858, + "OrderID": 10339, "EmployeeID": 2, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", - "ShipVia": 1, - "Freight": 52.51, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "OrderDate": "1996-10-28T00:00:00", + "RequiredDate": "1996-11-25T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", + "ShipVia": 2, + "Freight": 15.66, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 10, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10859, + "OrderID": 10376, "EmployeeID": 1, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", "ShipVia": 2, - "Freight": 76.1, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 20.39, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 11000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 35, - "Discount": 0.25 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 42, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10860, - "EmployeeID": 3, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 3, - "Freight": 19.26, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10424, + "EmployeeID": 7, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-20T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 2, + "Freight": 370.61, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 49, + "Discount": 0.2 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10861, - "EmployeeID": 4, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-02-27T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", - "ShipVia": 2, - "Freight": 14.93, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10439, + "EmployeeID": 6, + "OrderDate": "1997-02-07T00:00:00", + "RequiredDate": "1997-03-07T00:00:00", + "ShippedDate": "1997-02-10T00:00:00", + "ShipVia": 3, + "Freight": 4.07, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 42, + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 35, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10505, + "EmployeeID": 3, + "OrderDate": "1997-04-14T00:00:00", + "RequiredDate": "1997-05-12T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 7.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 11000, + "ShipCountry": "Canada", + "OrderDetails": [ { "ProductID": 62, "UnitPrice": 49.3, @@ -28201,132 +18575,195 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10862, + "OrderID": 10565, "EmployeeID": 8, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderDate": "1997-06-11T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", "ShipVia": 2, - "Freight": 53.23, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 7.15, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 24000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 18, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10570, + "EmployeeID": 3, + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-19T00:00:00", + "ShipVia": 3, + "Freight": 188.99, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { "ProductID": 11, "UnitPrice": 21, - "Quantity": 25, - "Discount": 0 + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10863, + "OrderID": 10590, "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 3, + "Freight": 44.77, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 47000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 60, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10605, + "EmployeeID": 1, + "OrderDate": "1997-07-21T00:00:00", + "RequiredDate": "1997-08-18T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", "ShipVia": 2, - "Freight": 30.26, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 379.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 43000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 70, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10618, + "EmployeeID": 1, + "OrderDate": "1997-08-01T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 1, + "Freight": 154.68, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 49000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, "Quantity": 20, - "Discount": 0.16 + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10864, - "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", + "OrderID": 10724, + "EmployeeID": 8, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 3.04, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "Freight": 57.75, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 39000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] @@ -28334,372 +18771,367 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", + "CustomerID": "PRINI", + "Company": "Princesa Isabel Vinhos", + "ContactName": "Isabel de Castro", + "ContactTitle": "Sales Representative", + "Address": "Estrada da saúde n. 58", + "City": "Lisboa", + "PostalCode": 1756, + "Country": "Portugal", + "Phone": "(1) 356-5634", "Orders": [ { - "OrderID": 10865, - "EmployeeID": 2, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 1, - "Freight": 348.14, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10336, + "EmployeeID": 7, + "OrderDate": "1996-10-23T00:00:00", + "RequiredDate": "1996-11-20T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", + "ShipVia": 2, + "Freight": 15.51, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, - "Discount": 0.06 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 18, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10866, + "OrderID": 10397, "EmployeeID": 5, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-03T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-24T00:00:00", + "ShippedDate": "1997-01-02T00:00:00", "ShipVia": 1, - "Freight": 109.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "Freight": 60.26, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 6, - "Discount": 0.25 - }, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10433, + "EmployeeID": 3, + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 73.83, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 28, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10867, - "EmployeeID": 6, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 1, - "Freight": 1.93, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10477, + "EmployeeID": 5, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", + "ShipVia": 2, + "Freight": 13.02, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10868, - "EmployeeID": 7, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", + "OrderID": 11007, + "EmployeeID": 8, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 191.27, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 202.24, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 42, - "Discount": 0.1 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 14, + "Discount": 0 } ] } ] }, { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 34000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", + "CustomerID": "SIMOB", + "Company": "Simons bistro", + "ContactName": "Jytte Petersen", + "ContactTitle": "Owner", + "Address": "Vinbæltet 34", + "City": "Kobenhavn", + "PostalCode": 1734, + "Country": "Denmark", + "Phone": "31 12 34 56", + "Fax": "31 13 35 57", "Orders": [ { - "OrderID": 10869, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 1, - "Freight": 143.28, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "OrderID": 10341, + "EmployeeID": 7, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", + "ShipVia": 3, + "Freight": 26.78, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 - }, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10417, + "EmployeeID": 4, + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-28T00:00:00", + "ShipVia": 3, + "Freight": 70.29, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 50, "Discount": 0 }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 2, + "Discount": 0.25 + }, { "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "UnitPrice": 10, + "Quantity": 36, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10870, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", + "OrderID": 10556, + "EmployeeID": 2, + "OrderDate": "1997-06-03T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 1, + "Freight": 9.8, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10642, + "EmployeeID": 7, + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-09-05T00:00:00", "ShipVia": 3, - "Freight": 12.04, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 41.89, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10669, + "EmployeeID": 2, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", + "ShipVia": 1, + "Freight": 24.39, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 2, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10871, - "EmployeeID": 9, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", + "OrderID": 10802, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", "ShipVia": 2, - "Freight": 112.27, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 257.26, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, + "Discount": 0.25 }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ - { - "OrderID": 10872, - "EmployeeID": 5, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 2, - "Freight": 175.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", - "OrderDetails": [ { "ProductID": 55, "UnitPrice": 24, - "Quantity": 10, - "Discount": 0.06 + "Quantity": 60, + "Discount": 0.25 }, { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.06 - }, + "Quantity": 5, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11074, + "EmployeeID": 7, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShipVia": 2, + "Freight": 18.44, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, "Discount": 0.06 } ] @@ -28707,292 +19139,246 @@ ] }, { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", + "CustomerID": "FAMIA", + "Company": "Familia Arquibaldo", + "ContactName": "Aria Cruz", + "ContactTitle": "Marketing Assistant", + "Address": "Rua Orós, 92", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5442, + "Country": "Brazil", + "Phone": "(11) 555-9857", "Orders": [ { - "OrderID": 10873, + "OrderID": 10347, "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 1, - "Freight": 0.82, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderDate": "1996-11-06T00:00:00", + "RequiredDate": "1996-12-04T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 3.1, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 50, + "Discount": 0.16 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 4, "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10874, - "EmployeeID": 5, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 2, - "Freight": 19.58, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10386, + "EmployeeID": 9, + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-25T00:00:00", + "ShipVia": 3, + "Freight": 13.99, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 34, + "UnitPrice": 11.2, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10875, - "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 2, - "Freight": 32.37, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 37000, - "ShipCountry": "Sweden", + "OrderID": 10414, + "EmployeeID": 2, + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-17T00:00:00", + "ShipVia": 3, + "Freight": 21.48, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 21, - "Discount": 0.1 + "UnitPrice": 7.3, + "Quantity": 18, + "Discount": 0.06 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10876, + "OrderID": 10512, "EmployeeID": 7, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 3, - "Freight": 60.42, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderDate": "1997-04-21T00:00:00", + "RequiredDate": "1997-05-19T00:00:00", + "ShippedDate": "1997-04-24T00:00:00", + "ShipVia": 2, + "Freight": 3.53, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.16 + }, { "ProductID": 46, "UnitPrice": 12, - "Quantity": 21, - "Discount": 0 + "Quantity": 9, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, - "Discount": 0 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.16 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10877, - "EmployeeID": 1, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", + "OrderID": 10581, + "EmployeeID": 3, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-02T00:00:00", "ShipVia": 1, - "Freight": 38.06, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, + "Freight": 3.01, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10878, - "EmployeeID": 4, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 1, - "Freight": 46.69, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10650, + "EmployeeID": 5, + "OrderDate": "1997-08-29T00:00:00", + "RequiredDate": "1997-09-26T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 176.81, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, + "Discount": 0 + } + ] + }, { - "OrderID": 10879, - "EmployeeID": 3, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderID": 10725, + "EmployeeID": 4, + "OrderDate": "1997-10-31T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 3, - "Freight": 8.5, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 10.83, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 12, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] @@ -29000,1554 +19386,1463 @@ ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 41000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "LAMAI", + "Company": "La maison d'Asie", + "ContactName": "Annette Roulet", + "ContactTitle": "Sales Manager", + "Address": "1 rue Alsace-Lorraine", + "City": "Toulouse", + "PostalCode": 31000, + "Country": "France", + "Phone": "61.77.61.10", + "Fax": "61.77.61.11", "Orders": [ { - "OrderID": 10880, - "EmployeeID": 7, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", + "OrderID": 10350, + "EmployeeID": 6, + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 64.19, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 18, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10358, + "EmployeeID": 5, + "OrderDate": "1996-11-20T00:00:00", + "RequiredDate": "1996-12-18T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", "ShipVia": 1, - "Freight": 88.01, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 26000, - "ShipCountry": "Sweden", + "Freight": 19.64, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10881, - "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", + "OrderID": 10371, + "EmployeeID": 1, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", "ShipVia": 1, - "Freight": 2.84, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 0.45, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 10, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 6, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10413, + "EmployeeID": 3, + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 2, + "Freight": 95.66, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, + { + "OrderID": 10425, + "EmployeeID": 6, + "OrderDate": "1997-01-24T00:00:00", + "RequiredDate": "1997-02-21T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 2, + "Freight": 7.93, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 10, + "Discount": 0.25 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 + } + ] + }, { - "OrderID": 10882, + "OrderID": 10454, "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-25T00:00:00", "ShipVia": 3, - "Freight": 23.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 2.74, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 25, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 49, - "UnitPrice": 20, + "ProductID": 33, + "UnitPrice": 2, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 32, - "Discount": 0.16 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10883, - "EmployeeID": 8, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", + "OrderID": 10493, + "EmployeeID": 4, + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", "ShipVia": 3, - "Freight": 0.53, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 10.64, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 8, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10884, - "EmployeeID": 4, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", - "ShipVia": 2, - "Freight": 90.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10500, + "EmployeeID": 6, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-17T00:00:00", + "ShipVia": 1, + "Freight": 42.68, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 12, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 21, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, "Discount": 0.06 - }, + } + ] + }, + { + "OrderID": 10610, + "EmployeeID": 8, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 1, + "Freight": 26.78, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10885, - "EmployeeID": 6, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 3, - "Freight": 5.64, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10631, + "EmployeeID": 8, + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-15T00:00:00", + "ShipVia": 1, + "Freight": 0.87, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 8, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10787, + "EmployeeID": 2, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 249.93, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10832, + "EmployeeID": 2, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 43.26, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 25, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10886, - "EmployeeID": 1, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 1, - "Freight": 4.99, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10923, + "EmployeeID": 7, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 68.26, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 40, - "Discount": 0 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10887, - "EmployeeID": 8, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", + "OrderID": 11051, + "EmployeeID": 7, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", "ShipVia": 3, - "Freight": 1.25, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "Freight": 2.79, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", + "CustomerID": "PICCO", + "Company": "Piccolo und mehr", + "ContactName": "Georg Pipps", "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "Address": "Geislweg 14", + "City": "Salzburg", + "PostalCode": 5020, + "Country": "Austria", + "Phone": "6562-9722", + "Fax": "6562-9723", "Orders": [ { - "OrderID": 10888, - "EmployeeID": 1, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 2, - "Freight": 51.87, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10353, + "EmployeeID": 7, + "OrderDate": "1996-11-13T00:00:00", + "RequiredDate": "1996-12-11T00:00:00", + "ShippedDate": "1996-11-25T00:00:00", + "ShipVia": 3, + "Freight": 360.63, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10392, + "EmployeeID": 2, + "OrderDate": "1996-12-24T00:00:00", + "RequiredDate": "1997-01-21T00:00:00", + "ShippedDate": "1997-01-01T00:00:00", + "ShipVia": 3, + "Freight": 122.46, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 50, + "Discount": 0 + } + ] + }, + { + "OrderID": 10427, + "EmployeeID": 4, + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 2, + "Freight": 31.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10889, - "EmployeeID": 9, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 3, - "Freight": 280.61, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10489, + "EmployeeID": 6, + "OrderDate": "1997-03-28T00:00:00", + "RequiredDate": "1997-04-25T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", + "ShipVia": 2, + "Freight": 5.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10890, - "EmployeeID": 7, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 32.76, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10530, + "EmployeeID": 3, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", + "ShipVia": 2, + "Freight": 339.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 17, "UnitPrice": 39, - "Quantity": 15, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10891, + "OrderID": 10597, "EmployeeID": 7, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 20.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", + "ShipVia": 3, + "Freight": 35.12, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 46000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10892, - "EmployeeID": 4, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 120.27, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 30000, - "ShipCountry": "Belgium", + "OrderID": 10686, + "EmployeeID": 2, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-08T00:00:00", + "ShipVia": 1, + "Freight": 96.5, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10893, - "EmployeeID": 9, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 2, - "Freight": 77.78, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10747, + "EmployeeID": 6, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-26T00:00:00", + "ShipVia": 1, + "Freight": 117.33, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 24, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 35, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10844, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", + "ShipVia": 2, + "Freight": 25.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10894, - "EmployeeID": 1, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 1, - "Freight": 116.13, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11053, + "EmployeeID": 2, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 28, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 120, - "Discount": 0.06 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 25, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "AROUT", + "Company": "Around the Horn", + "ContactName": "Thomas Hardy", + "ContactTitle": "Sales Representative", + "Address": "120 Hanover Sq.", + "City": "London", + "PostalCode": 19000, + "Country": "UK", + "Phone": "(171) 555-7788", + "Fax": "(171) 555-6750", "Orders": [ { - "OrderID": 10895, - "EmployeeID": 3, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", + "OrderID": 10355, + "EmployeeID": 6, + "OrderDate": "1996-11-15T00:00:00", + "RequiredDate": "1996-12-13T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", "ShipVia": 1, - "Freight": 162.75, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 41.95, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 110, + "UnitPrice": 3.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 45, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10383, + "EmployeeID": 8, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-18T00:00:00", + "ShipVia": 3, + "Freight": 34.24, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 36000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 91, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 100, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 29000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10896, - "EmployeeID": 7, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 32.45, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 15000, - "ShipCountry": "Belgium", + "OrderID": 10453, + "EmployeeID": 1, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", + "ShipVia": 2, + "Freight": 25.36, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 46000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 48, + "UnitPrice": 10.2, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 16, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10897, - "EmployeeID": 3, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-25T00:00:00", + "OrderID": 10558, + "EmployeeID": 1, + "OrderDate": "1997-06-04T00:00:00", + "RequiredDate": "1997-07-02T00:00:00", + "ShippedDate": "1997-06-10T00:00:00", "ShipVia": 2, - "Freight": 603.54, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 72.97, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 27000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 80, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 36, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10898, + "OrderID": 10707, "EmployeeID": 4, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 1.27, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 3, + "Freight": 21.74, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10899, - "EmployeeID": 5, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", + "OrderID": 10741, + "EmployeeID": 4, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 1.21, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 10.96, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 13000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10900, + "OrderID": 10743, "EmployeeID": 1, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", "ShipVia": 2, - "Freight": 1.66, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 48000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 28, + "Discount": 0.06 + } + ] + }, { - "OrderID": 10901, - "EmployeeID": 4, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", - "ShipVia": 1, - "Freight": 62.09, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10768, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 2, + "Freight": 146.32, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 }, { "ProductID": 71, "UnitPrice": 21.5, - "Quantity": 30, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 25000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10902, - "EmployeeID": 1, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 1, - "Freight": 44.15, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 33000, - "ShipCountry": "Sweden", + "OrderID": 10793, + "EmployeeID": 3, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", + "ShipVia": 3, + "Freight": 4.52, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10903, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 36.71, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10864, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 2, + "Freight": 3.04, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10904, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 162.95, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10920, + "EmployeeID": 4, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", + "ShipVia": 2, + "Freight": 29.61, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 35, + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10905, + "OrderID": 10953, "EmployeeID": 9, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-25T00:00:00", "ShipVia": 2, - "Freight": 13.72, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 35000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10906, - "EmployeeID": 4, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 3, - "Freight": 26.29, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 11016, + "EmployeeID": 9, + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 2, + "Freight": 33.8, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 16, + "Discount": 0 } ] } ] }, { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", + "CustomerID": "SEVES", + "Company": "Seven Seas Imports", + "ContactName": "Hari Kumar", + "ContactTitle": "Sales Manager", + "Address": "90 Wadhurst Rd.", + "City": "London", + "PostalCode": 32000, + "Country": "UK", + "Phone": "(171) 555-1717", + "Fax": "(171) 555-5646", "Orders": [ { - "OrderID": 10907, - "EmployeeID": 6, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-25T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", + "OrderID": 10359, + "EmployeeID": 5, + "OrderDate": "1996-11-21T00:00:00", + "RequiredDate": "1996-12-19T00:00:00", + "ShippedDate": "1996-11-26T00:00:00", "ShipVia": 3, - "Freight": 9.19, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 288.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 14, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 56, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 70, + "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10908, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 32.96, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10377, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 22.21, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 41000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 20, - "Discount": 0.06 + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 14, - "Discount": 0.06 + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10909, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-10T00:00:00", - "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10388, + "EmployeeID": 2, + "OrderDate": "1996-12-19T00:00:00", + "RequiredDate": "1997-01-16T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", + "ShipVia": 1, + "Freight": 34.86, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 45000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 12, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 7.6, + "Quantity": 15, + "Discount": 0.2 + }, + { + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10472, + "EmployeeID": 8, + "OrderDate": "1997-03-12T00:00:00", + "RequiredDate": "1997-04-09T00:00:00", + "ShippedDate": "1997-03-19T00:00:00", + "ShipVia": 1, + "Freight": 4.2, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 33000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 80, + "Discount": 0.06 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 5, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10910, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 38.11, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10523, + "EmployeeID": 7, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 2, + "Freight": 77.63, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 42000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 10, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 6, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10911, + "OrderID": 10547, "EmployeeID": 3, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", - "ShipVia": 1, - "Freight": 38.19, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", + "ShipVia": 2, + "Freight": 178.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 48000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 12, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10912, - "EmployeeID": 2, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 2, - "Freight": 580.91, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10800, + "EmployeeID": 1, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 3, + "Freight": 137.44, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 50000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 11, "UnitPrice": 21, - "Quantity": 40, - "Discount": 0.25 + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 7, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10913, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 1, - "Freight": 33.05, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10804, + "EmployeeID": 6, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", + "ShipVia": 2, + "Freight": 27.33, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 20000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 4, + "Discount": 0.16 } ] }, { - "OrderID": 10914, - "EmployeeID": 6, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", + "OrderID": 10869, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", "ShipVia": 1, - "Freight": 21.19, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 143.28, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 25, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ - { - "OrderID": 10915, - "EmployeeID": 2, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 2, - "Freight": 3.51, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 17, - "UnitPrice": 39, + "ProductID": 11, + "UnitPrice": 21, "Quantity": 10, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 } ] @@ -30555,183 +20850,169 @@ ] }, { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", + "CustomerID": "DRACD", + "Company": "Drachenblut Delikatessen", + "ContactName": "Sven Ottlieb", + "ContactTitle": "Order Administrator", + "Address": "Walserweg 21", + "City": "Aachen", + "PostalCode": 52066, + "Country": "Germany", + "Phone": "0241-039123", + "Fax": "0241-059428", "Orders": [ { - "OrderID": 10916, - "EmployeeID": 1, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 2, - "Freight": 63.77, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10363, + "EmployeeID": 4, + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1996-12-24T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", + "ShipVia": 3, + "Freight": 30.54, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 6, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 6, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10917, - "EmployeeID": 4, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 2, - "Freight": 8.29, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10391, + "EmployeeID": 3, + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-31T00:00:00", + "ShipVia": 3, + "Freight": 5.45, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 1, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10797, + "EmployeeID": 7, + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 2, + "Freight": 33.35, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 42000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10918, - "EmployeeID": 3, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 3, - "Freight": 48.83, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10825, + "EmployeeID": 1, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 1, + "Freight": 79.25, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10919, - "EmployeeID": 2, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 2, - "Freight": 19.8, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 11036, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 3, + "Freight": 149.47, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 24, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 24, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11067, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 7.98, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 20, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, "Discount": 0 } ] @@ -30739,316 +21020,267 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", + "CustomerID": "EASTC", + "Company": "Eastern Connection", + "ContactName": "Ann Devon", + "ContactTitle": "Sales Agent", + "Address": "35 King George", "City": "London", - "PostalCode": 34000, + "PostalCode": 20000, "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Phone": "(171) 555-0297", + "Fax": "(171) 555-3373", "Orders": [ { - "OrderID": 10920, - "EmployeeID": 4, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 2, - "Freight": 29.61, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 28000, + "OrderID": 10364, + "EmployeeID": 1, + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", + "ShipVia": 1, + "Freight": 71.97, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 20000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 24, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10921, + "OrderID": 10400, "EmployeeID": 1, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 1, - "Freight": 176.48, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 3, + "Freight": 83.93, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 21, + "Discount": 0 + }, { "ProductID": 35, - "UnitPrice": 18, - "Quantity": 10, + "UnitPrice": 14.4, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 40, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10922, - "EmployeeID": 5, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", + "OrderID": 10532, + "EmployeeID": 7, + "OrderDate": "1997-05-09T00:00:00", + "RequiredDate": "1997-06-06T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", "ShipVia": 3, - "Freight": 62.74, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 74.46, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 45000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10726, + "EmployeeID": 4, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 16.56, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 21000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 15, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10923, - "EmployeeID": 7, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 3, - "Freight": 68.26, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10987, + "EmployeeID": 8, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", + "ShipVia": 1, + "Freight": 185.48, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 30000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, + "Discount": 0 }, { "ProductID": 43, "UnitPrice": 46, - "Quantity": 10, - "Discount": 0.2 + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0.2 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 11000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10924, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 2, - "Freight": 151.52, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", + "OrderID": 11024, + "EmployeeID": 4, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 74.36, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 33, + "UnitPrice": 2.5, "Quantity": 30, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 6, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10925, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 1, - "Freight": 2.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 11047, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 46.62, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 42000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 25, - "Discount": 0.16 + "Discount": 0.25 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10926, - "EmployeeID": 4, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 3, - "Freight": 39.92, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "OrderID": 11056, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 2, + "Freight": 278.96, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 39000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 } ] @@ -31056,329 +21288,226 @@ ] }, { - "CustomerID": "LACOR", - "Company": "La corne d'abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de l'Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", + "CustomerID": "ANTON", + "Company": "Antonio Moreno Taquería", + "ContactName": "Antonio Moreno", + "ContactTitle": "Owner", + "Address": "Mataderos 2312", + "City": "México D.F.", + "PostalCode": 5023, + "Country": "Mexico", + "Phone": "(5) 555-3932", "Orders": [ { - "OrderID": 10927, - "EmployeeID": 4, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 19.79, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "OrderID": 10365, + "EmployeeID": 3, + "OrderDate": "1996-11-27T00:00:00", + "RequiredDate": "1996-12-25T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 22, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10928, - "EmployeeID": 1, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10507, + "EmployeeID": 7, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-04-22T00:00:00", "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "Freight": 47.45, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0 + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10929, - "EmployeeID": 6, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", + "OrderID": 10535, + "EmployeeID": 4, + "OrderDate": "1997-05-13T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-21T00:00:00", "ShipVia": 1, - "Freight": 33.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 15.64, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 49, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 59, + "UnitPrice": 55, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10930, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10573, + "EmployeeID": 7, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-20T00:00:00", "ShipVia": 3, - "Freight": 15.55, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 84.84, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 36, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 25, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10931, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 2, - "Freight": 13.6, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10677, + "EmployeeID": 1, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 3, + "Freight": 4.03, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 42, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 30, "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10932, - "EmployeeID": 8, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", - "ShipVia": 1, - "Freight": 134.64, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10682, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 2, + "Freight": 36.13, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, + "ProductID": 33, + "UnitPrice": 2.5, "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 14, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 16, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 4, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.1 + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 22000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10933, - "EmployeeID": 6, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 3, - "Freight": 54.15, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40216, - "ShipPostalCode": 24000, - "ShipCountry": "UK", + "OrderID": 10856, + "EmployeeID": 3, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 58.43, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 2, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] @@ -31386,163 +21515,141 @@ ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "CustomerID": "GALED", + "Company": "Galería del gastrónomo", + "ContactName": "Eduardo Saavedra", + "ContactTitle": "Marketing Manager", + "Address": "Rambla de Cataluña, 23", + "City": "Barcelona", + "PostalCode": 8022, + "Country": "Spain", + "Phone": "(93) 203 4560", + "Fax": "(93) 203 4561", "Orders": [ { - "OrderID": 10934, - "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", - "ShipVia": 3, - "Freight": 32.01, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10366, + "EmployeeID": 8, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-30T00:00:00", + "ShipVia": 2, + "Freight": 10.14, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10935, + "OrderID": 10426, "EmployeeID": 4, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 47.59, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-02-06T00:00:00", + "ShipVia": 1, + "Freight": 18.69, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 8, - "Discount": 0.25 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10936, + "OrderID": 10568, "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 2, - "Freight": 33.68, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1997-06-13T00:00:00", + "RequiredDate": "1997-07-11T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 3, + "Freight": 6.54, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10937, - "EmployeeID": 7, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderID": 10887, + "EmployeeID": 8, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", "ShipVia": 3, - "Freight": 31.51, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 1.25, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10928, + "EmployeeID": 1, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 1.36, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 5, "Discount": 0 } ] @@ -31550,383 +21657,323 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", + "CustomerID": "VAFFE", + "Company": "Vaffeljernet", + "ContactName": "Palle Ibsen", + "ContactTitle": "Sales Manager", + "Address": "Smagsloget 45", + "City": "Århus", + "PostalCode": 8200, + "Country": "Denmark", + "Phone": "86 21 32 43", + "Fax": "86 22 33 44", "Orders": [ { - "OrderID": 10938, - "EmployeeID": 3, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 31.89, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10367, + "EmployeeID": 7, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1996-12-26T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 13.55, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 18, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 49, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10939, - "EmployeeID": 2, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 2, - "Freight": 76.33, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10399, + "EmployeeID": 8, + "OrderDate": "1996-12-31T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", + "ShipVia": 3, + "Freight": 27.36, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 14, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10940, - "EmployeeID": 8, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10465, + "EmployeeID": 1, + "OrderDate": "1997-03-05T00:00:00", + "RequiredDate": "1997-04-02T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 3, - "Freight": 19.77, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 145.04, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 8, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 45, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10941, - "EmployeeID": 7, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 400.81, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10591, + "EmployeeID": 1, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-07-21T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 55.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 44, - "Discount": 0.25 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 80, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10942, - "EmployeeID": 9, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 17.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10602, + "EmployeeID": 8, + "OrderDate": "1997-07-17T00:00:00", + "RequiredDate": "1997-08-14T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", + "ShipVia": 2, + "Freight": 2.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 28, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 5, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10943, + "OrderID": 10688, "EmployeeID": 4, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", "ShipVia": 2, - "Freight": 2.17, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "Freight": 299.09, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 15, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 21, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 15, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 45000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10944, + "OrderID": 10744, "EmployeeID": 6, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 3, - "Freight": 52.92, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 69.19, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10769, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 1, + "Freight": 65.06, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10945, - "EmployeeID": 4, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-04-09T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10921, + "EmployeeID": 1, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 1, - "Freight": 10.22, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 176.48, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { "OrderID": 10946, "EmployeeID": 1, @@ -31960,645 +22007,417 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 35000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10947, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 13000, - "ShipCountry": "UK", + "OrderID": 10994, + "EmployeeID": 2, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-04-09T00:00:00", + "ShipVia": 3, + "Freight": 65.53, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { "ProductID": 59, "UnitPrice": 55, - "Quantity": 4, - "Discount": 0 + "Quantity": 18, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "CustomerID": "QUEEN", + "Company": "Queen Cozinha", + "ContactName": "Lúcia Carvalho", + "ContactTitle": "Marketing Assistant", + "Address": "Alameda dos Canàrios, 891", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5487, + "Country": "Brazil", + "Phone": "(11) 555-1189", "Orders": [ { - "OrderID": 10948, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 3, - "Freight": 23.39, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10372, + "EmployeeID": 5, + "OrderDate": "1996-12-04T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 890.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 9, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 40, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 70, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 42, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 44000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10949, - "EmployeeID": 2, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-17T00:00:00", - "ShipVia": 3, - "Freight": 74.44, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderID": 10406, + "EmployeeID": 7, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-13T00:00:00", + "ShipVia": 1, + "Freight": 108.04, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 12, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 21, + "UnitPrice": 8, "Quantity": 30, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 42, + "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 60, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10950, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-13T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10487, + "EmployeeID": 2, + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-03-28T00:00:00", "ShipVia": 2, - "Freight": 2.5, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 71.07, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 5, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ - { - "OrderID": 10951, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 2, - "Freight": 30.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, - "Discount": 0.06 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10952, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "OrderID": 10637, + "EmployeeID": 6, + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", "ShipVia": 1, - "Freight": 40.42, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 201.29, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 2, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 21000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10953, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-25T00:00:00", + "OrderID": 10659, + "EmployeeID": 7, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 35000, - "ShipCountry": "UK", + "Freight": 105.81, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 50, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0.06 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 24, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10954, - "EmployeeID": 5, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 10704, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", "ShipVia": 1, - "Freight": 27.91, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 4.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 28, - "Discount": 0.16 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 48, + "UnitPrice": 12.75, "Quantity": 24, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 25000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10955, - "EmployeeID": 8, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 10728, + "EmployeeID": 4, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-11-11T00:00:00", "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 47000, - "ShipCountry": "Sweden", + "Freight": 58.33, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 12, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10956, - "EmployeeID": 6, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 44.65, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 14, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 8, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10957, + "OrderID": 10786, "EmployeeID": 8, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 3, - "Freight": 105.36, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-16T00:00:00", + "ShippedDate": "1997-12-23T00:00:00", + "ShipVia": 1, + "Freight": 110.87, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 8, + "UnitPrice": 40, "Quantity": 30, - "Discount": 0 + "Discount": 0.2 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 8, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10958, + "OrderID": 10868, "EmployeeID": 7, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 2, - "Freight": 49.56, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 191.27, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, + "ProductID": 26, + "UnitPrice": 31.23, "Quantity": 20, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 6, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 5, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 42, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10959, - "EmployeeID": 6, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", - "ShipVia": 2, - "Freight": 4.98, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", + "OrderID": 10913, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 1, + "Freight": 33.05, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", "ShipRegion": "SP", - "ShipPostalCode": 4876, + "ShipPostalCode": 5487, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10960, - "EmployeeID": 3, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 2.08, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 30, + "Discount": 0.25 + }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 40, "Discount": 0.25 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 24, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { "OrderID": 10961, "EmployeeID": 8, @@ -32615,158 +22434,271 @@ "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 + } + ] + }, + { + "OrderID": 11068, + "EmployeeID": 8, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShipVia": 2, + "Freight": 81.75, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.16 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 36, + "Discount": 0.16 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 28, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "WOLZA", + "Company": "Wolski Zajazd", + "ContactName": "Zbyszek Piestrzeniewicz", + "ContactTitle": "Owner", + "Address": "ul. Filtrowa 68", + "City": "Warszawa", + "PostalCode": 12000, + "Country": "Poland", + "Phone": "(26) 642-7012", + "Fax": "(26) 642-7012", + "Orders": [ + { + "OrderID": 10374, + "EmployeeID": 1, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 3, + "Freight": 3.94, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 60, + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10962, - "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10611, + "EmployeeID": 6, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 275.79, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 80.65, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 77, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10792, + "EmployeeID": 1, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 3, + "Freight": 23.79, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 9, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 44, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10963, - "EmployeeID": 9, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", + "OrderID": 10870, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", "ShipVia": 3, - "Freight": 2.7, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 12.04, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, "Quantity": 2, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 10964, - "EmployeeID": 3, - "OrderDate": "1998-03-20T00:00:00", + "OrderID": 10906, + "EmployeeID": 4, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", + "ShipVia": 3, + "Freight": 26.29, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10998, + "EmployeeID": 8, + "OrderDate": "1998-04-03T00:00:00", "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", "ShipVia": 2, - "Freight": 87.38, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 20.31, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 6, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 11044, + "EmployeeID": 4, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 8.72, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, "Discount": 0 } ] @@ -32774,174 +22706,153 @@ ] }, { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", + "CustomerID": "HUNGC", + "Company": "Hungry Coyote Import Store", + "ContactName": "Yoshi Latimer", "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, + "Address": "City Center Plaza 516 Main St.", + "City": "Elgin", + "Region": "OR", + "PostalCode": 97827, "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", + "Phone": "(503) 555-6874", + "Fax": "(503) 555-2376", "Orders": [ { - "OrderID": 10965, - "EmployeeID": 6, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", - "ShipVia": 3, - "Freight": 144.38, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "OrderID": 10375, + "EmployeeID": 3, + "OrderDate": "1996-12-06T00:00:00", + "RequiredDate": "1997-01-03T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 20.12, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 16, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10966, - "EmployeeID": 4, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 27.19, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10394, + "EmployeeID": 1, + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 3, + "Freight": 30.34, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 8, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, "Discount": 0 }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 - }, { "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0.16 + "UnitPrice": 39.4, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10967, - "EmployeeID": 2, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 62.22, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "OrderID": 10415, + "EmployeeID": 3, + "OrderDate": "1997-01-15T00:00:00", + "RequiredDate": "1997-02-12T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "ShipVia": 1, + "Freight": 0.2, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 40, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10968, - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-01T00:00:00", - "ShipVia": 3, - "Freight": 74.6, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10600, + "EmployeeID": 4, + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-13T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", + "ShipVia": 1, + "Freight": 45.13, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 73, + "UnitPrice": 15, "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10660, + "EmployeeID": 8, + "OrderDate": "1997-09-08T00:00:00", + "RequiredDate": "1997-10-06T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 1, + "Freight": 111.29, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 4, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 21, "Discount": 0 } ] @@ -32949,222 +22860,205 @@ ] }, { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", + "CustomerID": "SANTG", + "Company": "Santé Gourmet", + "ContactName": "Jonas Bergulfsen", + "ContactTitle": "Owner", + "Address": "Erling Skakkes gate 78", + "City": "Stavern", + "PostalCode": 4110, + "Country": "Norway", + "Phone": "07-98 92 35", + "Fax": "07-98 92 47", "Orders": [ { - "OrderID": 10969, + "OrderID": 10387, "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-15T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", "ShipVia": 2, - "Freight": 0.21, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 93.63, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 9, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ + }, { - "OrderID": 10970, - "EmployeeID": 9, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10520, + "EmployeeID": 7, + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", "ShipVia": 1, - "Freight": 16.16, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", + "Freight": 13.37, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10971, - "EmployeeID": 2, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 121.82, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10639, + "EmployeeID": 7, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-08-27T00:00:00", + "ShipVia": 3, + "Freight": 38.64, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne d'abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de l'Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ + }, { - "OrderID": 10972, - "EmployeeID": 4, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", + "OrderID": 10831, + "EmployeeID": 3, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 2, - "Freight": 0.02, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "Freight": 72.19, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 7, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 9, "Discount": 0 } ] }, { - "OrderID": 10973, - "EmployeeID": 6, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "OrderID": 10909, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-10T00:00:00", "ShipVia": 2, - "Freight": 15.17, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "Freight": 53.05, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10974, - "EmployeeID": 3, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 12.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 11015, + "EmployeeID": 2, + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 2, + "Freight": 4.62, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] @@ -33179,339 +23073,314 @@ "Address": "23 Tsawassen Blvd.", "City": "Tsawassen", "Region": "BC", - "PostalCode": 13000, + "PostalCode": 26000, "Country": "Canada", "Phone": "(604) 555-4729", "Fax": "(604) 555-3745", "Orders": [ { - "OrderID": 10975, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-22T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 3, - "Freight": 32.27, + "OrderID": 10389, + "EmployeeID": 4, + "OrderDate": "1996-12-20T00:00:00", + "RequiredDate": "1997-01-17T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", + "ShipVia": 2, + "Freight": 47.42, "ShipName": "Bottom-Dollar Markets", "ShipAddress": "23 Tsawassen Blvd.", "ShipCity": "Tsawassen", "ShipRegion": "BC", - "ShipPostalCode": 40000, + "ShipPostalCode": 41000, "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, + "ProductID": 10, + "UnitPrice": 24.8, "Quantity": 16, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10976, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderID": 10410, + "EmployeeID": 3, + "OrderDate": "1997-01-10T00:00:00", + "RequiredDate": "1997-02-07T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", + "ShipVia": 3, + "Freight": 2.4, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 30000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 16, + "Discount": 0 + } + ] + }, + { + "OrderID": 10431, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 44.17, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 16000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10492, + "EmployeeID": 3, + "OrderDate": "1997-04-01T00:00:00", + "RequiredDate": "1997-04-29T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 1, - "Freight": 37.97, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 62.89, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 16000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 11000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10977, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10742, + "EmployeeID": 3, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-12-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 208.5, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", + "Freight": 243.73, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 25000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 27000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10978, - "EmployeeID": 9, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", - "ShipVia": 2, - "Freight": 32.82, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 31000, - "ShipCountry": "Belgium", + "OrderID": 10918, + "EmployeeID": 3, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 48.83, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 41000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 25, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10979, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-03-31T00:00:00", - "ShipVia": 2, - "Freight": 353.07, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10944, + "EmployeeID": 6, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 52.92, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 36000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, + "Discount": 0.25 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, "Quantity": 18, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 12, + "ProductID": 56, "UnitPrice": 38, - "Quantity": 20, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10949, + "EmployeeID": 2, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-17T00:00:00", + "ShipVia": 3, + "Freight": 74.44, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 80, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 30, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 24, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 35, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 50000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10980, - "EmployeeID": 4, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 1, - "Freight": 1.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10981, + "OrderID": 10975, "EmployeeID": 1, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 193.37, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-22T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 32.27, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 27000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { "OrderID": 10982, "EmployeeID": 2, @@ -33540,81 +23409,83 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10983, - "EmployeeID": 2, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 2, - "Freight": 657.54, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11027, + "EmployeeID": 1, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 52.52, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 14000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 84, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 21, + "Discount": 0.25 } ] }, { - "OrderID": 10984, - "EmployeeID": 1, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 211.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11045, + "EmployeeID": 6, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShipVia": 2, + "Freight": 70.58, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 46000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 55, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 24, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11048, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", + "ShipVia": 3, + "Freight": 24.12, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 41000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 42, "Discount": 0 } ] @@ -33622,535 +23493,427 @@ ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "LINOD", + "Company": "LINO-Delicateses", + "ContactName": "Felipe Izquierdo", + "ContactTitle": "Owner", + "Address": "Ave. 5 de Mayo Porlamar", + "City": "Sao Paulo", + "Region": "Nueva Esparta", + "PostalCode": 4980, + "Country": "Venezuela", + "Phone": "(8) 34-56-12", + "Fax": "(8) 34-93-93", "Orders": [ { - "OrderID": 10985, - "EmployeeID": 2, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10405, + "EmployeeID": 1, + "OrderDate": "1997-01-06T00:00:00", + "RequiredDate": "1997-02-03T00:00:00", + "ShippedDate": "1997-01-22T00:00:00", "ShipVia": 1, - "Freight": 91.51, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 34.82, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 36, - "Discount": 0.1 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 35, - "Discount": 0.1 + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10986, - "EmployeeID": 8, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", + "OrderID": 10485, + "EmployeeID": 4, + "OrderDate": "1997-03-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-31T00:00:00", "ShipVia": 2, - "Freight": 217.86, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 64.45, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 30, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0 + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 60, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10987, - "EmployeeID": 8, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", + "OrderID": 10638, + "EmployeeID": 3, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", "ShipVia": 1, - "Freight": 185.48, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 30000, - "ShipCountry": "UK", + "Freight": 158.44, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, "Discount": 0 }, { "ProductID": 72, "UnitPrice": 34.8, - "Quantity": 20, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10988, + "OrderID": 10697, "EmployeeID": 3, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 61.14, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-05T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", + "ShipVia": 1, + "Freight": 45.52, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 9, + "Discount": 0.25 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10989, - "EmployeeID": 2, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 1, - "Freight": 34.76, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "OrderID": 10729, + "EmployeeID": 8, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 3, + "Freight": 141.06, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 40, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10990, - "EmployeeID": 2, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 3, - "Freight": 117.61, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10811, + "EmployeeID": 8, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", + "ShipVia": 1, + "Freight": 31.22, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 65, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 18, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 66, - "Discount": 0.16 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10991, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 1, - "Freight": 38.51, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10838, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 59.28, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0.25 + }, + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 36, "UnitPrice": 19, "Quantity": 50, - "Discount": 0.2 - }, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10840, + "EmployeeID": 4, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", + "ShipVia": 2, + "Freight": 2.71, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 76, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 90, + "Quantity": 10, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10992, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 4.27, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "OrderID": 10919, + "EmployeeID": 2, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 2, + "Freight": 19.8, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 2, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 36000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10993, - "EmployeeID": 7, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 3, - "Freight": 8.81, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 15000, - "ShipCountry": "Sweden", + "OrderID": 10954, + "EmployeeID": 5, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 1, + "Freight": 27.91, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 28, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 25, + "Discount": 0.16 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10994, + "OrderID": 11014, "EmployeeID": 2, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-04-09T00:00:00", + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", "ShipVia": 3, - "Freight": 65.53, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 23.6, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 28, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10995, + "OrderID": 11039, "EmployeeID": 1, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 3, - "Freight": 46, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShipVia": 2, + "Freight": 65, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 24, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10996, - "EmployeeID": 4, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 1.12, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ + }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 28, "Discount": 0 } ] @@ -34158,580 +23921,519 @@ ] }, { - "CustomerID": "LILAS", - "Company": "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": "FOLIG", + "Company": "Folies gourmandes", + "ContactName": "Martine Rancé", + "ContactTitle": "Sales Associate", + "Address": "184, chaussée de Tournai", + "City": "Lille", + "PostalCode": 59000, + "Country": "France", + "Phone": "20.16.10.16", + "Fax": "20.16.10.17", "Orders": [ { - "OrderID": 10997, + "OrderID": 10408, "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 2, - "Freight": 73.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderDate": "1997-01-08T00:00:00", + "RequiredDate": "1997-02-05T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 11.26, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 15000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10998, - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", + "OrderID": 10480, + "EmployeeID": 6, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", "ShipVia": 2, - "Freight": 20.31, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 1.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, "Quantity": 12, "Discount": 0 + } + ] + }, + { + "OrderID": 10634, + "EmployeeID": 4, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 487.38, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 7, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 30, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10999, - "EmployeeID": 6, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-01T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 96.35, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "OrderID": 10763, + "EmployeeID": 3, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 3, + "Freight": 37.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 21, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 11000, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", - "ShipVia": 3, - "Freight": 55.12, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10789, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 2, + "Freight": 100.6, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, + "Discount": 0 } ] } ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 45000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "OCEAN", + "Company": "Océano Atlántico Ltda.", + "ContactName": "Yvonne Moncada", + "ContactTitle": "Sales Agent", + "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5333", + "Fax": "(1) 135-5535", "Orders": [ { - "OrderID": 11001, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", - "ShipVia": 2, - "Freight": 197.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 14000, - "ShipCountry": "Sweden", + "OrderID": 10409, + "EmployeeID": 3, + "OrderDate": "1997-01-09T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 29.83, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 25, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11002, - "EmployeeID": 4, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10531, + "EmployeeID": 7, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", "ShipVia": 1, - "Freight": 141.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 8.12, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 10898, + "EmployeeID": 4, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 1.27, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { "ProductID": 13, "UnitPrice": 6, - "Quantity": 56, + "Quantity": 5, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10958, + "EmployeeID": 7, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 2, + "Freight": 49.56, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 40, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11003, - "EmployeeID": 3, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 3, - "Freight": 14.91, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "OrderID": 10986, + "EmployeeID": 8, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 217.86, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0 } ] } ] }, { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 20000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", + "CustomerID": "FRANS", + "Company": "Franchi S.p.A.", + "ContactName": "Paolo Accorti", + "ContactTitle": "Sales Representative", + "Address": "Via Monte Bianco 34", + "City": "Torino", + "PostalCode": 10100, + "Country": "Italy", + "Phone": "011-4988260", + "Fax": "011-4988261", "Orders": [ { - "OrderID": 11004, - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10422, + "EmployeeID": 2, + "OrderDate": "1997-01-22T00:00:00", + "RequiredDate": "1997-02-19T00:00:00", + "ShippedDate": "1997-01-31T00:00:00", "ShipVia": 1, - "Freight": 44.84, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", + "Freight": 3.02, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 6, + "UnitPrice": 24.9, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 11005, - "EmployeeID": 2, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10710, + "EmployeeID": 1, + "OrderDate": "1997-10-20T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", "ShipVia": 1, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 4.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 2, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 10, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ - { - "OrderID": 11006, - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", - "ShipVia": 2, - "Freight": 25.19, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + }, + { + "OrderID": 10753, + "EmployeeID": 3, + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 1, + "Freight": 7.7, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 11007, - "EmployeeID": 8, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 2, - "Freight": 202.24, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10807, + "EmployeeID": 4, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 1.36, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 1, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11026, + "EmployeeID": 4, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", + "ShipVia": 1, + "Freight": 47.09, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 14, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11008, - "EmployeeID": 7, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShipVia": 3, - "Freight": 79.46, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 11060, + "EmployeeID": 2, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 2, + "Freight": 10.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 70, - "Discount": 0.06 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 90, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 21, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, "Discount": 0 } ] @@ -34739,453 +24441,384 @@ ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "CustomerID": "GOURL", + "Company": "Gourmet Lanchonetes", + "ContactName": "André Fonseca", + "ContactTitle": "Sales Associate", + "Address": "Av. Brasil, 442", + "City": "Campinas", + "Region": "SP", + "PostalCode": 4876, + "Country": "Brazil", + "Phone": "(11) 555-9482", "Orders": [ { - "OrderID": 11009, - "EmployeeID": 2, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 59.11, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10423, + "EmployeeID": 6, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", + "ShipVia": 3, + "Freight": 24.5, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 18, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 9, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11010, - "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 2, - "Freight": 28.71, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10652, + "EmployeeID": 4, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 2, + "Freight": 7.14, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 2, + "Discount": 0.25 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 11011, - "EmployeeID": 3, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 1, - "Freight": 1.21, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "OrderID": 10685, + "EmployeeID": 4, + "OrderDate": "1997-09-29T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 33.75, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 20, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 11012, + "OrderID": 10709, "EmployeeID": 1, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-11-20T00:00:00", "ShipVia": 3, - "Freight": 242.95, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 210.8, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 36, - "Discount": 0.06 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 11013, + "OrderID": 10734, "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 32.99, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-12T00:00:00", + "ShipVia": 3, + "Freight": 1.63, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 10, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 4, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 2, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 11014, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", - "ShipVia": 3, - "Freight": 23.6, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10777, + "EmployeeID": 7, + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 2, + "Freight": 3.01, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10790, + "EmployeeID": 6, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 28.23, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 3, + "Discount": 0.16 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 11015, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10959, + "EmployeeID": 6, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", "ShipVia": 2, - "Freight": 4.62, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 4.98, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 11049, + "EmployeeID": 3, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 8.34, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", + "CustomerID": "CONSH", + "Company": "Consolidated Holdings", + "ContactName": "Elizabeth Brown", "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", + "Address": "Berkeley Gardens 12 Brewery", "City": "London", - "PostalCode": 49000, + "PostalCode": 23000, "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Phone": "(171) 555-2282", + "Fax": "(171) 555-9199", "Orders": [ { - "OrderID": 11016, - "EmployeeID": 9, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10435, + "EmployeeID": 8, + "OrderDate": "1997-02-04T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", "ShipVia": 2, - "Freight": 33.8, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, + "Freight": 9.21, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 38000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 16, + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11017, - "EmployeeID": 9, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 2, - "Freight": 754.26, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10462, + "EmployeeID": 2, + "OrderDate": "1997-03-03T00:00:00", + "RequiredDate": "1997-03-31T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 1, + "Freight": 6.17, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 110, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11018, - "EmployeeID": 4, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10848, + "EmployeeID": 7, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 2, - "Freight": 11.65, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 38.24, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 39000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 3, "Discount": 0 } ] @@ -35205,12 +24838,13 @@ "Fax": "(1) 123-5556", "Orders": [ { - "OrderID": 11019, - "EmployeeID": 6, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShipVia": 3, - "Freight": 3.17, + "OrderID": 10448, + "EmployeeID": 4, + "OrderDate": "1997-02-17T00:00:00", + "RequiredDate": "1997-03-17T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", + "ShipVia": 2, + "Freight": 38.82, "ShipName": "Rancho grande", "ShipAddress": "Av. del Libertador 900", "ShipCity": "Buenos Aires", @@ -35218,195 +24852,138 @@ "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 3, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 2, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 11020, - "EmployeeID": 2, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10716, + "EmployeeID": 4, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-27T00:00:00", "ShipVia": 2, - "Freight": 43.3, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 22.57, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 11021, - "EmployeeID": 3, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", + "OrderID": 10828, + "EmployeeID": 9, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", "ShipVia": 1, - "Freight": 297.18, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 90.85, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 11, - "Discount": 0.25 - }, { "ProductID": 20, "UnitPrice": 81, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 63, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 44, - "Discount": 0.25 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 11022, - "EmployeeID": 9, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10916, + "EmployeeID": 1, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 63.77, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 15000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 11023, - "EmployeeID": 1, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 123.83, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", + "OrderID": 11019, + "EmployeeID": 6, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShipVia": 3, + "Freight": 3.17, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 4, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 2, "Discount": 0 } ] @@ -35414,53 +24991,60 @@ ] }, { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 21000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", + "CustomerID": "LAZYK", + "Company": "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", "Orders": [ { - "OrderID": 11024, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 1, - "Freight": 74.36, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 28000, - "ShipCountry": "UK", + "OrderID": 10482, + "EmployeeID": 1, + "OrderDate": "1997-03-21T00:00:00", + "RequiredDate": "1997-04-18T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 7.48, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10545, + "EmployeeID": 8, + "OrderDate": "1997-05-22T00:00:00", + "RequiredDate": "1997-06-19T00:00:00", + "ShippedDate": "1997-06-26T00:00:00", + "ShipVia": 2, + "Freight": 11.92, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 50, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 } ] @@ -35468,311 +25052,322 @@ ] }, { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", + "CustomerID": "LAUGB", + "Company": "Laughing Bacchus Wine Cellars", + "ContactName": "Yoshi Tannamuri", + "ContactTitle": "Marketing Assistant", + "Address": "1900 Oak St.", + "City": "Vancouver", + "Region": "BC", + "PostalCode": 24000, + "Country": "Canada", + "Phone": "(604) 555-3392", + "Fax": "(604) 555-7293", "Orders": [ { - "OrderID": 11025, - "EmployeeID": 6, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10495, + "EmployeeID": 3, + "OrderDate": "1997-04-03T00:00:00", + "RequiredDate": "1997-05-01T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 3, - "Freight": 29.17, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 4.65, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 33000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, + "ProductID": 23, + "UnitPrice": 7.2, "Quantity": 10, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 20, - "Discount": 0.1 + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 11026, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", - "ShipVia": 1, - "Freight": 47.09, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10620, + "EmployeeID": 2, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", + "ShipVia": 3, + "Freight": 0.94, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 15000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 27000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11027, - "EmployeeID": 1, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 1, - "Freight": 52.52, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", + "OrderID": 10810, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", + "ShipVia": 3, + "Freight": 4.33, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", "ShipRegion": "BC", - "ShipPostalCode": 14000, + "ShipPostalCode": 41000, "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 7, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, + "CustomerID": "BLAUS", + "Company": "Blauer See Delikatessen", + "ContactName": "Hanna Moos", + "ContactTitle": "Sales Representative", + "Address": "Forsterstr. 57", + "City": "Mannheim", + "PostalCode": 68306, "Country": "Germany", - "Phone": "0555-09876", + "Phone": "0621-08460", + "Fax": "0621-08924", "Orders": [ { - "OrderID": 11028, - "EmployeeID": 2, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", - "ShipVia": 1, - "Freight": 29.59, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10501, + "EmployeeID": 9, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 3, + "Freight": 8.85, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 24, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 11029, + "OrderID": 10509, "EmployeeID": 4, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", + "OrderDate": "1997-04-17T00:00:00", + "RequiredDate": "1997-05-15T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 1, - "Freight": 47.84, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 0.15, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10582, + "EmployeeID": 3, + "OrderDate": "1997-06-27T00:00:00", + "RequiredDate": "1997-07-25T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 27.71, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 12, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11030, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 2, - "Freight": 830.75, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10614, + "EmployeeID": 8, + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 3, + "Freight": 1.93, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 100, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 70, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 60, - "Discount": 0.25 - }, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10853, + "EmployeeID": 9, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", + "ShipVia": 2, + "Freight": 53.83, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 100, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, + "Discount": 0 } ] }, { - "OrderID": 11031, + "OrderID": 10956, "EmployeeID": 6, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 227.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 44.65, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 45, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 80, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 21, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 11058, + "EmployeeID": 9, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShipVia": 3, + "Freight": 31.14, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, "Discount": 0 } ] @@ -35780,140 +25375,97 @@ ] }, { - "CustomerID": "WHITC", - "Company": "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": "NORTS", + "Company": "North/South", + "ContactName": "Simon Crowther", + "ContactTitle": "Sales Associate", + "Address": "South House 300 Queensbridge", + "City": "London", + "PostalCode": 17000, + "Country": "UK", + "Phone": "(171) 555-7733", + "Fax": "(171) 555-2530", "Orders": [ { - "OrderID": 11032, - "EmployeeID": 2, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 10517, + "EmployeeID": 3, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 3, - "Freight": 606.19, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 32.07, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 16000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 35, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 25, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 11033, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 10752, + "EmployeeID": 2, + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", "ShipVia": 3, - "Freight": 84.74, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 1.39, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 70, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0 }, { "ProductID": 69, "UnitPrice": 36, - "Quantity": 36, - "Discount": 0.1 + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11034, - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 40.32, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 11057, + "EmployeeID": 3, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 4.13, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 6, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] @@ -35921,233 +25473,174 @@ ] }, { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", + "CustomerID": "CACTU", + "Company": "Cactus Comidas para llevar", + "ContactName": "Patricio Simpson", + "ContactTitle": "Sales Agent", + "Address": "Cerrito 333", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5555", + "Fax": "(1) 135-4892", "Orders": [ { - "OrderID": 11035, - "EmployeeID": 2, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10521, + "EmployeeID": 8, + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", "ShipVia": 2, - "Freight": 0.17, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 17.22, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 35, "UnitPrice": 18, - "Quantity": 10, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 60, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10782, + "EmployeeID": 9, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 1.1, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 1, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 11036, - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", + "OrderID": 10819, + "EmployeeID": 2, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", "ShipVia": 3, - "Freight": 149.47, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 19.76, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 43, + "UnitPrice": 46, "Quantity": 7, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 11037, - "EmployeeID": 7, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", + "OrderID": 10881, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 1, - "Freight": 3.2, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 2.84, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 70, + "ProductID": 73, "UnitPrice": 15, - "Quantity": 4, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 11038, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", - "ShipVia": 2, - "Freight": 29.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10937, + "EmployeeID": 7, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 31.51, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, - "Discount": 0.2 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 2, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 11039, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShipVia": 2, - "Freight": 65, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 11054, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShipVia": 1, + "Freight": 0.33, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 60, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 10, "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 28, + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] @@ -36167,12 +25660,13 @@ "Phone": "(503) 555-7555", "Orders": [ { - "OrderID": 11040, - "EmployeeID": 4, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShipVia": 3, - "Freight": 18.84, + "OrderID": 10528, + "EmployeeID": 6, + "OrderDate": "1997-05-06T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 3.35, "ShipName": "Great Lakes Food Market", "ShipAddress": "2732 Baker Blvd.", "ShipCity": "Eugene", @@ -36181,582 +25675,508 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 3, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ - { - "OrderID": 11041, - "EmployeeID": 3, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", - "ShipVia": 2, - "Freight": 48.22, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", - "OrderDetails": [ + }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, "Discount": 0.2 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 11042, - "EmployeeID": 2, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 1, - "Freight": 29.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderID": 10589, + "EmployeeID": 8, + "OrderDate": "1997-07-04T00:00:00", + "RequiredDate": "1997-08-01T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 4.42, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 35, + "UnitPrice": 18, "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 11043, - "EmployeeID": 5, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", + "OrderID": 10616, + "EmployeeID": 1, + "OrderDate": "1997-07-31T00:00:00", + "RequiredDate": "1997-08-28T00:00:00", + "ShippedDate": "1997-08-05T00:00:00", "ShipVia": 2, - "Freight": 8.8, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 116.53, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 15000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 11044, - "EmployeeID": 4, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10656, + "EmployeeID": 6, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 1, - "Freight": 8.72, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 57.15, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 26000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, + "Discount": 0.1 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 28, + "Discount": 0.1 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.1 + } + ] + }, { - "OrderID": 11045, - "EmployeeID": 6, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShipVia": 2, - "Freight": 70.58, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 46000, - "ShipCountry": "Canada", + "OrderID": 10681, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 76.13, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 24, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 11046, - "EmployeeID": 8, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10816, + "EmployeeID": 4, + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-02-03T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", "ShipVia": 2, - "Freight": 71.64, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 719.78, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, "Discount": 0.06 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, "Discount": 0.06 - }, + } + ] + }, + { + "OrderID": 10936, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 33.68, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 45000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11047, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 3, - "Freight": 46.62, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 42000, - "ShipCountry": "UK", + "OrderID": 11006, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", + "ShipVia": 2, + "Freight": 25.19, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 1, "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.25 + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 2, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 24000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11048, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", + "OrderID": 11040, + "EmployeeID": 4, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", "ShipVia": 3, - "Freight": 24.12, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "Freight": 18.84, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 42, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 11049, - "EmployeeID": 3, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 1, - "Freight": 8.34, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + } + ] + }, + { + "OrderID": 11061, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-06-11T00:00:00", + "ShipVia": 3, + "Freight": 14.01, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, + "Discount": 0 } ] } ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 46000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "MAISD", + "Company": "Maison Dewey", + "ContactName": "Catherine Dewey", + "ContactTitle": "Sales Agent", + "Address": "Rue Joseph-Bens 532", + "City": "Bruxelles", + "PostalCode": 45000, + "Country": "Belgium", + "Phone": "(02) 201 24 67", + "Fax": "(02) 201 24 68", "Orders": [ { - "OrderID": 11050, - "EmployeeID": 8, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10529, + "EmployeeID": 5, + "OrderDate": "1997-05-07T00:00:00", + "RequiredDate": "1997-06-04T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", "ShipVia": 2, - "Freight": 59.41, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "Freight": 66.69, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.1 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 11051, - "EmployeeID": 7, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", + "OrderID": 10649, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-09-25T00:00:00", + "ShippedDate": "1997-08-29T00:00:00", "ShipVia": 3, - "Freight": 2.79, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 6.2, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 21000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 11052, - "EmployeeID": 3, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10760, + "EmployeeID": 4, + "OrderDate": "1997-12-01T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1997-12-10T00:00:00", "ShipVia": 1, - "Freight": 67.26, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 155.64, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 12000, + "ShipCountry": "Belgium", "OrderDetails": [ + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.25 + }, + { + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 40, + "Discount": 0 + }, { "ProductID": 43, "UnitPrice": 46, "Quantity": 30, - "Discount": 0.2 - }, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10892, + "EmployeeID": 4, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 2, + "Freight": 120.27, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 30000, + "ShipCountry": "Belgium", + "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, + { + "OrderID": 10896, + "EmployeeID": 7, + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 32.45, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 15000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 16, + "Discount": 0 + } + ] + }, { - "OrderID": 11053, - "EmployeeID": 2, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", + "OrderID": 10978, + "EmployeeID": 9, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 32.82, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 31000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 11054, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", + "OrderID": 11004, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 1, - "Freight": 0.33, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 44.84, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 10, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 } ] @@ -36764,139 +26184,119 @@ ] }, { - "CustomerID": "HILAA", - "Company": "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": "TRAIH", + "Company": "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", "Orders": [ { - "OrderID": 11055, - "EmployeeID": 7, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10574, + "EmployeeID": 4, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 120.92, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 37.6, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 11000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11056, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10577, + "EmployeeID": 9, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 278.96, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 39000, - "ShipCountry": "UK", + "Freight": 25.41, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 40, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 16000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ + }, { - "OrderID": 11057, - "EmployeeID": 3, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10822, + "EmployeeID": 6, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", "ShipVia": 3, - "Freight": 4.13, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "Freight": 7, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, + "Discount": 0 + }, { "ProductID": 70, "UnitPrice": 15, - "Quantity": 3, + "Quantity": 6, "Discount": 0 } ] @@ -36904,451 +26304,483 @@ ] }, { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", + "CustomerID": "LETSS", + "Company": "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", "Orders": [ { - "OrderID": 11058, - "EmployeeID": 9, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShipVia": 3, - "Freight": 31.14, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10579, + "EmployeeID": 1, + "OrderDate": "1997-06-25T00:00:00", + "RequiredDate": "1997-07-23T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 2, + "Freight": 13.73, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 3, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 21, "Discount": 0 + } + ] + }, + { + "OrderID": 10719, + "EmployeeID": 8, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 2, + "Freight": 51.44, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 12, + "Discount": 0.25 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 3, + "Discount": 0.25 }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 40, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10735, + "EmployeeID": 6, + "OrderDate": "1997-11-10T00:00:00", + "RequiredDate": "1997-12-08T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 45.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", + "OrderDetails": [ { "ProductID": 61, "UnitPrice": 28.5, - "Quantity": 4, - "Discount": 0 + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 11059, - "EmployeeID": 2, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-06-10T00:00:00", + "OrderID": 10884, + "EmployeeID": 4, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", "ShipVia": 2, - "Freight": 85.8, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 90.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 30, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 12, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 21, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", + "CustomerID": "WILMK", + "Company": "Wilman Kala", + "ContactName": "Matti Karttunen", + "ContactTitle": "Owner/Marketing Assistant", + "Address": "Keskuskatu 45", + "City": "Helsinki", + "PostalCode": 21240, + "Country": "Finland", + "Phone": "90-224 8858", + "Fax": "90-224 8858", "Orders": [ { - "OrderID": 11060, + "OrderID": 10615, "EmployeeID": 2, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 2, - "Freight": 10.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderDate": "1997-07-30T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 3, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10673, + "EmployeeID": 2, + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 22.76, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11061, - "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-06-11T00:00:00", - "ShipVia": 3, - "Freight": 14.01, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderID": 10695, + "EmployeeID": 7, + "OrderDate": "1997-10-07T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", + "ShipVia": 1, + "Freight": 16.72, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11062, + "OrderID": 10873, "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShipVia": 2, - "Freight": 29.93, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 0.82, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 11063, + "OrderID": 10879, "EmployeeID": 3, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 81.73, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 8.5, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11064, + "OrderID": 10910, "EmployeeID": 1, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 1, - "Freight": 30.09, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 3, + "Freight": 38.11, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 77, - "Discount": 0.1 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 55, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11065, - "EmployeeID": 8, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", + "OrderID": 11005, + "EmployeeID": 2, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 1, - "Freight": 12.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, + "Discount": 0 } ] } ] }, { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, + "CustomerID": "THECR", + "Company": "The Cracker Box", + "ContactName": "Liu Wong", + "ContactTitle": "Marketing Assistant", + "Address": "55 Grizzly Peak Rd.", + "City": "Butte", + "Region": "MT", + "PostalCode": 59801, "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", + "Phone": "(406) 555-5834", + "Fax": "(406) 555-8083", "Orders": [ { - "OrderID": 11066, - "EmployeeID": 7, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10624, + "EmployeeID": 4, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", "ShipVia": 2, - "Freight": 44.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, + "Freight": 94.8, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 42, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 34, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10775, + "EmployeeID": 7, + "OrderDate": "1997-12-12T00:00:00", + "RequiredDate": "1998-01-09T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 20.25, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, "UnitPrice": 14, - "Quantity": 35, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 11067, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 7.98, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderID": 11003, + "EmployeeID": 3, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 3, + "Freight": 14.91, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 10, "Discount": 0 } ] @@ -37356,272 +26788,279 @@ ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", + "CustomerID": "ALFKI", + "Company": "Alfreds Futterkiste", + "ContactName": "Maria Anders", + "ContactTitle": "Sales Representative", + "Address": "Obere Str. 57", + "City": "Berlin", + "PostalCode": 12209, + "Country": "Germany", + "Phone": "030-0074321", + "Fax": "030-0076545", "Orders": [ { - "OrderID": 11068, - "EmployeeID": 8, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShipVia": 2, - "Freight": 81.75, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10643, + "EmployeeID": 6, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", + "ShipVia": 1, + "Freight": 29.46, + "ShipName": "Alfreds Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 28, "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.16 + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 2, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 11069, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", + "OrderID": 10692, + "EmployeeID": 4, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-10-31T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", "ShipVia": 2, - "Freight": 15.67, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 61.02, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 11070, - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", + "OrderID": 10702, + "EmployeeID": 4, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", "ShipVia": 1, - "Freight": 136, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "Freight": 23.94, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.16 - }, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10835, + "EmployeeID": 1, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 3, + "Freight": 69.53, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11071, + "OrderID": 10952, "EmployeeID": 1, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 1, - "Freight": 0.93, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 40.42, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 15, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 16, "Discount": 0.06 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 11011, + "EmployeeID": 3, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 1, + "Freight": 1.21, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 40, "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 11072, - "EmployeeID": 4, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShipVia": 2, - "Freight": 258.64, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "CustomerID": "FRANR", + "Company": "France restauration", + "ContactName": "Carine Schmitt", + "ContactTitle": "Marketing Manager", + "Address": "54, rue Royale", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.32.21.21", + "Fax": "40.32.21.20", + "Orders": [ + { + "OrderID": 10671, + "EmployeeID": 1, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-09-24T00:00:00", + "ShipVia": 1, + "Freight": 30.34, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 8, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 40, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 22, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10860, + "EmployeeID": 3, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 3, + "Freight": 19.26, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 130, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 11073, + "OrderID": 10971, "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", "ShipVia": 2, - "Freight": 24.95, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 121.82, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 14, "Discount": 0 } ] @@ -37629,308 +27068,223 @@ ] }, { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", + "CustomerID": "SPECD", + "Company": "Spécialités du monde", + "ContactName": "Dominique Perrier", + "ContactTitle": "Marketing Manager", + "Address": "25, rue Lauriston", + "City": "Paris", + "PostalCode": 75016, + "Country": "France", + "Phone": "(1) 47.55.60.10", + "Fax": "(1) 47.55.60.20", "Orders": [ { - "OrderID": 11074, - "EmployeeID": 7, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShipVia": 2, - "Freight": 18.44, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10738, + "EmployeeID": 2, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 1, + "Freight": 2.91, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 16, "UnitPrice": 17.45, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10907, + "EmployeeID": 6, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-25T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 9.19, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 14, - "Discount": 0.06 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 11075, - "EmployeeID": 8, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", + "OrderID": 10964, + "EmployeeID": 3, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 2, - "Freight": 6.19, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 87.38, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 11076, - "EmployeeID": 4, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", + "OrderID": 11043, + "EmployeeID": 5, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", "ShipVia": 2, - "Freight": 38.28, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, + "Freight": 8.8, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 11, + "UnitPrice": 21, "Quantity": 10, - "Discount": 0.25 + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "LACOR", + "Company": "La corne d'abondance", + "ContactName": "Daniel Tonini", + "ContactTitle": "Sales Representative", + "Address": "67, avenue de l'Europe", + "City": "Versailles", + "PostalCode": 78000, + "Country": "France", + "Phone": "30.59.84.10", + "Fax": "30.59.85.11", "Orders": [ { - "OrderID": 11077, - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10858, + "EmployeeID": 2, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", + "ShipVia": 1, + "Freight": 52.51, + "ShipName": "La corne d'abondance", + "ShipAddress": "67, avenue de l'Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 24, - "Discount": 0.2 - }, - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 1, - "Discount": 0.02 - }, { "ProductID": 7, "UnitPrice": 30, - "Quantity": 1, - "Discount": 0.06 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 2, - "Discount": 0.1 - }, - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 1, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 2, - "Discount": 0.06 + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 4, "Discount": 0 - }, - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 2, - "Discount": 0.04 - }, + } + ] + }, + { + "OrderID": 10927, + "EmployeeID": 4, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 19.79, + "ShipName": "La corne d'abondance", + "ShipAddress": "67, avenue de l'Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { "ProductID": 20, "UnitPrice": 81, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 3, + "Quantity": 5, "Discount": 0 }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 3, - "Discount": 0.02 - }, { "ProductID": 52, "UnitPrice": 7, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 2, - "Discount": 0.04 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 1, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 2, - "Discount": 0.0099999998 - }, + } + ] + }, + { + "OrderID": 10972, + "EmployeeID": 4, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 2, + "Freight": 0.02, + "ShipName": "La corne d'abondance", + "ShipAddress": "67, avenue de l'Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 4, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 7, "Discount": 0 } ] diff --git a/samples/grids/hierarchical-grid/column-pinning-options/src/index.tsx b/samples/grids/hierarchical-grid/column-pinning-options/src/index.tsx index 7737d35fff..53914024f3 100644 --- a/samples/grids/hierarchical-grid/column-pinning-options/src/index.tsx +++ b/samples/grids/hierarchical-grid/column-pinning-options/src/index.tsx @@ -203,9 +203,9 @@ export default class Sample extends React.Component { public hierarchicalGridPinHeaderTemplate = (props: {dataContext: IgrColumnTemplateContext}) => { const column = (props.dataContext as any).column; return ( -
- {column.field} - this.toggleColumnPin(column)}>📌 +
+ {column.field} + this.toggleColumnPin(column)}>📌
); } diff --git a/samples/grids/hierarchical-grid/column-pinning-right-side/src/HierarchicalCustomersData.json b/samples/grids/hierarchical-grid/column-pinning-right-side/src/HierarchicalCustomersData.json index 8c1cb2c4ac..956627e3f6 100644 --- a/samples/grids/hierarchical-grid/column-pinning-right-side/src/HierarchicalCustomersData.json +++ b/samples/grids/hierarchical-grid/column-pinning-right-side/src/HierarchicalCustomersData.json @@ -53,6 +53,112 @@ "TotalPrice": 220.25 } ] + }, + { + "OrderID": 10274, + "EmployeeID": 6, + "OrderDate": "1996-08-06T00:00:00", + "RequiredDate": "1996-09-03T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 1, + "Freight": 6.01, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 7, + "Discount": 0 + } + ] + }, + { + "OrderID": 10295, + "EmployeeID": 2, + "OrderDate": "1996-09-02T00:00:00", + "RequiredDate": "1996-09-30T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", + "ShipVia": 2, + "Freight": 1.15, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 10737, + "EmployeeID": 2, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 7.79, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10739, + "EmployeeID": 3, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-17T00:00:00", + "ShipVia": 3, + "Freight": 11.08, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 18, + "Discount": 0 + } + ] } ] }, @@ -101,267 +207,155 @@ "TotalPrice": 225.75 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Madrid", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10250, - "EmployeeID": 4, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-12T00:00:00", + "OrderID": 10438, + "EmployeeID": 3, + "OrderDate": "1997-02-06T00:00:00", + "RequiredDate": "1997-03-06T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", "ShipVia": 2, - "Freight": 65.83, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 8.24, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0, - "Weight": 2.9, - "Length": 26.9, - "TotalPrice": 233.5 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 35, - "Discount": 0.16, - "Weight": 3.5, - "Length": 27.4, - "TotalPrice": 261.25 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 15, - "Discount": 0.16, - "Weight": 2.2, - "Length": 30.2, - "TotalPrice": 249.75 + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10251, - "EmployeeID": 3, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", + "OrderID": 10446, + "EmployeeID": 6, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-02-19T00:00:00", "ShipVia": 1, - "Freight": 41.34, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 14.68, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.06, - "Weight": 2.6, - "Length": 26.8, - "TotalPrice": 226.5 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.06, - "Weight": 3.1, - "Length": 24.3, - "TotalPrice": 219.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0, - "Weight": 2.4, - "Length": 23.7, - "TotalPrice": 207 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 + }, + { + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10252, - "EmployeeID": 4, - "OrderDate": "1996-07-09T00:00:00", - "RequiredDate": "1996-08-06T00:00:00", - "ShippedDate": "1996-07-11T00:00:00", + "OrderID": 10548, + "EmployeeID": 3, + "OrderDate": "1997-05-26T00:00:00", + "RequiredDate": "1997-06-23T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", "ShipVia": 2, - "Freight": 51.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 1.43, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 40, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10254, - "EmployeeID": 5, - "OrderDate": "1996-07-11T00:00:00", - "RequiredDate": "1996-08-08T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderID": 10608, + "EmployeeID": 4, + "OrderDate": "1997-07-23T00:00:00", + "RequiredDate": "1997-08-20T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 22.98, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 27.79, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 21, - "Discount": 0.16 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10255, - "EmployeeID": 9, - "OrderDate": "1996-07-12T00:00:00", - "RequiredDate": "1996-08-09T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", - "ShipVia": 3, - "Freight": 148.33, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10967, + "EmployeeID": 2, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 62.22, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 25, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 40, "Discount": 0 } ] @@ -369,1393 +363,1191 @@ ] }, { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, + "CustomerID": "HANAR", + "Company": "Hanari Carnes", + "ContactName": "Mario Pontes", + "ContactTitle": "Accounting Manager", + "Address": "Rua do Paço, 67", + "City": "Madrid", + "Region": "RJ", + "PostalCode": 5454, "Country": "Brazil", - "Phone": "(14) 555-8122", + "Phone": "(21) 555-0091", + "Fax": "(21) 555-8765", "Orders": [ { - "OrderID": 10256, - "EmployeeID": 3, - "OrderDate": "1996-07-15T00:00:00", - "RequiredDate": "1996-08-12T00:00:00", - "ShippedDate": "1996-07-17T00:00:00", + "OrderID": 10250, + "EmployeeID": 4, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-12T00:00:00", "ShipVia": 2, - "Freight": 13.97, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, + "Freight": 65.83, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, + "Discount": 0, + "Weight": 2.9, + "Length": 26.9, + "TotalPrice": 233.5 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 35, + "Discount": 0.16, + "Weight": 3.5, + "Length": 27.4, + "TotalPrice": 261.25 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.16, + "Weight": 2.2, + "Length": 30.2, + "TotalPrice": 249.75 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10257, - "EmployeeID": 4, - "OrderDate": "1996-07-16T00:00:00", - "RequiredDate": "1996-08-13T00:00:00", - "ShippedDate": "1996-07-22T00:00:00", - "ShipVia": 3, - "Freight": 81.91, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10541, + "EmployeeID": 2, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-05-29T00:00:00", + "ShipVia": 1, + "Freight": 68.65, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 25, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.1 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 9, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10645, + "EmployeeID": 4, + "OrderDate": "1997-08-26T00:00:00", + "RequiredDate": "1997-09-23T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", + "ShipVia": 1, + "Freight": 12.41, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10258, + "OrderID": 10690, "EmployeeID": 1, - "OrderDate": "1996-07-17T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderDate": "1997-10-02T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", "ShipVia": 1, - "Freight": 140.51, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 15.8, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 65, - "Discount": 0.2 - }, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10770, + "EmployeeID": 8, + "OrderDate": "1997-12-09T00:00:00", + "RequiredDate": "1998-01-06T00:00:00", + "ShippedDate": "1997-12-17T00:00:00", + "ShipVia": 3, + "Freight": 5.32, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "CENTC", - "Company": "Centro comercial Moctezuma", - "ContactName": "Francisco Chang", - "ContactTitle": "Marketing Manager", - "Address": "Sierras de Granada 9993", - "City": "México D.F.", - "PostalCode": 5022, - "Country": "Mexico", - "Phone": "(5) 555-3392", - "Fax": "(5) 555-7293", - "Orders": [ + }, { - "OrderID": 10259, + "OrderID": 10783, "EmployeeID": 4, - "OrderDate": "1996-07-18T00:00:00", - "RequiredDate": "1996-08-15T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", - "ShipVia": 3, - "Freight": 3.25, - "ShipName": "Centro comercial Moctezuma", - "ShipAddress": "Sierras de Granada 9993", - "ShipCity": "México D.F.", - "ShipPostalCode": 5022, - "ShipCountry": "Mexico", + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 124.98, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 10, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 1, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10260, - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-29T00:00:00", + "OrderID": 10886, + "EmployeeID": 1, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", "ShipVia": 1, - "Freight": 55.09, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 4.99, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 16, - "Discount": 0.25 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 50, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10261, - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-30T00:00:00", - "ShipVia": 2, - "Freight": 3.05, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "OrderID": 10903, + "EmployeeID": 3, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 3, + "Freight": 36.71, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", "ShipCity": "Lyon", "ShipRegion": "RJ", - "ShipPostalCode": 2389, + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 20, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10262, - "EmployeeID": 8, - "OrderDate": "1996-07-22T00:00:00", - "RequiredDate": "1996-08-19T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", + "OrderID": 10922, + "EmployeeID": 5, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", "ShipVia": 3, - "Freight": 48.29, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 62.74, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 12, - "Discount": 0.2 - }, - { - "ProductID": 7, - "UnitPrice": 24, + "ProductID": 17, + "UnitPrice": 39, "Quantity": 15, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 2, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10263, - "EmployeeID": 9, - "OrderDate": "1996-07-23T00:00:00", - "RequiredDate": "1996-08-20T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", - "ShipVia": 3, - "Freight": 146.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10925, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 1, + "Freight": 2.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0.16 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 36000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10264, - "EmployeeID": 6, - "OrderDate": "1996-07-24T00:00:00", - "RequiredDate": "1996-08-21T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", - "ShipVia": 3, - "Freight": 3.67, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 15000, - "ShipCountry": "Sweden", + "OrderID": 10981, + "EmployeeID": 1, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 193.37, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 35, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 25, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10265, - "EmployeeID": 2, - "OrderDate": "1996-07-25T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", - "ShipVia": 1, - "Freight": 55.28, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 11022, + "EmployeeID": 9, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 30, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10266, + "OrderID": 11052, "EmployeeID": 3, - "OrderDate": "1996-07-26T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", - "ShipVia": 3, - "Freight": 25.73, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 67.26, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", + "CustomerID": "VICTE", + "Company": "Victuailles en stock", + "ContactName": "Mary Saveley", + "ContactTitle": "Sales Agent", + "Address": "2, rue du Commerce", + "City": "Lyon", + "PostalCode": 69004, + "Country": "France", + "Phone": "78.32.54.86", + "Fax": "78.32.54.87", "Orders": [ { - "OrderID": 10267, - "EmployeeID": 4, - "OrderDate": "1996-07-29T00:00:00", - "RequiredDate": "1996-08-26T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", + "OrderID": 10251, + "EmployeeID": 3, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", "ShipVia": 1, - "Freight": 208.58, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 41.34, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, - "Discount": 0 + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 6, + "Discount": 0.06, + "Weight": 2.6, + "Length": 26.8, + "TotalPrice": 226.5 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 15, + "Discount": 0.06, + "Weight": 3.1, + "Length": 24.3, + "TotalPrice": 219.25 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0, + "Weight": 2.4, + "Length": 23.7, + "TotalPrice": 207 } ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10268, + "OrderID": 10334, "EmployeeID": 8, - "OrderDate": "1996-07-30T00:00:00", - "RequiredDate": "1996-08-27T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 3, - "Freight": 66.29, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", + "OrderDate": "1996-10-21T00:00:00", + "RequiredDate": "1996-11-18T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", + "ShipVia": 2, + "Freight": 8.56, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 10, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 4, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10269, - "EmployeeID": 5, - "OrderDate": "1996-07-31T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", - "ShipVia": 1, - "Freight": 4.56, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10450, + "EmployeeID": 8, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-19T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", + "ShipVia": 2, + "Freight": 7.23, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 6, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10270, - "EmployeeID": 1, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 1, - "Freight": 136.54, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10459, + "EmployeeID": 4, + "OrderDate": "1997-02-27T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 25.09, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 25, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10271, - "EmployeeID": 6, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", - "ShipVia": 2, - "Freight": 4.54, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 10478, + "EmployeeID": 2, + "OrderDate": "1997-03-18T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-26T00:00:00", + "ShipVia": 3, + "Freight": 4.81, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 24, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10272, - "EmployeeID": 6, - "OrderDate": "1996-08-02T00:00:00", - "RequiredDate": "1996-08-30T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", - "ShipVia": 2, - "Freight": 98.03, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10546, + "EmployeeID": 1, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-05-27T00:00:00", + "ShipVia": 3, + "Freight": 194.72, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 6, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 24, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10273, + "OrderID": 10806, "EmployeeID": 3, - "OrderDate": "1996-08-05T00:00:00", - "RequiredDate": "1996-09-02T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", - "ShipVia": 3, - "Freight": 76.07, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 2, + "Freight": 22.11, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 24, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.06 - }, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 2, + "Discount": 0 + }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10814, + "EmployeeID": 3, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 3, + "Freight": 130.94, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 33, - "Discount": 0.06 + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 8, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10274, - "EmployeeID": 6, - "OrderDate": "1996-08-06T00:00:00", - "RequiredDate": "1996-09-03T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", + "OrderID": 10843, + "EmployeeID": 4, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", + "ShipVia": 2, + "Freight": 9.26, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 4, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10850, + "EmployeeID": 1, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 6.01, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, + "Freight": 49.19, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, + "ProductID": 25, + "UnitPrice": 14, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 4, + "Discount": 0.16 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "SUPRD", + "Company": "Suprêmes délices", + "ContactName": "Pascale Cartrain", + "ContactTitle": "Accounting Manager", + "Address": "Boulevard Tirou, 255", + "City": "Charleroi", + "PostalCode": 6000, + "Country": "Belgium", + "Phone": "(071) 23 67 22 20", + "Fax": "(071) 23 67 22 21", "Orders": [ { - "OrderID": 10275, - "EmployeeID": 1, - "OrderDate": "1996-08-07T00:00:00", - "RequiredDate": "1996-09-04T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", - "ShipVia": 1, - "Freight": 26.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10252, + "EmployeeID": 4, + "OrderDate": "1996-07-09T00:00:00", + "RequiredDate": "1996-08-06T00:00:00", + "ShippedDate": "1996-07-11T00:00:00", + "ShipVia": 2, + "Freight": 51.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 40, "Discount": 0.06 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 6, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 25, "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10276, - "EmployeeID": 8, - "OrderDate": "1996-08-08T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-14T00:00:00", - "ShipVia": 3, - "Freight": 13.84, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10302, + "EmployeeID": 4, + "OrderDate": "1996-09-10T00:00:00", + "RequiredDate": "1996-10-08T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 15, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10277, - "EmployeeID": 2, - "OrderDate": "1996-08-09T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-08-13T00:00:00", + "OrderID": 10458, + "EmployeeID": 7, + "OrderDate": "1997-02-26T00:00:00", + "RequiredDate": "1997-03-26T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", "ShipVia": 3, - "Freight": 125.77, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 147.06, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, + "Discount": 0 + }, { "ProductID": 28, "UnitPrice": 36.4, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 12, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10278, - "EmployeeID": 8, - "OrderDate": "1996-08-12T00:00:00", - "RequiredDate": "1996-09-09T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 2, - "Freight": 92.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 26000, - "ShipCountry": "Sweden", + "OrderID": 10463, + "EmployeeID": 5, + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-06T00:00:00", + "ShipVia": 3, + "Freight": 14.78, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 16, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 50, "Discount": 0 + } + ] + }, + { + "OrderID": 10475, + "EmployeeID": 9, + "OrderDate": "1997-03-14T00:00:00", + "RequiredDate": "1997-04-11T00:00:00", + "ShippedDate": "1997-04-04T00:00:00", + "ShipVia": 1, + "Freight": 68.52, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 8, - "Discount": 0 + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, + "Discount": 0.16 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 42, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10279, - "EmployeeID": 8, - "OrderDate": "1996-08-13T00:00:00", - "RequiredDate": "1996-09-10T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 2, - "Freight": 25.83, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10767, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 3, + "Freight": 1.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 2, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 34000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10280, - "EmployeeID": 2, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-09-11T00:00:00", - "ShippedDate": "1996-09-12T00:00:00", - "ShipVia": 1, - "Freight": 8.98, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 50000, - "ShipCountry": "Sweden", + "OrderID": 10841, + "EmployeeID": 5, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", + "ShipVia": 2, + "Freight": 424.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 20, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10281, - "EmployeeID": 4, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-08-28T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 2.94, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10846, + "EmployeeID": 2, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 56.46, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 1, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 6, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 } ] }, { - "OrderID": 10282, - "EmployeeID": 4, - "OrderDate": "1996-08-15T00:00:00", - "RequiredDate": "1996-09-12T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10283, - "EmployeeID": 3, - "OrderDate": "1996-08-16T00:00:00", - "RequiredDate": "1996-09-13T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", + "OrderID": 10885, + "EmployeeID": 6, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 3, - "Freight": 84.81, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 5.64, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 12.4, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 20, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 35, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 3, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10284, + "OrderID": 10930, "EmployeeID": 4, - "OrderDate": "1996-08-19T00:00:00", - "RequiredDate": "1996-09-16T00:00:00", - "ShippedDate": "1996-08-27T00:00:00", - "ShipVia": 1, - "Freight": 76.56, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 3, + "Freight": 15.55, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 21, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 67, - "UnitPrice": 11.2, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10285, - "EmployeeID": 1, - "OrderDate": "1996-08-20T00:00:00", - "RequiredDate": "1996-09-17T00:00:00", - "ShippedDate": "1996-08-26T00:00:00", + "OrderID": 11035, + "EmployeeID": 2, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", "ShipVia": 2, - "Freight": 76.83, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 0.17, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 45, - "Discount": 0.2 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.2 + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 36, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, + "Discount": 0 } ] }, { - "OrderID": 10286, - "EmployeeID": 8, - "OrderDate": "1996-08-21T00:00:00", - "RequiredDate": "1996-09-18T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", - "ShipVia": 3, - "Freight": 229.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 11038, + "EmployeeID": 1, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", + "ShipVia": 2, + "Freight": 29.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 100, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, + "Discount": 0.2 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] @@ -1763,327 +1555,272 @@ ] }, { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", + "CustomerID": "CHOPS", + "Company": "Chop-suey Chinese", + "ContactName": "Yang Wang", + "ContactTitle": "Owner", + "Address": "Hauptstr. 29", + "City": "Bern", + "PostalCode": 3012, + "Country": "Switzerland", + "Phone": "0452-076545", "Orders": [ { - "OrderID": 10287, - "EmployeeID": 8, - "OrderDate": "1996-08-22T00:00:00", - "RequiredDate": "1996-09-19T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", - "ShipVia": 3, - "Freight": 12.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10254, + "EmployeeID": 5, + "OrderDate": "1996-07-11T00:00:00", + "RequiredDate": "1996-08-08T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 2, + "Freight": 22.98, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, "Discount": 0.16 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 21, + "Discount": 0.16 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10288, - "EmployeeID": 4, - "OrderDate": "1996-08-23T00:00:00", - "RequiredDate": "1996-09-20T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", - "ShipVia": 1, - "Freight": 7.45, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10370, + "EmployeeID": 6, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-27T00:00:00", + "ShipVia": 2, + "Freight": 1.17, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10289, - "EmployeeID": 7, - "OrderDate": "1996-08-26T00:00:00", - "RequiredDate": "1996-09-23T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", + "OrderID": 10519, + "EmployeeID": 6, + "OrderDate": "1997-04-28T00:00:00", + "RequiredDate": "1997-05-26T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", "ShipVia": 3, - "Freight": 22.77, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 18000, - "ShipCountry": "UK", + "Freight": 91.76, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 9, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10290, - "EmployeeID": 8, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", + "OrderID": 10731, + "EmployeeID": 7, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", "ShipVia": 1, - "Freight": 79.7, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 96.65, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10746, + "EmployeeID": 1, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 3, + "Freight": 31.43, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10291, - "EmployeeID": 6, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-04T00:00:00", - "ShipVia": 2, - "Freight": 6.4, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10966, + "EmployeeID": 4, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 27.19, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10292, - "EmployeeID": 1, - "OrderDate": "1996-08-28T00:00:00", - "RequiredDate": "1996-09-25T00:00:00", - "ShippedDate": "1996-09-02T00:00:00", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "OrderID": 11029, + "EmployeeID": 4, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 47.84, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10293, - "EmployeeID": 1, - "OrderDate": "1996-08-29T00:00:00", - "RequiredDate": "1996-09-26T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 3, - "Freight": 21.18, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 11041, + "EmployeeID": 3, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", + "ShipVia": 2, + "Freight": 48.22, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 }, { "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, + "UnitPrice": 43.9, + "Quantity": 30, "Discount": 0 } ] @@ -2091,1519 +1828,1223 @@ ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "RICSU", + "Company": "Richter Supermarkt", + "ContactName": "Michael Holz", + "ContactTitle": "Sales Manager", + "Address": "Grenzacherweg 237", + "City": "Genève", + "PostalCode": 1203, + "Country": "Switzerland", + "Phone": "0897-034214", "Orders": [ { - "OrderID": 10294, - "EmployeeID": 4, - "OrderDate": "1996-08-30T00:00:00", - "RequiredDate": "1996-09-27T00:00:00", - "ShippedDate": "1996-09-05T00:00:00", - "ShipVia": 2, - "Freight": 147.26, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10255, + "EmployeeID": 9, + "OrderDate": "1996-07-12T00:00:00", + "RequiredDate": "1996-08-09T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", + "ShipVia": 3, + "Freight": 148.33, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 15, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 21, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10295, - "EmployeeID": 2, - "OrderDate": "1996-09-02T00:00:00", - "RequiredDate": "1996-09-30T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", + "OrderID": 10419, + "EmployeeID": 4, + "OrderDate": "1997-01-20T00:00:00", + "RequiredDate": "1997-02-17T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", "ShipVia": 2, - "Freight": 1.15, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 137.35, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 4, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10296, - "EmployeeID": 6, - "OrderDate": "1996-09-03T00:00:00", - "RequiredDate": "1996-10-01T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", + "OrderID": 10537, + "EmployeeID": 1, + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", "ShipVia": 1, - "Freight": 0.12, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 78.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 12, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 30, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10297, - "EmployeeID": 5, - "OrderDate": "1996-09-04T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", + "OrderID": 10666, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", "ShipVia": 2, - "Freight": 5.74, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 232.42, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 60, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, - "Discount": 0 - } + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0 + } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10298, - "EmployeeID": 6, - "OrderDate": "1996-09-05T00:00:00", - "RequiredDate": "1996-10-03T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 2, - "Freight": 168.22, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10751, + "EmployeeID": 3, + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-12-03T00:00:00", + "ShipVia": 3, + "Freight": 130.79, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 39.4, + "ProductID": 73, + "UnitPrice": 15, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10299, - "EmployeeID": 4, - "OrderDate": "1996-09-06T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-13T00:00:00", - "ShipVia": 2, - "Freight": 29.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10758, + "EmployeeID": 3, + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-04T00:00:00", + "ShipVia": 3, + "Freight": 138.17, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 60, "Discount": 0 }, { "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, + "UnitPrice": 15, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10300, - "EmployeeID": 2, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", + "OrderID": 10931, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 17.68, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 13.6, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 30, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 42, + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10301, - "EmployeeID": 8, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", + "OrderID": 10951, + "EmployeeID": 9, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", "ShipVia": 2, - "Freight": 45.08, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 30.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10302, - "EmployeeID": 4, - "OrderDate": "1996-09-10T00:00:00", - "RequiredDate": "1996-10-08T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 11033, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 84.74, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 28, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 36, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10303, - "EmployeeID": 7, - "OrderDate": "1996-09-11T00:00:00", - "RequiredDate": "1996-10-09T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", + "OrderID": 11075, + "EmployeeID": 8, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", "ShipVia": 2, - "Freight": 107.83, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 6.19, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 46, + "UnitPrice": 12, "Quantity": 30, - "Discount": 0.1 + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", + "CustomerID": "WELLI", + "Company": "Wellington Importadora", + "ContactName": "Paula Parente", + "ContactTitle": "Sales Manager", + "Address": "Rua do Mercado, 12", + "City": "Resende", + "Region": "SP", + "PostalCode": 8737, + "Country": "Brazil", + "Phone": "(14) 555-8122", "Orders": [ { - "OrderID": 10304, - "EmployeeID": 1, - "OrderDate": "1996-09-12T00:00:00", - "RequiredDate": "1996-10-10T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", + "OrderID": 10256, + "EmployeeID": 3, + "OrderDate": "1996-07-15T00:00:00", + "RequiredDate": "1996-08-12T00:00:00", + "ShippedDate": "1996-07-17T00:00:00", "ShipVia": 2, - "Freight": 63.79, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 13.97, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 10, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10305, - "EmployeeID": 8, - "OrderDate": "1996-09-13T00:00:00", - "RequiredDate": "1996-10-11T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 3, - "Freight": 257.62, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10420, + "EmployeeID": 3, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 1, + "Freight": 44.12, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 25, + "ProductID": 9, + "UnitPrice": 77.6, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 25, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 2, "Discount": 0.1 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 30, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10306, - "EmployeeID": 1, - "OrderDate": "1996-09-16T00:00:00", - "RequiredDate": "1996-10-14T00:00:00", - "ShippedDate": "1996-09-23T00:00:00", - "ShipVia": 3, - "Freight": 7.56, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10585, + "EmployeeID": 7, + "OrderDate": "1997-07-01T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", + "ShipVia": 1, + "Freight": 13.41, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 5, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10307, - "EmployeeID": 2, - "OrderDate": "1996-09-17T00:00:00", - "RequiredDate": "1996-10-15T00:00:00", - "ShippedDate": "1996-09-25T00:00:00", + "OrderID": 10644, + "EmployeeID": 3, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 0.14, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ - { - "OrderID": 10308, - "EmployeeID": 7, - "OrderDate": "1996-09-18T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-24T00:00:00", - "ShipVia": 3, - "Freight": 1.61, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 1, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 70, + "ProductID": 46, "UnitPrice": 12, - "Quantity": 5, - "Discount": 0 + "Quantity": 21, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10309, - "EmployeeID": 3, - "OrderDate": "1996-09-19T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", + "OrderID": 10803, + "EmployeeID": 4, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-06T00:00:00", "ShipVia": 1, - "Freight": 47.3, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 55.23, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 24, + "Discount": 0.06 }, { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 30, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 2, - "Discount": 0 - }, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 15, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10809, + "EmployeeID": 7, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", + "ShipVia": 1, + "Freight": 4.87, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 43, - "UnitPrice": 36.8, + "ProductID": 52, + "UnitPrice": 7, "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 3, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10310, - "EmployeeID": 8, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-18T00:00:00", - "ShippedDate": "1996-09-27T00:00:00", + "OrderID": 10900, + "EmployeeID": 1, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 2, - "Freight": 17.52, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "Freight": 1.66, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 10, - "Discount": 0 - }, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10905, + "EmployeeID": 9, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 13.72, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 5, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10311, - "EmployeeID": 1, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-26T00:00:00", + "OrderID": 10935, + "EmployeeID": 4, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 3, - "Freight": 24.69, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 47.59, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 6, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.25 + }, + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 8, + "Discount": 0.25 } ] } ] }, { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", + "CustomerID": "HILAA", + "Company": "HILARION-Abastos", + "ContactName": "Carlos Hernández", "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", + "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", "Orders": [ { - "OrderID": 10312, - "EmployeeID": 2, - "OrderDate": "1996-09-23T00:00:00", - "RequiredDate": "1996-10-21T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", - "ShipVia": 2, - "Freight": 40.26, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10257, + "EmployeeID": 4, + "OrderDate": "1996-07-16T00:00:00", + "RequiredDate": "1996-08-13T00:00:00", + "ShippedDate": "1996-07-22T00:00:00", + "ShipVia": 3, + "Freight": 81.91, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 4, + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 24, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10395, + "EmployeeID": 6, + "OrderDate": "1996-12-26T00:00:00", + "RequiredDate": "1997-01-23T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 1, + "Freight": 184.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 28, + "Discount": 0.1 }, { "ProductID": 53, "UnitPrice": 26.2, - "Quantity": 20, - "Discount": 0 + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10313, - "EmployeeID": 2, - "OrderDate": "1996-09-24T00:00:00", - "RequiredDate": "1996-10-22T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", - "ShipVia": 2, - "Freight": 1.96, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10476, + "EmployeeID": 8, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", + "ShipVia": 3, + "Freight": 4.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 12, "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10314, + "OrderID": 10486, "EmployeeID": 1, - "OrderDate": "1996-09-25T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", "ShipVia": 2, - "Freight": 74.16, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 30.53, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 10.6, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 16, + "Discount": 0 + } + ] + }, + { + "OrderID": 10490, + "EmployeeID": 7, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-03T00:00:00", + "ShipVia": 2, + "Freight": 210.19, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, "Quantity": 30, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 36, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 42000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10315, - "EmployeeID": 4, - "OrderDate": "1996-09-26T00:00:00", - "RequiredDate": "1996-10-24T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", + "OrderID": 10498, + "EmployeeID": 8, + "OrderDate": "1997-04-07T00:00:00", + "RequiredDate": "1997-05-05T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 2, - "Freight": 41.76, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40301, - "ShipPostalCode": 32000, - "ShipCountry": "UK", + "Freight": 29.75, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 14, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10316, - "EmployeeID": 1, - "OrderDate": "1996-09-27T00:00:00", - "RequiredDate": "1996-10-25T00:00:00", - "ShippedDate": "1996-10-08T00:00:00", - "ShipVia": 3, - "Freight": 150.15, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10552, + "EmployeeID": 2, + "OrderDate": "1997-05-29T00:00:00", + "RequiredDate": "1997-06-26T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 1, + "Freight": 83.22, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 70, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10317, - "EmployeeID": 6, - "OrderDate": "1996-09-30T00:00:00", - "RequiredDate": "1996-10-28T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", + "OrderID": 10601, + "EmployeeID": 7, + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 58.3, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 20, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10318, - "EmployeeID": 8, - "OrderDate": "1996-10-01T00:00:00", - "RequiredDate": "1996-10-29T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderID": 10613, + "EmployeeID": 4, + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 4.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 30575, - "ShipPostalCode": 43000, - "ShipCountry": "UK", + "Freight": 8.11, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 6, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10319, - "EmployeeID": 7, - "OrderDate": "1996-10-02T00:00:00", - "RequiredDate": "1996-10-30T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", - "ShipVia": 3, - "Freight": 64.5, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10641, + "EmployeeID": 4, + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 2, + "Freight": 179.61, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 14, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10320, - "EmployeeID": 5, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-18T00:00:00", - "ShipVia": 3, - "Freight": 34.57, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10705, + "EmployeeID": 9, + "OrderDate": "1997-10-15T00:00:00", + "RequiredDate": "1997-11-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 3.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10321, + "OrderID": 10796, "EmployeeID": 3, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-31T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", - "ShipVia": 2, - "Freight": 3.43, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 80331, - "ShipPostalCode": 24000, - "ShipCountry": "UK", + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 1, + "Freight": 26.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 21, + "Discount": 0.2 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10322, - "EmployeeID": 7, - "OrderDate": "1996-10-04T00:00:00", - "RequiredDate": "1996-11-01T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", - "ShipVia": 3, - "Freight": 0.4, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 24, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10323, + "OrderID": 10863, "EmployeeID": 4, - "OrderDate": "1996-10-07T00:00:00", - "RequiredDate": "1996-11-04T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 1, - "Freight": 4.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 30.26, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 12.4, - "Quantity": 5, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 4, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 12, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10901, + "EmployeeID": 4, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", + "ShipVia": 1, + "Freight": 62.09, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10324, - "EmployeeID": 9, - "OrderDate": "1996-10-08T00:00:00", - "RequiredDate": "1996-11-05T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", - "ShipVia": 1, - "Freight": 214.27, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10957, + "EmployeeID": 8, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 105.36, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.16 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 70, - "Discount": 0.16 + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 30, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 8, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10960, + "EmployeeID": 3, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 2.08, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 80, - "Discount": 0.16 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10325, + "OrderID": 10976, "EmployeeID": 1, - "OrderDate": "1996-10-09T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 3, - "Freight": 64.86, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 1, + "Freight": 37.97, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 6, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 11055, + "EmployeeID": 7, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", + "ShipVia": 2, + "Freight": 120.92, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 12, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 9, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ - { - "OrderID": 10326, - "EmployeeID": 4, - "OrderDate": "1996-10-10T00:00:00", - "RequiredDate": "1996-11-07T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 2, - "Freight": 77.92, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 24, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 16, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 50, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] @@ -3611,1149 +3052,787 @@ ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 31000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", "Orders": [ { - "OrderID": 10327, - "EmployeeID": 2, - "OrderDate": "1996-10-11T00:00:00", - "RequiredDate": "1996-11-08T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", + "OrderID": 10258, + "EmployeeID": 1, + "OrderDate": "1996-07-17T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", "ShipVia": 1, - "Freight": 63.36, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", + "Freight": 140.51, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 11, - "UnitPrice": 16.8, "Quantity": 50, "Discount": 0.2 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 35, + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 65, "Discount": 0.2 }, { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10328, - "EmployeeID": 4, - "OrderDate": "1996-10-14T00:00:00", - "RequiredDate": "1996-11-11T00:00:00", - "ShippedDate": "1996-10-17T00:00:00", + "OrderID": 10263, + "EmployeeID": 9, + "OrderDate": "1996-07-23T00:00:00", + "RequiredDate": "1996-08-20T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", "ShipVia": 3, - "Freight": 87.03, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 146.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 36, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10329, - "EmployeeID": 4, - "OrderDate": "1996-10-15T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", - "ShipVia": 2, - "Freight": 191.67, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 10351, + "EmployeeID": 1, + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 162.33, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 10, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 20, "Discount": 0.06 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 13, + "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 20, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 77, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 12, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 10, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10330, - "EmployeeID": 3, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", - "ShipVia": 1, - "Freight": 12.75, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10368, + "EmployeeID": 2, + "OrderDate": "1996-11-29T00:00:00", + "RequiredDate": "1996-12-27T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 101.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 5, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 13, + "Discount": 0.1 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 25, - "Discount": 0.16 + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10331, - "EmployeeID": 9, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-27T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", + "OrderID": 10382, + "EmployeeID": 4, + "OrderDate": "1996-12-13T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1996-12-16T00:00:00", "ShipVia": 1, - "Freight": 10.19, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 94.77, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 32, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 49000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10332, - "EmployeeID": 3, - "OrderDate": "1996-10-17T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", - "ShipVia": 2, - "Freight": 52.84, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { "ProductID": 18, "UnitPrice": 50, - "Quantity": 40, - "Discount": 0.2 + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 16, - "Discount": 0.2 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10333, - "EmployeeID": 5, - "OrderDate": "1996-10-18T00:00:00", - "RequiredDate": "1996-11-15T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", - "ShipVia": 3, - "Freight": 0.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10390, + "EmployeeID": 6, + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-26T00:00:00", + "ShipVia": 1, + "Freight": 126.38, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 40, "Discount": 0.1 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 40, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10334, + "OrderID": 10402, "EmployeeID": 8, - "OrderDate": "1996-10-21T00:00:00", - "RequiredDate": "1996-11-18T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", + "OrderDate": "1997-01-02T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", "ShipVia": 2, - "Freight": 8.56, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 67.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 8, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 65, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10335, - "EmployeeID": 7, - "OrderDate": "1996-10-22T00:00:00", - "RequiredDate": "1996-11-19T00:00:00", - "ShippedDate": "1996-10-24T00:00:00", - "ShipVia": 2, - "Freight": 42.11, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10430, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-03T00:00:00", + "ShipVia": 1, + "Freight": 458.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 7, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 45, "Discount": 0.2 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 48, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10336, - "EmployeeID": 7, - "OrderDate": "1996-10-23T00:00:00", - "RequiredDate": "1996-11-20T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", + "OrderID": 10442, + "EmployeeID": 3, + "OrderDate": "1997-02-11T00:00:00", + "RequiredDate": "1997-03-11T00:00:00", + "ShippedDate": "1997-02-18T00:00:00", "ShipVia": 2, - "Freight": 15.51, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "Freight": 47.94, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 80, + "Discount": 0 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10337, - "EmployeeID": 4, - "OrderDate": "1996-10-24T00:00:00", - "RequiredDate": "1996-11-21T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", - "ShipVia": 3, - "Freight": 108.26, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10514, + "EmployeeID": 3, + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 2, + "Freight": 789.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 39, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 24, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 20, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 28, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 39, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10338, - "EmployeeID": 4, - "OrderDate": "1996-10-25T00:00:00", - "RequiredDate": "1996-11-22T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", + "OrderID": 10571, + "EmployeeID": 8, + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 3, - "Freight": 84.21, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 20, - "Discount": 0 + "Freight": 26.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 11, + "Discount": 0.16 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 15, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 46000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10339, + "OrderID": 10595, "EmployeeID": 2, - "OrderDate": "1996-10-28T00:00:00", - "RequiredDate": "1996-11-25T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 15.66, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 40000, - "ShipCountry": "Canada", + "OrderDate": "1997-07-10T00:00:00", + "RequiredDate": "1997-08-07T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 1, + "Freight": 96.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 120, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 28, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 65, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10340, - "EmployeeID": 1, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", + "OrderID": 10633, + "EmployeeID": 7, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-18T00:00:00", "ShipVia": 3, - "Freight": 166.31, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 477.9, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 13, + "Discount": 0.16 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 80, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10341, + "OrderID": 10667, "EmployeeID": 7, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", - "ShipVia": 3, - "Freight": 26.78, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 78.09, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 8, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 14, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10342, + "OrderID": 10698, "EmployeeID": 4, - "OrderDate": "1996-10-30T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 54.83, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-17T00:00:00", + "ShipVia": 1, + "Freight": 272.47, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 24, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 56, - "Discount": 0.2 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.06 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 65, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 8, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10343, - "EmployeeID": 4, - "OrderDate": "1996-10-31T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-11-06T00:00:00", - "ShipVia": 1, - "Freight": 110.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10764, + "EmployeeID": 6, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 3, + "Freight": 145.45, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 68, + "ProductID": 3, "UnitPrice": 10, - "Quantity": 4, - "Discount": 0.06 + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 130, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10344, - "EmployeeID": 4, - "OrderDate": "1996-11-01T00:00:00", - "RequiredDate": "1996-11-29T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", + "OrderID": 10771, + "EmployeeID": 9, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", "ShipVia": 2, - "Freight": 23.29, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 11.19, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 35, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 16, "Discount": 0 - }, - { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10345, - "EmployeeID": 2, - "OrderDate": "1996-11-04T00:00:00", - "RequiredDate": "1996-12-02T00:00:00", - "ShippedDate": "1996-11-11T00:00:00", - "ShipVia": 2, - "Freight": 249.06, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10773, + "EmployeeID": 1, + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1998-01-08T00:00:00", + "ShippedDate": "1997-12-16T00:00:00", + "ShipVia": 3, + "Freight": 96.43, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 33, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 80, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 70, + "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 9, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 7, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10346, - "EmployeeID": 3, - "OrderDate": "1996-11-05T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", + "OrderID": 10776, + "EmployeeID": 1, + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1998-01-12T00:00:00", + "ShippedDate": "1997-12-18T00:00:00", "ShipVia": 3, - "Freight": 142.08, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 351.53, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 36, - "Discount": 0.1 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10347, - "EmployeeID": 4, - "OrderDate": "1996-11-06T00:00:00", - "RequiredDate": "1996-12-04T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 3.1, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 4, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 27, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 120, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10348, - "EmployeeID": 4, - "OrderDate": "1996-11-07T00:00:00", - "RequiredDate": "1996-12-05T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", + "OrderID": 10795, + "EmployeeID": 8, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-20T00:00:00", "ShipVia": 2, - "Freight": 0.78, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 126.66, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 65, + "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 25, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10349, + "OrderID": 10836, "EmployeeID": 7, - "OrderDate": "1996-11-08T00:00:00", - "RequiredDate": "1996-12-06T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", "ShipVia": 1, - "Freight": 8.63, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 411.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 52, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, "Quantity": 24, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10350, - "EmployeeID": 6, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", - "ShipVia": 2, - "Freight": 64.19, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ + }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10351, - "EmployeeID": 1, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 162.33, + "OrderID": 10854, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-05T00:00:00", + "ShipVia": 2, + "Freight": 100.22, "ShipName": "Ernst Handel", "ShipAddress": "Kirchgasse 6", "ShipCity": "Graz", @@ -4761,450 +3840,329 @@ "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 100, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 13, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 77, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 65, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10352, + "OrderID": 10895, "EmployeeID": 3, - "OrderDate": "1996-11-12T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-18T00:00:00", - "ShipVia": 3, - "Freight": 1.3, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", + "ShipVia": 1, + "Freight": 162.75, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, + "UnitPrice": 4.5, + "Quantity": 110, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 91, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 100, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10353, - "EmployeeID": 7, - "OrderDate": "1996-11-13T00:00:00", - "RequiredDate": "1996-12-11T00:00:00", - "ShippedDate": "1996-11-25T00:00:00", + "OrderID": 10968, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-01T00:00:00", "ShipVia": 3, - "Freight": 360.63, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, + "Freight": 74.6, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10354, + "OrderID": 10979, "EmployeeID": 8, - "OrderDate": "1996-11-14T00:00:00", - "RequiredDate": "1996-12-12T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 3, - "Freight": 53.8, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-03-31T00:00:00", + "ShipVia": 2, + "Freight": 353.07, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 12, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 4, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 19000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10355, - "EmployeeID": 6, - "OrderDate": "1996-11-15T00:00:00", - "RequiredDate": "1996-12-13T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 41.95, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 37000, - "ShipCountry": "UK", - "OrderDetails": [ + }, { "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, + "UnitPrice": 4.5, + "Quantity": 80, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10356, - "EmployeeID": 6, - "OrderDate": "1996-11-18T00:00:00", - "RequiredDate": "1996-12-16T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 2, - "Freight": 36.71, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10990, + "EmployeeID": 2, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 3, + "Freight": 117.61, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 31, + "ProductID": 21, "UnitPrice": 10, - "Quantity": 30, + "Quantity": 65, "Discount": 0 }, + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 60, + "Discount": 0.16 + }, { "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 12, - "Discount": 0 + "UnitPrice": 24, + "Quantity": 65, + "Discount": 0.16 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 66, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10357, - "EmployeeID": 1, - "OrderDate": "1996-11-19T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 11008, + "EmployeeID": 7, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", "ShipVia": 3, - "Freight": 34.88, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 79.46, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 16, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 90, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 8, - "Discount": 0.2 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10358, - "EmployeeID": 5, - "OrderDate": "1996-11-20T00:00:00", - "RequiredDate": "1996-12-18T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 1, - "Freight": 19.64, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 11017, + "EmployeeID": 9, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 2, + "Freight": 754.26, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 110, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10359, - "EmployeeID": 5, - "OrderDate": "1996-11-21T00:00:00", - "RequiredDate": "1996-12-19T00:00:00", - "ShippedDate": "1996-11-26T00:00:00", - "ShipVia": 3, - "Freight": 288.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "OrderID": 11072, + "EmployeeID": 4, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShipVia": 2, + "Freight": 258.64, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 56, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 22, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 130, + "Discount": 0 } ] } ] }, { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", + "CustomerID": "CENTC", + "Company": "Centro comercial Moctezuma", + "ContactName": "Francisco Chang", "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", + "Address": "Sierras de Granada 9993", + "City": "México D.F.", + "PostalCode": 5022, + "Country": "Mexico", + "Phone": "(5) 555-3392", + "Fax": "(5) 555-7293", "Orders": [ { - "OrderID": 10360, + "OrderID": 10259, "EmployeeID": 4, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderDate": "1996-07-18T00:00:00", + "RequiredDate": "1996-08-15T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", "ShipVia": 3, - "Freight": 131.7, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 3.25, + "ShipName": "Centro comercial Moctezuma", + "ShipAddress": "Sierras de Granada 9993", + "ShipCity": "México D.F.", + "ShipPostalCode": 5022, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 210.8, + "ProductID": 21, + "UnitPrice": 8, "Quantity": 10, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 28, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 1, "Discount": 0 } ] @@ -5212,815 +4170,636 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, + "CustomerID": "OTTIK", + "Company": "Ottilies Käseladen", + "ContactName": "Henriette Pfalzheim", + "ContactTitle": "Owner", + "Address": "Mehrheimerstr. 369", + "City": "Köln", + "PostalCode": 50739, "Country": "Germany", - "Phone": "0372-035188", + "Phone": "0221-0644327", + "Fax": "0221-0765721", "Orders": [ { - "OrderID": 10361, - "EmployeeID": 1, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", - "ShipVia": 2, - "Freight": 183.17, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, + "OrderID": 10260, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-29T00:00:00", + "ShipVia": 1, + "Freight": 55.09, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 54, - "Discount": 0.1 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 16, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 55, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10362, - "EmployeeID": 3, - "OrderDate": "1996-11-25T00:00:00", - "RequiredDate": "1996-12-23T00:00:00", - "ShippedDate": "1996-11-28T00:00:00", - "ShipVia": 1, - "Freight": 96.04, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 11.2, + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 50, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10363, - "EmployeeID": 4, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1996-12-24T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", - "ShipVia": 3, - "Freight": 30.54, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, + "OrderID": 10407, + "EmployeeID": 2, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-04T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", + "ShipVia": 2, + "Freight": 91.48, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 12, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, "Discount": 0 }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ - { - "OrderID": 10364, - "EmployeeID": 1, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", - "ShipVia": 1, - "Freight": 71.97, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 20000, - "ShipCountry": "UK", - "OrderDetails": [ { "ProductID": 69, "UnitPrice": 28.8, - "Quantity": 30, + "Quantity": 15, "Discount": 0 }, { "ProductID": 71, "UnitPrice": 17.2, - "Quantity": 5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10365, - "EmployeeID": 3, - "OrderDate": "1996-11-27T00:00:00", - "RequiredDate": "1996-12-25T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 10508, + "EmployeeID": 1, + "OrderDate": "1997-04-16T00:00:00", + "RequiredDate": "1997-05-14T00:00:00", + "ShippedDate": "1997-05-13T00:00:00", "ShipVia": 2, - "Freight": 22, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "Freight": 4.99, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 24, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10366, - "EmployeeID": 8, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1996-12-30T00:00:00", - "ShipVia": 2, - "Freight": 10.14, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 10554, + "EmployeeID": 4, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 3, + "Freight": 120.97, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 5, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 }, { "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, - "Discount": 0 + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10367, - "EmployeeID": 7, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1996-12-26T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 10580, + "EmployeeID": 4, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-01T00:00:00", "ShipVia": 3, - "Freight": 13.55, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 75.89, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 36, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 18, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, + "Discount": 0.06 }, { "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0 + "UnitPrice": 21.05, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10368, - "EmployeeID": 2, - "OrderDate": "1996-11-29T00:00:00", - "RequiredDate": "1996-12-27T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 2, - "Freight": 101.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10684, + "EmployeeID": 3, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 1, + "Freight": 145.63, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 13, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10369, - "EmployeeID": 8, - "OrderDate": "1996-12-02T00:00:00", - "RequiredDate": "1996-12-30T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 2, - "Freight": 195.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 10766, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 157.55, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 20, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10370, + "OrderID": 10833, "EmployeeID": 6, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-27T00:00:00", + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 2, - "Freight": 1.17, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 71.49, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 9, + "Discount": 0.1 }, { - "ProductID": 74, - "UnitPrice": 8, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 9, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10999, + "EmployeeID": 6, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-01T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 96.35, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 21, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10371, - "EmployeeID": 1, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", - "ShipVia": 1, - "Freight": 0.45, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 11020, + "EmployeeID": 2, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 2, + "Freight": 43.3, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 24, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", + "CustomerID": "QUEDE", + "Company": "Que Delícia", + "ContactName": "Bernardo Batista", + "ContactTitle": "Accounting Manager", + "Address": "Rua da Panificadora, 12", "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, + "Region": "RJ", + "PostalCode": 2389, "Country": "Brazil", - "Phone": "(11) 555-1189", + "Phone": "(21) 555-4252", + "Fax": "(21) 555-4545", "Orders": [ { - "OrderID": 10372, - "EmployeeID": 5, - "OrderDate": "1996-12-04T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", + "OrderID": 10261, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-30T00:00:00", "ShipVia": 2, - "Freight": 890.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, + "Freight": 3.05, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 12, - "Discount": 0.25 - }, - { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 70, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 42, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10373, - "EmployeeID": 4, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-11T00:00:00", - "ShipVia": 3, - "Freight": 124.12, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10291, + "EmployeeID": 6, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-04T00:00:00", + "ShipVia": 2, + "Freight": 6.4, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 80, - "Discount": 0.2 + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 24, + "Discount": 0.1 + }, + { + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10374, - "EmployeeID": 1, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 3, - "Freight": 3.94, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10379, + "EmployeeID": 2, + "OrderDate": "1996-12-11T00:00:00", + "RequiredDate": "1997-01-08T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 1, + "Freight": 45.03, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 15, - "Discount": 0 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 16, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10375, - "EmployeeID": 3, - "OrderDate": "1996-12-06T00:00:00", - "RequiredDate": "1997-01-03T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 2, - "Freight": 20.12, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "OrderID": 10421, + "EmployeeID": 8, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-03-04T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 1, + "Freight": 99.23, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 15, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 4, + "Discount": 0.16 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0.16 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, "Quantity": 10, - "Discount": 0 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 34000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10376, + "OrderID": 10587, "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 2, - "Freight": 20.39, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 11000, - "ShipCountry": "Canada", + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 1, + "Freight": 62.52, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 42, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 13000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10377, - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 22.21, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 41000, - "ShipCountry": "UK", + "OrderID": 10647, + "EmployeeID": 4, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 2, + "Freight": 45.54, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 39, - "UnitPrice": 14.4, + "UnitPrice": 18, "Quantity": 20, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 27000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10378, - "EmployeeID": 5, - "OrderDate": "1996-12-10T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-19T00:00:00", - "ShipVia": 3, - "Freight": 5.44, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "OrderID": 10720, + "EmployeeID": 8, + "OrderDate": "1997-10-28T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 2, + "Freight": 9.53, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 + }, { "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 6, + "UnitPrice": 21.5, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10379, + "OrderID": 10794, + "EmployeeID": 6, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 1, + "Freight": 21.49, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, + "Discount": 0.2 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10989, "EmployeeID": 2, - "OrderDate": "1996-12-11T00:00:00", - "RequiredDate": "1997-01-08T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", "ShipVia": 1, - "Freight": 45.03, + "Freight": 34.76, "ShipName": "Que Delícia", "ShipAddress": "Rua da Panificadora, 12", "ShipCity": "Lyon", @@ -6029,982 +4808,767 @@ "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 16, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, + "Discount": 0 } ] } ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", "Orders": [ { - "OrderID": 10380, + "OrderID": 10262, "EmployeeID": 8, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderDate": "1996-07-22T00:00:00", + "RequiredDate": "1996-08-19T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", "ShipVia": 3, - "Freight": 35.03, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 48.29, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10381, - "EmployeeID": 3, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 7.99, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10272, + "EmployeeID": 6, + "OrderDate": "1996-08-02T00:00:00", + "RequiredDate": "1996-08-30T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", + "ShipVia": 2, + "Freight": 98.03, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 14, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10382, + "OrderID": 10294, "EmployeeID": 4, - "OrderDate": "1996-12-13T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1996-12-16T00:00:00", - "ShipVia": 1, - "Freight": 94.77, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderDate": "1996-08-30T00:00:00", + "RequiredDate": "1996-09-27T00:00:00", + "ShippedDate": "1996-09-05T00:00:00", + "ShipVia": 2, + "Freight": 147.26, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 32, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 9, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 14, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 50, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 25000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10383, - "EmployeeID": 8, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-18T00:00:00", - "ShipVia": 3, - "Freight": 34.24, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 36000, - "ShipCountry": "UK", + "OrderID": 10314, + "EmployeeID": 1, + "OrderDate": "1996-09-25T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 74.16, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 25, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 13000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10384, - "EmployeeID": 3, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", + "OrderID": 10316, + "EmployeeID": 1, + "OrderDate": "1996-09-27T00:00:00", + "RequiredDate": "1996-10-25T00:00:00", + "ShippedDate": "1996-10-08T00:00:00", "ShipVia": 3, - "Freight": 168.64, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 33000, - "ShipCountry": "Sweden", + "Freight": 150.15, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 28, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 70, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10385, - "EmployeeID": 1, - "OrderDate": "1996-12-17T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1996-12-23T00:00:00", - "ShipVia": 2, - "Freight": 30.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, + "OrderID": 10346, + "EmployeeID": 3, + "OrderDate": "1996-11-05T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 142.08, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 36, + "Discount": 0.1 }, { - "ProductID": 60, - "UnitPrice": 27.2, + "ProductID": 56, + "UnitPrice": 30.4, "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 8, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10386, - "EmployeeID": 9, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-25T00:00:00", - "ShipVia": 3, - "Freight": 13.99, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10401, + "EmployeeID": 1, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", + "ShipVia": 1, + "Freight": 12.51, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10387, - "EmployeeID": 1, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-15T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 2, - "Freight": 93.63, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10479, + "EmployeeID": 3, + "OrderDate": "1997-03-19T00:00:00", + "RequiredDate": "1997-04-16T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", + "ShipVia": 3, + "Freight": 708.95, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 6, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 28, "Discount": 0 }, { "ProductID": 59, "UnitPrice": 44, - "Quantity": 12, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 12000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10388, - "EmployeeID": 2, - "OrderDate": "1996-12-19T00:00:00", - "RequiredDate": "1997-01-16T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 1, - "Freight": 34.86, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 45000, - "ShipCountry": "UK", + "OrderID": 10564, + "EmployeeID": 4, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-08T00:00:00", + "ShippedDate": "1997-06-16T00:00:00", + "ShipVia": 3, + "Freight": 13.75, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 7.6, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10569, + "EmployeeID": 5, + "OrderDate": "1997-06-16T00:00:00", + "RequiredDate": "1997-07-14T00:00:00", + "ShippedDate": "1997-07-11T00:00:00", + "ShipVia": 1, + "Freight": 58.98, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0.2 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 40, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 26000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10389, - "EmployeeID": 4, - "OrderDate": "1996-12-20T00:00:00", - "RequiredDate": "1997-01-17T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", - "ShipVia": 2, - "Freight": 47.42, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10598, + "EmployeeID": 1, + "OrderDate": "1997-07-14T00:00:00", + "RequiredDate": "1997-08-11T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", + "ShipVia": 3, + "Freight": 44.42, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 16, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 15, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 9, "Discount": 0 + } + ] + }, + { + "OrderID": 10761, + "EmployeeID": 5, + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 2, + "Freight": 18.66, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 20, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10820, + "EmployeeID": 3, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 37.52, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 12, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10390, - "EmployeeID": 6, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-26T00:00:00", + "OrderID": 10852, + "EmployeeID": 8, + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 126.38, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 174.05, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 45, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 50, + "Discount": 0 + } + ] + }, + { + "OrderID": 10889, + "EmployeeID": 9, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", + "ShipVia": 3, + "Freight": 280.61, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10391, + "OrderID": 10988, "EmployeeID": 3, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-31T00:00:00", - "ShipVia": 3, - "Freight": 5.45, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 61.14, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 18, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10392, + "OrderID": 11000, "EmployeeID": 2, - "OrderDate": "1996-12-24T00:00:00", - "RequiredDate": "1997-01-21T00:00:00", - "ShippedDate": "1997-01-01T00:00:00", - "ShipVia": 3, - "Freight": 122.46, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10393, - "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", "ShipVia": 3, - "Freight": 126.56, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "Freight": 55.12, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, + "ProductID": 4, + "UnitPrice": 22, "Quantity": 25, "Discount": 0.25 }, { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 42, - "Discount": 0.25 - }, - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 7, - "Discount": 0.25 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 70, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 32, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10394, + "OrderID": 11077, "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 3, - "Freight": 30.34, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShipVia": 2, + "Freight": 8.53, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 24, + "Discount": 0.2 + }, + { + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 1, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10395, - "EmployeeID": 6, - "OrderDate": "1996-12-26T00:00:00", - "RequiredDate": "1997-01-23T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 1, - "Freight": 184.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ + }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 1, + "Discount": 0.02 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 70, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 1, + "Discount": 0.06 + }, + { + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 2, "Discount": 0.1 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 8, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 1, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10396, - "EmployeeID": 1, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1997-01-06T00:00:00", - "ShipVia": 3, - "Freight": 135.35, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ + }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 2, + "Discount": 0.06 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 21, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 1, + "Discount": 0.04 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 2, + "Discount": 0.04 + }, + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 1, + "Discount": 0.04 + }, + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 2, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ - { - "OrderID": 10397, - "EmployeeID": 5, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-24T00:00:00", - "ShippedDate": "1997-01-02T00:00:00", - "ShipVia": 1, - "Freight": 60.26, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", - "OrderDetails": [ + }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 1, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 18, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10398, - "EmployeeID": 2, - "OrderDate": "1996-12-30T00:00:00", - "RequiredDate": "1997-01-27T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 89.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.06 + }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 30, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10399, - "EmployeeID": 8, - "OrderDate": "1996-12-31T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", - "ShipVia": 3, - "Freight": 27.36, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 3, + "Discount": 0.02 + }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 35, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 2, + "Discount": 0.04 + }, + { + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 2, + "Discount": 0.0099999998 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 4, "Discount": 0 }, { "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 14, + "UnitPrice": 13, + "Quantity": 2, "Discount": 0 } ] @@ -7012,1094 +5576,932 @@ ] }, { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 47000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 36000, + "Country": "Sweden", + "Phone": "0695-34 67 21", "Orders": [ { - "OrderID": 10400, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderID": 10264, + "EmployeeID": 6, + "OrderDate": "1996-07-24T00:00:00", + "RequiredDate": "1996-08-21T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", "ShipVia": 3, - "Freight": 83.93, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "Freight": 3.67, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 15000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 35, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10401, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", + "OrderID": 10327, + "EmployeeID": 2, + "OrderDate": "1996-10-11T00:00:00", + "RequiredDate": "1996-11-08T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", "ShipVia": 1, - "Freight": 12.51, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 63.36, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 70, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 50, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 35, + "Discount": 0.2 }, + { + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10378, + "EmployeeID": 5, + "OrderDate": "1996-12-10T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-19T00:00:00", + "ShipVia": 3, + "Freight": 5.44, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", + "OrderDetails": [ { "ProductID": 71, "UnitPrice": 17.2, - "Quantity": 60, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10402, - "EmployeeID": 8, - "OrderDate": "1997-01-02T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", + "OrderID": 10434, + "EmployeeID": 3, + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-02-13T00:00:00", "ShipVia": 2, - "Freight": 67.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 17.92, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 10000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 60, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 65, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 18, + "Discount": 0.16 } ] }, { - "OrderID": 10403, - "EmployeeID": 4, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 73.79, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10460, + "EmployeeID": 8, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 1, + "Freight": 16.27, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 44000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, + "ProductID": 68, + "UnitPrice": 10, "Quantity": 21, - "Discount": 0.16 + "Discount": 0.25 }, { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 4, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10404, - "EmployeeID": 2, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", + "OrderID": 10533, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-22T00:00:00", "ShipVia": 1, - "Freight": 155.97, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 188.04, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, "Discount": 0.06 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 24, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10405, - "EmployeeID": 1, - "OrderDate": "1997-01-06T00:00:00", - "RequiredDate": "1997-02-03T00:00:00", - "ShippedDate": "1997-01-22T00:00:00", - "ShipVia": 1, - "Freight": 34.82, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10406, - "EmployeeID": 7, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-13T00:00:00", - "ShipVia": 1, - "Freight": 108.04, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10561, + "EmployeeID": 2, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 2, + "Freight": 242.21, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 18000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, + "ProductID": 44, + "UnitPrice": 19.45, "Quantity": 10, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 42, - "Discount": 0.1 - }, - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10407, - "EmployeeID": 2, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-04T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", + "OrderID": 10703, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-10-20T00:00:00", "ShipVia": 2, - "Freight": 91.48, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 152.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 22000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10408, - "EmployeeID": 8, - "OrderDate": "1997-01-08T00:00:00", - "RequiredDate": "1997-02-05T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", + "OrderID": 10762, + "EmployeeID": 3, + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", "ShipVia": 1, - "Freight": 11.26, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 328.74, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10409, - "EmployeeID": 3, - "OrderDate": "1997-01-09T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", + "OrderID": 10774, + "EmployeeID": 4, + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", "ShipVia": 1, - "Freight": 29.83, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 48.2, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 20000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 12, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 2, + "Discount": 0.25 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 12, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 28000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10410, - "EmployeeID": 3, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", - "ShipVia": 3, - "Freight": 2.4, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 30000, - "ShipCountry": "Canada", + "OrderID": 10824, + "EmployeeID": 8, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 1.23, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 23000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 49, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 16, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 9, "Discount": 0 } ] }, { - "OrderID": 10411, - "EmployeeID": 9, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-21T00:00:00", - "ShipVia": 3, - "Freight": 23.65, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 10000, - "ShipCountry": "Canada", + "OrderID": 10880, + "EmployeeID": 7, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 88.01, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 26000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 25, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 40, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 50, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10412, + "OrderID": 10902, + "EmployeeID": 1, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", + "ShipVia": 1, + "Freight": 44.15, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 33000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 6, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10955, "EmployeeID": 8, - "OrderDate": "1997-01-13T00:00:00", - "RequiredDate": "1997-02-10T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 3.77, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 3.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 47000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10413, - "EmployeeID": 3, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", - "ShipVia": 2, - "Freight": 95.66, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10977, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 3, + "Freight": 208.5, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 24, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 14, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10414, - "EmployeeID": 2, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-17T00:00:00", - "ShipVia": 3, - "Freight": 21.48, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10980, + "EmployeeID": 4, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 1, + "Freight": 1.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, - "Discount": 0.06 - }, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10993, + "EmployeeID": 7, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 3, + "Freight": 8.81, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 15000, + "ShipCountry": "Sweden", + "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11001, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 2, + "Freight": 197.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 14000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] + }, + { + "OrderID": 11050, + "EmployeeID": 8, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", + "ShipVia": 2, + "Freight": 59.41, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.1 + } + ] } ] }, { - "CustomerID": "HUNGC", - "Company": "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": "BLONP", + "Company": "Blondesddsl père et fils", + "ContactName": "Frédérique Citeaux", + "ContactTitle": "Marketing Manager", + "Address": "24, place Kléber", + "City": "Strasbourg", + "PostalCode": 67000, + "Country": "France", + "Phone": "88.60.15.31", + "Fax": "88.60.15.32", "Orders": [ { - "OrderID": 10415, - "EmployeeID": 3, - "OrderDate": "1997-01-15T00:00:00", - "RequiredDate": "1997-02-12T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", + "OrderID": 10265, + "EmployeeID": 2, + "OrderDate": "1996-07-25T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", "ShipVia": 1, - "Freight": 0.2, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "Freight": 55.28, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 17, "UnitPrice": 31.2, - "Quantity": 2, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 70, + "UnitPrice": 12, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10416, - "EmployeeID": 8, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 3, - "Freight": 22.72, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10297, + "EmployeeID": 5, + "OrderDate": "1996-09-04T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", + "ShipVia": 2, + "Freight": 5.74, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, + "ProductID": 72, + "UnitPrice": 27.8, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10417, + "OrderID": 10360, "EmployeeID": 4, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-28T00:00:00", + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", "ShipVia": 3, - "Freight": 70.29, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 131.7, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, + "ProductID": 49, + "UnitPrice": 16, "Quantity": 35, "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 28, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10418, - "EmployeeID": 4, - "OrderDate": "1997-01-17T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", - "ShipVia": 1, - "Freight": 17.55, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10436, + "EmployeeID": 3, + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-11T00:00:00", + "ShipVia": 2, + "Freight": 156.66, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 60, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 55, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 24, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10449, + "EmployeeID": 3, + "OrderDate": "1997-02-18T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-27T00:00:00", + "ShipVia": 2, + "Freight": 53.3, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 16, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10419, - "EmployeeID": 4, - "OrderDate": "1997-01-20T00:00:00", - "RequiredDate": "1997-02-17T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", - "ShipVia": 2, - "Freight": 137.35, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10559, + "EmployeeID": 6, + "OrderDate": "1997-06-05T00:00:00", + "RequiredDate": "1997-07-03T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 1, + "Freight": 8.05, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 60, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 18, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10420, - "EmployeeID": 3, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10566, + "EmployeeID": 9, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", "ShipVia": 1, - "Freight": 44.12, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 88.4, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 77.6, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 18, + "Discount": 0.16 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10421, - "EmployeeID": 8, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-03-04T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10584, + "EmployeeID": 4, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 1, - "Freight": 99.23, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 59.14, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 4, - "Discount": 0.16 - }, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10628, + "EmployeeID": 4, + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 30.36, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 10, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10422, - "EmployeeID": 2, - "OrderDate": "1997-01-22T00:00:00", - "RequiredDate": "1997-02-19T00:00:00", - "ShippedDate": "1997-01-31T00:00:00", - "ShipVia": 1, - "Freight": 3.02, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10679, + "EmployeeID": 8, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 27.94, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 2, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10423, + "OrderID": 10826, "EmployeeID": 6, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", - "ShipVia": 3, - "Freight": 24.5, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 1, + "Freight": 7.09, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 31, - "UnitPrice": 10, - "Quantity": 14, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 20, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 } ] @@ -8107,599 +6509,459 @@ ] }, { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 11000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", + "CustomerID": "WARTH", + "Company": "Wartian Herkku", + "ContactName": "Pirkko Koskitalo", + "ContactTitle": "Accounting Manager", + "Address": "Torikatu 38", + "City": "Oulu", + "PostalCode": 90110, + "Country": "Finland", + "Phone": "981-443655", + "Fax": "981-443655", "Orders": [ { - "OrderID": 10424, - "EmployeeID": 7, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-20T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 2, - "Freight": 370.61, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "OrderID": 10266, + "EmployeeID": 3, + "OrderDate": "1996-07-26T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 25.73, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0.2 - }, + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 12, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10270, + "EmployeeID": 1, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 1, + "Freight": 136.54, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 49, - "Discount": 0.2 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10425, - "EmployeeID": 6, - "OrderDate": "1997-01-24T00:00:00", - "RequiredDate": "1997-02-21T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 7.93, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10320, + "EmployeeID": 5, + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-18T00:00:00", + "ShipVia": 3, + "Freight": 34.57, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 10, - "Discount": 0.25 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10426, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-02-06T00:00:00", - "ShipVia": 1, - "Freight": 18.69, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 10333, + "EmployeeID": 5, + "OrderDate": "1996-10-18T00:00:00", + "RequiredDate": "1996-11-15T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", + "ShipVia": 3, + "Freight": 0.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 5, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 7, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 40, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10427, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 10412, + "EmployeeID": 8, + "OrderDate": "1997-01-13T00:00:00", + "RequiredDate": "1997-02-10T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", "ShipVia": 2, - "Freight": 31.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 3.77, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { "ProductID": 14, "UnitPrice": 18.6, - "Quantity": 35, - "Discount": 0 + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10428, - "EmployeeID": 7, - "OrderDate": "1997-01-28T00:00:00", - "RequiredDate": "1997-02-25T00:00:00", - "ShippedDate": "1997-02-04T00:00:00", - "ShipVia": 1, - "Freight": 11.09, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10416, + "EmployeeID": 8, + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 3, + "Freight": 22.72, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10429, - "EmployeeID": 3, - "OrderDate": "1997-01-29T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", - "ShipVia": 2, - "Freight": 56.63, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ + }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 40, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10430, - "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-03T00:00:00", + "OrderID": 10437, + "EmployeeID": 8, + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-12T00:00:00", "ShipVia": 1, - "Freight": 458.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 19.97, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10455, + "EmployeeID": 8, + "OrderDate": "1997-02-24T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 2, + "Freight": 180.45, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 53, + "UnitPrice": 26.2, "Quantity": 50, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.2 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 46000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10431, + "OrderID": 10526, "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-15T00:00:00", "ShipVia": 2, - "Freight": 44.17, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 16000, - "ShipCountry": "Canada", + "Freight": 58.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 7.6, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10432, - "EmployeeID": 3, - "OrderDate": "1997-01-31T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderID": 10553, + "EmployeeID": 2, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-03T00:00:00", "ShipVia": 2, - "Freight": 4.34, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 149.49, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 10, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10433, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", - "ShipVia": 3, - "Freight": 73.83, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10583, + "EmployeeID": 2, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 2, + "Freight": 7.28, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 28, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 40000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10434, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-02-13T00:00:00", - "ShipVia": 2, - "Freight": 17.92, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 10000, - "ShipCountry": "Sweden", - "OrderDetails": [ + }, { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 18, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ + }, { - "OrderID": 10435, - "EmployeeID": 8, - "OrderDate": "1997-02-04T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", - "ShipVia": 2, - "Freight": 9.21, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 38000, - "ShipCountry": "UK", + "OrderID": 10636, + "EmployeeID": 4, + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 1.15, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 12, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 10, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10436, - "EmployeeID": 3, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-11T00:00:00", - "ShipVia": 2, - "Freight": 156.66, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10750, + "EmployeeID": 9, + "OrderDate": "1997-11-21T00:00:00", + "RequiredDate": "1997-12-19T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 79.3, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 14, + "UnitPrice": 23.25, "Quantity": 5, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 30.4, + "ProductID": 45, + "UnitPrice": 9.5, "Quantity": 40, - "Discount": 0.1 + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10781, + "EmployeeID": 2, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 3, + "Freight": 73.16, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10437, - "EmployeeID": 8, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-12T00:00:00", - "ShipVia": 1, - "Freight": 19.97, + "OrderID": 11025, + "EmployeeID": 6, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 3, + "Freight": 29.17, "ShipName": "Wartian Herkku", "ShipAddress": "Torikatu 38", "ShipCity": "Oulu", @@ -8707,709 +6969,557 @@ "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", + "CustomerID": "FRANK", + "Company": "Frankenversand", + "ContactName": "Peter Franken", "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, + "Address": "Berliner Platz 43", + "City": "München", + "PostalCode": 80805, "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", + "Phone": "089-0877310", + "Fax": "089-0877451", "Orders": [ { - "OrderID": 10438, - "EmployeeID": 3, - "OrderDate": "1997-02-06T00:00:00", - "RequiredDate": "1997-03-06T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 8.24, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, + "OrderID": 10267, + "EmployeeID": 4, + "OrderDate": "1996-07-29T00:00:00", + "RequiredDate": "1996-08-26T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", + "ShipVia": 1, + "Freight": 208.58, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 15.6, + "ProductID": 76, + "UnitPrice": 14.4, "Quantity": 15, - "Discount": 0.2 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 38000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10439, - "EmployeeID": 6, - "OrderDate": "1997-02-07T00:00:00", - "RequiredDate": "1997-03-07T00:00:00", - "ShippedDate": "1997-02-10T00:00:00", + "OrderID": 10337, + "EmployeeID": 4, + "OrderDate": "1996-10-24T00:00:00", + "RequiredDate": "1996-11-21T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", "ShipVia": 3, - "Freight": 4.07, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "Freight": 108.26, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 15, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 16, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 6, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 30, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10440, + "OrderID": 10342, "EmployeeID": 4, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-10T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", + "OrderDate": "1996-10-30T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", "ShipVia": 2, - "Freight": 86.53, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 54.83, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 15.2, - "Quantity": 45, - "Discount": 0.16 + "Quantity": 24, + "Discount": 0.2 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 49, - "Discount": 0.16 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 56, + "Discount": 0.2 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 90, - "Discount": 0.16 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10441, - "EmployeeID": 3, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-24T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 2, - "Freight": 73.02, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10396, + "EmployeeID": 1, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1997-01-06T00:00:00", + "ShipVia": 3, + "Freight": 135.35, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 50, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10442, - "EmployeeID": 3, - "OrderDate": "1997-02-11T00:00:00", - "RequiredDate": "1997-03-11T00:00:00", - "ShippedDate": "1997-02-18T00:00:00", - "ShipVia": 2, - "Freight": 47.94, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10488, + "EmployeeID": 8, + "OrderDate": "1997-03-27T00:00:00", + "RequiredDate": "1997-04-24T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, + "ProductID": 59, + "UnitPrice": 44, "Quantity": 30, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 80, - "Discount": 0 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 60, - "Discount": 0 + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10443, + "OrderID": 10560, "EmployeeID": 8, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", "ShipVia": 1, - "Freight": 13.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 36.65, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 19000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10444, - "EmployeeID": 3, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-21T00:00:00", - "ShipVia": 3, - "Freight": 3.5, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 21000, - "ShipCountry": "Sweden", + "OrderID": 10623, + "EmployeeID": 8, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", + "ShipVia": 2, + "Freight": 97.18, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 10, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, + "ProductID": 19, + "UnitPrice": 9.2, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 8, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 35, + "UnitPrice": 18, "Quantity": 30, - "Discount": 0 + "Discount": 0.1 } ] }, { - "OrderID": 10445, - "EmployeeID": 3, - "OrderDate": "1997-02-13T00:00:00", - "RequiredDate": "1997-03-13T00:00:00", - "ShippedDate": "1997-02-20T00:00:00", + "OrderID": 10653, + "EmployeeID": 1, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", "ShipVia": 1, - "Freight": 9.3, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 11000, - "ShipCountry": "Sweden", + "Freight": 93.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10446, - "EmployeeID": 6, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-02-19T00:00:00", + "OrderID": 10670, + "EmployeeID": 4, + "OrderDate": "1997-09-16T00:00:00", + "RequiredDate": "1997-10-14T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", "ShipVia": 1, - "Freight": 14.68, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, + "Freight": 203.48, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 12, - "Discount": 0.1 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 32, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 15, - "Discount": 0.1 - } + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 25, + "Discount": 0 + } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10447, - "EmployeeID": 4, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-03-07T00:00:00", + "OrderID": 10675, + "EmployeeID": 5, + "OrderDate": "1997-09-19T00:00:00", + "RequiredDate": "1997-10-17T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", "ShipVia": 2, - "Freight": 68.66, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 31.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 40, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 35, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10448, - "EmployeeID": 4, - "OrderDate": "1997-02-17T00:00:00", - "RequiredDate": "1997-03-17T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", + "OrderID": 10717, + "EmployeeID": 1, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 2, - "Freight": 38.82, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 59.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 6, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 32, + "Discount": 0.06 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10449, - "EmployeeID": 3, - "OrderDate": "1997-02-18T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-27T00:00:00", + "OrderID": 10791, + "EmployeeID": 6, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-01T00:00:00", "ShipVia": 2, - "Freight": 53.3, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 16.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 14, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 52, - "UnitPrice": 5.6, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10450, - "EmployeeID": 8, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-19T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", + "OrderID": 10859, + "EmployeeID": 1, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", "ShipVia": 2, - "Freight": 7.23, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 76.1, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 40, + "Discount": 0.25 }, { "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, - "Discount": 0.2 + "UnitPrice": 7.45, + "Quantity": 35, + "Discount": 0.25 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10451, - "EmployeeID": 4, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", - "ShipVia": 3, - "Freight": 189.09, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, + "OrderID": 10929, + "EmployeeID": 6, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 1, + "Freight": 33.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 49, + "Discount": 0 }, { "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 55, - "Discount": 0.1 + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10452, - "EmployeeID": 8, - "OrderDate": "1997-02-20T00:00:00", - "RequiredDate": "1997-03-20T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", - "ShipVia": 1, - "Freight": 140.26, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11012, + "EmployeeID": 1, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 3, + "Freight": 242.95, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 15, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 100, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 36, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, "Discount": 0.06 } ] @@ -9417,8638 +7527,2449 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 44000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "CustomerID": "GROSR", + "Company": "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", "Orders": [ { - "OrderID": 10453, - "EmployeeID": 1, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", - "ShipVia": 2, - "Freight": 25.36, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 46000, - "ShipCountry": "UK", + "OrderID": 10268, + "EmployeeID": 8, + "OrderDate": "1996-07-30T00:00:00", + "RequiredDate": "1996-08-27T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 3, + "Freight": 66.29, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10454, - "EmployeeID": 4, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-25T00:00:00", + "OrderID": 10785, + "EmployeeID": 1, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", "ShipVia": 3, - "Freight": 2.74, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 1.51, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 10, - "Discount": 0.2 + "Discount": 0 } ] } ] }, { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", + "CustomerID": "WHITC", + "Company": "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", "Orders": [ { - "OrderID": 10455, - "EmployeeID": 8, - "OrderDate": "1997-02-24T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", - "ShipVia": 2, - "Freight": 180.45, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10269, + "EmployeeID": 5, + "OrderDate": "1996-07-31T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", + "ShipVia": 1, + "Freight": 4.56, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 50, - "Discount": 0 - }, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10344, + "EmployeeID": 4, + "OrderDate": "1996-11-01T00:00:00", + "RequiredDate": "1996-11-29T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", + "ShipVia": 2, + "Freight": 23.29, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 25, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10456, - "EmployeeID": 8, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 8.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10469, + "EmployeeID": 1, + "OrderDate": "1997-03-10T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 1, + "Freight": 60.18, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 40, "Discount": 0.16 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 21, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 2, "Discount": 0.16 } ] }, { - "OrderID": 10457, - "EmployeeID": 2, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-03-25T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", - "ShipVia": 1, - "Freight": 11.57, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10483, + "EmployeeID": 7, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-25T00:00:00", + "ShipVia": 2, + "Freight": 15.28, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 36, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 35, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10458, - "EmployeeID": 7, - "OrderDate": "1997-02-26T00:00:00", - "RequiredDate": "1997-03-26T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", + "OrderID": 10504, + "EmployeeID": 4, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-18T00:00:00", "ShipVia": 3, - "Freight": 147.06, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 59.13, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 15, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10459, - "EmployeeID": 4, - "OrderDate": "1997-02-27T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 25.09, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 31000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10460, + "OrderID": 10596, "EmployeeID": 8, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", "ShipVia": 1, - "Freight": 16.27, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 44000, - "ShipCountry": "Sweden", + "Freight": 16.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0.2 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 24, + "Discount": 0.2 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 4, - "Discount": 0.25 + "UnitPrice": 7.75, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10461, - "EmployeeID": 1, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-05T00:00:00", + "OrderID": 10693, + "EmployeeID": 3, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-10-10T00:00:00", "ShipVia": 3, - "Freight": 148.61, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 139.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 28, - "Discount": 0.25 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 60, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 34000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ - { - "OrderID": 10462, - "EmployeeID": 2, - "OrderDate": "1997-03-03T00:00:00", - "RequiredDate": "1997-03-31T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 1, - "Freight": 6.17, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", - "OrderDetails": [ + "Discount": 0.16 + }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 1, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 21, - "Discount": 0 + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10463, - "EmployeeID": 5, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-06T00:00:00", + "OrderID": 10696, + "EmployeeID": 8, + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", "ShipVia": 3, - "Freight": 14.78, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 102.55, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 21, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 50, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10464, - "EmployeeID": 4, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 2, - "Freight": 89, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 16, - "Discount": 0.2 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10465, - "EmployeeID": 1, - "OrderDate": "1997-03-05T00:00:00", - "RequiredDate": "1997-04-02T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 3, - "Freight": 145.04, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 45, - "UnitPrice": 7.6, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ - { - "OrderID": 10466, - "EmployeeID": 4, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-13T00:00:00", - "ShipVia": 1, - "Freight": 11.93, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10467, - "EmployeeID": 8, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10468, + "OrderID": 10723, "EmployeeID": 3, - "OrderDate": "1997-03-07T00:00:00", - "RequiredDate": "1997-04-04T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", - "ShipVia": 3, - "Freight": 44.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ - { - "OrderID": 10469, - "EmployeeID": 1, - "OrderDate": "1997-03-10T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-11-27T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", "ShipVia": 1, - "Freight": 60.18, + "Freight": 21.72, "ShipName": "White Clover Markets", "ShipAddress": "1029 - 12th Ave. S.", "ShipCity": "Seattle", "ShipRegion": "WA", "ShipPostalCode": 98124, "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 2, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10470, - "EmployeeID": 4, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 2, - "Freight": 64.56, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 8, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 26000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10471, - "EmployeeID": 2, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 3, - "Freight": 45.59, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10472, - "EmployeeID": 8, - "OrderDate": "1997-03-12T00:00:00", - "RequiredDate": "1997-04-09T00:00:00", - "ShippedDate": "1997-03-19T00:00:00", - "ShipVia": 1, - "Freight": 4.2, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 33000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 80, - "Discount": 0.06 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 41000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10473, - "EmployeeID": 1, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 3, - "Freight": 16.37, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60471, - "ShipPostalCode": 37000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10474, - "EmployeeID": 5, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-04-10T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 2, - "Freight": 83.49, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10475, - "EmployeeID": 9, - "OrderDate": "1997-03-14T00:00:00", - "RequiredDate": "1997-04-11T00:00:00", - "ShippedDate": "1997-04-04T00:00:00", - "ShipVia": 1, - "Freight": 68.52, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 42, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10476, - "EmployeeID": 8, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", - "ShipVia": 3, - "Freight": 4.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ - { - "OrderID": 10477, - "EmployeeID": 5, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", - "ShipVia": 2, - "Freight": 13.02, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 21, - "Discount": 0.25 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10478, - "EmployeeID": 2, - "OrderDate": "1997-03-18T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-26T00:00:00", - "ShipVia": 3, - "Freight": 4.81, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10479, - "EmployeeID": 3, - "OrderDate": "1997-03-19T00:00:00", - "RequiredDate": "1997-04-16T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 3, - "Freight": 708.95, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ - { - "OrderID": 10480, - "EmployeeID": 6, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ - { - "OrderID": 10481, - "EmployeeID": 8, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", - "ShipVia": 2, - "Freight": 64.33, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "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", - "Orders": [ - { - "OrderID": 10482, - "EmployeeID": 1, - "OrderDate": "1997-03-21T00:00:00", - "RequiredDate": "1997-04-18T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 7.48, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ - { - "OrderID": 10483, - "EmployeeID": 7, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-25T00:00:00", - "ShipVia": 2, - "Freight": 15.28, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 35, - "Discount": 0.06 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 30, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 46000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10484, - "EmployeeID": 3, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-01T00:00:00", - "ShipVia": 3, - "Freight": 6.88, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 31000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10485, - "EmployeeID": 4, - "OrderDate": "1997-03-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-31T00:00:00", - "ShipVia": 2, - "Freight": 64.45, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 60, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10486, - "EmployeeID": 1, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", - "ShipVia": 2, - "Freight": 30.53, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 16, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10487, - "EmployeeID": 2, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-03-28T00:00:00", - "ShipVia": 2, - "Freight": 71.07, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10488, - "EmployeeID": 8, - "OrderDate": "1997-03-27T00:00:00", - "RequiredDate": "1997-04-24T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10489, - "EmployeeID": 6, - "OrderDate": "1997-03-28T00:00:00", - "RequiredDate": "1997-04-25T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 5.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10490, - "EmployeeID": 7, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-03T00:00:00", - "ShipVia": 2, - "Freight": 210.19, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 36, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ - { - "OrderID": 10491, - "EmployeeID": 8, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-08T00:00:00", - "ShipVia": 3, - "Freight": 16.96, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 33000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ - { - "OrderID": 10492, - "EmployeeID": 3, - "OrderDate": "1997-04-01T00:00:00", - "RequiredDate": "1997-04-29T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 1, - "Freight": 62.89, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 16000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 60, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10493, - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 10.64, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 10, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ - { - "OrderID": 10494, - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 65.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 24000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ - { - "OrderID": 10495, - "EmployeeID": 3, - "OrderDate": "1997-04-03T00:00:00", - "RequiredDate": "1997-05-01T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 3, - "Freight": 4.65, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 33000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10496, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 2, - "Freight": 46.77, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10497, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 1, - "Freight": 36.21, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10498, - "EmployeeID": 8, - "OrderDate": "1997-04-07T00:00:00", - "RequiredDate": "1997-05-05T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 2, - "Freight": 29.75, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10499, - "EmployeeID": 4, - "OrderDate": "1997-04-08T00:00:00", - "RequiredDate": "1997-05-06T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 102.02, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10500, - "EmployeeID": 6, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-17T00:00:00", - "ShipVia": 1, - "Freight": 42.68, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10501, - "EmployeeID": 9, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 3, - "Freight": 8.85, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10502, - "EmployeeID": 2, - "OrderDate": "1997-04-10T00:00:00", - "RequiredDate": "1997-05-08T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 69.32, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10503, - "EmployeeID": 6, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 16.74, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ - { - "OrderID": 10504, - "EmployeeID": 4, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-18T00:00:00", - "ShipVia": 3, - "Freight": 59.13, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 47000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10505, - "EmployeeID": 3, - "OrderDate": "1997-04-14T00:00:00", - "RequiredDate": "1997-05-12T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 7.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 11000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10506, - "EmployeeID": 9, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 21.19, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 14, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10507, - "EmployeeID": 7, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-04-22T00:00:00", - "ShipVia": 1, - "Freight": 47.45, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 15, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10508, - "EmployeeID": 1, - "OrderDate": "1997-04-16T00:00:00", - "RequiredDate": "1997-05-14T00:00:00", - "ShippedDate": "1997-05-13T00:00:00", - "ShipVia": 2, - "Freight": 4.99, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10509, - "EmployeeID": 4, - "OrderDate": "1997-04-17T00:00:00", - "RequiredDate": "1997-05-15T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 0.15, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10510, - "EmployeeID": 6, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", - "ShipVia": 3, - "Freight": 367.63, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 36, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10511, - "EmployeeID": 4, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 350.64, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.16 - }, - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 50, - "Discount": 0.16 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10512, - "EmployeeID": 7, - "OrderDate": "1997-04-21T00:00:00", - "RequiredDate": "1997-05-19T00:00:00", - "ShippedDate": "1997-04-24T00:00:00", - "ShipVia": 2, - "Freight": 3.53, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.16 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 9, - "Discount": 0.16 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.16 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 12, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ - { - "OrderID": 10513, - "EmployeeID": 7, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-06-03T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", - "ShipVia": 1, - "Freight": 105.65, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.2 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, - "Discount": 0.2 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 15, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10514, - "EmployeeID": 3, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", - "ShipVia": 2, - "Freight": 789.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 39, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 39, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10515, - "EmployeeID": 2, - "OrderDate": "1997-04-23T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 1, - "Freight": 204.47, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 16, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 120, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0.16 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 84, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10516, - "EmployeeID": 2, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 62.78, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 80, - "Discount": 0.1 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 17000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ - { - "OrderID": 10517, - "EmployeeID": 3, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 3, - "Freight": 32.07, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 16000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ - { - "OrderID": 10518, - "EmployeeID": 4, - "OrderDate": "1997-04-25T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-05-05T00:00:00", - "ShipVia": 2, - "Freight": 218.15, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ - { - "OrderID": 10519, - "EmployeeID": 6, - "OrderDate": "1997-04-28T00:00:00", - "RequiredDate": "1997-05-26T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 91.76, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ - { - "OrderID": 10520, - "EmployeeID": 7, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 1, - "Freight": 13.37, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10521, - "EmployeeID": 8, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 17.22, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10522, - "EmployeeID": 4, - "OrderDate": "1997-04-30T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-06T00:00:00", - "ShipVia": 1, - "Freight": 45.33, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.2 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 12000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10523, - "EmployeeID": 7, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 2, - "Freight": 77.63, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 42000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 37000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10524, - "EmployeeID": 1, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", - "ShipVia": 2, - "Freight": 244.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10525, - "EmployeeID": 1, - "OrderDate": "1997-05-02T00:00:00", - "RequiredDate": "1997-05-30T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 11.06, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10526, - "EmployeeID": 4, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-15T00:00:00", - "ShipVia": 2, - "Freight": 58.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10527, - "EmployeeID": 7, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", - "ShipVia": 1, - "Freight": 41.9, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ - { - "OrderID": 10528, - "EmployeeID": 6, - "OrderDate": "1997-05-06T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", - "ShipVia": 2, - "Freight": 3.35, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.2 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 45000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ - { - "OrderID": 10529, - "EmployeeID": 5, - "OrderDate": "1997-05-07T00:00:00", - "RequiredDate": "1997-06-04T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", - "ShipVia": 2, - "Freight": 66.69, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10530, - "EmployeeID": 3, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", - "ShipVia": 2, - "Freight": 339.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ - { - "OrderID": 10531, - "EmployeeID": 7, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", - "ShipVia": 1, - "Freight": 8.12, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 33000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ - { - "OrderID": 10532, - "EmployeeID": 7, - "OrderDate": "1997-05-09T00:00:00", - "RequiredDate": "1997-06-06T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", - "ShipVia": 3, - "Freight": 74.46, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 45000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 10000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10533, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-22T00:00:00", - "ShipVia": 1, - "Freight": 188.04, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.06 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 24, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10534, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-14T00:00:00", - "ShipVia": 2, - "Freight": 27.94, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10535, - "EmployeeID": 4, - "OrderDate": "1997-05-13T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-21T00:00:00", - "ShipVia": 1, - "Freight": 15.64, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10536, - "EmployeeID": 3, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-06-11T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 2, - "Freight": 58.88, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ - { - "OrderID": 10537, - "EmployeeID": 1, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", - "ShipVia": 1, - "Freight": 78.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10538, - "EmployeeID": 9, - "OrderDate": "1997-05-15T00:00:00", - "RequiredDate": "1997-06-12T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", - "ShipVia": 3, - "Freight": 4.87, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 45000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 1, - "Discount": 0 - } - ] - }, - { - "OrderID": 10539, - "EmployeeID": 6, - "OrderDate": "1997-05-16T00:00:00", - "RequiredDate": "1997-06-13T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 3, - "Freight": 12.36, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 14000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10540, - "EmployeeID": 3, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 3, - "Freight": 1007.64, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10541, - "EmployeeID": 2, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-05-29T00:00:00", - "ShipVia": 1, - "Freight": 68.65, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.1 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 4, - "Discount": 0.1 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 36, - "Discount": 0.1 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10542, - "EmployeeID": 1, - "OrderDate": "1997-05-20T00:00:00", - "RequiredDate": "1997-06-17T00:00:00", - "ShippedDate": "1997-05-26T00:00:00", - "ShipVia": 3, - "Freight": 10.95, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 24, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10543, - "EmployeeID": 8, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 48.17, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ - { - "OrderID": 10544, - "EmployeeID": 4, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 24.91, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 7, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "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", - "Orders": [ - { - "OrderID": 10545, - "EmployeeID": 8, - "OrderDate": "1997-05-22T00:00:00", - "RequiredDate": "1997-06-19T00:00:00", - "ShippedDate": "1997-06-26T00:00:00", - "ShipVia": 2, - "Freight": 11.92, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10546, - "EmployeeID": 1, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-05-27T00:00:00", - "ShipVia": 3, - "Freight": 194.72, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10547, - "EmployeeID": 3, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", - "ShipVia": 2, - "Freight": 178.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 48000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 24, - "Discount": 0.16 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 60, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ - { - "OrderID": 10548, - "EmployeeID": 3, - "OrderDate": "1997-05-26T00:00:00", - "RequiredDate": "1997-06-23T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", - "ShipVia": 2, - "Freight": 1.43, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.25 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10549, - "EmployeeID": 5, - "OrderDate": "1997-05-27T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 171.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 55, - "Discount": 0.16 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 100, - "Discount": 0.16 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 48, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ - { - "OrderID": 10550, - "EmployeeID": 7, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-06-25T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 3, - "Freight": 4.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0.1 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ - { - "OrderID": 10551, - "EmployeeID": 4, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 3, - "Freight": 72.95, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10552, - "EmployeeID": 2, - "OrderDate": "1997-05-29T00:00:00", - "RequiredDate": "1997-06-26T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 1, - "Freight": 83.22, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10553, - "EmployeeID": 2, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-03T00:00:00", - "ShipVia": 2, - "Freight": 149.49, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10554, - "EmployeeID": 4, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 3, - "Freight": 120.97, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10555, - "EmployeeID": 6, - "OrderDate": "1997-06-02T00:00:00", - "RequiredDate": "1997-06-30T00:00:00", - "ShippedDate": "1997-06-04T00:00:00", - "ShipVia": 3, - "Freight": 252.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 18, - "Discount": 0.2 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ - { - "OrderID": 10556, - "EmployeeID": 2, - "OrderDate": "1997-06-03T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 9.8, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10557, - "EmployeeID": 9, - "OrderDate": "1997-06-03T00:00:00", - "RequiredDate": "1997-06-17T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 2, - "Freight": 96.72, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 10000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10558, - "EmployeeID": 1, - "OrderDate": "1997-06-04T00:00:00", - "RequiredDate": "1997-07-02T00:00:00", - "ShippedDate": "1997-06-10T00:00:00", - "ShipVia": 2, - "Freight": 72.97, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 27000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10559, - "EmployeeID": 6, - "OrderDate": "1997-06-05T00:00:00", - "RequiredDate": "1997-07-03T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 8.05, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 18, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10560, - "EmployeeID": 8, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", - "ShipVia": 1, - "Freight": 36.65, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 20000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10561, - "EmployeeID": 2, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", - "ShipVia": 2, - "Freight": 242.21, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 18000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10562, - "EmployeeID": 1, - "OrderDate": "1997-06-09T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-12T00:00:00", - "ShipVia": 1, - "Freight": 22.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ - { - "OrderID": 10563, - "EmployeeID": 2, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-06-24T00:00:00", - "ShipVia": 2, - "Freight": 60.43, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 70, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10564, - "EmployeeID": 4, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-08T00:00:00", - "ShippedDate": "1997-06-16T00:00:00", - "ShipVia": 3, - "Freight": 13.75, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.06 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 25, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 15000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10565, - "EmployeeID": 8, - "OrderDate": "1997-06-11T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", - "ShipVia": 2, - "Freight": 7.15, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 24000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 18, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10566, - "EmployeeID": 9, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", - "ShipVia": 1, - "Freight": 88.4, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 18, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10567, - "EmployeeID": 1, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-17T00:00:00", - "ShipVia": 1, - "Freight": 33.97, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 60, - "Discount": 0.2 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ - { - "OrderID": 10568, - "EmployeeID": 3, - "OrderDate": "1997-06-13T00:00:00", - "RequiredDate": "1997-07-11T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 3, - "Freight": 6.54, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10569, - "EmployeeID": 5, - "OrderDate": "1997-06-16T00:00:00", - "RequiredDate": "1997-07-14T00:00:00", - "ShippedDate": "1997-07-11T00:00:00", - "ShipVia": 1, - "Freight": 58.98, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 34000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10570, - "EmployeeID": 3, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-19T00:00:00", - "ShipVia": 3, - "Freight": 188.99, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 40000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10571, - "EmployeeID": 8, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 3, - "Freight": 26.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 11, - "Discount": 0.16 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 43000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10572, - "EmployeeID": 3, - "OrderDate": "1997-06-18T00:00:00", - "RequiredDate": "1997-07-16T00:00:00", - "ShippedDate": "1997-06-25T00:00:00", - "ShipVia": 2, - "Freight": 116.43, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 25000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10573, - "EmployeeID": 7, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-20T00:00:00", - "ShipVia": 3, - "Freight": 84.84, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "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", - "Orders": [ - { - "OrderID": 10574, - "EmployeeID": 4, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 2, - "Freight": 37.6, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ - { - "OrderID": 10575, - "EmployeeID": 5, - "OrderDate": "1997-06-20T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 1, - "Freight": 127.34, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ - { - "OrderID": 10576, - "EmployeeID": 3, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 3, - "Freight": 18.56, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "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", - "Orders": [ - { - "OrderID": 10577, - "EmployeeID": 9, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 2, - "Freight": 25.41, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 44000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10578, - "EmployeeID": 4, - "OrderDate": "1997-06-24T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", - "ShipVia": 3, - "Freight": 29.6, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 44000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ - { - "OrderID": 10579, - "EmployeeID": 1, - "OrderDate": "1997-06-25T00:00:00", - "RequiredDate": "1997-07-23T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 2, - "Freight": 13.73, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10580, - "EmployeeID": 4, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-01T00:00:00", - "ShipVia": 3, - "Freight": 75.89, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 30, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10581, - "EmployeeID": 3, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-02T00:00:00", - "ShipVia": 1, - "Freight": 3.01, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10582, - "EmployeeID": 3, - "OrderDate": "1997-06-27T00:00:00", - "RequiredDate": "1997-07-25T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 2, - "Freight": 27.71, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 14, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10583, - "EmployeeID": 2, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 2, - "Freight": 7.28, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.16 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10584, - "EmployeeID": 4, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 1, - "Freight": 59.14, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ - { - "OrderID": 10585, - "EmployeeID": 7, - "OrderDate": "1997-07-01T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 1, - "Freight": 13.41, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10586, - "EmployeeID": 9, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 1, - "Freight": 0.48, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ - { - "OrderID": 10587, - "EmployeeID": 1, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 1, - "Freight": 62.52, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10588, - "EmployeeID": 2, - "OrderDate": "1997-07-03T00:00:00", - "RequiredDate": "1997-07-31T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 3, - "Freight": 194.67, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 40, - "Discount": 0.2 - }, + "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 100, - "Discount": 0.2 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10589, - "EmployeeID": 8, - "OrderDate": "1997-07-04T00:00:00", - "RequiredDate": "1997-08-01T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 10740, + "EmployeeID": 4, + "OrderDate": "1997-11-13T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", "ShipVia": 2, - "Freight": 4.42, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, + "Freight": 81.88, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 5, + "Discount": 0.2 + }, { "ProductID": 35, "UnitPrice": 18, - "Quantity": 4, - "Discount": 0 + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 22000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10590, + "OrderID": 10861, "EmployeeID": 4, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 3, - "Freight": 44.77, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 47000, - "ShipCountry": "Canada", + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-02-27T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 14.93, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 42, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 60, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10591, - "EmployeeID": 1, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-07-21T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", - "ShipVia": 1, - "Freight": 55.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 20, + "Discount": 0 + }, { - "ProductID": 3, + "ProductID": 21, "UnitPrice": 10, - "Quantity": 14, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 50, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10592, + "OrderID": 10904, "EmployeeID": 3, - "OrderDate": "1997-07-08T00:00:00", - "RequiredDate": "1997-08-05T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", - "ShipVia": 1, - "Freight": 32.1, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 162.95, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, - "Discount": 0.06 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 35, + "Discount": 0 + } + ] + }, + { + "OrderID": 11032, + "EmployeeID": 2, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 606.19, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 30, + "Discount": 0 } ] }, { - "OrderID": 10593, + "OrderID": 11066, "EmployeeID": 7, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-08-13T00:00:00", + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", "ShipVia": 2, - "Freight": 174.2, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 44.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, - "Discount": 0.2 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 42, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 35, + "Discount": 0 } ] } ] }, { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, + "CustomerID": "SPLIR", + "Company": "Split Rail Beer & Ale", + "ContactName": "Art Braunschweiger", + "ContactTitle": "Sales Manager", + "Address": "P.O. Box 555", + "City": "Lander", + "Region": "WY", + "PostalCode": 82520, "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", + "Phone": "(307) 555-4680", + "Fax": "(307) 555-6525", "Orders": [ { - "OrderID": 10594, - "EmployeeID": 3, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", + "OrderID": 10271, + "EmployeeID": 6, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-30T00:00:00", "ShipVia": 2, - "Freight": 5.24, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "Freight": 4.54, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, + "ProductID": 33, + "UnitPrice": 2, "Quantity": 24, "Discount": 0 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10595, - "EmployeeID": 2, - "OrderDate": "1997-07-10T00:00:00", - "RequiredDate": "1997-08-07T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 1, - "Freight": 96.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10329, + "EmployeeID": 4, + "OrderDate": "1996-10-15T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 2, + "Freight": 191.67, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 120, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 65, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 12, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10596, - "EmployeeID": 8, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", + "OrderID": 10349, + "EmployeeID": 7, + "OrderDate": "1996-11-08T00:00:00", + "RequiredDate": "1996-12-06T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", "ShipVia": 1, - "Freight": 16.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, + "Freight": 8.63, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, - "Discount": 0.2 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 24, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10597, - "EmployeeID": 7, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", - "ShipVia": 3, - "Freight": 35.12, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10369, + "EmployeeID": 8, + "OrderDate": "1996-12-02T00:00:00", + "RequiredDate": "1996-12-30T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 195.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 29, + "UnitPrice": 99, "Quantity": 20, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 18, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10598, + "OrderID": 10385, "EmployeeID": 1, - "OrderDate": "1997-07-14T00:00:00", - "RequiredDate": "1997-08-11T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", - "ShipVia": 3, - "Freight": 44.42, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, + "OrderDate": "1996-12-17T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1996-12-23T00:00:00", + "ShipVia": 2, + "Freight": 30.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 50, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 45000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10599, - "EmployeeID": 6, - "OrderDate": "1997-07-15T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", - "ShipVia": 3, - "Freight": 29.98, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 21000, - "ShipCountry": "UK", + "OrderID": 10432, + "EmployeeID": 3, + "OrderDate": "1997-01-31T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 4.34, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 26, + "UnitPrice": 24.9, "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10600, - "EmployeeID": 4, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-13T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", - "ShipVia": 1, - "Freight": 45.13, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "OrderID": 10756, + "EmployeeID": 8, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-02T00:00:00", + "ShipVia": 2, + "Freight": 73.21, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 4, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 21, + "Discount": 0.2 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.2 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10601, - "EmployeeID": 7, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", + "OrderID": 10821, + "EmployeeID": 1, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-15T00:00:00", "ShipVia": 1, - "Freight": 58.3, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 36.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 60, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10602, - "EmployeeID": 8, - "OrderDate": "1997-07-17T00:00:00", - "RequiredDate": "1997-08-14T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", - "ShipVia": 2, - "Freight": 2.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderID": 10974, + "EmployeeID": 3, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 12.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 10, + "Discount": 0 } ] } ] }, { - "CustomerID": "SAVEA", - "Company": "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", + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", "Orders": [ { - "OrderID": 10603, - "EmployeeID": 8, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", - "ShipVia": 2, - "Freight": 48.77, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10273, + "EmployeeID": 3, + "OrderDate": "1996-08-05T00:00:00", + "RequiredDate": "1996-09-02T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", + "ShipVia": 3, + "Freight": 76.07, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 48, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 24, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 33, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10604, + "OrderID": 10285, "EmployeeID": 1, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", - "ShipVia": 1, - "Freight": 7.46, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderDate": "1996-08-20T00:00:00", + "RequiredDate": "1996-09-17T00:00:00", + "ShippedDate": "1996-08-26T00:00:00", + "ShipVia": 2, + "Freight": 76.83, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 36, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 12000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10605, - "EmployeeID": 1, - "OrderDate": "1997-07-21T00:00:00", - "RequiredDate": "1997-08-18T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", + "OrderID": 10313, + "EmployeeID": 2, + "OrderDate": "1996-09-24T00:00:00", + "RequiredDate": "1996-10-22T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", "ShipVia": 2, - "Freight": 379.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 43000, - "ShipCountry": "Canada", + "Freight": 1.96, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10345, + "EmployeeID": 2, + "OrderDate": "1996-11-04T00:00:00", + "RequiredDate": "1996-12-02T00:00:00", + "ShippedDate": "1996-11-11T00:00:00", + "ShipVia": 2, + "Freight": 249.06, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 80, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10606, - "EmployeeID": 4, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-31T00:00:00", - "ShipVia": 3, - "Freight": 79.4, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "OrderID": 10361, + "EmployeeID": 1, + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 183.17, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 54, + "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 55, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10607, - "EmployeeID": 5, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", + "OrderID": 10418, + "EmployeeID": 4, + "OrderDate": "1997-01-17T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", "ShipVia": 1, - "Freight": 200.24, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 17.55, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 100, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 42, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 12, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10608, + "OrderID": 10451, "EmployeeID": 4, - "OrderDate": "1997-07-23T00:00:00", - "RequiredDate": "1997-08-20T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 27.79, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 189.09, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 120, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, "Quantity": 28, - "Discount": 0 + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 55, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10609, - "EmployeeID": 7, - "OrderDate": "1997-07-24T00:00:00", - "RequiredDate": "1997-08-21T00:00:00", - "ShippedDate": "1997-07-30T00:00:00", - "ShipVia": 2, - "Freight": 1.85, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10515, + "EmployeeID": 2, + "OrderDate": "1997-04-23T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 1, + "Freight": 204.47, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 16, + "Discount": 0.16 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 120, "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, + "Discount": 0.16 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 84, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10610, - "EmployeeID": 8, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", + "OrderID": 10527, + "EmployeeID": 7, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", "ShipVia": 1, - "Freight": 26.78, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 41.9, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, + "Discount": 0.1 + }, { "ProductID": 36, "UnitPrice": 19, - "Quantity": 21, - "Discount": 0.25 + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10611, - "EmployeeID": 6, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 80.65, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10540, + "EmployeeID": 3, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 3, + "Freight": 1007.64, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 6, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10612, - "EmployeeID": 1, - "OrderDate": "1997-07-28T00:00:00", - "RequiredDate": "1997-08-25T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 544.08, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10549, + "EmployeeID": 5, + "OrderDate": "1997-05-27T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 171.24, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 55, + "Discount": 0.16 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 100, + "Discount": 0.16 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 48, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10588, + "EmployeeID": 2, + "OrderDate": "1997-07-03T00:00:00", + "RequiredDate": "1997-07-31T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", + "ShipVia": 3, + "Freight": 194.67, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 100, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10658, + "EmployeeID": 4, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 1, + "Freight": 364.15, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 55, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 18, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 70, + "Discount": 0.06 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 40, - "Discount": 0 + "Quantity": 55, + "Discount": 0.06 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 70, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10613, - "EmployeeID": 4, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderID": 10691, + "EmployeeID": 2, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-10-22T00:00:00", "ShipVia": 2, - "Freight": 8.11, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 810.05, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 48, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10614, + "OrderID": 10694, "EmployeeID": 8, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-11-03T00:00:00", + "ShippedDate": "1997-10-09T00:00:00", "ShipVia": 3, - "Freight": 1.93, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, + "Freight": 398.36, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 14, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 90, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 8, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 5, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10615, - "EmployeeID": 2, - "OrderDate": "1997-07-30T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", + "OrderID": 10721, + "EmployeeID": 5, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-11-26T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", "ShipVia": 3, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 48.92, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 5, - "Discount": 0 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 50, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10616, - "EmployeeID": 1, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-05T00:00:00", - "ShipVia": 2, - "Freight": 116.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderID": 10745, + "EmployeeID": 9, + "OrderDate": "1997-11-18T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 1, + "Freight": 3.52, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 45, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 7, + "Discount": 0 } ] }, { - "OrderID": 10617, - "EmployeeID": 4, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-04T00:00:00", - "ShipVia": 2, - "Freight": 18.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderID": 10765, + "EmployeeID": 3, + "OrderDate": "1997-12-04T00:00:00", + "RequiredDate": "1998-01-01T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 3, + "Freight": 42.74, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 80, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 45000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10618, + "OrderID": 10788, "EmployeeID": 1, - "OrderDate": "1997-08-01T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 42.7, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10845, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 154.68, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 49000, - "ShipCountry": "Canada", + "Freight": 212.98, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, + "ProductID": 23, + "UnitPrice": 9, "Quantity": 70, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 42, + "Discount": 0.1 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 60, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 48, "Discount": 0 } ] }, { - "OrderID": 10619, - "EmployeeID": 3, - "OrderDate": "1997-08-04T00:00:00", - "RequiredDate": "1997-09-01T00:00:00", - "ShippedDate": "1997-08-07T00:00:00", - "ShipVia": 3, - "Freight": 91.05, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 20000, - "ShipCountry": "Canada", + "OrderID": 10865, + "EmployeeID": 2, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 348.14, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 42, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 48000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ + }, { - "OrderID": 10620, - "EmployeeID": 2, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", - "ShipVia": 3, - "Freight": 0.94, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 15000, - "ShipCountry": "Canada", + "OrderID": 10878, + "EmployeeID": 4, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 46.69, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10938, + "EmployeeID": 3, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 31.89, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0.25 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0.25 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 49, + "Discount": 0.25 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10621, - "EmployeeID": 4, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", + "OrderID": 10962, + "EmployeeID": 8, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", "ShipVia": 2, - "Freight": 23.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 90304, - "ShipPostalCode": 28000, - "ShipCountry": "UK", + "Freight": 275.79, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 10, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 77, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 53, + "UnitPrice": 32.8, "Quantity": 20, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 44, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10622, - "EmployeeID": 4, - "OrderDate": "1997-08-06T00:00:00", - "RequiredDate": "1997-09-03T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", - "ShipVia": 3, - "Freight": 50.97, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10991, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 1, + "Freight": 38.51, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.2 + }, + { + "ProductID": 70, + "UnitPrice": 15, "Quantity": 20, - "Discount": 0 + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 90, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10623, - "EmployeeID": 8, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", + "OrderID": 10996, + "EmployeeID": 4, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 2, - "Freight": 97.18, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, + "Freight": 1.12, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 21, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0 + } + ] + }, + { + "OrderID": 11021, + "EmployeeID": 3, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 1, + "Freight": 297.18, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 11, + "Discount": 0.25 }, { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 20, + "UnitPrice": 81, "Quantity": 15, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 63, + "Discount": 0 }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 44, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "MAGAA", + "Company": "Magazzini Alimentari Riuniti", + "ContactName": "Giovanni Rovelli", + "ContactTitle": "Marketing Manager", + "Address": "Via Ludovico il Moro 22", + "City": "Bergamo", + "PostalCode": 24100, + "Country": "Italy", + "Phone": "035-640230", + "Fax": "035-640231", + "Orders": [ + { + "OrderID": 10275, + "EmployeeID": 1, + "OrderDate": "1996-08-07T00:00:00", + "RequiredDate": "1996-09-04T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", + "ShipVia": 1, + "Freight": 26.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 3, - "Discount": 0 + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 6, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10624, - "EmployeeID": 4, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", + "OrderID": 10300, + "EmployeeID": 2, + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", "ShipVia": 2, - "Freight": 94.8, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "Freight": 17.68, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 6, + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10625, - "EmployeeID": 3, - "OrderDate": "1997-08-08T00:00:00", - "RequiredDate": "1997-09-05T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", + "OrderID": 10404, + "EmployeeID": 2, + "OrderDate": "1997-01-03T00:00:00", + "RequiredDate": "1997-01-31T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", "ShipVia": 1, - "Freight": 43.9, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 155.97, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, + "Discount": 0.06 }, { "ProductID": 42, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 + "UnitPrice": 11.2, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 47000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10626, - "EmployeeID": 1, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-08T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", + "OrderID": 10467, + "EmployeeID": 8, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", "ShipVia": 2, - "Freight": 138.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 39000, - "ShipCountry": "Sweden", + "Freight": 4.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 12, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 12, "Discount": 0 + } + ] + }, + { + "OrderID": 10635, + "EmployeeID": 8, + "OrderDate": "1997-08-18T00:00:00", + "RequiredDate": "1997-09-15T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 47.46, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 20, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10627, - "EmployeeID": 8, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10754, + "EmployeeID": 6, + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", "ShipVia": 3, - "Freight": 107.46, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 2.38, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 3, "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10628, + "OrderID": 10784, "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", "ShipVia": 3, - "Freight": 30.36, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 70.09, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10629, - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", + "OrderID": 10818, + "EmployeeID": 7, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", "ShipVia": 3, - "Freight": 85.46, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 65.48, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 32, + "UnitPrice": 32, "Quantity": 20, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 9, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10630, - "EmployeeID": 1, - "OrderDate": "1997-08-13T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", + "OrderID": 10939, + "EmployeeID": 2, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 2, - "Freight": 32.35, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 76.33, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10631, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-15T00:00:00", - "ShipVia": 1, - "Freight": 0.87, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10632, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 1, - "Freight": 41.38, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10950, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-13T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 2.5, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "TORTU", + "Company": "Tortuga Restaurante", + "ContactName": "Miguel Angel Paolino", + "ContactTitle": "Owner", + "Address": "Avda. Azteca 123", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 555-2933", "Orders": [ { - "OrderID": 10633, - "EmployeeID": 7, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-18T00:00:00", + "OrderID": 10276, + "EmployeeID": 8, + "OrderDate": "1996-08-08T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-14T00:00:00", "ShipVia": 3, - "Freight": 477.9, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 13.84, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 15, + "Discount": 0 }, { "ProductID": 13, - "UnitPrice": 6, - "Quantity": 13, - "Discount": 0.16 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 80, - "Discount": 0.16 + "UnitPrice": 4.8, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10634, - "EmployeeID": 4, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10293, + "EmployeeID": 1, + "OrderDate": "1996-08-29T00:00:00", + "RequiredDate": "1996-09-26T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 3, - "Freight": 487.38, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 21.18, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 50, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 15, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 5, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 7.75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0 + } + ] + }, + { + "OrderID": 10304, + "EmployeeID": 1, + "OrderDate": "1996-09-12T00:00:00", + "RequiredDate": "1996-10-10T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", + "ShipVia": 2, + "Freight": 63.79, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10635, - "EmployeeID": 8, - "OrderDate": "1997-08-18T00:00:00", - "RequiredDate": "1997-09-15T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10319, + "EmployeeID": 7, + "OrderDate": "1996-10-02T00:00:00", + "RequiredDate": "1996-10-30T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", "ShipVia": 3, - "Freight": 47.46, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 64.5, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10636, + "OrderID": 10518, "EmployeeID": 4, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 1.15, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderDate": "1997-04-25T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-05-05T00:00:00", + "ShipVia": 2, + "Freight": 218.15, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10637, - "EmployeeID": 6, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 201.29, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10576, + "EmployeeID": 3, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", + "ShipVia": 3, + "Freight": 18.56, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10638, - "EmployeeID": 3, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", - "ShipVia": 1, - "Freight": 158.44, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10676, + "EmployeeID": 2, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-29T00:00:00", + "ShipVia": 2, + "Freight": 2.01, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 60, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10639, - "EmployeeID": 7, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-08-27T00:00:00", + "OrderID": 10842, + "EmployeeID": 1, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 3, - "Freight": 38.64, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 54.42, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10640, - "EmployeeID": 4, - "OrderDate": "1997-08-21T00:00:00", - "RequiredDate": "1997-09-18T00:00:00", - "ShippedDate": "1997-08-28T00:00:00", - "ShipVia": 1, - "Freight": 23.55, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10915, + "EmployeeID": 2, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", + "ShipVia": 2, + "Freight": 3.51, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10641, - "EmployeeID": 4, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", + "OrderID": 11069, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", "ShipVia": 2, - "Freight": 179.61, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 15.67, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] @@ -18056,182 +9977,158 @@ ] }, { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", + "CustomerID": "MORGK", + "Company": "Morgenstern Gesundkost", + "ContactName": "Alexander Feuer", + "ContactTitle": "Marketing Assistant", + "Address": "Heerstr. 22", + "City": "Leipzig", + "PostalCode": 4179, + "Country": "Germany", + "Phone": "0342-023176", "Orders": [ { - "OrderID": 10642, - "EmployeeID": 7, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-09-05T00:00:00", + "OrderID": 10277, + "EmployeeID": 2, + "OrderDate": "1996-08-09T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-08-13T00:00:00", "ShipVia": 3, - "Freight": 41.89, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 125.77, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10643, - "EmployeeID": 6, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", + "OrderID": 10575, + "EmployeeID": 5, + "OrderDate": "1997-06-20T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 1, - "Freight": 29.46, - "ShipName": "Alfreds Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, + "Freight": 127.34, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10644, + "OrderID": 10699, "EmployeeID": 3, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", - "ShipVia": 2, - "Freight": 0.14, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", + "ShipVia": 3, + "Freight": 0.58, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 4, - "Discount": 0.1 - }, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10779, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 2, + "Freight": 58.13, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 43, - "UnitPrice": 46, + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 20, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0.1 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10645, + "OrderID": 10945, "EmployeeID": 4, - "OrderDate": "1997-08-26T00:00:00", - "RequiredDate": "1997-09-23T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-04-09T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 1, - "Freight": 12.41, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 10.22, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, + "ProductID": 13, + "UnitPrice": 6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 15, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 } ] @@ -18239,376 +10136,273 @@ ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 32000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", "Orders": [ { - "OrderID": 10646, - "EmployeeID": 9, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 3, - "Freight": 142.33, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10278, + "EmployeeID": 8, + "OrderDate": "1996-08-12T00:00:00", + "RequiredDate": "1996-09-09T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 92.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 26000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 16, + "Discount": 0 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10647, - "EmployeeID": 4, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 2, - "Freight": 45.54, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10280, + "EmployeeID": 2, + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-09-11T00:00:00", + "ShippedDate": "1996-09-12T00:00:00", + "ShipVia": 1, + "Freight": 8.98, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 50000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, + "ProductID": 55, + "UnitPrice": 19.2, "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ - { - "OrderID": 10648, - "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-09T00:00:00", - "ShipVia": 2, - "Freight": 14.25, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 43000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10649, - "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-09-25T00:00:00", - "ShippedDate": "1997-08-29T00:00:00", - "ShipVia": 3, - "Freight": 6.2, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 21000, - "ShipCountry": "Belgium", + "OrderID": 10384, + "EmployeeID": 3, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", + "ShipVia": 3, + "Freight": 168.64, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 33000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, + "ProductID": 60, + "UnitPrice": 27.2, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10650, - "EmployeeID": 5, - "OrderDate": "1997-08-29T00:00:00", - "RequiredDate": "1997-09-26T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", + "OrderID": 10444, + "EmployeeID": 3, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-21T00:00:00", "ShipVia": 3, - "Freight": 176.81, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "Freight": 3.5, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 21000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10651, - "EmployeeID": 8, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", + "OrderID": 10524, + "EmployeeID": 1, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", "ShipVia": 2, - "Freight": 20.6, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 244.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 2, + "Discount": 0 }, - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 10652, - "EmployeeID": 4, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", - "ShipVia": 2, - "Freight": 7.14, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", - "OrderDetails": [ { "ProductID": 30, "UnitPrice": 25.89, - "Quantity": 2, - "Discount": 0.25 + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10653, - "EmployeeID": 1, - "OrderDate": "1997-09-02T00:00:00", - "RequiredDate": "1997-09-30T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 1, - "Freight": 93.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10572, + "EmployeeID": 3, + "OrderDate": "1997-06-18T00:00:00", + "RequiredDate": "1997-07-16T00:00:00", + "ShippedDate": "1997-06-25T00:00:00", + "ShipVia": 2, + "Freight": 116.43, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 25000, + "ShipCountry": "Sweden", "OrderDetails": [ { "ProductID": 16, "UnitPrice": 17.45, - "Quantity": 30, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 15, "Discount": 0.1 + } + ] + }, + { + "OrderID": 10626, + "EmployeeID": 1, + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-08T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 2, + "Freight": 138.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 39000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 12, + "Discount": 0 }, { "ProductID": 60, "UnitPrice": 34, "Quantity": 20, - "Discount": 0.1 + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 28000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { "OrderID": 10654, "EmployeeID": 5, @@ -18642,838 +10436,738 @@ "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10655, - "EmployeeID": 1, - "OrderDate": "1997-09-03T00:00:00", + "OrderID": 10672, + "EmployeeID": 9, + "OrderDate": "1997-09-17T00:00:00", "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", "ShipVia": 2, - "Freight": 4.41, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ - { - "OrderID": 10656, - "EmployeeID": 6, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", - "ShipVia": 1, - "Freight": 57.15, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 95.75, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 16000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0.1 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 28, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, "Discount": 0.1 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10657, - "EmployeeID": 2, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", + "OrderID": 10689, + "EmployeeID": 1, + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-29T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", "ShipVia": 2, - "Freight": 352.69, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 13.42, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 24000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 45, - "Discount": 0 - }, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10733, + "EmployeeID": 1, + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-10T00:00:00", + "ShipVia": 3, + "Freight": 110.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 27000, + "ShipCountry": "Sweden", + "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 10, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 45, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10658, - "EmployeeID": 4, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", + "OrderID": 10778, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", "ShipVia": 1, - "Freight": 364.15, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 6.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 13000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10837, + "EmployeeID": 9, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 13.32, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 44000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, "Discount": 0 }, { "ProductID": 40, "UnitPrice": 18.4, - "Quantity": 70, - "Discount": 0.06 + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 55, - "Discount": 0.06 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10659, - "EmployeeID": 7, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", + "OrderID": 10857, + "EmployeeID": 8, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", "ShipVia": 2, - "Freight": 105.81, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 188.85, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 43000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 24, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10660, - "EmployeeID": 8, - "OrderDate": "1997-09-08T00:00:00", - "RequiredDate": "1997-10-06T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", + "OrderID": 10866, + "EmployeeID": 5, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-03T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", "ShipVia": 1, - "Freight": 111.29, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "Freight": 109.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10661, - "EmployeeID": 7, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", - "ShipVia": 3, - "Freight": 17.55, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ + "Discount": 0.25 + }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 6, + "Discount": 0.25 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 49, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 40, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10662, - "EmployeeID": 3, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", + "OrderID": 10875, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", "ShipVia": 2, - "Freight": 1.28, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 32.37, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 37000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0.1 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10663, - "EmployeeID": 2, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-09-24T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", + "OrderID": 10924, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", "ShipVia": 2, - "Freight": 113.15, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 151.52, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 42, - "UnitPrice": 14, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 30, - "Discount": 0.06 + "Discount": 0.1 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 6, + "Discount": 0 } ] } ] }, { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", + "CustomerID": "LEHMS", + "Company": "Lehmanns Marktstand", + "ContactName": "Renate Messner", + "ContactTitle": "Sales Representative", + "Address": "Magazinweg 7", + "City": "Frankfurt a.M.", + "PostalCode": 60528, + "Country": "Germany", + "Phone": "069-0245984", + "Fax": "069-0245874", "Orders": [ { - "OrderID": 10664, - "EmployeeID": 1, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 3, - "Freight": 1.27, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10279, + "EmployeeID": 8, + "OrderDate": "1996-08-13T00:00:00", + "RequiredDate": "1996-09-10T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 25.83, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10284, + "EmployeeID": 4, + "OrderDate": "1996-08-19T00:00:00", + "RequiredDate": "1996-09-16T00:00:00", + "ShippedDate": "1996-08-27T00:00:00", + "ShipVia": 1, + "Freight": 76.56, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0.25 + }, + { + "ProductID": 67, + "UnitPrice": 11.2, + "Quantity": 5, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10665, - "EmployeeID": 1, - "OrderDate": "1997-09-11T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-17T00:00:00", - "ShipVia": 2, - "Freight": 26.31, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10343, + "EmployeeID": 4, + "OrderDate": "1996-10-31T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-11-06T00:00:00", + "ShipVia": 1, + "Freight": 110.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 1, - "Discount": 0 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 4, + "Discount": 0.06 }, { "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "UnitPrice": 14.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10666, + "OrderID": 10497, "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", - "ShipVia": 2, - "Freight": 232.42, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", + "ShipVia": 1, + "Freight": 36.21, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10667, - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", + "OrderID": 10522, + "EmployeeID": 4, + "OrderDate": "1997-04-30T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-06T00:00:00", "ShipVia": 1, - "Freight": 78.09, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 45.33, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 45, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 14, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10668, - "EmployeeID": 1, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", + "OrderID": 10534, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-14T00:00:00", "ShipVia": 2, - "Freight": 47.22, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, + "Freight": 27.94, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ - { - "OrderID": 10669, - "EmployeeID": 2, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", - "ShipVia": 1, - "Freight": 24.39, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10670, - "EmployeeID": 4, - "OrderDate": "1997-09-16T00:00:00", - "RequiredDate": "1997-10-14T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", - "ShipVia": 1, - "Freight": 203.48, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, + "OrderID": 10536, + "EmployeeID": 3, + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-06-11T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 2, + "Freight": 58.88, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 32, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 60, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 25, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10557, + "EmployeeID": 9, + "OrderDate": "1997-06-03T00:00:00", + "RequiredDate": "1997-06-17T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 2, + "Freight": 96.72, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 25, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10671, - "EmployeeID": 1, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-09-24T00:00:00", + "OrderID": 10592, + "EmployeeID": 3, + "OrderDate": "1997-07-08T00:00:00", + "RequiredDate": "1997-08-05T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", "ShipVia": 1, - "Freight": 30.34, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 32.1, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 10, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 5, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10772, + "EmployeeID": 3, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 91.28, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10862, + "EmployeeID": 8, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 53.23, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10672, - "EmployeeID": 9, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", + "OrderID": 10891, + "EmployeeID": 7, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", "ShipVia": 2, - "Freight": 95.75, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 16000, - "ShipCountry": "Sweden", + "Freight": 20.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, + "ProductID": 30, + "UnitPrice": 25.89, "Quantity": 15, - "Discount": 0.1 + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10934, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 3, + "Freight": 32.01, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 11070, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShipVia": 1, + "Freight": 136, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.16 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 } ] @@ -19481,275 +11175,177 @@ ] }, { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", + "CustomerID": "ROMEY", + "Company": "Romero y tomillo", + "ContactName": "Alejandra Camino", + "ContactTitle": "Accounting Manager", + "Address": "Gran Vía, 1", + "City": "Madrid", + "PostalCode": 28001, + "Country": "Spain", + "Phone": "(91) 745 6200", + "Fax": "(91) 745 6210", "Orders": [ { - "OrderID": 10673, - "EmployeeID": 2, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 1, - "Freight": 22.76, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10281, + "EmployeeID": 4, + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-08-28T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 2.94, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, + "ProductID": 24, + "UnitPrice": 3.6, "Quantity": 6, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10674, + "OrderID": 10282, "EmployeeID": 4, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 2, - "Freight": 0.9, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60688, - "ShipPostalCode": 25000, - "ShipCountry": "UK", + "OrderDate": "1996-08-15T00:00:00", + "RequiredDate": "1996-09-12T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 5, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10675, - "EmployeeID": 5, - "OrderDate": "1997-09-19T00:00:00", - "RequiredDate": "1997-10-17T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", - "ShipVia": 2, - "Freight": 31.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10306, + "EmployeeID": 1, + "OrderDate": "1996-09-16T00:00:00", + "RequiredDate": "1996-10-14T00:00:00", + "ShippedDate": "1996-09-23T00:00:00", + "ShipVia": 3, + "Freight": 7.56, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 10, "Discount": 0 }, { "ProductID": 53, - "UnitPrice": 32.8, + "UnitPrice": 26.2, "Quantity": 10, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10676, - "EmployeeID": 2, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-29T00:00:00", + "OrderID": 10917, + "EmployeeID": 4, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", "ShipVia": 2, - "Freight": 2.01, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 8.29, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10677, - "EmployeeID": 1, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", - "ShipVia": 3, - "Freight": 4.03, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10678, - "EmployeeID": 7, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", - "ShipVia": 3, - "Freight": 388.98, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11013, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 32.99, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 100, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 120, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 2, "Discount": 0 } ] @@ -19757,1581 +11353,1417 @@ ] }, { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", + "CustomerID": "LILAS", + "Company": "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", "Orders": [ { - "OrderID": 10679, - "EmployeeID": 8, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", + "OrderID": 10283, + "EmployeeID": 3, + "OrderDate": "1996-08-16T00:00:00", + "RequiredDate": "1996-09-13T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", "ShipVia": 3, - "Freight": 27.94, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 84.81, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10680, - "EmployeeID": 1, - "OrderDate": "1997-09-24T00:00:00", - "RequiredDate": "1997-10-22T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", + "OrderID": 10296, + "EmployeeID": 6, + "OrderDate": "1996-09-03T00:00:00", + "RequiredDate": "1996-10-01T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 1, - "Freight": 26.61, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 0.12, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10681, + "OrderID": 10330, "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 3, - "Freight": 76.13, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", + "ShipVia": 1, + "Freight": 12.75, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0.1 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 28, - "Discount": 0 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10682, - "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 2, - "Freight": 36.13, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + }, + { + "OrderID": 10357, + "EmployeeID": 1, + "OrderDate": "1996-11-19T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 34.88, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, + "ProductID": 10, + "UnitPrice": 24.8, "Quantity": 30, - "Discount": 0 + "Discount": 0.2 }, { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 4, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10683, - "EmployeeID": 2, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 1, - "Freight": 4.4, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10381, + "EmployeeID": 3, + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 7.99, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 9, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10684, - "EmployeeID": 3, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 1, - "Freight": 145.63, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "OrderID": 10461, + "EmployeeID": 1, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-05T00:00:00", + "ShipVia": 3, + "Freight": 148.61, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 28, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10685, + "OrderID": 10499, "EmployeeID": 4, - "OrderDate": "1997-09-29T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", + "OrderDate": "1997-04-08T00:00:00", + "RequiredDate": "1997-05-06T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", "ShipVia": 2, - "Freight": 33.75, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 102.02, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 25, "Discount": 0 + } + ] + }, + { + "OrderID": 10543, + "EmployeeID": 8, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 2, + "Freight": 48.17, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10686, + "OrderID": 10780, "EmployeeID": 2, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-08T00:00:00", - "ShipVia": 1, - "Freight": 96.5, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-25T00:00:00", + "ShipVia": 1, + "Freight": 42.13, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, + "ProductID": 77, + "UnitPrice": 13, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10687, - "EmployeeID": 9, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-30T00:00:00", + "OrderID": 10823, + "EmployeeID": 5, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", "ShipVia": 2, - "Freight": 296.43, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 163.97, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10688, - "EmployeeID": 4, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", + "OrderID": 10899, + "EmployeeID": 5, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", + "ShipVia": 3, + "Freight": 1.21, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10997, + "EmployeeID": 8, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 299.09, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 73.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 14, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 21000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10689, - "EmployeeID": 1, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-29T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", - "ShipVia": 2, - "Freight": 13.42, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 24000, - "ShipCountry": "Sweden", + "OrderID": 11065, + "EmployeeID": 8, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShipVia": 1, + "Freight": 12.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 35, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 4, + "Discount": 0.25 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10690, - "EmployeeID": 1, - "OrderDate": "1997-10-02T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", - "ShipVia": 1, - "Freight": 15.8, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + }, + { + "OrderID": 11071, + "EmployeeID": 1, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShipVia": 1, + "Freight": 0.93, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", + "CustomerID": "RICAR", + "Company": "Ricardo Adocicados", + "ContactName": "Janete Limeira", + "ContactTitle": "Sales Associate", + "Address": "Av. Copacabana, 267", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-3412", "Orders": [ { - "OrderID": 10691, - "EmployeeID": 2, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-10-22T00:00:00", - "ShipVia": 2, - "Freight": 810.05, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10287, + "EmployeeID": 8, + "OrderDate": "1996-08-22T00:00:00", + "RequiredDate": "1996-09-19T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", + "ShipVia": 3, + "Freight": 12.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, + "ProductID": 16, + "UnitPrice": 13.9, "Quantity": 40, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 24, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 48, - "Discount": 0 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10692, + "OrderID": 10299, "EmployeeID": 4, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-10-31T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", + "OrderDate": "1996-09-06T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-13T00:00:00", "ShipVia": 2, - "Freight": 61.02, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 29.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10693, - "EmployeeID": 3, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-10-10T00:00:00", - "ShipVia": 3, - "Freight": 139.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10447, + "EmployeeID": 4, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-03-07T00:00:00", + "ShipVia": 2, + "Freight": 68.66, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 6, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10694, + "OrderID": 10481, "EmployeeID": 8, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-11-03T00:00:00", - "ShippedDate": "1997-10-09T00:00:00", - "ShipVia": 3, - "Freight": 398.36, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", + "ShipVia": 2, + "Freight": 64.33, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 90, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10563, + "EmployeeID": 2, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-06-24T00:00:00", + "ShipVia": 2, + "Freight": 60.43, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, "Quantity": 25, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 70, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10695, - "EmployeeID": 7, - "OrderDate": "1997-10-07T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 1, - "Freight": 16.72, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10622, + "EmployeeID": 4, + "OrderDate": "1997-08-06T00:00:00", + "RequiredDate": "1997-09-03T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 3, + "Freight": 50.97, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 4, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10648, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-09T00:00:00", + "ShipVia": 2, + "Freight": 14.25, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 15, "Discount": 0 }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0 + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10696, - "EmployeeID": 8, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 3, - "Freight": 102.55, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10813, + "EmployeeID": 1, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 1, + "Freight": 47.38, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 12, + "Discount": 0.2 }, { "ProductID": 46, "UnitPrice": 12, - "Quantity": 18, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10697, - "EmployeeID": 3, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-05T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", + "OrderID": 10851, + "EmployeeID": 5, + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-23T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", "ShipVia": 1, - "Freight": 45.52, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", + "Freight": 160.55, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, - "Discount": 0.25 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, + "Discount": 0.06 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 9, - "Discount": 0.25 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 58, - "UnitPrice": 13.25, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10877, + "EmployeeID": 1, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 1, + "Freight": 38.06, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 30, "Discount": 0.25 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10698, - "EmployeeID": 4, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-17T00:00:00", - "ShipVia": 1, - "Freight": 272.47, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 11059, + "EmployeeID": 2, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-06-10T00:00:00", + "ShipVia": 2, + "Freight": 85.8, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 30, "Discount": 0 }, { "ProductID": 17, "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 65, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 8, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0 } ] } ] }, { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", + "CustomerID": "REGGC", + "Company": "Reggiani Caseifici", + "ContactName": "Maurizio Moroni", + "ContactTitle": "Sales Associate", + "Address": "Strada Provinciale 124", + "City": "Reggio Emilia", + "PostalCode": 42100, + "Country": "Italy", + "Phone": "0522-556721", + "Fax": "0522-556722", "Orders": [ { - "OrderID": 10699, - "EmployeeID": 3, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", - "ShipVia": 3, - "Freight": 0.58, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "OrderID": 10288, + "EmployeeID": 4, + "OrderDate": "1996-08-23T00:00:00", + "RequiredDate": "1996-09-20T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", + "ShipVia": 1, + "Freight": 7.45, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 12, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10428, + "EmployeeID": 7, + "OrderDate": "1997-01-28T00:00:00", + "RequiredDate": "1997-02-25T00:00:00", + "ShippedDate": "1997-02-04T00:00:00", + "ShipVia": 1, + "Freight": 11.09, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10700, - "EmployeeID": 3, - "OrderDate": "1997-10-10T00:00:00", - "RequiredDate": "1997-11-07T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", + "OrderID": 10443, + "EmployeeID": 8, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", "ShipVia": 1, - "Freight": 65.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 13.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 5, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 34, - "UnitPrice": 14, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 12, - "Discount": 0.2 + "Discount": 0 + } + ] + }, + { + "OrderID": 10562, + "EmployeeID": 1, + "OrderDate": "1997-06-09T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-12T00:00:00", + "ShipVia": 1, + "Freight": 22.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 40, - "Discount": 0.2 - }, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10586, + "EmployeeID": 9, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 1, + "Freight": 0.48, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10655, + "EmployeeID": 1, + "OrderDate": "1997-09-03T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 4.41, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10701, - "EmployeeID": 6, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-10-27T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", - "ShipVia": 3, - "Freight": 220.31, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10727, + "EmployeeID": 2, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-12-01T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 89.9, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10702, - "EmployeeID": 4, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", + "OrderID": 10812, + "EmployeeID": 5, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", "ShipVia": 1, - "Freight": 23.94, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 59.78, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 16, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 47000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10703, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-10-20T00:00:00", + "OrderID": 10908, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", "ShipVia": 2, - "Freight": 152.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 22000, - "ShipCountry": "Sweden", + "Freight": 32.96, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 14, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10704, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", - "ShipVia": 1, - "Freight": 4.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10942, + "EmployeeID": 9, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 3, + "Freight": 17.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 28, + "Discount": 0 + } + ] + }, + { + "OrderID": 11010, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 28.71, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 6, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, "Discount": 0 }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 24, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10705, - "EmployeeID": 9, - "OrderDate": "1997-10-15T00:00:00", - "RequiredDate": "1997-11-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 11062, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", "ShipVia": 2, - "Freight": 3.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 29.93, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 4, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 12, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", + "CustomerID": "BSBEV", + "Company": "B's Beverages", + "ContactName": "Victoria Ashworth", "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", + "Address": "Fauntleroy Circus", + "City": "London", + "PostalCode": 20000, + "Country": "UK", + "Phone": "(171) 555-1212", "Orders": [ { - "OrderID": 10706, - "EmployeeID": 8, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-11-13T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", + "OrderID": 10289, + "EmployeeID": 7, + "OrderDate": "1996-08-26T00:00:00", + "RequiredDate": "1996-09-23T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", "ShipVia": 3, - "Freight": 135.63, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 22.77, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 18000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 10471, + "EmployeeID": 2, + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 3, + "Freight": 45.59, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 8, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 14000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10707, - "EmployeeID": 4, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", + "OrderID": 10484, + "EmployeeID": 3, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-01T00:00:00", "ShipVia": 3, - "Freight": 21.74, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 29000, + "Freight": 6.88, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 31000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 21, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 40, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ - { - "OrderID": 10708, - "EmployeeID": 6, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 2.96, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + }, + { + "OrderID": 10538, + "EmployeeID": 9, + "OrderDate": "1997-05-15T00:00:00", + "RequiredDate": "1997-06-12T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 3, + "Freight": 4.87, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 45000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 4, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 5, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 1, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10709, - "EmployeeID": 1, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-11-20T00:00:00", + "OrderID": 10578, + "EmployeeID": 4, + "OrderDate": "1997-06-24T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", "ShipVia": 3, - "Freight": 210.8, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 29.6, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 44000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 28, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10710, - "EmployeeID": 1, - "OrderDate": "1997-10-20T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", - "ShipVia": 1, - "Freight": 4.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10599, + "EmployeeID": 6, + "OrderDate": "1997-07-15T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", + "ShipVia": 3, + "Freight": 29.98, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 21000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10711, - "EmployeeID": 5, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", + "OrderID": 10943, + "EmployeeID": 4, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 52.41, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 2.17, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 42, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 120, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10712, + "OrderID": 10947, "EmployeeID": 3, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", - "ShipVia": 1, - "Freight": 89.93, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 13000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11023, + "EmployeeID": 1, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 123.83, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 43, + "UnitPrice": 46, "Quantity": 30, "Discount": 0 } @@ -21340,191 +12772,158 @@ ] }, { - "CustomerID": "SAVEA", - "Company": "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", + "CustomerID": "COMMI", + "Company": "Comércio Mineiro", + "ContactName": "Pedro Afonso", + "ContactTitle": "Sales Associate", + "Address": "Av. dos Lusíadas, 23", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5432, + "Country": "Brazil", + "Phone": "(11) 555-7647", "Orders": [ { - "OrderID": 10713, - "EmployeeID": 1, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-24T00:00:00", + "OrderID": 10290, + "EmployeeID": 8, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", "ShipVia": 1, - "Freight": 167.05, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 79.7, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 110, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 24, + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, "Discount": 0 } ] }, { - "OrderID": 10714, - "EmployeeID": 5, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", - "ShipVia": 3, - "Freight": 24.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10466, + "EmployeeID": 4, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-13T00:00:00", + "ShipVia": 1, + "Freight": 11.93, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 27, - "Discount": 0.25 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 50, - "Discount": 0.25 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10715, - "EmployeeID": 3, - "OrderDate": "1997-10-23T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 1, - "Freight": 63.2, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10494, + "EmployeeID": 4, + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", + "ShipVia": 2, + "Freight": 65.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, + "ProductID": 56, + "UnitPrice": 30.4, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10716, - "EmployeeID": 4, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", + "OrderID": 10969, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", "ShipVia": 2, - "Freight": 22.57, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 0.21, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11042, + "EmployeeID": 2, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 29.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 7, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 15, "Discount": 0 }, { "ProductID": 61, "UnitPrice": 28.5, - "Quantity": 10, + "Quantity": 4, "Discount": 0 } ] @@ -21532,900 +12931,820 @@ ] }, { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", + "CustomerID": "TRADH", + "Company": "Tradição Hipermercados", + "ContactName": "Anabela Domingues", + "ContactTitle": "Sales Representative", + "Address": "Av. Inês de Castro, 414", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5634, + "Country": "Brazil", + "Phone": "(11) 555-2167", + "Fax": "(11) 555-2168", "Orders": [ { - "OrderID": 10717, + "OrderID": 10292, "EmployeeID": 1, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", + "OrderDate": "1996-08-28T00:00:00", + "RequiredDate": "1996-09-25T00:00:00", + "ShippedDate": "1996-09-02T00:00:00", "ShipVia": 2, - "Freight": 59.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 1.35, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10496, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", + "ShipVia": 2, + "Freight": 46.77, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 31, "UnitPrice": 10, - "Quantity": 32, + "Quantity": 20, "Discount": 0.06 + } + ] + }, + { + "OrderID": 10606, + "EmployeeID": 4, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-31T00:00:00", + "ShipVia": 3, + "Freight": 79.4, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10718, - "EmployeeID": 1, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 3, - "Freight": 170.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10830, + "EmployeeID": 4, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 2, + "Freight": 81.83, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10719, - "EmployeeID": 8, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 51.44, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10834, + "EmployeeID": 1, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 3, + "Freight": 29.78, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 8, + "Discount": 0.06 }, { "ProductID": 30, "UnitPrice": 25.89, - "Quantity": 3, - "Discount": 0.25 + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10839, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-22T00:00:00", + "ShipVia": 3, + "Freight": 35.43, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", "Orders": [ { - "OrderID": 10720, - "EmployeeID": 8, - "OrderDate": "1997-10-28T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", + "OrderID": 10298, + "EmployeeID": 6, + "OrderDate": "1996-09-05T00:00:00", + "RequiredDate": "1996-10-03T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 2, - "Freight": 9.53, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 168.22, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 8, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.25 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10721, - "EmployeeID": 5, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-11-26T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", - "ShipVia": 3, - "Freight": 48.92, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10309, + "EmployeeID": 3, + "OrderDate": "1996-09-19T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 1, + "Freight": 47.3, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10722, - "EmployeeID": 8, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-04T00:00:00", - "ShipVia": 1, - "Freight": 74.58, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10335, + "EmployeeID": 7, + "OrderDate": "1996-10-22T00:00:00", + "RequiredDate": "1996-11-19T00:00:00", + "ShippedDate": "1996-10-24T00:00:00", + "ShipVia": 2, + "Freight": 42.11, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { "ProductID": 2, - "UnitPrice": 19, - "Quantity": 3, - "Discount": 0 + "UnitPrice": 15.2, + "Quantity": 7, + "Discount": 0.2 }, { "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0 + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 45, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 42, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 48, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10723, - "EmployeeID": 3, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-11-27T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", - "ShipVia": 1, - "Freight": 21.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10373, + "EmployeeID": 4, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-11T00:00:00", + "ShipVia": 3, + "Freight": 124.12, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 15, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 80, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 31000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10724, + "OrderID": 10380, "EmployeeID": 8, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 57.75, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 39000, - "ShipCountry": "Canada", + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 3, + "Freight": 35.03, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 6, + "Discount": 0.1 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10725, - "EmployeeID": 4, - "OrderDate": "1997-10-31T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 3, - "Freight": 10.83, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10429, + "EmployeeID": 3, + "OrderDate": "1997-01-29T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 56.63, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10503, + "EmployeeID": 6, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 2, + "Freight": 16.74, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 18000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10726, - "EmployeeID": 4, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", - "ShipVia": 1, - "Freight": 16.56, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 21000, - "ShipCountry": "UK", + "OrderID": 10516, + "EmployeeID": 2, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 62.78, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 18, + "UnitPrice": 62.5, "Quantity": 25, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 80, + "Discount": 0.1 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10727, - "EmployeeID": 2, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-12-01T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", + "OrderID": 10567, + "EmployeeID": 1, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-17T00:00:00", "ShipVia": 1, - "Freight": 89.9, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0.06 + "Freight": 33.97, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, + "Discount": 0 }, { "ProductID": 59, "UnitPrice": 55, - "Quantity": 10, - "Discount": 0.06 + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10728, - "EmployeeID": 4, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-11-11T00:00:00", - "ShipVia": 2, - "Freight": 58.33, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10646, + "EmployeeID": 9, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 142.33, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 15, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 12, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10729, - "EmployeeID": 8, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", + "OrderID": 10661, + "EmployeeID": 7, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", "ShipVia": 3, - "Freight": 141.06, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 17.55, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 40, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 49, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10730, - "EmployeeID": 5, - "OrderDate": "1997-11-05T00:00:00", - "RequiredDate": "1997-12-03T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", - "ShipVia": 1, - "Freight": 20.12, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10687, + "EmployeeID": 9, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-30T00:00:00", + "ShipVia": 2, + "Freight": 296.43, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 50, + "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 3, - "Discount": 0.06 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10731, - "EmployeeID": 7, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", - "ShipVia": 1, - "Freight": 96.65, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10701, + "EmployeeID": 6, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-10-27T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 3, + "Freight": 220.31, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.16 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10732, + "OrderID": 10712, "EmployeeID": 3, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", "ShipVia": 1, - "Freight": 16.97, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 89.93, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 29000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10733, - "EmployeeID": 1, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-10T00:00:00", - "ShipVia": 3, - "Freight": 110.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 27000, - "ShipCountry": "Sweden", + "OrderID": 10736, + "EmployeeID": 9, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 44.1, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 16, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 25, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10734, - "EmployeeID": 2, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-12T00:00:00", - "ShipVia": 3, - "Freight": 1.63, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 10897, + "EmployeeID": 3, + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-25T00:00:00", + "ShipVia": 2, + "Freight": 603.54, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 80, "Discount": 0 }, { "ProductID": 30, "UnitPrice": 25.89, - "Quantity": 15, + "Quantity": 36, "Discount": 0 + } + ] + }, + { + "OrderID": 10912, + "EmployeeID": 2, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 580.91, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10735, - "EmployeeID": 6, - "OrderDate": "1997-11-10T00:00:00", - "RequiredDate": "1997-12-08T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 2, - "Freight": 45.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10985, + "EmployeeID": 2, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 91.51, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 36, "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 35, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10736, - "EmployeeID": 9, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderID": 11063, + "EmployeeID": 3, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", "ShipVia": 2, - "Freight": 44.1, + "Freight": 81.73, "ShipName": "Hungry Owl All-Night Grocers", "ShipAddress": "8 Johnstown Road", "ShipCity": "Cork", @@ -22433,315 +13752,351 @@ "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 40, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", + "CustomerID": "WANDK", + "Company": "Die Wandernde Kuh", + "ContactName": "Rita Müller", + "ContactTitle": "Sales Representative", + "Address": "Adenauerallee 900", + "City": "Stuttgart", + "PostalCode": 70563, + "Country": "Germany", + "Phone": "0711-020361", + "Fax": "0711-035428", "Orders": [ { - "OrderID": 10737, - "EmployeeID": 2, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10301, + "EmployeeID": 8, + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", "ShipVia": 2, - "Freight": 7.79, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 45.08, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 4, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 10738, + "OrderID": 10312, "EmployeeID": 2, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 1, - "Freight": 2.91, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "OrderDate": "1996-09-23T00:00:00", + "RequiredDate": "1996-10-21T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 40.26, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10739, - "EmployeeID": 3, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-17T00:00:00", - "ShipVia": 3, - "Freight": 11.08, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "OrderID": 10348, + "EmployeeID": 4, + "OrderDate": "1996-11-07T00:00:00", + "RequiredDate": "1996-12-05T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 2, + "Freight": 0.78, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 18, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10740, - "EmployeeID": 4, - "OrderDate": "1997-11-13T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", - "ShipVia": 2, - "Freight": 81.88, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10356, + "EmployeeID": 6, + "OrderDate": "1996-11-18T00:00:00", + "RequiredDate": "1996-12-16T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", + "ShipVia": 2, + "Freight": 36.71, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 5, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10513, + "EmployeeID": 7, + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-06-03T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", + "ShipVia": 1, + "Freight": 105.65, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, "Quantity": 40, "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 15, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10741, - "EmployeeID": 4, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 3, - "Freight": 10.96, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 13000, - "ShipCountry": "UK", + "OrderID": 10632, + "EmployeeID": 8, + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 1, + "Freight": 41.38, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 19, - "Quantity": 15, - "Discount": 0.2 + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 14000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10742, - "EmployeeID": 3, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-12-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 3, - "Freight": 243.73, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 25000, - "ShipCountry": "Canada", + "OrderID": 10640, + "EmployeeID": 4, + "OrderDate": "1997-08-21T00:00:00", + "RequiredDate": "1997-09-18T00:00:00", + "ShippedDate": "1997-08-28T00:00:00", + "ShipVia": 1, + "Freight": 23.55, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, + "ProductID": 69, + "UnitPrice": 36, "Quantity": 20, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10651, + "EmployeeID": 8, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 20.6, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, - "Discount": 0 + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10743, + "OrderID": 10668, "EmployeeID": 1, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 48000, - "ShipCountry": "UK", + "Freight": 47.22, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 15, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11046, + "EmployeeID": 8, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 71.64, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 28, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 18, "Discount": 0.06 } ] @@ -22749,394 +14104,328 @@ ] }, { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", + "CustomerID": "GODOS", + "Company": "Godos Cocina Típica", + "ContactName": "José Pedro Freyre", "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", + "Address": "C/ Romero, 33", + "City": "Sevilla", + "PostalCode": 41101, + "Country": "Spain", + "Phone": "(95) 555 82 82", "Orders": [ { - "OrderID": 10744, - "EmployeeID": 6, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", - "ShipVia": 1, - "Freight": 69.19, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderID": 10303, + "EmployeeID": 7, + "OrderDate": "1996-09-11T00:00:00", + "RequiredDate": "1996-10-09T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 107.83, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0.2 + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10745, - "EmployeeID": 9, - "OrderDate": "1997-11-18T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 1, - "Freight": 3.52, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10550, + "EmployeeID": 7, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-06-25T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 3, + "Freight": 4.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 24, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 45, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10746, - "EmployeeID": 1, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderID": 10629, + "EmployeeID": 4, + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", "ShipVia": 3, - "Freight": 31.43, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 85.46, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 64, + "UnitPrice": 33.25, "Quantity": 9, "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 40, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10747, - "EmployeeID": 6, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-26T00:00:00", - "ShipVia": 1, - "Freight": 117.33, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10872, + "EmployeeID": 5, + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 2, + "Freight": 175.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 9, - "Discount": 0 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10748, - "EmployeeID": 3, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", - "ShipVia": 1, - "Freight": 232.55, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10874, + "EmployeeID": 5, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", + "ShipVia": 2, + "Freight": 19.58, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 44, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 36000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10749, - "EmployeeID": 4, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", + "OrderID": 10888, + "EmployeeID": 1, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 2, - "Freight": 61.53, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40198, - "ShipPostalCode": 33000, - "ShipCountry": "UK", + "Freight": 51.87, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 6, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10750, - "EmployeeID": 9, - "OrderDate": "1997-11-21T00:00:00", - "RequiredDate": "1997-12-19T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", + "OrderID": 10911, + "EmployeeID": 3, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", "ShipVia": 1, - "Freight": 79.3, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 38.19, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 5, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10751, + "OrderID": 10948, "EmployeeID": 3, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-12-03T00:00:00", + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 3, - "Freight": 130.79, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 23.39, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11009, + "EmployeeID": 2, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 59.11, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 18, + "Discount": 0.25 }, { - "ProductID": 73, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 11037, + "EmployeeID": 7, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 3.2, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 70, "UnitPrice": 15, - "Quantity": 15, + "Quantity": 4, "Discount": 0 } ] @@ -23144,721 +14433,563 @@ ] }, { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 15000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", + "CustomerID": "OLDWO", + "Company": "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", "Orders": [ { - "OrderID": 10752, - "EmployeeID": 2, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", + "OrderID": 10305, + "EmployeeID": 8, + "OrderDate": "1996-09-13T00:00:00", + "RequiredDate": "1996-10-11T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", "ShipVia": 3, - "Freight": 1.39, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "Freight": 257.62, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 3, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10753, - "EmployeeID": 3, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 1, - "Freight": 7.7, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10338, + "EmployeeID": 4, + "OrderDate": "1996-10-25T00:00:00", + "RequiredDate": "1996-11-22T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", + "ShipVia": 3, + "Freight": 84.21, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 4, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10754, - "EmployeeID": 6, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 3, - "Freight": 2.38, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10441, + "EmployeeID": 3, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-24T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 2, + "Freight": 73.02, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 3, + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10755, - "EmployeeID": 4, - "OrderDate": "1997-11-26T00:00:00", - "RequiredDate": "1997-12-24T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", + "OrderID": 10594, + "EmployeeID": 3, + "OrderDate": "1997-07-09T00:00:00", + "RequiredDate": "1997-08-06T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", "ShipVia": 2, - "Freight": 16.71, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 5.24, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 58, + "UnitPrice": 13.25, "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10680, + "EmployeeID": 1, + "OrderDate": "1997-09-24T00:00:00", + "RequiredDate": "1997-10-22T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 1, + "Freight": 26.61, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 14, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0.25 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 25, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10756, + "OrderID": 10706, "EmployeeID": 8, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-02T00:00:00", - "ShipVia": 2, - "Freight": 73.21, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-11-13T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 3, + "Freight": 135.63, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10757, - "EmployeeID": 6, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 1, - "Freight": 8.19, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "OrderID": 10808, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 45.53, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 30, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 24, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10758, + "OrderID": 10855, "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-04T00:00:00", - "ShipVia": 3, - "Freight": 138.17, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 170.97, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 60, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 24, "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10759, - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", + "OrderID": 10965, + "EmployeeID": 6, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", "ShipVia": 3, - "Freight": 11.99, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 144.38, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 38000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10760, - "EmployeeID": 4, - "OrderDate": "1997-12-01T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1997-12-10T00:00:00", + "OrderID": 11034, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", "ShipVia": 1, - "Freight": 155.64, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 12000, - "ShipCountry": "Belgium", + "Freight": 40.32, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 40, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 6, + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, + "CustomerID": "LONEP", + "Company": "Lonesome Pine Restaurant", + "ContactName": "Fran Wilson", + "ContactTitle": "Sales Manager", + "Address": "89 Chiaroscuro Rd.", + "City": "Portland", + "Region": "OR", + "PostalCode": 97219, "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "Phone": "(503) 555-9573", + "Fax": "(503) 555-9646", "Orders": [ { - "OrderID": 10761, - "EmployeeID": 5, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", + "OrderID": 10307, + "EmployeeID": 2, + "OrderDate": "1996-09-17T00:00:00", + "RequiredDate": "1996-10-15T00:00:00", + "ShippedDate": "1996-09-25T00:00:00", "ShipVia": 2, - "Freight": 18.66, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, + "Freight": 0.56, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 18, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 34000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10762, - "EmployeeID": 3, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", + "OrderID": 10317, + "EmployeeID": 6, + "OrderDate": "1996-09-30T00:00:00", + "RequiredDate": "1996-10-28T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", "ShipVia": 1, - "Freight": 328.74, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", + "Freight": 12.69, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 16, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10544, + "EmployeeID": 4, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 24.91, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 28, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 7, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10662, + "EmployeeID": 3, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 2, + "Freight": 1.28, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10763, - "EmployeeID": 3, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", - "ShipVia": 3, - "Freight": 37.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "OrderID": 10665, + "EmployeeID": 1, + "OrderDate": "1997-09-11T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-17T00:00:00", + "ShipVia": 2, + "Freight": 26.31, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 6, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10764, + "OrderID": 10867, "EmployeeID": 6, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", - "ShipVia": 3, - "Freight": 145.45, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", + "ShipVia": 1, + "Freight": 1.93, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 130, - "Discount": 0.1 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10765, - "EmployeeID": 3, - "OrderDate": "1997-12-04T00:00:00", - "RequiredDate": "1998-01-01T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", + "OrderID": 10883, + "EmployeeID": 8, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 3, - "Freight": 42.74, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 0.53, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 80, - "Discount": 0.1 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10766, + "OrderID": 11018, "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 1, - "Freight": 157.55, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 2, + "Freight": 11.65, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, "Discount": 0 }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10767, - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 3, - "Freight": 1.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 2, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, "Discount": 0 } ] @@ -23866,108 +14997,137 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 43000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "CustomerID": "ANATR", + "Company": "Ana Trujillo Emparedados y helados", + "ContactName": "Ana Trujillo", + "ContactTitle": "Owner", + "Address": "Avda. de la Constitución 2222", + "City": "México D.F.", + "PostalCode": 5021, + "Country": "Mexico", + "Phone": "(5) 555-4729", + "Fax": "(5) 555-3745", "Orders": [ { - "OrderID": 10768, - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 2, - "Freight": 146.32, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 32000, - "ShipCountry": "UK", + "OrderID": 10308, + "EmployeeID": 7, + "OrderDate": "1996-09-18T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-24T00:00:00", + "ShipVia": 3, + "Freight": 1.61, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 4, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10625, + "EmployeeID": 3, + "OrderDate": "1997-08-08T00:00:00", + "RequiredDate": "1997-09-05T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", + "ShipVia": 1, + "Freight": 43.9, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10769, + "OrderID": 10759, "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 65.06, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "ShipVia": 3, + "Freight": 11.99, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10926, + "EmployeeID": 4, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 39.92, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, "Discount": 0 } ] @@ -23975,115 +15135,123 @@ ] }, { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", + "CustomerID": "THEBI", + "Company": "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", "Orders": [ { - "OrderID": 10770, + "OrderID": 10310, "EmployeeID": 8, - "OrderDate": "1997-12-09T00:00:00", - "RequiredDate": "1998-01-06T00:00:00", - "ShippedDate": "1997-12-17T00:00:00", - "ShipVia": 3, - "Freight": 5.32, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-18T00:00:00", + "ShippedDate": "1996-09-27T00:00:00", + "ShipVia": 2, + "Freight": 17.52, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 5, + "Discount": 0 + } + ] + }, { - "OrderID": 10771, - "EmployeeID": 9, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", + "OrderID": 10708, + "EmployeeID": 6, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 11.19, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 2.96, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10772, - "EmployeeID": 3, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 2, - "Freight": 91.28, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10805, + "EmployeeID": 2, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 237.34, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 18, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10992, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 4.27, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 2, "Discount": 0 } ] @@ -24091,132 +15259,131 @@ ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "DUMON", + "Company": "Du monde entier", + "ContactName": "Janine Labrune", + "ContactTitle": "Owner", + "Address": "67, rue des Cinquante Otages", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.67.88.88", + "Fax": "40.67.89.89", "Orders": [ { - "OrderID": 10773, + "OrderID": 10311, "EmployeeID": 1, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1998-01-08T00:00:00", - "ShippedDate": "1997-12-16T00:00:00", + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-26T00:00:00", "ShipVia": 3, - "Freight": 96.43, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 24.69, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 33, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 70, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 69, + "UnitPrice": 28.8, "Quantity": 7, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 18000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10774, - "EmployeeID": 4, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 48.2, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 20000, - "ShipCountry": "Sweden", + "OrderID": 10609, + "EmployeeID": 7, + "OrderDate": "1997-07-24T00:00:00", + "RequiredDate": "1997-08-21T00:00:00", + "ShippedDate": "1997-07-30T00:00:00", + "ShipVia": 2, + "Freight": 1.85, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 50, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "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", - "Orders": [ + }, + { + "OrderID": 10683, + "EmployeeID": 2, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 1, + "Freight": 4.4, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 9, + "Discount": 0 + } + ] + }, { - "OrderID": 10775, + "OrderID": 10890, "EmployeeID": 7, - "OrderDate": "1997-12-12T00:00:00", - "RequiredDate": "1998-01-09T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 1, - "Freight": 20.25, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "Freight": 32.76, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 6, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 67, + "ProductID": 34, "UnitPrice": 14, - "Quantity": 3, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, "Discount": 0 } ] @@ -24224,1031 +15391,791 @@ ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "ISLAT", + "Company": "Island Trading", + "ContactName": "Helen Bennett", + "ContactTitle": "Marketing Manager", + "Address": "Garden House Crowther Way", + "City": "Cowes", + "Region": "Northeast", + "PostalCode": 42000, + "Country": "UK", + "Phone": "(198) 555-8888", "Orders": [ { - "OrderID": 10776, - "EmployeeID": 1, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1998-01-12T00:00:00", - "ShippedDate": "1997-12-18T00:00:00", - "ShipVia": 3, - "Freight": 351.53, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10315, + "EmployeeID": 4, + "OrderDate": "1996-09-26T00:00:00", + "RequiredDate": "1996-10-24T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 41.76, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40301, + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 27, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 120, - "Discount": 0.06 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10777, - "EmployeeID": 7, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", + "OrderID": 10318, + "EmployeeID": 8, + "OrderDate": "1996-10-01T00:00:00", + "RequiredDate": "1996-10-29T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", "ShipVia": 2, - "Freight": 3.01, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 4.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 30575, + "ShipPostalCode": 43000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 18000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10778, + "OrderID": 10321, "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 1, - "Freight": 6.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 13000, - "ShipCountry": "Sweden", + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-31T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 2, + "Freight": 3.43, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 80331, + "ShipPostalCode": 24000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, + "ProductID": 35, + "UnitPrice": 14.4, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10779, - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 2, - "Freight": 58.13, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "OrderID": 10473, + "EmployeeID": 1, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", + "ShipVia": 3, + "Freight": 16.37, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60471, + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10780, - "EmployeeID": 2, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-25T00:00:00", - "ShipVia": 1, - "Freight": 42.13, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10621, + "EmployeeID": 4, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 2, + "Freight": 23.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 90304, + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 35, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10781, - "EmployeeID": 2, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 3, - "Freight": 73.16, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 35, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10782, - "EmployeeID": 9, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 1.1, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10674, + "EmployeeID": 4, + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 2, + "Freight": 0.9, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60688, + "ShipPostalCode": 25000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 1, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10783, + "OrderID": 10749, "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", "ShippedDate": "1997-12-19T00:00:00", "ShipVia": 2, - "Freight": 124.98, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 61.53, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40198, + "ShipPostalCode": 33000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10784, - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 70.09, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10798, + "EmployeeID": 2, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 1, + "Freight": 2.33, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 50129, + "ShipPostalCode": 12000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 2, - "Discount": 0.16 + "Discount": 0 }, { "ProductID": 72, "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0.16 + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10785, - "EmployeeID": 1, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 3, - "Freight": 1.51, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", + "OrderID": 10829, + "EmployeeID": 9, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-10T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 1, + "Freight": 154.72, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 20759, + "ShipPostalCode": 13000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 10, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10786, - "EmployeeID": 8, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-16T00:00:00", - "ShippedDate": "1997-12-23T00:00:00", - "ShipVia": 1, - "Freight": 110.87, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10933, + "EmployeeID": 6, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 3, + "Freight": 54.15, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40216, + "ShipPostalCode": 24000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 42, - "Discount": 0.2 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0 } ] } ] }, { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", + "CustomerID": "PERIC", + "Company": "Pericles Comidas clásicas", + "ContactName": "Guillermo Fernández", + "ContactTitle": "Sales Representative", + "Address": "Calle Dr. Jorge Cash 321", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 552-3745", + "Fax": "(5) 545-3745", "Orders": [ { - "OrderID": 10787, - "EmployeeID": 2, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 249.93, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10322, + "EmployeeID": 7, + "OrderDate": "1996-10-04T00:00:00", + "RequiredDate": "1996-11-01T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 3, + "Freight": 0.4, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 52, + "UnitPrice": 5.6, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10788, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 42.7, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10354, + "EmployeeID": 8, + "OrderDate": "1996-11-14T00:00:00", + "RequiredDate": "1996-12-12T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 3, + "Freight": 53.8, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10789, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", + "OrderID": 10474, + "EmployeeID": 5, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-04-10T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", "ShipVia": 2, - "Freight": 100.6, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 83.49, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 30, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 15, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10790, - "EmployeeID": 6, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", + "OrderID": 10502, + "EmployeeID": 2, + "OrderDate": "1997-04-10T00:00:00", + "RequiredDate": "1997-05-08T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 1, - "Freight": 28.23, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 69.32, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 3, - "Discount": 0.16 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10995, + "EmployeeID": 1, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", + "ShipVia": 3, + "Freight": 46, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 51, + "UnitPrice": 53, "Quantity": 20, - "Discount": 0.16 + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10791, - "EmployeeID": 6, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-01T00:00:00", + "OrderID": 11073, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", "ShipVia": 2, - "Freight": 16.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 24.95, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, - "Discount": 0.06 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 } ] } ] }, { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", + "CustomerID": "KOENE", + "Company": "Königlich Essen", + "ContactName": "Philip Cramer", + "ContactTitle": "Sales Associate", + "Address": "Maubelstr. 90", + "City": "Brandenburg", + "PostalCode": 14776, + "Country": "Germany", + "Phone": "0555-09876", "Orders": [ { - "OrderID": 10792, - "EmployeeID": 1, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 3, - "Freight": 23.79, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10323, + "EmployeeID": 4, + "OrderDate": "1996-10-07T00:00:00", + "RequiredDate": "1996-11-04T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 4.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 18000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10793, - "EmployeeID": 3, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", + "OrderID": 10325, + "EmployeeID": 1, + "OrderDate": "1996-10-09T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", "ShipVia": 3, - "Freight": 4.52, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "Freight": 64.86, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 12, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ - { - "OrderID": 10794, - "EmployeeID": 6, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 1, - "Freight": 21.49, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ + }, { "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.2 + "UnitPrice": 18.6, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10795, + "OrderID": 10456, "EmployeeID": 8, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-20T00:00:00", + "OrderDate": "1997-02-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", "ShipVia": 2, - "Freight": 126.66, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 8.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 65, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 21, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10796, + "OrderID": 10468, "EmployeeID": 3, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 1, - "Freight": 26.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderDate": "1997-03-07T00:00:00", + "RequiredDate": "1997-04-04T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 44.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 21, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10506, + "EmployeeID": 9, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 21.19, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 14, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10542, + "EmployeeID": 1, + "OrderDate": "1997-05-20T00:00:00", + "RequiredDate": "1997-06-17T00:00:00", + "ShippedDate": "1997-05-26T00:00:00", + "ShipVia": 3, + "Freight": 10.95, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 24, - "Discount": 0.2 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10797, - "EmployeeID": 7, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", + "OrderID": 10630, + "EmployeeID": 1, + "OrderDate": "1997-08-13T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", "ShipVia": 2, - "Freight": 33.35, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, + "Freight": 32.35, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10798, - "EmployeeID": 2, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 1, - "Freight": 2.33, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 50129, - "ShipPostalCode": 12000, - "ShipCountry": "UK", + "OrderID": 10718, + "EmployeeID": 1, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 3, + "Freight": 170.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 2, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { "OrderID": 10799, "EmployeeID": 9, @@ -25282,723 +16209,469 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10800, - "EmployeeID": 1, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 3, - "Freight": 137.44, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 50000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 7, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ - { - "OrderID": 10801, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 2, - "Freight": 97.09, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10802, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", + "OrderID": 10817, + "EmployeeID": 3, + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", "ShipVia": 2, - "Freight": 257.26, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 306.07, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 38, + "UnitPrice": 263.5, "Quantity": 30, - "Discount": 0.25 + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 40, + "UnitPrice": 18.4, "Quantity": 60, - "Discount": 0.25 + "Discount": 0.16 }, { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 5, - "Discount": 0.25 + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10803, - "EmployeeID": 4, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-06T00:00:00", - "ShipVia": 1, - "Freight": 55.23, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderID": 10849, + "EmployeeID": 9, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 2, + "Freight": 0.56, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 24, - "Discount": 0.06 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 49, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 18, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10804, - "EmployeeID": 6, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", + "OrderID": 10893, + "EmployeeID": 9, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 2, - "Freight": 27.33, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 20000, - "ShipCountry": "UK", + "Freight": 77.78, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 36, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 24, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 4, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ - { - "OrderID": 10805, - "EmployeeID": 2, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 3, - "Freight": 237.34, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", - "OrderDetails": [ + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 24, + "Discount": 0 + }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 10, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10806, - "EmployeeID": 3, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 2, - "Freight": 22.11, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 11028, + "EmployeeID": 2, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 1, + "Freight": 29.59, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 2, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 24, + "Discount": 0 } ] } ] }, { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", + "CustomerID": "SAVEA", + "Company": "Save-a-lot Markets", + "ContactName": "Jose Pavarotti", "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", + "Address": "187 Suffolk Ln.", + "City": "Boise", + "Region": "ID", + "PostalCode": 83720, + "Country": "USA", + "Phone": "(208) 555-8097", "Orders": [ { - "OrderID": 10807, - "EmployeeID": 4, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10324, + "EmployeeID": 9, + "OrderDate": "1996-10-08T00:00:00", + "RequiredDate": "1996-11-05T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "Freight": 214.27, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 1, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 21, + "Discount": 0.16 + }, + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 70, + "Discount": 0.16 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 80, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10808, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", + "OrderID": 10393, + "EmployeeID": 1, + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", "ShipVia": 3, - "Freight": 45.53, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "Freight": 126.56, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 42, + "Discount": 0.25 + }, + { + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 7, + "Discount": 0.25 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 70, + "Discount": 0.25 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 32, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10809, - "EmployeeID": 7, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 1, - "Freight": 4.87, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderID": 10398, + "EmployeeID": 2, + "OrderDate": "1996-12-30T00:00:00", + "RequiredDate": "1997-01-27T00:00:00", + "ShippedDate": "1997-01-09T00:00:00", + "ShipVia": 3, + "Freight": 89.16, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 120, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 42000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ + }, { - "OrderID": 10810, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 3, - "Freight": 4.33, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10440, + "EmployeeID": 4, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-10T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 86.53, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 45, + "Discount": 0.16 + }, + { + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 49, + "Discount": 0.16 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 5, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 90, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10811, + "OrderID": 10452, "EmployeeID": 8, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", + "OrderDate": "1997-02-20T00:00:00", + "RequiredDate": "1997-03-20T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", "ShipVia": 1, - "Freight": 31.22, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 140.26, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 15, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 100, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10812, - "EmployeeID": 5, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 1, - "Freight": 59.78, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10510, + "EmployeeID": 6, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", + "ShipVia": 3, + "Freight": 367.63, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.1 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 40, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 36, "Discount": 0.1 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10813, - "EmployeeID": 1, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 1, - "Freight": 47.38, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10555, + "EmployeeID": 6, + "OrderDate": "1997-06-02T00:00:00", + "RequiredDate": "1997-06-30T00:00:00", + "ShippedDate": "1997-06-04T00:00:00", + "ShipVia": 3, + "Freight": 252.49, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 46, - "UnitPrice": 12, + "ProductID": 19, + "UnitPrice": 9.2, "Quantity": 35, - "Discount": 0 + "Discount": 0.2 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 18, + "Discount": 0.2 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10814, - "EmployeeID": 3, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 130.94, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10603, + "EmployeeID": 8, + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 2, + "Freight": 48.77, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 48, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 8, - "Discount": 0.16 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10815, - "EmployeeID": 2, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 14.62, + "OrderID": 10607, + "EmployeeID": 5, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 1, + "Freight": 200.24, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -26006,2194 +16679,1895 @@ "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 100, + "Discount": 0 + }, { "ProductID": 33, "UnitPrice": 2.5, - "Quantity": 16, + "Quantity": 14, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ - { - "OrderID": 10816, - "EmployeeID": 4, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-02-03T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 2, - "Freight": 719.78, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 42, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10817, - "EmployeeID": 3, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", + "OrderID": 10612, + "EmployeeID": 1, + "OrderDate": "1997-07-28T00:00:00", + "RequiredDate": "1997-08-25T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 306.07, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 544.08, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0.16 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 40, + "Discount": 0 }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0 + } + ] + }, + { + "OrderID": 10627, + "EmployeeID": 8, + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 107.46, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 25, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10818, - "EmployeeID": 7, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 3, - "Freight": 65.48, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10657, + "EmployeeID": 2, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", + "ShipVia": 2, + "Freight": 352.69, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 50, "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 20, + "Quantity": 24, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10819, - "EmployeeID": 2, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 19.76, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ + }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 7, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10820, - "EmployeeID": 3, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 37.52, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ + }, { "ProductID": 56, "UnitPrice": 38, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10821, - "EmployeeID": 1, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-15T00:00:00", - "ShipVia": 1, - "Freight": 36.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, + "OrderID": 10678, + "EmployeeID": 7, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", + "ShipVia": 3, + "Freight": 388.98, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 100, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 6, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "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", - "Orders": [ - { - "OrderID": 10822, - "EmployeeID": 6, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 7, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 120, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10823, - "EmployeeID": 5, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 163.97, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10700, + "EmployeeID": 3, + "OrderDate": "1997-10-10T00:00:00", + "RequiredDate": "1997-11-07T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", + "ShipVia": 1, + "Freight": 65.1, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 40, - "Discount": 0.1 + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 46000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10824, - "EmployeeID": 8, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 1.23, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 23000, - "ShipCountry": "Sweden", + "OrderID": 10711, + "EmployeeID": 5, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 2, + "Freight": 52.41, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0 + }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 12, + "Quantity": 42, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 9, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 120, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10825, + "OrderID": 10713, "EmployeeID": 1, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", + "OrderDate": "1997-10-22T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-24T00:00:00", "ShipVia": 1, - "Freight": 79.25, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 167.05, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0 + }, { "ProductID": 26, "UnitPrice": 31.23, - "Quantity": 12, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 20, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 110, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10826, - "EmployeeID": 6, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", + "OrderID": 10722, + "EmployeeID": 8, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-04T00:00:00", "ShipVia": 1, - "Freight": 7.09, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 74.58, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 3, + "Discount": 0 + }, { "ProductID": 31, "UnitPrice": 12.5, - "Quantity": 35, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10827, - "EmployeeID": 1, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", - "ShipVia": 2, - "Freight": 63.54, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10748, + "EmployeeID": 3, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", + "ShipVia": 1, + "Freight": 232.55, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 44, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, + "Discount": 0 + } + ] + }, + { + "OrderID": 10757, + "EmployeeID": 6, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 1, + "Freight": 8.19, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 15, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10828, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 1, - "Freight": 90.85, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10815, + "EmployeeID": 2, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 3, + "Freight": 14.62, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, "Discount": 0 + } + ] + }, + { + "OrderID": 10847, + "EmployeeID": 4, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 3, + "Freight": 487.57, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.2 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 2, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0.2 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 60, + "Discount": 0.2 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 36, + "Discount": 0.2 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 45, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 55, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10829, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-10T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 1, - "Freight": 154.72, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 20759, - "ShipPostalCode": 13000, - "ShipCountry": "UK", + "OrderID": 10882, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 3, + "Freight": 23.1, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 8, - "UnitPrice": 40, + "ProductID": 49, + "UnitPrice": 20, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 32, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10894, + "EmployeeID": 1, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 1, + "Freight": 116.13, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { "ProductID": 13, "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 + "Quantity": 28, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 120, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10830, - "EmployeeID": 4, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", + "OrderID": 10941, + "EmployeeID": 7, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 81.83, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "Freight": 400.81, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 28, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 44, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 30, - "Discount": 0 + "Discount": 0.25 }, { "ProductID": 68, "UnitPrice": 12.5, - "Quantity": 24, + "Quantity": 80, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10831, - "EmployeeID": 3, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderID": 10983, + "EmployeeID": 2, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", "ShipVia": 2, - "Freight": 72.19, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 657.54, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 8, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 84, + "Discount": 0.16 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 9, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10832, - "EmployeeID": 2, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 43.26, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 11002, + "EmployeeID": 4, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 1, + "Freight": 141.16, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 13, "UnitPrice": 6, - "Quantity": 3, - "Discount": 0.2 + "Quantity": 56, + "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0.2 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 3, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10833, - "EmployeeID": 6, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderID": 11030, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", "ShipVia": 2, - "Freight": 71.49, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 830.75, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 9, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 100, + "Discount": 0.25 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 9, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10834, - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 3, - "Freight": 29.78, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 70, + "Discount": 0 + }, { "ProductID": 29, "UnitPrice": 123.79, - "Quantity": 8, - "Discount": 0.06 + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 100, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10835, + "OrderID": 11064, "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 3, - "Freight": 69.53, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 30.09, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 77, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 55, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "BOLID", + "Company": "Bólido Comidas preparadas", + "ContactName": "Martín Sommer", + "ContactTitle": "Owner", + "Address": "C/ Araquil, 67", + "City": "Madrid", + "PostalCode": 28023, + "Country": "Spain", + "Phone": "(91) 555 22 82", + "Fax": "(91) 555 91 99", "Orders": [ { - "OrderID": 10836, - "EmployeeID": 7, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 1, - "Freight": 411.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10326, + "EmployeeID": 4, + "OrderDate": "1996-10-10T00:00:00", + "RequiredDate": "1996-11-07T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 2, + "Freight": 77.92, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 52, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 6, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 24, "Discount": 0 }, { "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 24, + "UnitPrice": 15.6, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 60, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 50, "Discount": 0 + } + ] + }, + { + "OrderID": 10801, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 2, + "Freight": 97.09, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10970, + "EmployeeID": 9, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 1, + "Freight": 16.16, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 40, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "FURIB", + "Company": "Furia Bacalhau e Frutos do Mar", + "ContactName": "Lino Rodriguez", + "ContactTitle": "Sales Manager", + "Address": "Jardim das rosas n. 32", + "City": "Lisboa", + "PostalCode": 1675, + "Country": "Portugal", + "Phone": "(1) 354-2534", + "Fax": "(1) 354-2535", "Orders": [ { - "OrderID": 10837, - "EmployeeID": 9, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderID": 10328, + "EmployeeID": 4, + "OrderDate": "1996-10-14T00:00:00", + "RequiredDate": "1996-11-11T00:00:00", + "ShippedDate": "1996-10-17T00:00:00", "ShipVia": 3, - "Freight": 13.32, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 44000, - "ShipCountry": "Sweden", + "Freight": 87.03, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 65, + "UnitPrice": 16.8, "Quantity": 40, - "Discount": 0.25 + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10838, + "OrderID": 10352, "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderDate": "1996-11-12T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-18T00:00:00", "ShipVia": 3, - "Freight": 59.28, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 1.3, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10839, - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-22T00:00:00", - "ShipVia": 3, - "Freight": 35.43, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "OrderID": 10464, + "EmployeeID": 4, + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 2, + "Freight": 89, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 16, + "Discount": 0.2 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, "Quantity": 30, - "Discount": 0.1 + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10840, - "EmployeeID": 4, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", - "ShipVia": 2, - "Freight": 2.71, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10491, + "EmployeeID": 8, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-08T00:00:00", + "ShipVia": 3, + "Freight": 16.96, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10841, - "EmployeeID": 5, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 2, - "Freight": 424.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10551, + "EmployeeID": 4, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 3, + "Freight": 72.95, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 50, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 40, "Discount": 0 + } + ] + }, + { + "OrderID": 10604, + "EmployeeID": 1, + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", + "ShipVia": 1, + "Freight": 7.46, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 6, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10842, + "OrderID": 10664, "EmployeeID": 1, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", "ShipVia": 3, - "Freight": 54.42, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 1.27, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 5, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 12, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10843, - "EmployeeID": 4, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 9.26, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10963, + "EmployeeID": 9, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 3, + "Freight": 2.7, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", + "CustomerID": "BONAP", + "Company": "Bon app'", + "ContactName": "Laurence Lebihan", + "ContactTitle": "Owner", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", "Orders": [ { - "OrderID": 10844, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 25.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10331, + "EmployeeID": 9, + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-27T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", + "ShipVia": 1, + "Freight": 10.19, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 35, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10845, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 212.98, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10340, + "EmployeeID": 1, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 166.31, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.1 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 42, - "Discount": 0.1 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 48, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 40, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10846, - "EmployeeID": 2, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 56.46, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10362, + "EmployeeID": 3, + "OrderDate": "1996-11-25T00:00:00", + "RequiredDate": "1996-12-23T00:00:00", + "ShippedDate": "1996-11-28T00:00:00", + "ShipVia": 1, + "Freight": 96.04, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 21, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10847, + "OrderID": 10470, "EmployeeID": 4, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 3, - "Freight": 487.57, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 2, + "Freight": 64.56, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.2 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 60, - "Discount": 0.2 - }, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10511, + "EmployeeID": 4, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 350.64, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 36, - "Discount": 0.2 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 55, - "Discount": 0.2 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ + }, { - "OrderID": 10848, - "EmployeeID": 7, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", + "OrderID": 10525, + "EmployeeID": 1, + "OrderDate": "1997-05-02T00:00:00", + "RequiredDate": "1997-05-30T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", "ShipVia": 2, - "Freight": 38.24, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 39000, - "ShipCountry": "UK", + "Freight": 11.06, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 30, "Discount": 0 }, { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 3, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10849, - "EmployeeID": 9, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10663, + "EmployeeID": 2, + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-09-24T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 113.15, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 49, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 18, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10850, - "EmployeeID": 1, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10715, + "EmployeeID": 3, + "OrderDate": "1997-10-23T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 1, - "Freight": 49.19, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, + "Freight": 63.2, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 4, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 71, + "UnitPrice": 21.5, "Quantity": 30, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10851, + "OrderID": 10730, "EmployeeID": 5, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-23T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderDate": "1997-11-05T00:00:00", + "RequiredDate": "1997-12-03T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", "ShipVia": 1, - "Freight": 160.55, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 20.12, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, "Discount": 0.06 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 3, "Discount": 0.06 }, { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 65, + "UnitPrice": 21.05, "Quantity": 10, "Discount": 0.06 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, - "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10852, - "EmployeeID": 8, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10732, + "EmployeeID": 3, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", "ShipVia": 1, - "Freight": 174.05, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 16.97, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 + } + ] + }, + { + "OrderID": 10755, + "EmployeeID": 4, + "OrderDate": "1997-11-26T00:00:00", + "RequiredDate": "1997-12-24T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", + "ShipVia": 2, + "Freight": 16.71, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 14, + "Discount": 0.25 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 25, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10827, + "EmployeeID": 1, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 2, + "Freight": 63.54, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 50, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10853, + "OrderID": 10871, "EmployeeID": 9, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", "ShipVia": 2, - "Freight": 53.83, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "Freight": 112.27, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, - "Discount": 0 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10854, - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-05T00:00:00", - "ShipVia": 2, - "Freight": 100.22, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10876, + "EmployeeID": 7, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 60.42, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 100, - "Discount": 0.16 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10855, - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", + "OrderID": 10932, + "EmployeeID": 8, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 1, - "Freight": 170.97, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 134.64, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 16, "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0 + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 14, + "Discount": 0.1 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 24, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10940, + "EmployeeID": 8, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 3, + "Freight": 19.77, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10856, - "EmployeeID": 3, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", + "OrderID": 11076, + "EmployeeID": 4, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", "ShipVia": 2, - "Freight": 58.43, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "Freight": 38.28, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, + "Discount": 0.25 + }, + { + "ProductID": 14, + "UnitPrice": 23.25, "Quantity": 20, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, + "Discount": 0.25 } ] } ] }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 33000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "MEREP", + "Company": "Mère Paillarde", + "ContactName": "Jean Fresnière", + "ContactTitle": "Marketing Assistant", + "Address": "43 rue St. Laurent", + "City": "Montréal", + "Region": "Québec", + "PostalCode": 49000, + "Country": "Canada", + "Phone": "(514) 555-8054", + "Fax": "(514) 555-8055", "Orders": [ { - "OrderID": 10857, - "EmployeeID": 8, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", + "OrderID": 10332, + "EmployeeID": 3, + "OrderDate": "1996-10-17T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", "ShipVia": 2, - "Freight": 188.85, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 43000, - "ShipCountry": "Sweden", + "Freight": 52.84, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 36000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0.25 + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 16, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne d'abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de l'Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ + }, { - "OrderID": 10858, + "OrderID": 10339, "EmployeeID": 2, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", - "ShipVia": 1, - "Freight": 52.51, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "OrderDate": "1996-10-28T00:00:00", + "RequiredDate": "1996-11-25T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", + "ShipVia": 2, + "Freight": 15.66, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 10, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10859, + "OrderID": 10376, "EmployeeID": 1, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", "ShipVia": 2, - "Freight": 76.1, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 20.39, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 11000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 35, - "Discount": 0.25 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 42, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10860, - "EmployeeID": 3, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 3, - "Freight": 19.26, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10424, + "EmployeeID": 7, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-20T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 2, + "Freight": 370.61, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 49, + "Discount": 0.2 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10861, - "EmployeeID": 4, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-02-27T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", - "ShipVia": 2, - "Freight": 14.93, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10439, + "EmployeeID": 6, + "OrderDate": "1997-02-07T00:00:00", + "RequiredDate": "1997-03-07T00:00:00", + "ShippedDate": "1997-02-10T00:00:00", + "ShipVia": 3, + "Freight": 4.07, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 42, + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 35, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10505, + "EmployeeID": 3, + "OrderDate": "1997-04-14T00:00:00", + "RequiredDate": "1997-05-12T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 7.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 11000, + "ShipCountry": "Canada", + "OrderDetails": [ { "ProductID": 62, "UnitPrice": 49.3, @@ -28201,132 +18575,195 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10862, + "OrderID": 10565, "EmployeeID": 8, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderDate": "1997-06-11T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", "ShipVia": 2, - "Freight": 53.23, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 7.15, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 24000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 18, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10570, + "EmployeeID": 3, + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-19T00:00:00", + "ShipVia": 3, + "Freight": 188.99, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { "ProductID": 11, "UnitPrice": 21, - "Quantity": 25, - "Discount": 0 + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10863, + "OrderID": 10590, "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 3, + "Freight": 44.77, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 47000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 60, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10605, + "EmployeeID": 1, + "OrderDate": "1997-07-21T00:00:00", + "RequiredDate": "1997-08-18T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", "ShipVia": 2, - "Freight": 30.26, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 379.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 43000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 70, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10618, + "EmployeeID": 1, + "OrderDate": "1997-08-01T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 1, + "Freight": 154.68, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 49000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, "Quantity": 20, - "Discount": 0.16 + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10864, - "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", + "OrderID": 10724, + "EmployeeID": 8, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 3.04, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "Freight": 57.75, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 39000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] @@ -28334,372 +18771,367 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", + "CustomerID": "PRINI", + "Company": "Princesa Isabel Vinhos", + "ContactName": "Isabel de Castro", + "ContactTitle": "Sales Representative", + "Address": "Estrada da saúde n. 58", + "City": "Lisboa", + "PostalCode": 1756, + "Country": "Portugal", + "Phone": "(1) 356-5634", "Orders": [ { - "OrderID": 10865, - "EmployeeID": 2, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 1, - "Freight": 348.14, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10336, + "EmployeeID": 7, + "OrderDate": "1996-10-23T00:00:00", + "RequiredDate": "1996-11-20T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", + "ShipVia": 2, + "Freight": 15.51, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, - "Discount": 0.06 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 18, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10866, + "OrderID": 10397, "EmployeeID": 5, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-03T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-24T00:00:00", + "ShippedDate": "1997-01-02T00:00:00", "ShipVia": 1, - "Freight": 109.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "Freight": 60.26, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 6, - "Discount": 0.25 - }, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10433, + "EmployeeID": 3, + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 73.83, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 28, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10867, - "EmployeeID": 6, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 1, - "Freight": 1.93, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10477, + "EmployeeID": 5, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", + "ShipVia": 2, + "Freight": 13.02, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10868, - "EmployeeID": 7, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", + "OrderID": 11007, + "EmployeeID": 8, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 191.27, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 202.24, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 42, - "Discount": 0.1 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 14, + "Discount": 0 } ] } ] }, { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 34000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", + "CustomerID": "SIMOB", + "Company": "Simons bistro", + "ContactName": "Jytte Petersen", + "ContactTitle": "Owner", + "Address": "Vinbæltet 34", + "City": "Kobenhavn", + "PostalCode": 1734, + "Country": "Denmark", + "Phone": "31 12 34 56", + "Fax": "31 13 35 57", "Orders": [ { - "OrderID": 10869, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 1, - "Freight": 143.28, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "OrderID": 10341, + "EmployeeID": 7, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", + "ShipVia": 3, + "Freight": 26.78, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 - }, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10417, + "EmployeeID": 4, + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-28T00:00:00", + "ShipVia": 3, + "Freight": 70.29, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 50, "Discount": 0 }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 2, + "Discount": 0.25 + }, { "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "UnitPrice": 10, + "Quantity": 36, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10870, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", + "OrderID": 10556, + "EmployeeID": 2, + "OrderDate": "1997-06-03T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 1, + "Freight": 9.8, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10642, + "EmployeeID": 7, + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-09-05T00:00:00", "ShipVia": 3, - "Freight": 12.04, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 41.89, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10669, + "EmployeeID": 2, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", + "ShipVia": 1, + "Freight": 24.39, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 2, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10871, - "EmployeeID": 9, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", + "OrderID": 10802, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", "ShipVia": 2, - "Freight": 112.27, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 257.26, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, + "Discount": 0.25 }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ - { - "OrderID": 10872, - "EmployeeID": 5, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 2, - "Freight": 175.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", - "OrderDetails": [ { "ProductID": 55, "UnitPrice": 24, - "Quantity": 10, - "Discount": 0.06 + "Quantity": 60, + "Discount": 0.25 }, { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.06 - }, + "Quantity": 5, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11074, + "EmployeeID": 7, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShipVia": 2, + "Freight": 18.44, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, "Discount": 0.06 } ] @@ -28707,292 +19139,246 @@ ] }, { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", + "CustomerID": "FAMIA", + "Company": "Familia Arquibaldo", + "ContactName": "Aria Cruz", + "ContactTitle": "Marketing Assistant", + "Address": "Rua Orós, 92", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5442, + "Country": "Brazil", + "Phone": "(11) 555-9857", "Orders": [ { - "OrderID": 10873, + "OrderID": 10347, "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 1, - "Freight": 0.82, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderDate": "1996-11-06T00:00:00", + "RequiredDate": "1996-12-04T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 3.1, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 50, + "Discount": 0.16 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 4, "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10874, - "EmployeeID": 5, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 2, - "Freight": 19.58, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10386, + "EmployeeID": 9, + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-25T00:00:00", + "ShipVia": 3, + "Freight": 13.99, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 34, + "UnitPrice": 11.2, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10875, - "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 2, - "Freight": 32.37, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 37000, - "ShipCountry": "Sweden", + "OrderID": 10414, + "EmployeeID": 2, + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-17T00:00:00", + "ShipVia": 3, + "Freight": 21.48, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 21, - "Discount": 0.1 + "UnitPrice": 7.3, + "Quantity": 18, + "Discount": 0.06 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10876, + "OrderID": 10512, "EmployeeID": 7, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 3, - "Freight": 60.42, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderDate": "1997-04-21T00:00:00", + "RequiredDate": "1997-05-19T00:00:00", + "ShippedDate": "1997-04-24T00:00:00", + "ShipVia": 2, + "Freight": 3.53, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.16 + }, { "ProductID": 46, "UnitPrice": 12, - "Quantity": 21, - "Discount": 0 + "Quantity": 9, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, - "Discount": 0 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.16 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10877, - "EmployeeID": 1, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", + "OrderID": 10581, + "EmployeeID": 3, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-02T00:00:00", "ShipVia": 1, - "Freight": 38.06, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, + "Freight": 3.01, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10878, - "EmployeeID": 4, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 1, - "Freight": 46.69, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10650, + "EmployeeID": 5, + "OrderDate": "1997-08-29T00:00:00", + "RequiredDate": "1997-09-26T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 176.81, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, + "Discount": 0 + } + ] + }, { - "OrderID": 10879, - "EmployeeID": 3, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderID": 10725, + "EmployeeID": 4, + "OrderDate": "1997-10-31T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 3, - "Freight": 8.5, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 10.83, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 12, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] @@ -29000,1554 +19386,1463 @@ ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 41000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "LAMAI", + "Company": "La maison d'Asie", + "ContactName": "Annette Roulet", + "ContactTitle": "Sales Manager", + "Address": "1 rue Alsace-Lorraine", + "City": "Toulouse", + "PostalCode": 31000, + "Country": "France", + "Phone": "61.77.61.10", + "Fax": "61.77.61.11", "Orders": [ { - "OrderID": 10880, - "EmployeeID": 7, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", + "OrderID": 10350, + "EmployeeID": 6, + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 64.19, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 18, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10358, + "EmployeeID": 5, + "OrderDate": "1996-11-20T00:00:00", + "RequiredDate": "1996-12-18T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", "ShipVia": 1, - "Freight": 88.01, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 26000, - "ShipCountry": "Sweden", + "Freight": 19.64, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10881, - "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", + "OrderID": 10371, + "EmployeeID": 1, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", "ShipVia": 1, - "Freight": 2.84, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 0.45, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 10, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 6, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10413, + "EmployeeID": 3, + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 2, + "Freight": 95.66, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, + { + "OrderID": 10425, + "EmployeeID": 6, + "OrderDate": "1997-01-24T00:00:00", + "RequiredDate": "1997-02-21T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 2, + "Freight": 7.93, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 10, + "Discount": 0.25 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 + } + ] + }, { - "OrderID": 10882, + "OrderID": 10454, "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-25T00:00:00", "ShipVia": 3, - "Freight": 23.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 2.74, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 25, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 49, - "UnitPrice": 20, + "ProductID": 33, + "UnitPrice": 2, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 32, - "Discount": 0.16 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10883, - "EmployeeID": 8, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", + "OrderID": 10493, + "EmployeeID": 4, + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", "ShipVia": 3, - "Freight": 0.53, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 10.64, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 8, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10884, - "EmployeeID": 4, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", - "ShipVia": 2, - "Freight": 90.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10500, + "EmployeeID": 6, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-17T00:00:00", + "ShipVia": 1, + "Freight": 42.68, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 12, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 21, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, "Discount": 0.06 - }, + } + ] + }, + { + "OrderID": 10610, + "EmployeeID": 8, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 1, + "Freight": 26.78, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10885, - "EmployeeID": 6, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 3, - "Freight": 5.64, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10631, + "EmployeeID": 8, + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-15T00:00:00", + "ShipVia": 1, + "Freight": 0.87, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 8, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10787, + "EmployeeID": 2, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 249.93, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10832, + "EmployeeID": 2, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 43.26, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 25, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10886, - "EmployeeID": 1, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 1, - "Freight": 4.99, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10923, + "EmployeeID": 7, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 68.26, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 40, - "Discount": 0 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10887, - "EmployeeID": 8, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", + "OrderID": 11051, + "EmployeeID": 7, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", "ShipVia": 3, - "Freight": 1.25, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "Freight": 2.79, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", + "CustomerID": "PICCO", + "Company": "Piccolo und mehr", + "ContactName": "Georg Pipps", "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "Address": "Geislweg 14", + "City": "Salzburg", + "PostalCode": 5020, + "Country": "Austria", + "Phone": "6562-9722", + "Fax": "6562-9723", "Orders": [ { - "OrderID": 10888, - "EmployeeID": 1, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 2, - "Freight": 51.87, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10353, + "EmployeeID": 7, + "OrderDate": "1996-11-13T00:00:00", + "RequiredDate": "1996-12-11T00:00:00", + "ShippedDate": "1996-11-25T00:00:00", + "ShipVia": 3, + "Freight": 360.63, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10392, + "EmployeeID": 2, + "OrderDate": "1996-12-24T00:00:00", + "RequiredDate": "1997-01-21T00:00:00", + "ShippedDate": "1997-01-01T00:00:00", + "ShipVia": 3, + "Freight": 122.46, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 50, + "Discount": 0 + } + ] + }, + { + "OrderID": 10427, + "EmployeeID": 4, + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 2, + "Freight": 31.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10889, - "EmployeeID": 9, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 3, - "Freight": 280.61, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10489, + "EmployeeID": 6, + "OrderDate": "1997-03-28T00:00:00", + "RequiredDate": "1997-04-25T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", + "ShipVia": 2, + "Freight": 5.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10890, - "EmployeeID": 7, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 32.76, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10530, + "EmployeeID": 3, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", + "ShipVia": 2, + "Freight": 339.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 17, "UnitPrice": 39, - "Quantity": 15, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10891, + "OrderID": 10597, "EmployeeID": 7, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 20.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", + "ShipVia": 3, + "Freight": 35.12, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 46000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10892, - "EmployeeID": 4, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 120.27, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 30000, - "ShipCountry": "Belgium", + "OrderID": 10686, + "EmployeeID": 2, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-08T00:00:00", + "ShipVia": 1, + "Freight": 96.5, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10893, - "EmployeeID": 9, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 2, - "Freight": 77.78, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10747, + "EmployeeID": 6, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-26T00:00:00", + "ShipVia": 1, + "Freight": 117.33, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 24, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 35, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10844, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", + "ShipVia": 2, + "Freight": 25.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10894, - "EmployeeID": 1, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 1, - "Freight": 116.13, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11053, + "EmployeeID": 2, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 28, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 120, - "Discount": 0.06 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 25, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "AROUT", + "Company": "Around the Horn", + "ContactName": "Thomas Hardy", + "ContactTitle": "Sales Representative", + "Address": "120 Hanover Sq.", + "City": "London", + "PostalCode": 19000, + "Country": "UK", + "Phone": "(171) 555-7788", + "Fax": "(171) 555-6750", "Orders": [ { - "OrderID": 10895, - "EmployeeID": 3, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", + "OrderID": 10355, + "EmployeeID": 6, + "OrderDate": "1996-11-15T00:00:00", + "RequiredDate": "1996-12-13T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", "ShipVia": 1, - "Freight": 162.75, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 41.95, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 110, + "UnitPrice": 3.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 45, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10383, + "EmployeeID": 8, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-18T00:00:00", + "ShipVia": 3, + "Freight": 34.24, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 36000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 91, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 100, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 29000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10896, - "EmployeeID": 7, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 32.45, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 15000, - "ShipCountry": "Belgium", + "OrderID": 10453, + "EmployeeID": 1, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", + "ShipVia": 2, + "Freight": 25.36, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 46000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 48, + "UnitPrice": 10.2, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 16, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10897, - "EmployeeID": 3, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-25T00:00:00", + "OrderID": 10558, + "EmployeeID": 1, + "OrderDate": "1997-06-04T00:00:00", + "RequiredDate": "1997-07-02T00:00:00", + "ShippedDate": "1997-06-10T00:00:00", "ShipVia": 2, - "Freight": 603.54, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 72.97, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 27000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 80, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 36, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10898, + "OrderID": 10707, "EmployeeID": 4, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 1.27, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 3, + "Freight": 21.74, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10899, - "EmployeeID": 5, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", + "OrderID": 10741, + "EmployeeID": 4, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 1.21, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 10.96, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 13000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10900, + "OrderID": 10743, "EmployeeID": 1, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", "ShipVia": 2, - "Freight": 1.66, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 48000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 28, + "Discount": 0.06 + } + ] + }, { - "OrderID": 10901, - "EmployeeID": 4, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", - "ShipVia": 1, - "Freight": 62.09, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10768, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 2, + "Freight": 146.32, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 }, { "ProductID": 71, "UnitPrice": 21.5, - "Quantity": 30, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 25000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10902, - "EmployeeID": 1, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 1, - "Freight": 44.15, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 33000, - "ShipCountry": "Sweden", + "OrderID": 10793, + "EmployeeID": 3, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", + "ShipVia": 3, + "Freight": 4.52, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10903, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 36.71, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10864, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 2, + "Freight": 3.04, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10904, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 162.95, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10920, + "EmployeeID": 4, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", + "ShipVia": 2, + "Freight": 29.61, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 35, + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10905, + "OrderID": 10953, "EmployeeID": 9, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-25T00:00:00", "ShipVia": 2, - "Freight": 13.72, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 35000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10906, - "EmployeeID": 4, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 3, - "Freight": 26.29, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 11016, + "EmployeeID": 9, + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 2, + "Freight": 33.8, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 16, + "Discount": 0 } ] } ] }, { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", + "CustomerID": "SEVES", + "Company": "Seven Seas Imports", + "ContactName": "Hari Kumar", + "ContactTitle": "Sales Manager", + "Address": "90 Wadhurst Rd.", + "City": "London", + "PostalCode": 32000, + "Country": "UK", + "Phone": "(171) 555-1717", + "Fax": "(171) 555-5646", "Orders": [ { - "OrderID": 10907, - "EmployeeID": 6, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-25T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", + "OrderID": 10359, + "EmployeeID": 5, + "OrderDate": "1996-11-21T00:00:00", + "RequiredDate": "1996-12-19T00:00:00", + "ShippedDate": "1996-11-26T00:00:00", "ShipVia": 3, - "Freight": 9.19, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 288.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 14, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 56, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 70, + "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10908, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 32.96, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10377, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 22.21, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 41000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 20, - "Discount": 0.06 + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 14, - "Discount": 0.06 + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10909, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-10T00:00:00", - "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10388, + "EmployeeID": 2, + "OrderDate": "1996-12-19T00:00:00", + "RequiredDate": "1997-01-16T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", + "ShipVia": 1, + "Freight": 34.86, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 45000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 12, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 7.6, + "Quantity": 15, + "Discount": 0.2 + }, + { + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10472, + "EmployeeID": 8, + "OrderDate": "1997-03-12T00:00:00", + "RequiredDate": "1997-04-09T00:00:00", + "ShippedDate": "1997-03-19T00:00:00", + "ShipVia": 1, + "Freight": 4.2, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 33000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 80, + "Discount": 0.06 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 5, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10910, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 38.11, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10523, + "EmployeeID": 7, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 2, + "Freight": 77.63, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 42000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 10, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 6, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10911, + "OrderID": 10547, "EmployeeID": 3, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", - "ShipVia": 1, - "Freight": 38.19, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", + "ShipVia": 2, + "Freight": 178.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 48000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 12, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10912, - "EmployeeID": 2, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 2, - "Freight": 580.91, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10800, + "EmployeeID": 1, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 3, + "Freight": 137.44, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 50000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 11, "UnitPrice": 21, - "Quantity": 40, - "Discount": 0.25 + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 7, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10913, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 1, - "Freight": 33.05, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10804, + "EmployeeID": 6, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", + "ShipVia": 2, + "Freight": 27.33, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 20000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 4, + "Discount": 0.16 } ] }, { - "OrderID": 10914, - "EmployeeID": 6, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", + "OrderID": 10869, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", "ShipVia": 1, - "Freight": 21.19, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 143.28, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 25, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ - { - "OrderID": 10915, - "EmployeeID": 2, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 2, - "Freight": 3.51, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 17, - "UnitPrice": 39, + "ProductID": 11, + "UnitPrice": 21, "Quantity": 10, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 } ] @@ -30555,183 +20850,169 @@ ] }, { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", + "CustomerID": "DRACD", + "Company": "Drachenblut Delikatessen", + "ContactName": "Sven Ottlieb", + "ContactTitle": "Order Administrator", + "Address": "Walserweg 21", + "City": "Aachen", + "PostalCode": 52066, + "Country": "Germany", + "Phone": "0241-039123", + "Fax": "0241-059428", "Orders": [ { - "OrderID": 10916, - "EmployeeID": 1, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 2, - "Freight": 63.77, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10363, + "EmployeeID": 4, + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1996-12-24T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", + "ShipVia": 3, + "Freight": 30.54, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 6, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 6, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10917, - "EmployeeID": 4, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 2, - "Freight": 8.29, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10391, + "EmployeeID": 3, + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-31T00:00:00", + "ShipVia": 3, + "Freight": 5.45, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 1, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10797, + "EmployeeID": 7, + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 2, + "Freight": 33.35, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 42000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10918, - "EmployeeID": 3, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 3, - "Freight": 48.83, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10825, + "EmployeeID": 1, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 1, + "Freight": 79.25, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10919, - "EmployeeID": 2, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 2, - "Freight": 19.8, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 11036, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 3, + "Freight": 149.47, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 24, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 24, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11067, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 7.98, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 20, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, "Discount": 0 } ] @@ -30739,316 +21020,267 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", + "CustomerID": "EASTC", + "Company": "Eastern Connection", + "ContactName": "Ann Devon", + "ContactTitle": "Sales Agent", + "Address": "35 King George", "City": "London", - "PostalCode": 34000, + "PostalCode": 20000, "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Phone": "(171) 555-0297", + "Fax": "(171) 555-3373", "Orders": [ { - "OrderID": 10920, - "EmployeeID": 4, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 2, - "Freight": 29.61, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 28000, + "OrderID": 10364, + "EmployeeID": 1, + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", + "ShipVia": 1, + "Freight": 71.97, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 20000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 24, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10921, + "OrderID": 10400, "EmployeeID": 1, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 1, - "Freight": 176.48, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 3, + "Freight": 83.93, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 21, + "Discount": 0 + }, { "ProductID": 35, - "UnitPrice": 18, - "Quantity": 10, + "UnitPrice": 14.4, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 40, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10922, - "EmployeeID": 5, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", + "OrderID": 10532, + "EmployeeID": 7, + "OrderDate": "1997-05-09T00:00:00", + "RequiredDate": "1997-06-06T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", "ShipVia": 3, - "Freight": 62.74, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 74.46, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 45000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10726, + "EmployeeID": 4, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 16.56, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 21000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 15, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10923, - "EmployeeID": 7, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 3, - "Freight": 68.26, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10987, + "EmployeeID": 8, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", + "ShipVia": 1, + "Freight": 185.48, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 30000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, + "Discount": 0 }, { "ProductID": 43, "UnitPrice": 46, - "Quantity": 10, - "Discount": 0.2 + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0.2 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 11000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10924, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 2, - "Freight": 151.52, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", + "OrderID": 11024, + "EmployeeID": 4, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 74.36, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 33, + "UnitPrice": 2.5, "Quantity": 30, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 6, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10925, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 1, - "Freight": 2.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 11047, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 46.62, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 42000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 25, - "Discount": 0.16 + "Discount": 0.25 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10926, - "EmployeeID": 4, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 3, - "Freight": 39.92, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "OrderID": 11056, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 2, + "Freight": 278.96, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 39000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 } ] @@ -31056,329 +21288,226 @@ ] }, { - "CustomerID": "LACOR", - "Company": "La corne d'abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de l'Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", + "CustomerID": "ANTON", + "Company": "Antonio Moreno Taquería", + "ContactName": "Antonio Moreno", + "ContactTitle": "Owner", + "Address": "Mataderos 2312", + "City": "México D.F.", + "PostalCode": 5023, + "Country": "Mexico", + "Phone": "(5) 555-3932", "Orders": [ { - "OrderID": 10927, - "EmployeeID": 4, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 19.79, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "OrderID": 10365, + "EmployeeID": 3, + "OrderDate": "1996-11-27T00:00:00", + "RequiredDate": "1996-12-25T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 22, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10928, - "EmployeeID": 1, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10507, + "EmployeeID": 7, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-04-22T00:00:00", "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "Freight": 47.45, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0 + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10929, - "EmployeeID": 6, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", + "OrderID": 10535, + "EmployeeID": 4, + "OrderDate": "1997-05-13T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-21T00:00:00", "ShipVia": 1, - "Freight": 33.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 15.64, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 49, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 59, + "UnitPrice": 55, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10930, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10573, + "EmployeeID": 7, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-20T00:00:00", "ShipVia": 3, - "Freight": 15.55, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 84.84, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 36, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 25, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10931, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 2, - "Freight": 13.6, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10677, + "EmployeeID": 1, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 3, + "Freight": 4.03, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 42, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 30, "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10932, - "EmployeeID": 8, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", - "ShipVia": 1, - "Freight": 134.64, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10682, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 2, + "Freight": 36.13, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, + "ProductID": 33, + "UnitPrice": 2.5, "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 14, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 16, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 4, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.1 + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 22000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10933, - "EmployeeID": 6, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 3, - "Freight": 54.15, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40216, - "ShipPostalCode": 24000, - "ShipCountry": "UK", + "OrderID": 10856, + "EmployeeID": 3, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 58.43, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 2, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] @@ -31386,163 +21515,141 @@ ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "CustomerID": "GALED", + "Company": "Galería del gastrónomo", + "ContactName": "Eduardo Saavedra", + "ContactTitle": "Marketing Manager", + "Address": "Rambla de Cataluña, 23", + "City": "Barcelona", + "PostalCode": 8022, + "Country": "Spain", + "Phone": "(93) 203 4560", + "Fax": "(93) 203 4561", "Orders": [ { - "OrderID": 10934, - "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", - "ShipVia": 3, - "Freight": 32.01, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10366, + "EmployeeID": 8, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-30T00:00:00", + "ShipVia": 2, + "Freight": 10.14, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10935, + "OrderID": 10426, "EmployeeID": 4, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 47.59, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-02-06T00:00:00", + "ShipVia": 1, + "Freight": 18.69, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 8, - "Discount": 0.25 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10936, + "OrderID": 10568, "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 2, - "Freight": 33.68, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1997-06-13T00:00:00", + "RequiredDate": "1997-07-11T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 3, + "Freight": 6.54, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10937, - "EmployeeID": 7, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderID": 10887, + "EmployeeID": 8, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", "ShipVia": 3, - "Freight": 31.51, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 1.25, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10928, + "EmployeeID": 1, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 1.36, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 5, "Discount": 0 } ] @@ -31550,383 +21657,323 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", + "CustomerID": "VAFFE", + "Company": "Vaffeljernet", + "ContactName": "Palle Ibsen", + "ContactTitle": "Sales Manager", + "Address": "Smagsloget 45", + "City": "Århus", + "PostalCode": 8200, + "Country": "Denmark", + "Phone": "86 21 32 43", + "Fax": "86 22 33 44", "Orders": [ { - "OrderID": 10938, - "EmployeeID": 3, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 31.89, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10367, + "EmployeeID": 7, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1996-12-26T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 13.55, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 18, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 49, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10939, - "EmployeeID": 2, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 2, - "Freight": 76.33, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10399, + "EmployeeID": 8, + "OrderDate": "1996-12-31T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", + "ShipVia": 3, + "Freight": 27.36, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 14, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10940, - "EmployeeID": 8, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10465, + "EmployeeID": 1, + "OrderDate": "1997-03-05T00:00:00", + "RequiredDate": "1997-04-02T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 3, - "Freight": 19.77, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 145.04, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 8, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 45, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10941, - "EmployeeID": 7, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 400.81, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10591, + "EmployeeID": 1, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-07-21T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 55.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 44, - "Discount": 0.25 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 80, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10942, - "EmployeeID": 9, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 17.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10602, + "EmployeeID": 8, + "OrderDate": "1997-07-17T00:00:00", + "RequiredDate": "1997-08-14T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", + "ShipVia": 2, + "Freight": 2.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 28, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 5, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10943, + "OrderID": 10688, "EmployeeID": 4, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", "ShipVia": 2, - "Freight": 2.17, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "Freight": 299.09, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 15, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 21, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 15, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 45000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10944, + "OrderID": 10744, "EmployeeID": 6, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 3, - "Freight": 52.92, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 69.19, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10769, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 1, + "Freight": 65.06, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10945, - "EmployeeID": 4, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-04-09T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10921, + "EmployeeID": 1, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 1, - "Freight": 10.22, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 176.48, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { "OrderID": 10946, "EmployeeID": 1, @@ -31960,645 +22007,417 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 35000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10947, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 13000, - "ShipCountry": "UK", + "OrderID": 10994, + "EmployeeID": 2, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-04-09T00:00:00", + "ShipVia": 3, + "Freight": 65.53, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { "ProductID": 59, "UnitPrice": 55, - "Quantity": 4, - "Discount": 0 + "Quantity": 18, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "CustomerID": "QUEEN", + "Company": "Queen Cozinha", + "ContactName": "Lúcia Carvalho", + "ContactTitle": "Marketing Assistant", + "Address": "Alameda dos Canàrios, 891", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5487, + "Country": "Brazil", + "Phone": "(11) 555-1189", "Orders": [ { - "OrderID": 10948, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 3, - "Freight": 23.39, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10372, + "EmployeeID": 5, + "OrderDate": "1996-12-04T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 890.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 9, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 40, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 70, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 42, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 44000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10949, - "EmployeeID": 2, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-17T00:00:00", - "ShipVia": 3, - "Freight": 74.44, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderID": 10406, + "EmployeeID": 7, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-13T00:00:00", + "ShipVia": 1, + "Freight": 108.04, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 12, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 21, + "UnitPrice": 8, "Quantity": 30, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 42, + "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 60, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10950, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-13T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10487, + "EmployeeID": 2, + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-03-28T00:00:00", "ShipVia": 2, - "Freight": 2.5, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 71.07, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 5, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ - { - "OrderID": 10951, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 2, - "Freight": 30.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, - "Discount": 0.06 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10952, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "OrderID": 10637, + "EmployeeID": 6, + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", "ShipVia": 1, - "Freight": 40.42, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 201.29, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 2, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 21000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10953, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-25T00:00:00", + "OrderID": 10659, + "EmployeeID": 7, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 35000, - "ShipCountry": "UK", + "Freight": 105.81, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 50, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0.06 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 24, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10954, - "EmployeeID": 5, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 10704, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", "ShipVia": 1, - "Freight": 27.91, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 4.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 28, - "Discount": 0.16 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 48, + "UnitPrice": 12.75, "Quantity": 24, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 25000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10955, - "EmployeeID": 8, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 10728, + "EmployeeID": 4, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-11-11T00:00:00", "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 47000, - "ShipCountry": "Sweden", + "Freight": 58.33, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 12, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10956, - "EmployeeID": 6, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 44.65, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 14, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 8, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10957, + "OrderID": 10786, "EmployeeID": 8, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 3, - "Freight": 105.36, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-16T00:00:00", + "ShippedDate": "1997-12-23T00:00:00", + "ShipVia": 1, + "Freight": 110.87, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 8, + "UnitPrice": 40, "Quantity": 30, - "Discount": 0 + "Discount": 0.2 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 8, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10958, + "OrderID": 10868, "EmployeeID": 7, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 2, - "Freight": 49.56, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 191.27, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, + "ProductID": 26, + "UnitPrice": 31.23, "Quantity": 20, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 6, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 5, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 42, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10959, - "EmployeeID": 6, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", - "ShipVia": 2, - "Freight": 4.98, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", + "OrderID": 10913, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 1, + "Freight": 33.05, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", "ShipRegion": "SP", - "ShipPostalCode": 4876, + "ShipPostalCode": 5487, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10960, - "EmployeeID": 3, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 2.08, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 30, + "Discount": 0.25 + }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 40, "Discount": 0.25 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 24, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { "OrderID": 10961, "EmployeeID": 8, @@ -32615,158 +22434,271 @@ "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 + } + ] + }, + { + "OrderID": 11068, + "EmployeeID": 8, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShipVia": 2, + "Freight": 81.75, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.16 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 36, + "Discount": 0.16 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 28, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "WOLZA", + "Company": "Wolski Zajazd", + "ContactName": "Zbyszek Piestrzeniewicz", + "ContactTitle": "Owner", + "Address": "ul. Filtrowa 68", + "City": "Warszawa", + "PostalCode": 12000, + "Country": "Poland", + "Phone": "(26) 642-7012", + "Fax": "(26) 642-7012", + "Orders": [ + { + "OrderID": 10374, + "EmployeeID": 1, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 3, + "Freight": 3.94, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 60, + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10962, - "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10611, + "EmployeeID": 6, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 275.79, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 80.65, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 77, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10792, + "EmployeeID": 1, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 3, + "Freight": 23.79, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 9, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 44, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10963, - "EmployeeID": 9, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", + "OrderID": 10870, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", "ShipVia": 3, - "Freight": 2.7, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 12.04, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, "Quantity": 2, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 10964, - "EmployeeID": 3, - "OrderDate": "1998-03-20T00:00:00", + "OrderID": 10906, + "EmployeeID": 4, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", + "ShipVia": 3, + "Freight": 26.29, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10998, + "EmployeeID": 8, + "OrderDate": "1998-04-03T00:00:00", "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", "ShipVia": 2, - "Freight": 87.38, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 20.31, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 6, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 11044, + "EmployeeID": 4, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 8.72, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, "Discount": 0 } ] @@ -32774,174 +22706,153 @@ ] }, { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", + "CustomerID": "HUNGC", + "Company": "Hungry Coyote Import Store", + "ContactName": "Yoshi Latimer", "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, + "Address": "City Center Plaza 516 Main St.", + "City": "Elgin", + "Region": "OR", + "PostalCode": 97827, "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", + "Phone": "(503) 555-6874", + "Fax": "(503) 555-2376", "Orders": [ { - "OrderID": 10965, - "EmployeeID": 6, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", - "ShipVia": 3, - "Freight": 144.38, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "OrderID": 10375, + "EmployeeID": 3, + "OrderDate": "1996-12-06T00:00:00", + "RequiredDate": "1997-01-03T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 20.12, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 16, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10966, - "EmployeeID": 4, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 27.19, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10394, + "EmployeeID": 1, + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 3, + "Freight": 30.34, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 8, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, "Discount": 0 }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 - }, { "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0.16 + "UnitPrice": 39.4, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10967, - "EmployeeID": 2, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 62.22, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "OrderID": 10415, + "EmployeeID": 3, + "OrderDate": "1997-01-15T00:00:00", + "RequiredDate": "1997-02-12T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "ShipVia": 1, + "Freight": 0.2, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 40, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10968, - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-01T00:00:00", - "ShipVia": 3, - "Freight": 74.6, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10600, + "EmployeeID": 4, + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-13T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", + "ShipVia": 1, + "Freight": 45.13, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 73, + "UnitPrice": 15, "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10660, + "EmployeeID": 8, + "OrderDate": "1997-09-08T00:00:00", + "RequiredDate": "1997-10-06T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 1, + "Freight": 111.29, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 4, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 21, "Discount": 0 } ] @@ -32949,222 +22860,205 @@ ] }, { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", + "CustomerID": "SANTG", + "Company": "Santé Gourmet", + "ContactName": "Jonas Bergulfsen", + "ContactTitle": "Owner", + "Address": "Erling Skakkes gate 78", + "City": "Stavern", + "PostalCode": 4110, + "Country": "Norway", + "Phone": "07-98 92 35", + "Fax": "07-98 92 47", "Orders": [ { - "OrderID": 10969, + "OrderID": 10387, "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-15T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", "ShipVia": 2, - "Freight": 0.21, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 93.63, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 9, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ + }, { - "OrderID": 10970, - "EmployeeID": 9, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10520, + "EmployeeID": 7, + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", "ShipVia": 1, - "Freight": 16.16, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", + "Freight": 13.37, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10971, - "EmployeeID": 2, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 121.82, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10639, + "EmployeeID": 7, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-08-27T00:00:00", + "ShipVia": 3, + "Freight": 38.64, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne d'abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de l'Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ + }, { - "OrderID": 10972, - "EmployeeID": 4, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", + "OrderID": 10831, + "EmployeeID": 3, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 2, - "Freight": 0.02, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "Freight": 72.19, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 7, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 9, "Discount": 0 } ] }, { - "OrderID": 10973, - "EmployeeID": 6, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "OrderID": 10909, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-10T00:00:00", "ShipVia": 2, - "Freight": 15.17, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "Freight": 53.05, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10974, - "EmployeeID": 3, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 12.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 11015, + "EmployeeID": 2, + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 2, + "Freight": 4.62, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] @@ -33179,339 +23073,314 @@ "Address": "23 Tsawassen Blvd.", "City": "Tsawassen", "Region": "BC", - "PostalCode": 13000, + "PostalCode": 26000, "Country": "Canada", "Phone": "(604) 555-4729", "Fax": "(604) 555-3745", "Orders": [ { - "OrderID": 10975, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-22T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 3, - "Freight": 32.27, + "OrderID": 10389, + "EmployeeID": 4, + "OrderDate": "1996-12-20T00:00:00", + "RequiredDate": "1997-01-17T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", + "ShipVia": 2, + "Freight": 47.42, "ShipName": "Bottom-Dollar Markets", "ShipAddress": "23 Tsawassen Blvd.", "ShipCity": "Tsawassen", "ShipRegion": "BC", - "ShipPostalCode": 40000, + "ShipPostalCode": 41000, "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, + "ProductID": 10, + "UnitPrice": 24.8, "Quantity": 16, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10976, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderID": 10410, + "EmployeeID": 3, + "OrderDate": "1997-01-10T00:00:00", + "RequiredDate": "1997-02-07T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", + "ShipVia": 3, + "Freight": 2.4, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 30000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 16, + "Discount": 0 + } + ] + }, + { + "OrderID": 10431, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 44.17, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 16000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10492, + "EmployeeID": 3, + "OrderDate": "1997-04-01T00:00:00", + "RequiredDate": "1997-04-29T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 1, - "Freight": 37.97, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 62.89, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 16000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 11000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10977, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10742, + "EmployeeID": 3, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-12-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 208.5, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", + "Freight": 243.73, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 25000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 27000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10978, - "EmployeeID": 9, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", - "ShipVia": 2, - "Freight": 32.82, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 31000, - "ShipCountry": "Belgium", + "OrderID": 10918, + "EmployeeID": 3, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 48.83, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 41000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 25, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10979, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-03-31T00:00:00", - "ShipVia": 2, - "Freight": 353.07, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10944, + "EmployeeID": 6, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 52.92, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 36000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, + "Discount": 0.25 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, "Quantity": 18, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 12, + "ProductID": 56, "UnitPrice": 38, - "Quantity": 20, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10949, + "EmployeeID": 2, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-17T00:00:00", + "ShipVia": 3, + "Freight": 74.44, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 80, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 30, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 24, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 35, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 50000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10980, - "EmployeeID": 4, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 1, - "Freight": 1.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10981, + "OrderID": 10975, "EmployeeID": 1, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 193.37, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-22T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 32.27, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 27000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { "OrderID": 10982, "EmployeeID": 2, @@ -33540,81 +23409,83 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10983, - "EmployeeID": 2, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 2, - "Freight": 657.54, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11027, + "EmployeeID": 1, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 52.52, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 14000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 84, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 21, + "Discount": 0.25 } ] }, { - "OrderID": 10984, - "EmployeeID": 1, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 211.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11045, + "EmployeeID": 6, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShipVia": 2, + "Freight": 70.58, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 46000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 55, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 24, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11048, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", + "ShipVia": 3, + "Freight": 24.12, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 41000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 42, "Discount": 0 } ] @@ -33622,535 +23493,427 @@ ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "LINOD", + "Company": "LINO-Delicateses", + "ContactName": "Felipe Izquierdo", + "ContactTitle": "Owner", + "Address": "Ave. 5 de Mayo Porlamar", + "City": "Sao Paulo", + "Region": "Nueva Esparta", + "PostalCode": 4980, + "Country": "Venezuela", + "Phone": "(8) 34-56-12", + "Fax": "(8) 34-93-93", "Orders": [ { - "OrderID": 10985, - "EmployeeID": 2, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10405, + "EmployeeID": 1, + "OrderDate": "1997-01-06T00:00:00", + "RequiredDate": "1997-02-03T00:00:00", + "ShippedDate": "1997-01-22T00:00:00", "ShipVia": 1, - "Freight": 91.51, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 34.82, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 36, - "Discount": 0.1 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 35, - "Discount": 0.1 + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10986, - "EmployeeID": 8, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", + "OrderID": 10485, + "EmployeeID": 4, + "OrderDate": "1997-03-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-31T00:00:00", "ShipVia": 2, - "Freight": 217.86, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 64.45, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 30, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0 + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 60, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10987, - "EmployeeID": 8, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", + "OrderID": 10638, + "EmployeeID": 3, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", "ShipVia": 1, - "Freight": 185.48, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 30000, - "ShipCountry": "UK", + "Freight": 158.44, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, "Discount": 0 }, { "ProductID": 72, "UnitPrice": 34.8, - "Quantity": 20, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10988, + "OrderID": 10697, "EmployeeID": 3, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 61.14, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-05T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", + "ShipVia": 1, + "Freight": 45.52, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 9, + "Discount": 0.25 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10989, - "EmployeeID": 2, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 1, - "Freight": 34.76, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "OrderID": 10729, + "EmployeeID": 8, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 3, + "Freight": 141.06, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 40, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10990, - "EmployeeID": 2, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 3, - "Freight": 117.61, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10811, + "EmployeeID": 8, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", + "ShipVia": 1, + "Freight": 31.22, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 65, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 18, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 66, - "Discount": 0.16 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10991, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 1, - "Freight": 38.51, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10838, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 59.28, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0.25 + }, + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 36, "UnitPrice": 19, "Quantity": 50, - "Discount": 0.2 - }, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10840, + "EmployeeID": 4, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", + "ShipVia": 2, + "Freight": 2.71, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 76, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 90, + "Quantity": 10, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10992, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 4.27, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "OrderID": 10919, + "EmployeeID": 2, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 2, + "Freight": 19.8, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 2, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 36000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10993, - "EmployeeID": 7, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 3, - "Freight": 8.81, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 15000, - "ShipCountry": "Sweden", + "OrderID": 10954, + "EmployeeID": 5, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 1, + "Freight": 27.91, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 28, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 25, + "Discount": 0.16 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10994, + "OrderID": 11014, "EmployeeID": 2, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-04-09T00:00:00", + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", "ShipVia": 3, - "Freight": 65.53, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 23.6, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 28, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10995, + "OrderID": 11039, "EmployeeID": 1, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 3, - "Freight": 46, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShipVia": 2, + "Freight": 65, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 24, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10996, - "EmployeeID": 4, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 1.12, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ + }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 28, "Discount": 0 } ] @@ -34158,580 +23921,519 @@ ] }, { - "CustomerID": "LILAS", - "Company": "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": "FOLIG", + "Company": "Folies gourmandes", + "ContactName": "Martine Rancé", + "ContactTitle": "Sales Associate", + "Address": "184, chaussée de Tournai", + "City": "Lille", + "PostalCode": 59000, + "Country": "France", + "Phone": "20.16.10.16", + "Fax": "20.16.10.17", "Orders": [ { - "OrderID": 10997, + "OrderID": 10408, "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 2, - "Freight": 73.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderDate": "1997-01-08T00:00:00", + "RequiredDate": "1997-02-05T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 11.26, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 15000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10998, - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", + "OrderID": 10480, + "EmployeeID": 6, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", "ShipVia": 2, - "Freight": 20.31, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 1.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, "Quantity": 12, "Discount": 0 + } + ] + }, + { + "OrderID": 10634, + "EmployeeID": 4, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 487.38, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 7, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 30, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10999, - "EmployeeID": 6, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-01T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 96.35, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "OrderID": 10763, + "EmployeeID": 3, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 3, + "Freight": 37.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 21, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 11000, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", - "ShipVia": 3, - "Freight": 55.12, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10789, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 2, + "Freight": 100.6, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, + "Discount": 0 } ] } ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 45000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "OCEAN", + "Company": "Océano Atlántico Ltda.", + "ContactName": "Yvonne Moncada", + "ContactTitle": "Sales Agent", + "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5333", + "Fax": "(1) 135-5535", "Orders": [ { - "OrderID": 11001, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", - "ShipVia": 2, - "Freight": 197.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 14000, - "ShipCountry": "Sweden", + "OrderID": 10409, + "EmployeeID": 3, + "OrderDate": "1997-01-09T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 29.83, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 25, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11002, - "EmployeeID": 4, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10531, + "EmployeeID": 7, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", "ShipVia": 1, - "Freight": 141.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 8.12, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 10898, + "EmployeeID": 4, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 1.27, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { "ProductID": 13, "UnitPrice": 6, - "Quantity": 56, + "Quantity": 5, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10958, + "EmployeeID": 7, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 2, + "Freight": 49.56, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 40, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11003, - "EmployeeID": 3, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 3, - "Freight": 14.91, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "OrderID": 10986, + "EmployeeID": 8, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 217.86, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0 } ] } ] }, { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 20000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", + "CustomerID": "FRANS", + "Company": "Franchi S.p.A.", + "ContactName": "Paolo Accorti", + "ContactTitle": "Sales Representative", + "Address": "Via Monte Bianco 34", + "City": "Torino", + "PostalCode": 10100, + "Country": "Italy", + "Phone": "011-4988260", + "Fax": "011-4988261", "Orders": [ { - "OrderID": 11004, - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10422, + "EmployeeID": 2, + "OrderDate": "1997-01-22T00:00:00", + "RequiredDate": "1997-02-19T00:00:00", + "ShippedDate": "1997-01-31T00:00:00", "ShipVia": 1, - "Freight": 44.84, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", + "Freight": 3.02, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 6, + "UnitPrice": 24.9, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 11005, - "EmployeeID": 2, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10710, + "EmployeeID": 1, + "OrderDate": "1997-10-20T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", "ShipVia": 1, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 4.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 2, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 10, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ - { - "OrderID": 11006, - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", - "ShipVia": 2, - "Freight": 25.19, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + }, + { + "OrderID": 10753, + "EmployeeID": 3, + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 1, + "Freight": 7.7, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 11007, - "EmployeeID": 8, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 2, - "Freight": 202.24, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10807, + "EmployeeID": 4, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 1.36, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 1, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11026, + "EmployeeID": 4, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", + "ShipVia": 1, + "Freight": 47.09, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 14, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11008, - "EmployeeID": 7, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShipVia": 3, - "Freight": 79.46, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 11060, + "EmployeeID": 2, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 2, + "Freight": 10.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 70, - "Discount": 0.06 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 90, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 21, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, "Discount": 0 } ] @@ -34739,453 +24441,384 @@ ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "CustomerID": "GOURL", + "Company": "Gourmet Lanchonetes", + "ContactName": "André Fonseca", + "ContactTitle": "Sales Associate", + "Address": "Av. Brasil, 442", + "City": "Campinas", + "Region": "SP", + "PostalCode": 4876, + "Country": "Brazil", + "Phone": "(11) 555-9482", "Orders": [ { - "OrderID": 11009, - "EmployeeID": 2, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 59.11, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10423, + "EmployeeID": 6, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", + "ShipVia": 3, + "Freight": 24.5, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 18, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 9, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11010, - "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 2, - "Freight": 28.71, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10652, + "EmployeeID": 4, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 2, + "Freight": 7.14, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 2, + "Discount": 0.25 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 11011, - "EmployeeID": 3, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 1, - "Freight": 1.21, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "OrderID": 10685, + "EmployeeID": 4, + "OrderDate": "1997-09-29T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 33.75, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 20, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 11012, + "OrderID": 10709, "EmployeeID": 1, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-11-20T00:00:00", "ShipVia": 3, - "Freight": 242.95, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 210.8, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 36, - "Discount": 0.06 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 11013, + "OrderID": 10734, "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 32.99, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-12T00:00:00", + "ShipVia": 3, + "Freight": 1.63, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 10, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 4, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 2, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 11014, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", - "ShipVia": 3, - "Freight": 23.6, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10777, + "EmployeeID": 7, + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 2, + "Freight": 3.01, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10790, + "EmployeeID": 6, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 28.23, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 3, + "Discount": 0.16 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 11015, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10959, + "EmployeeID": 6, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", "ShipVia": 2, - "Freight": 4.62, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 4.98, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 11049, + "EmployeeID": 3, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 8.34, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", + "CustomerID": "CONSH", + "Company": "Consolidated Holdings", + "ContactName": "Elizabeth Brown", "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", + "Address": "Berkeley Gardens 12 Brewery", "City": "London", - "PostalCode": 49000, + "PostalCode": 23000, "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Phone": "(171) 555-2282", + "Fax": "(171) 555-9199", "Orders": [ { - "OrderID": 11016, - "EmployeeID": 9, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10435, + "EmployeeID": 8, + "OrderDate": "1997-02-04T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", "ShipVia": 2, - "Freight": 33.8, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, + "Freight": 9.21, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 38000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 16, + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11017, - "EmployeeID": 9, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 2, - "Freight": 754.26, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10462, + "EmployeeID": 2, + "OrderDate": "1997-03-03T00:00:00", + "RequiredDate": "1997-03-31T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 1, + "Freight": 6.17, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 110, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11018, - "EmployeeID": 4, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10848, + "EmployeeID": 7, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 2, - "Freight": 11.65, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 38.24, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 39000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 3, "Discount": 0 } ] @@ -35205,12 +24838,13 @@ "Fax": "(1) 123-5556", "Orders": [ { - "OrderID": 11019, - "EmployeeID": 6, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShipVia": 3, - "Freight": 3.17, + "OrderID": 10448, + "EmployeeID": 4, + "OrderDate": "1997-02-17T00:00:00", + "RequiredDate": "1997-03-17T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", + "ShipVia": 2, + "Freight": 38.82, "ShipName": "Rancho grande", "ShipAddress": "Av. del Libertador 900", "ShipCity": "Buenos Aires", @@ -35218,195 +24852,138 @@ "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 3, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 2, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 11020, - "EmployeeID": 2, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10716, + "EmployeeID": 4, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-27T00:00:00", "ShipVia": 2, - "Freight": 43.3, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 22.57, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 11021, - "EmployeeID": 3, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", + "OrderID": 10828, + "EmployeeID": 9, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", "ShipVia": 1, - "Freight": 297.18, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 90.85, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 11, - "Discount": 0.25 - }, { "ProductID": 20, "UnitPrice": 81, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 63, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 44, - "Discount": 0.25 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 11022, - "EmployeeID": 9, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10916, + "EmployeeID": 1, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 63.77, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 15000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 11023, - "EmployeeID": 1, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 123.83, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", + "OrderID": 11019, + "EmployeeID": 6, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShipVia": 3, + "Freight": 3.17, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 4, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 2, "Discount": 0 } ] @@ -35414,53 +24991,60 @@ ] }, { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 21000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", + "CustomerID": "LAZYK", + "Company": "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", "Orders": [ { - "OrderID": 11024, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 1, - "Freight": 74.36, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 28000, - "ShipCountry": "UK", + "OrderID": 10482, + "EmployeeID": 1, + "OrderDate": "1997-03-21T00:00:00", + "RequiredDate": "1997-04-18T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 7.48, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10545, + "EmployeeID": 8, + "OrderDate": "1997-05-22T00:00:00", + "RequiredDate": "1997-06-19T00:00:00", + "ShippedDate": "1997-06-26T00:00:00", + "ShipVia": 2, + "Freight": 11.92, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 50, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 } ] @@ -35468,311 +25052,322 @@ ] }, { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", + "CustomerID": "LAUGB", + "Company": "Laughing Bacchus Wine Cellars", + "ContactName": "Yoshi Tannamuri", + "ContactTitle": "Marketing Assistant", + "Address": "1900 Oak St.", + "City": "Vancouver", + "Region": "BC", + "PostalCode": 24000, + "Country": "Canada", + "Phone": "(604) 555-3392", + "Fax": "(604) 555-7293", "Orders": [ { - "OrderID": 11025, - "EmployeeID": 6, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10495, + "EmployeeID": 3, + "OrderDate": "1997-04-03T00:00:00", + "RequiredDate": "1997-05-01T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 3, - "Freight": 29.17, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 4.65, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 33000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, + "ProductID": 23, + "UnitPrice": 7.2, "Quantity": 10, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 20, - "Discount": 0.1 + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 11026, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", - "ShipVia": 1, - "Freight": 47.09, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10620, + "EmployeeID": 2, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", + "ShipVia": 3, + "Freight": 0.94, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 15000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 27000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11027, - "EmployeeID": 1, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 1, - "Freight": 52.52, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", + "OrderID": 10810, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", + "ShipVia": 3, + "Freight": 4.33, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", "ShipRegion": "BC", - "ShipPostalCode": 14000, + "ShipPostalCode": 41000, "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 7, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, + "CustomerID": "BLAUS", + "Company": "Blauer See Delikatessen", + "ContactName": "Hanna Moos", + "ContactTitle": "Sales Representative", + "Address": "Forsterstr. 57", + "City": "Mannheim", + "PostalCode": 68306, "Country": "Germany", - "Phone": "0555-09876", + "Phone": "0621-08460", + "Fax": "0621-08924", "Orders": [ { - "OrderID": 11028, - "EmployeeID": 2, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", - "ShipVia": 1, - "Freight": 29.59, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10501, + "EmployeeID": 9, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 3, + "Freight": 8.85, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 24, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 11029, + "OrderID": 10509, "EmployeeID": 4, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", + "OrderDate": "1997-04-17T00:00:00", + "RequiredDate": "1997-05-15T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 1, - "Freight": 47.84, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 0.15, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10582, + "EmployeeID": 3, + "OrderDate": "1997-06-27T00:00:00", + "RequiredDate": "1997-07-25T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 27.71, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 12, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11030, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 2, - "Freight": 830.75, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10614, + "EmployeeID": 8, + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 3, + "Freight": 1.93, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 100, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 70, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 60, - "Discount": 0.25 - }, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10853, + "EmployeeID": 9, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", + "ShipVia": 2, + "Freight": 53.83, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 100, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, + "Discount": 0 } ] }, { - "OrderID": 11031, + "OrderID": 10956, "EmployeeID": 6, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 227.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 44.65, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 45, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 80, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 21, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 11058, + "EmployeeID": 9, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShipVia": 3, + "Freight": 31.14, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, "Discount": 0 } ] @@ -35780,140 +25375,97 @@ ] }, { - "CustomerID": "WHITC", - "Company": "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": "NORTS", + "Company": "North/South", + "ContactName": "Simon Crowther", + "ContactTitle": "Sales Associate", + "Address": "South House 300 Queensbridge", + "City": "London", + "PostalCode": 17000, + "Country": "UK", + "Phone": "(171) 555-7733", + "Fax": "(171) 555-2530", "Orders": [ { - "OrderID": 11032, - "EmployeeID": 2, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 10517, + "EmployeeID": 3, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 3, - "Freight": 606.19, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 32.07, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 16000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 35, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 25, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 11033, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 10752, + "EmployeeID": 2, + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", "ShipVia": 3, - "Freight": 84.74, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 1.39, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 70, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0 }, { "ProductID": 69, "UnitPrice": 36, - "Quantity": 36, - "Discount": 0.1 + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11034, - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 40.32, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 11057, + "EmployeeID": 3, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 4.13, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 6, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] @@ -35921,233 +25473,174 @@ ] }, { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", + "CustomerID": "CACTU", + "Company": "Cactus Comidas para llevar", + "ContactName": "Patricio Simpson", + "ContactTitle": "Sales Agent", + "Address": "Cerrito 333", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5555", + "Fax": "(1) 135-4892", "Orders": [ { - "OrderID": 11035, - "EmployeeID": 2, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10521, + "EmployeeID": 8, + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", "ShipVia": 2, - "Freight": 0.17, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 17.22, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 35, "UnitPrice": 18, - "Quantity": 10, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 60, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10782, + "EmployeeID": 9, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 1.1, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 1, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 11036, - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", + "OrderID": 10819, + "EmployeeID": 2, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", "ShipVia": 3, - "Freight": 149.47, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 19.76, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 43, + "UnitPrice": 46, "Quantity": 7, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 11037, - "EmployeeID": 7, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", + "OrderID": 10881, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 1, - "Freight": 3.2, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 2.84, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 70, + "ProductID": 73, "UnitPrice": 15, - "Quantity": 4, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 11038, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", - "ShipVia": 2, - "Freight": 29.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10937, + "EmployeeID": 7, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 31.51, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, - "Discount": 0.2 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 2, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 11039, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShipVia": 2, - "Freight": 65, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 11054, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShipVia": 1, + "Freight": 0.33, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 60, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 10, "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 28, + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] @@ -36167,12 +25660,13 @@ "Phone": "(503) 555-7555", "Orders": [ { - "OrderID": 11040, - "EmployeeID": 4, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShipVia": 3, - "Freight": 18.84, + "OrderID": 10528, + "EmployeeID": 6, + "OrderDate": "1997-05-06T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 3.35, "ShipName": "Great Lakes Food Market", "ShipAddress": "2732 Baker Blvd.", "ShipCity": "Eugene", @@ -36181,582 +25675,508 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 3, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ - { - "OrderID": 11041, - "EmployeeID": 3, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", - "ShipVia": 2, - "Freight": 48.22, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", - "OrderDetails": [ + }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, "Discount": 0.2 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 11042, - "EmployeeID": 2, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 1, - "Freight": 29.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderID": 10589, + "EmployeeID": 8, + "OrderDate": "1997-07-04T00:00:00", + "RequiredDate": "1997-08-01T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 4.42, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 35, + "UnitPrice": 18, "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 11043, - "EmployeeID": 5, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", + "OrderID": 10616, + "EmployeeID": 1, + "OrderDate": "1997-07-31T00:00:00", + "RequiredDate": "1997-08-28T00:00:00", + "ShippedDate": "1997-08-05T00:00:00", "ShipVia": 2, - "Freight": 8.8, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 116.53, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 15000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 11044, - "EmployeeID": 4, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10656, + "EmployeeID": 6, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 1, - "Freight": 8.72, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 57.15, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 26000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, + "Discount": 0.1 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 28, + "Discount": 0.1 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.1 + } + ] + }, { - "OrderID": 11045, - "EmployeeID": 6, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShipVia": 2, - "Freight": 70.58, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 46000, - "ShipCountry": "Canada", + "OrderID": 10681, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 76.13, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 24, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 11046, - "EmployeeID": 8, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10816, + "EmployeeID": 4, + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-02-03T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", "ShipVia": 2, - "Freight": 71.64, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 719.78, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, "Discount": 0.06 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, "Discount": 0.06 - }, + } + ] + }, + { + "OrderID": 10936, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 33.68, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 45000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11047, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 3, - "Freight": 46.62, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 42000, - "ShipCountry": "UK", + "OrderID": 11006, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", + "ShipVia": 2, + "Freight": 25.19, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 1, "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.25 + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 2, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 24000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11048, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", + "OrderID": 11040, + "EmployeeID": 4, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", "ShipVia": 3, - "Freight": 24.12, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "Freight": 18.84, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 42, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 11049, - "EmployeeID": 3, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 1, - "Freight": 8.34, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + } + ] + }, + { + "OrderID": 11061, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-06-11T00:00:00", + "ShipVia": 3, + "Freight": 14.01, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, + "Discount": 0 } ] } ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 46000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "MAISD", + "Company": "Maison Dewey", + "ContactName": "Catherine Dewey", + "ContactTitle": "Sales Agent", + "Address": "Rue Joseph-Bens 532", + "City": "Bruxelles", + "PostalCode": 45000, + "Country": "Belgium", + "Phone": "(02) 201 24 67", + "Fax": "(02) 201 24 68", "Orders": [ { - "OrderID": 11050, - "EmployeeID": 8, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10529, + "EmployeeID": 5, + "OrderDate": "1997-05-07T00:00:00", + "RequiredDate": "1997-06-04T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", "ShipVia": 2, - "Freight": 59.41, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "Freight": 66.69, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.1 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 11051, - "EmployeeID": 7, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", + "OrderID": 10649, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-09-25T00:00:00", + "ShippedDate": "1997-08-29T00:00:00", "ShipVia": 3, - "Freight": 2.79, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 6.2, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 21000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 11052, - "EmployeeID": 3, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10760, + "EmployeeID": 4, + "OrderDate": "1997-12-01T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1997-12-10T00:00:00", "ShipVia": 1, - "Freight": 67.26, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 155.64, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 12000, + "ShipCountry": "Belgium", "OrderDetails": [ + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.25 + }, + { + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 40, + "Discount": 0 + }, { "ProductID": 43, "UnitPrice": 46, "Quantity": 30, - "Discount": 0.2 - }, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10892, + "EmployeeID": 4, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 2, + "Freight": 120.27, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 30000, + "ShipCountry": "Belgium", + "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, + { + "OrderID": 10896, + "EmployeeID": 7, + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 32.45, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 15000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 16, + "Discount": 0 + } + ] + }, { - "OrderID": 11053, - "EmployeeID": 2, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", + "OrderID": 10978, + "EmployeeID": 9, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 32.82, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 31000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 11054, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", + "OrderID": 11004, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 1, - "Freight": 0.33, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 44.84, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 10, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 } ] @@ -36764,139 +26184,119 @@ ] }, { - "CustomerID": "HILAA", - "Company": "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": "TRAIH", + "Company": "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", "Orders": [ { - "OrderID": 11055, - "EmployeeID": 7, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10574, + "EmployeeID": 4, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 120.92, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 37.6, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 11000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11056, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10577, + "EmployeeID": 9, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 278.96, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 39000, - "ShipCountry": "UK", + "Freight": 25.41, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 40, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 16000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ + }, { - "OrderID": 11057, - "EmployeeID": 3, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10822, + "EmployeeID": 6, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", "ShipVia": 3, - "Freight": 4.13, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "Freight": 7, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, + "Discount": 0 + }, { "ProductID": 70, "UnitPrice": 15, - "Quantity": 3, + "Quantity": 6, "Discount": 0 } ] @@ -36904,451 +26304,483 @@ ] }, { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", + "CustomerID": "LETSS", + "Company": "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", "Orders": [ { - "OrderID": 11058, - "EmployeeID": 9, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShipVia": 3, - "Freight": 31.14, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10579, + "EmployeeID": 1, + "OrderDate": "1997-06-25T00:00:00", + "RequiredDate": "1997-07-23T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 2, + "Freight": 13.73, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 3, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 21, "Discount": 0 + } + ] + }, + { + "OrderID": 10719, + "EmployeeID": 8, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 2, + "Freight": 51.44, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 12, + "Discount": 0.25 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 3, + "Discount": 0.25 }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 40, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10735, + "EmployeeID": 6, + "OrderDate": "1997-11-10T00:00:00", + "RequiredDate": "1997-12-08T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 45.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", + "OrderDetails": [ { "ProductID": 61, "UnitPrice": 28.5, - "Quantity": 4, - "Discount": 0 + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 11059, - "EmployeeID": 2, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-06-10T00:00:00", + "OrderID": 10884, + "EmployeeID": 4, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", "ShipVia": 2, - "Freight": 85.8, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 90.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 30, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 12, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 21, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", + "CustomerID": "WILMK", + "Company": "Wilman Kala", + "ContactName": "Matti Karttunen", + "ContactTitle": "Owner/Marketing Assistant", + "Address": "Keskuskatu 45", + "City": "Helsinki", + "PostalCode": 21240, + "Country": "Finland", + "Phone": "90-224 8858", + "Fax": "90-224 8858", "Orders": [ { - "OrderID": 11060, + "OrderID": 10615, "EmployeeID": 2, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 2, - "Freight": 10.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderDate": "1997-07-30T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 3, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10673, + "EmployeeID": 2, + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 22.76, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11061, - "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-06-11T00:00:00", - "ShipVia": 3, - "Freight": 14.01, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderID": 10695, + "EmployeeID": 7, + "OrderDate": "1997-10-07T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", + "ShipVia": 1, + "Freight": 16.72, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11062, + "OrderID": 10873, "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShipVia": 2, - "Freight": 29.93, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 0.82, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 11063, + "OrderID": 10879, "EmployeeID": 3, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 81.73, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 8.5, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11064, + "OrderID": 10910, "EmployeeID": 1, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 1, - "Freight": 30.09, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 3, + "Freight": 38.11, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 77, - "Discount": 0.1 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 55, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11065, - "EmployeeID": 8, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", + "OrderID": 11005, + "EmployeeID": 2, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 1, - "Freight": 12.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, + "Discount": 0 } ] } ] }, { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, + "CustomerID": "THECR", + "Company": "The Cracker Box", + "ContactName": "Liu Wong", + "ContactTitle": "Marketing Assistant", + "Address": "55 Grizzly Peak Rd.", + "City": "Butte", + "Region": "MT", + "PostalCode": 59801, "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", + "Phone": "(406) 555-5834", + "Fax": "(406) 555-8083", "Orders": [ { - "OrderID": 11066, - "EmployeeID": 7, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10624, + "EmployeeID": 4, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", "ShipVia": 2, - "Freight": 44.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, + "Freight": 94.8, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 42, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 34, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10775, + "EmployeeID": 7, + "OrderDate": "1997-12-12T00:00:00", + "RequiredDate": "1998-01-09T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 20.25, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, "UnitPrice": 14, - "Quantity": 35, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 11067, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 7.98, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderID": 11003, + "EmployeeID": 3, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 3, + "Freight": 14.91, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 10, "Discount": 0 } ] @@ -37356,272 +26788,279 @@ ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", + "CustomerID": "ALFKI", + "Company": "Alfreds Futterkiste", + "ContactName": "Maria Anders", + "ContactTitle": "Sales Representative", + "Address": "Obere Str. 57", + "City": "Berlin", + "PostalCode": 12209, + "Country": "Germany", + "Phone": "030-0074321", + "Fax": "030-0076545", "Orders": [ { - "OrderID": 11068, - "EmployeeID": 8, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShipVia": 2, - "Freight": 81.75, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10643, + "EmployeeID": 6, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", + "ShipVia": 1, + "Freight": 29.46, + "ShipName": "Alfreds Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 28, "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.16 + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 2, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 11069, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", + "OrderID": 10692, + "EmployeeID": 4, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-10-31T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", "ShipVia": 2, - "Freight": 15.67, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 61.02, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 11070, - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", + "OrderID": 10702, + "EmployeeID": 4, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", "ShipVia": 1, - "Freight": 136, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "Freight": 23.94, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.16 - }, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10835, + "EmployeeID": 1, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 3, + "Freight": 69.53, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11071, + "OrderID": 10952, "EmployeeID": 1, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 1, - "Freight": 0.93, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 40.42, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 15, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 16, "Discount": 0.06 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 11011, + "EmployeeID": 3, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 1, + "Freight": 1.21, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 40, "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 11072, - "EmployeeID": 4, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShipVia": 2, - "Freight": 258.64, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "CustomerID": "FRANR", + "Company": "France restauration", + "ContactName": "Carine Schmitt", + "ContactTitle": "Marketing Manager", + "Address": "54, rue Royale", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.32.21.21", + "Fax": "40.32.21.20", + "Orders": [ + { + "OrderID": 10671, + "EmployeeID": 1, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-09-24T00:00:00", + "ShipVia": 1, + "Freight": 30.34, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 8, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 40, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 22, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10860, + "EmployeeID": 3, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 3, + "Freight": 19.26, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 130, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 11073, + "OrderID": 10971, "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", "ShipVia": 2, - "Freight": 24.95, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 121.82, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 14, "Discount": 0 } ] @@ -37629,308 +27068,223 @@ ] }, { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", + "CustomerID": "SPECD", + "Company": "Spécialités du monde", + "ContactName": "Dominique Perrier", + "ContactTitle": "Marketing Manager", + "Address": "25, rue Lauriston", + "City": "Paris", + "PostalCode": 75016, + "Country": "France", + "Phone": "(1) 47.55.60.10", + "Fax": "(1) 47.55.60.20", "Orders": [ { - "OrderID": 11074, - "EmployeeID": 7, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShipVia": 2, - "Freight": 18.44, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10738, + "EmployeeID": 2, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 1, + "Freight": 2.91, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 16, "UnitPrice": 17.45, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10907, + "EmployeeID": 6, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-25T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 9.19, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 14, - "Discount": 0.06 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 11075, - "EmployeeID": 8, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", + "OrderID": 10964, + "EmployeeID": 3, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 2, - "Freight": 6.19, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 87.38, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 11076, - "EmployeeID": 4, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", + "OrderID": 11043, + "EmployeeID": 5, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", "ShipVia": 2, - "Freight": 38.28, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, + "Freight": 8.8, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 11, + "UnitPrice": 21, "Quantity": 10, - "Discount": 0.25 + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "LACOR", + "Company": "La corne d'abondance", + "ContactName": "Daniel Tonini", + "ContactTitle": "Sales Representative", + "Address": "67, avenue de l'Europe", + "City": "Versailles", + "PostalCode": 78000, + "Country": "France", + "Phone": "30.59.84.10", + "Fax": "30.59.85.11", "Orders": [ { - "OrderID": 11077, - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10858, + "EmployeeID": 2, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", + "ShipVia": 1, + "Freight": 52.51, + "ShipName": "La corne d'abondance", + "ShipAddress": "67, avenue de l'Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 24, - "Discount": 0.2 - }, - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 1, - "Discount": 0.02 - }, { "ProductID": 7, "UnitPrice": 30, - "Quantity": 1, - "Discount": 0.06 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 2, - "Discount": 0.1 - }, - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 1, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 2, - "Discount": 0.06 + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 4, "Discount": 0 - }, - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 2, - "Discount": 0.04 - }, + } + ] + }, + { + "OrderID": 10927, + "EmployeeID": 4, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 19.79, + "ShipName": "La corne d'abondance", + "ShipAddress": "67, avenue de l'Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { "ProductID": 20, "UnitPrice": 81, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 3, + "Quantity": 5, "Discount": 0 }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 3, - "Discount": 0.02 - }, { "ProductID": 52, "UnitPrice": 7, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 2, - "Discount": 0.04 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 1, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 2, - "Discount": 0.0099999998 - }, + } + ] + }, + { + "OrderID": 10972, + "EmployeeID": 4, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 2, + "Freight": 0.02, + "ShipName": "La corne d'abondance", + "ShipAddress": "67, avenue de l'Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 4, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 7, "Discount": 0 } ] diff --git a/samples/grids/hierarchical-grid/column-pinning-styles/src/HierarchicalCustomersData.json b/samples/grids/hierarchical-grid/column-pinning-styles/src/HierarchicalCustomersData.json index 8c1cb2c4ac..956627e3f6 100644 --- a/samples/grids/hierarchical-grid/column-pinning-styles/src/HierarchicalCustomersData.json +++ b/samples/grids/hierarchical-grid/column-pinning-styles/src/HierarchicalCustomersData.json @@ -53,6 +53,112 @@ "TotalPrice": 220.25 } ] + }, + { + "OrderID": 10274, + "EmployeeID": 6, + "OrderDate": "1996-08-06T00:00:00", + "RequiredDate": "1996-09-03T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 1, + "Freight": 6.01, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 7, + "Discount": 0 + } + ] + }, + { + "OrderID": 10295, + "EmployeeID": 2, + "OrderDate": "1996-09-02T00:00:00", + "RequiredDate": "1996-09-30T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", + "ShipVia": 2, + "Freight": 1.15, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 10737, + "EmployeeID": 2, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 7.79, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10739, + "EmployeeID": 3, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-17T00:00:00", + "ShipVia": 3, + "Freight": 11.08, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 18, + "Discount": 0 + } + ] } ] }, @@ -101,267 +207,155 @@ "TotalPrice": 225.75 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Madrid", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10250, - "EmployeeID": 4, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-12T00:00:00", + "OrderID": 10438, + "EmployeeID": 3, + "OrderDate": "1997-02-06T00:00:00", + "RequiredDate": "1997-03-06T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", "ShipVia": 2, - "Freight": 65.83, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 8.24, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0, - "Weight": 2.9, - "Length": 26.9, - "TotalPrice": 233.5 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 35, - "Discount": 0.16, - "Weight": 3.5, - "Length": 27.4, - "TotalPrice": 261.25 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 15, - "Discount": 0.16, - "Weight": 2.2, - "Length": 30.2, - "TotalPrice": 249.75 + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10251, - "EmployeeID": 3, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", + "OrderID": 10446, + "EmployeeID": 6, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-02-19T00:00:00", "ShipVia": 1, - "Freight": 41.34, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 14.68, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.06, - "Weight": 2.6, - "Length": 26.8, - "TotalPrice": 226.5 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.06, - "Weight": 3.1, - "Length": 24.3, - "TotalPrice": 219.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0, - "Weight": 2.4, - "Length": 23.7, - "TotalPrice": 207 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 + }, + { + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10252, - "EmployeeID": 4, - "OrderDate": "1996-07-09T00:00:00", - "RequiredDate": "1996-08-06T00:00:00", - "ShippedDate": "1996-07-11T00:00:00", + "OrderID": 10548, + "EmployeeID": 3, + "OrderDate": "1997-05-26T00:00:00", + "RequiredDate": "1997-06-23T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", "ShipVia": 2, - "Freight": 51.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 1.43, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 40, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10254, - "EmployeeID": 5, - "OrderDate": "1996-07-11T00:00:00", - "RequiredDate": "1996-08-08T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderID": 10608, + "EmployeeID": 4, + "OrderDate": "1997-07-23T00:00:00", + "RequiredDate": "1997-08-20T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 22.98, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 27.79, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 21, - "Discount": 0.16 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10255, - "EmployeeID": 9, - "OrderDate": "1996-07-12T00:00:00", - "RequiredDate": "1996-08-09T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", - "ShipVia": 3, - "Freight": 148.33, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10967, + "EmployeeID": 2, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 62.22, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 25, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 40, "Discount": 0 } ] @@ -369,1393 +363,1191 @@ ] }, { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, + "CustomerID": "HANAR", + "Company": "Hanari Carnes", + "ContactName": "Mario Pontes", + "ContactTitle": "Accounting Manager", + "Address": "Rua do Paço, 67", + "City": "Madrid", + "Region": "RJ", + "PostalCode": 5454, "Country": "Brazil", - "Phone": "(14) 555-8122", + "Phone": "(21) 555-0091", + "Fax": "(21) 555-8765", "Orders": [ { - "OrderID": 10256, - "EmployeeID": 3, - "OrderDate": "1996-07-15T00:00:00", - "RequiredDate": "1996-08-12T00:00:00", - "ShippedDate": "1996-07-17T00:00:00", + "OrderID": 10250, + "EmployeeID": 4, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-12T00:00:00", "ShipVia": 2, - "Freight": 13.97, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, + "Freight": 65.83, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, + "Discount": 0, + "Weight": 2.9, + "Length": 26.9, + "TotalPrice": 233.5 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 35, + "Discount": 0.16, + "Weight": 3.5, + "Length": 27.4, + "TotalPrice": 261.25 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.16, + "Weight": 2.2, + "Length": 30.2, + "TotalPrice": 249.75 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10257, - "EmployeeID": 4, - "OrderDate": "1996-07-16T00:00:00", - "RequiredDate": "1996-08-13T00:00:00", - "ShippedDate": "1996-07-22T00:00:00", - "ShipVia": 3, - "Freight": 81.91, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10541, + "EmployeeID": 2, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-05-29T00:00:00", + "ShipVia": 1, + "Freight": 68.65, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 25, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.1 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 9, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10645, + "EmployeeID": 4, + "OrderDate": "1997-08-26T00:00:00", + "RequiredDate": "1997-09-23T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", + "ShipVia": 1, + "Freight": 12.41, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10258, + "OrderID": 10690, "EmployeeID": 1, - "OrderDate": "1996-07-17T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderDate": "1997-10-02T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", "ShipVia": 1, - "Freight": 140.51, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 15.8, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 65, - "Discount": 0.2 - }, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10770, + "EmployeeID": 8, + "OrderDate": "1997-12-09T00:00:00", + "RequiredDate": "1998-01-06T00:00:00", + "ShippedDate": "1997-12-17T00:00:00", + "ShipVia": 3, + "Freight": 5.32, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "CENTC", - "Company": "Centro comercial Moctezuma", - "ContactName": "Francisco Chang", - "ContactTitle": "Marketing Manager", - "Address": "Sierras de Granada 9993", - "City": "México D.F.", - "PostalCode": 5022, - "Country": "Mexico", - "Phone": "(5) 555-3392", - "Fax": "(5) 555-7293", - "Orders": [ + }, { - "OrderID": 10259, + "OrderID": 10783, "EmployeeID": 4, - "OrderDate": "1996-07-18T00:00:00", - "RequiredDate": "1996-08-15T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", - "ShipVia": 3, - "Freight": 3.25, - "ShipName": "Centro comercial Moctezuma", - "ShipAddress": "Sierras de Granada 9993", - "ShipCity": "México D.F.", - "ShipPostalCode": 5022, - "ShipCountry": "Mexico", + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 124.98, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 10, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 1, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10260, - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-29T00:00:00", + "OrderID": 10886, + "EmployeeID": 1, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", "ShipVia": 1, - "Freight": 55.09, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 4.99, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 16, - "Discount": 0.25 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 50, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10261, - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-30T00:00:00", - "ShipVia": 2, - "Freight": 3.05, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "OrderID": 10903, + "EmployeeID": 3, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 3, + "Freight": 36.71, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", "ShipCity": "Lyon", "ShipRegion": "RJ", - "ShipPostalCode": 2389, + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 20, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10262, - "EmployeeID": 8, - "OrderDate": "1996-07-22T00:00:00", - "RequiredDate": "1996-08-19T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", + "OrderID": 10922, + "EmployeeID": 5, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", "ShipVia": 3, - "Freight": 48.29, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 62.74, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 12, - "Discount": 0.2 - }, - { - "ProductID": 7, - "UnitPrice": 24, + "ProductID": 17, + "UnitPrice": 39, "Quantity": 15, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 2, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10263, - "EmployeeID": 9, - "OrderDate": "1996-07-23T00:00:00", - "RequiredDate": "1996-08-20T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", - "ShipVia": 3, - "Freight": 146.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10925, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 1, + "Freight": 2.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0.16 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 36000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10264, - "EmployeeID": 6, - "OrderDate": "1996-07-24T00:00:00", - "RequiredDate": "1996-08-21T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", - "ShipVia": 3, - "Freight": 3.67, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 15000, - "ShipCountry": "Sweden", + "OrderID": 10981, + "EmployeeID": 1, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 193.37, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 35, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 25, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10265, - "EmployeeID": 2, - "OrderDate": "1996-07-25T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", - "ShipVia": 1, - "Freight": 55.28, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 11022, + "EmployeeID": 9, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 30, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10266, + "OrderID": 11052, "EmployeeID": 3, - "OrderDate": "1996-07-26T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", - "ShipVia": 3, - "Freight": 25.73, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 67.26, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", + "CustomerID": "VICTE", + "Company": "Victuailles en stock", + "ContactName": "Mary Saveley", + "ContactTitle": "Sales Agent", + "Address": "2, rue du Commerce", + "City": "Lyon", + "PostalCode": 69004, + "Country": "France", + "Phone": "78.32.54.86", + "Fax": "78.32.54.87", "Orders": [ { - "OrderID": 10267, - "EmployeeID": 4, - "OrderDate": "1996-07-29T00:00:00", - "RequiredDate": "1996-08-26T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", + "OrderID": 10251, + "EmployeeID": 3, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", "ShipVia": 1, - "Freight": 208.58, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 41.34, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, - "Discount": 0 + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 6, + "Discount": 0.06, + "Weight": 2.6, + "Length": 26.8, + "TotalPrice": 226.5 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 15, + "Discount": 0.06, + "Weight": 3.1, + "Length": 24.3, + "TotalPrice": 219.25 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0, + "Weight": 2.4, + "Length": 23.7, + "TotalPrice": 207 } ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10268, + "OrderID": 10334, "EmployeeID": 8, - "OrderDate": "1996-07-30T00:00:00", - "RequiredDate": "1996-08-27T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 3, - "Freight": 66.29, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", + "OrderDate": "1996-10-21T00:00:00", + "RequiredDate": "1996-11-18T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", + "ShipVia": 2, + "Freight": 8.56, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 10, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 4, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10269, - "EmployeeID": 5, - "OrderDate": "1996-07-31T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", - "ShipVia": 1, - "Freight": 4.56, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10450, + "EmployeeID": 8, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-19T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", + "ShipVia": 2, + "Freight": 7.23, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 6, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10270, - "EmployeeID": 1, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 1, - "Freight": 136.54, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10459, + "EmployeeID": 4, + "OrderDate": "1997-02-27T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 25.09, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 25, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10271, - "EmployeeID": 6, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", - "ShipVia": 2, - "Freight": 4.54, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 10478, + "EmployeeID": 2, + "OrderDate": "1997-03-18T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-26T00:00:00", + "ShipVia": 3, + "Freight": 4.81, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 24, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10272, - "EmployeeID": 6, - "OrderDate": "1996-08-02T00:00:00", - "RequiredDate": "1996-08-30T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", - "ShipVia": 2, - "Freight": 98.03, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10546, + "EmployeeID": 1, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-05-27T00:00:00", + "ShipVia": 3, + "Freight": 194.72, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 6, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 24, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10273, + "OrderID": 10806, "EmployeeID": 3, - "OrderDate": "1996-08-05T00:00:00", - "RequiredDate": "1996-09-02T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", - "ShipVia": 3, - "Freight": 76.07, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 2, + "Freight": 22.11, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 24, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.06 - }, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 2, + "Discount": 0 + }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10814, + "EmployeeID": 3, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 3, + "Freight": 130.94, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 33, - "Discount": 0.06 + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 8, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10274, - "EmployeeID": 6, - "OrderDate": "1996-08-06T00:00:00", - "RequiredDate": "1996-09-03T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", + "OrderID": 10843, + "EmployeeID": 4, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", + "ShipVia": 2, + "Freight": 9.26, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 4, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10850, + "EmployeeID": 1, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 6.01, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, + "Freight": 49.19, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, + "ProductID": 25, + "UnitPrice": 14, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 4, + "Discount": 0.16 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "SUPRD", + "Company": "Suprêmes délices", + "ContactName": "Pascale Cartrain", + "ContactTitle": "Accounting Manager", + "Address": "Boulevard Tirou, 255", + "City": "Charleroi", + "PostalCode": 6000, + "Country": "Belgium", + "Phone": "(071) 23 67 22 20", + "Fax": "(071) 23 67 22 21", "Orders": [ { - "OrderID": 10275, - "EmployeeID": 1, - "OrderDate": "1996-08-07T00:00:00", - "RequiredDate": "1996-09-04T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", - "ShipVia": 1, - "Freight": 26.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10252, + "EmployeeID": 4, + "OrderDate": "1996-07-09T00:00:00", + "RequiredDate": "1996-08-06T00:00:00", + "ShippedDate": "1996-07-11T00:00:00", + "ShipVia": 2, + "Freight": 51.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 40, "Discount": 0.06 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 6, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 25, "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10276, - "EmployeeID": 8, - "OrderDate": "1996-08-08T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-14T00:00:00", - "ShipVia": 3, - "Freight": 13.84, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10302, + "EmployeeID": 4, + "OrderDate": "1996-09-10T00:00:00", + "RequiredDate": "1996-10-08T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 15, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10277, - "EmployeeID": 2, - "OrderDate": "1996-08-09T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-08-13T00:00:00", + "OrderID": 10458, + "EmployeeID": 7, + "OrderDate": "1997-02-26T00:00:00", + "RequiredDate": "1997-03-26T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", "ShipVia": 3, - "Freight": 125.77, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 147.06, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, + "Discount": 0 + }, { "ProductID": 28, "UnitPrice": 36.4, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 12, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10278, - "EmployeeID": 8, - "OrderDate": "1996-08-12T00:00:00", - "RequiredDate": "1996-09-09T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 2, - "Freight": 92.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 26000, - "ShipCountry": "Sweden", + "OrderID": 10463, + "EmployeeID": 5, + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-06T00:00:00", + "ShipVia": 3, + "Freight": 14.78, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 16, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 50, "Discount": 0 + } + ] + }, + { + "OrderID": 10475, + "EmployeeID": 9, + "OrderDate": "1997-03-14T00:00:00", + "RequiredDate": "1997-04-11T00:00:00", + "ShippedDate": "1997-04-04T00:00:00", + "ShipVia": 1, + "Freight": 68.52, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 8, - "Discount": 0 + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, + "Discount": 0.16 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 42, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10279, - "EmployeeID": 8, - "OrderDate": "1996-08-13T00:00:00", - "RequiredDate": "1996-09-10T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 2, - "Freight": 25.83, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10767, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 3, + "Freight": 1.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 2, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 34000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10280, - "EmployeeID": 2, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-09-11T00:00:00", - "ShippedDate": "1996-09-12T00:00:00", - "ShipVia": 1, - "Freight": 8.98, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 50000, - "ShipCountry": "Sweden", + "OrderID": 10841, + "EmployeeID": 5, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", + "ShipVia": 2, + "Freight": 424.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 20, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10281, - "EmployeeID": 4, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-08-28T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 2.94, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10846, + "EmployeeID": 2, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 56.46, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 1, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 6, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 } ] }, { - "OrderID": 10282, - "EmployeeID": 4, - "OrderDate": "1996-08-15T00:00:00", - "RequiredDate": "1996-09-12T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10283, - "EmployeeID": 3, - "OrderDate": "1996-08-16T00:00:00", - "RequiredDate": "1996-09-13T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", + "OrderID": 10885, + "EmployeeID": 6, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 3, - "Freight": 84.81, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 5.64, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 12.4, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 20, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 35, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 3, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10284, + "OrderID": 10930, "EmployeeID": 4, - "OrderDate": "1996-08-19T00:00:00", - "RequiredDate": "1996-09-16T00:00:00", - "ShippedDate": "1996-08-27T00:00:00", - "ShipVia": 1, - "Freight": 76.56, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 3, + "Freight": 15.55, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 21, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 67, - "UnitPrice": 11.2, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10285, - "EmployeeID": 1, - "OrderDate": "1996-08-20T00:00:00", - "RequiredDate": "1996-09-17T00:00:00", - "ShippedDate": "1996-08-26T00:00:00", + "OrderID": 11035, + "EmployeeID": 2, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", "ShipVia": 2, - "Freight": 76.83, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 0.17, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 45, - "Discount": 0.2 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.2 + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 36, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, + "Discount": 0 } ] }, { - "OrderID": 10286, - "EmployeeID": 8, - "OrderDate": "1996-08-21T00:00:00", - "RequiredDate": "1996-09-18T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", - "ShipVia": 3, - "Freight": 229.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 11038, + "EmployeeID": 1, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", + "ShipVia": 2, + "Freight": 29.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 100, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, + "Discount": 0.2 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] @@ -1763,327 +1555,272 @@ ] }, { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", + "CustomerID": "CHOPS", + "Company": "Chop-suey Chinese", + "ContactName": "Yang Wang", + "ContactTitle": "Owner", + "Address": "Hauptstr. 29", + "City": "Bern", + "PostalCode": 3012, + "Country": "Switzerland", + "Phone": "0452-076545", "Orders": [ { - "OrderID": 10287, - "EmployeeID": 8, - "OrderDate": "1996-08-22T00:00:00", - "RequiredDate": "1996-09-19T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", - "ShipVia": 3, - "Freight": 12.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10254, + "EmployeeID": 5, + "OrderDate": "1996-07-11T00:00:00", + "RequiredDate": "1996-08-08T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 2, + "Freight": 22.98, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, "Discount": 0.16 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 21, + "Discount": 0.16 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10288, - "EmployeeID": 4, - "OrderDate": "1996-08-23T00:00:00", - "RequiredDate": "1996-09-20T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", - "ShipVia": 1, - "Freight": 7.45, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10370, + "EmployeeID": 6, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-27T00:00:00", + "ShipVia": 2, + "Freight": 1.17, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10289, - "EmployeeID": 7, - "OrderDate": "1996-08-26T00:00:00", - "RequiredDate": "1996-09-23T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", + "OrderID": 10519, + "EmployeeID": 6, + "OrderDate": "1997-04-28T00:00:00", + "RequiredDate": "1997-05-26T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", "ShipVia": 3, - "Freight": 22.77, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 18000, - "ShipCountry": "UK", + "Freight": 91.76, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 9, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10290, - "EmployeeID": 8, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", + "OrderID": 10731, + "EmployeeID": 7, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", "ShipVia": 1, - "Freight": 79.7, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 96.65, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10746, + "EmployeeID": 1, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 3, + "Freight": 31.43, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10291, - "EmployeeID": 6, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-04T00:00:00", - "ShipVia": 2, - "Freight": 6.4, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10966, + "EmployeeID": 4, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 27.19, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10292, - "EmployeeID": 1, - "OrderDate": "1996-08-28T00:00:00", - "RequiredDate": "1996-09-25T00:00:00", - "ShippedDate": "1996-09-02T00:00:00", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "OrderID": 11029, + "EmployeeID": 4, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 47.84, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10293, - "EmployeeID": 1, - "OrderDate": "1996-08-29T00:00:00", - "RequiredDate": "1996-09-26T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 3, - "Freight": 21.18, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 11041, + "EmployeeID": 3, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", + "ShipVia": 2, + "Freight": 48.22, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 }, { "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, + "UnitPrice": 43.9, + "Quantity": 30, "Discount": 0 } ] @@ -2091,1519 +1828,1223 @@ ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "RICSU", + "Company": "Richter Supermarkt", + "ContactName": "Michael Holz", + "ContactTitle": "Sales Manager", + "Address": "Grenzacherweg 237", + "City": "Genève", + "PostalCode": 1203, + "Country": "Switzerland", + "Phone": "0897-034214", "Orders": [ { - "OrderID": 10294, - "EmployeeID": 4, - "OrderDate": "1996-08-30T00:00:00", - "RequiredDate": "1996-09-27T00:00:00", - "ShippedDate": "1996-09-05T00:00:00", - "ShipVia": 2, - "Freight": 147.26, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10255, + "EmployeeID": 9, + "OrderDate": "1996-07-12T00:00:00", + "RequiredDate": "1996-08-09T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", + "ShipVia": 3, + "Freight": 148.33, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 15, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 21, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10295, - "EmployeeID": 2, - "OrderDate": "1996-09-02T00:00:00", - "RequiredDate": "1996-09-30T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", + "OrderID": 10419, + "EmployeeID": 4, + "OrderDate": "1997-01-20T00:00:00", + "RequiredDate": "1997-02-17T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", "ShipVia": 2, - "Freight": 1.15, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 137.35, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 4, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10296, - "EmployeeID": 6, - "OrderDate": "1996-09-03T00:00:00", - "RequiredDate": "1996-10-01T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", + "OrderID": 10537, + "EmployeeID": 1, + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", "ShipVia": 1, - "Freight": 0.12, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 78.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 12, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 30, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10297, - "EmployeeID": 5, - "OrderDate": "1996-09-04T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", + "OrderID": 10666, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", "ShipVia": 2, - "Freight": 5.74, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 232.42, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 60, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, - "Discount": 0 - } + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0 + } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10298, - "EmployeeID": 6, - "OrderDate": "1996-09-05T00:00:00", - "RequiredDate": "1996-10-03T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 2, - "Freight": 168.22, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10751, + "EmployeeID": 3, + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-12-03T00:00:00", + "ShipVia": 3, + "Freight": 130.79, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 39.4, + "ProductID": 73, + "UnitPrice": 15, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10299, - "EmployeeID": 4, - "OrderDate": "1996-09-06T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-13T00:00:00", - "ShipVia": 2, - "Freight": 29.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10758, + "EmployeeID": 3, + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-04T00:00:00", + "ShipVia": 3, + "Freight": 138.17, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 60, "Discount": 0 }, { "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, + "UnitPrice": 15, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10300, - "EmployeeID": 2, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", + "OrderID": 10931, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 17.68, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 13.6, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 30, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 42, + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10301, - "EmployeeID": 8, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", + "OrderID": 10951, + "EmployeeID": 9, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", "ShipVia": 2, - "Freight": 45.08, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 30.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10302, - "EmployeeID": 4, - "OrderDate": "1996-09-10T00:00:00", - "RequiredDate": "1996-10-08T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 11033, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 84.74, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 28, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 36, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10303, - "EmployeeID": 7, - "OrderDate": "1996-09-11T00:00:00", - "RequiredDate": "1996-10-09T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", + "OrderID": 11075, + "EmployeeID": 8, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", "ShipVia": 2, - "Freight": 107.83, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 6.19, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 46, + "UnitPrice": 12, "Quantity": 30, - "Discount": 0.1 + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", + "CustomerID": "WELLI", + "Company": "Wellington Importadora", + "ContactName": "Paula Parente", + "ContactTitle": "Sales Manager", + "Address": "Rua do Mercado, 12", + "City": "Resende", + "Region": "SP", + "PostalCode": 8737, + "Country": "Brazil", + "Phone": "(14) 555-8122", "Orders": [ { - "OrderID": 10304, - "EmployeeID": 1, - "OrderDate": "1996-09-12T00:00:00", - "RequiredDate": "1996-10-10T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", + "OrderID": 10256, + "EmployeeID": 3, + "OrderDate": "1996-07-15T00:00:00", + "RequiredDate": "1996-08-12T00:00:00", + "ShippedDate": "1996-07-17T00:00:00", "ShipVia": 2, - "Freight": 63.79, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 13.97, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 10, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10305, - "EmployeeID": 8, - "OrderDate": "1996-09-13T00:00:00", - "RequiredDate": "1996-10-11T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 3, - "Freight": 257.62, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10420, + "EmployeeID": 3, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 1, + "Freight": 44.12, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 25, + "ProductID": 9, + "UnitPrice": 77.6, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 25, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 2, "Discount": 0.1 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 30, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10306, - "EmployeeID": 1, - "OrderDate": "1996-09-16T00:00:00", - "RequiredDate": "1996-10-14T00:00:00", - "ShippedDate": "1996-09-23T00:00:00", - "ShipVia": 3, - "Freight": 7.56, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10585, + "EmployeeID": 7, + "OrderDate": "1997-07-01T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", + "ShipVia": 1, + "Freight": 13.41, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 5, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10307, - "EmployeeID": 2, - "OrderDate": "1996-09-17T00:00:00", - "RequiredDate": "1996-10-15T00:00:00", - "ShippedDate": "1996-09-25T00:00:00", + "OrderID": 10644, + "EmployeeID": 3, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 0.14, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ - { - "OrderID": 10308, - "EmployeeID": 7, - "OrderDate": "1996-09-18T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-24T00:00:00", - "ShipVia": 3, - "Freight": 1.61, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 1, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 70, + "ProductID": 46, "UnitPrice": 12, - "Quantity": 5, - "Discount": 0 + "Quantity": 21, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10309, - "EmployeeID": 3, - "OrderDate": "1996-09-19T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", + "OrderID": 10803, + "EmployeeID": 4, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-06T00:00:00", "ShipVia": 1, - "Freight": 47.3, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 55.23, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 24, + "Discount": 0.06 }, { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 30, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 2, - "Discount": 0 - }, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 15, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10809, + "EmployeeID": 7, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", + "ShipVia": 1, + "Freight": 4.87, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 43, - "UnitPrice": 36.8, + "ProductID": 52, + "UnitPrice": 7, "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 3, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10310, - "EmployeeID": 8, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-18T00:00:00", - "ShippedDate": "1996-09-27T00:00:00", + "OrderID": 10900, + "EmployeeID": 1, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 2, - "Freight": 17.52, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "Freight": 1.66, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 10, - "Discount": 0 - }, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10905, + "EmployeeID": 9, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 13.72, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 5, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10311, - "EmployeeID": 1, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-26T00:00:00", + "OrderID": 10935, + "EmployeeID": 4, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 3, - "Freight": 24.69, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 47.59, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 6, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.25 + }, + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 8, + "Discount": 0.25 } ] } ] }, { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", + "CustomerID": "HILAA", + "Company": "HILARION-Abastos", + "ContactName": "Carlos Hernández", "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", + "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", "Orders": [ { - "OrderID": 10312, - "EmployeeID": 2, - "OrderDate": "1996-09-23T00:00:00", - "RequiredDate": "1996-10-21T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", - "ShipVia": 2, - "Freight": 40.26, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10257, + "EmployeeID": 4, + "OrderDate": "1996-07-16T00:00:00", + "RequiredDate": "1996-08-13T00:00:00", + "ShippedDate": "1996-07-22T00:00:00", + "ShipVia": 3, + "Freight": 81.91, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 4, + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 24, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10395, + "EmployeeID": 6, + "OrderDate": "1996-12-26T00:00:00", + "RequiredDate": "1997-01-23T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 1, + "Freight": 184.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 28, + "Discount": 0.1 }, { "ProductID": 53, "UnitPrice": 26.2, - "Quantity": 20, - "Discount": 0 + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10313, - "EmployeeID": 2, - "OrderDate": "1996-09-24T00:00:00", - "RequiredDate": "1996-10-22T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", - "ShipVia": 2, - "Freight": 1.96, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10476, + "EmployeeID": 8, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", + "ShipVia": 3, + "Freight": 4.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 12, "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10314, + "OrderID": 10486, "EmployeeID": 1, - "OrderDate": "1996-09-25T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", "ShipVia": 2, - "Freight": 74.16, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 30.53, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 10.6, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 16, + "Discount": 0 + } + ] + }, + { + "OrderID": 10490, + "EmployeeID": 7, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-03T00:00:00", + "ShipVia": 2, + "Freight": 210.19, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, "Quantity": 30, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 36, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 42000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10315, - "EmployeeID": 4, - "OrderDate": "1996-09-26T00:00:00", - "RequiredDate": "1996-10-24T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", + "OrderID": 10498, + "EmployeeID": 8, + "OrderDate": "1997-04-07T00:00:00", + "RequiredDate": "1997-05-05T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 2, - "Freight": 41.76, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40301, - "ShipPostalCode": 32000, - "ShipCountry": "UK", + "Freight": 29.75, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 14, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10316, - "EmployeeID": 1, - "OrderDate": "1996-09-27T00:00:00", - "RequiredDate": "1996-10-25T00:00:00", - "ShippedDate": "1996-10-08T00:00:00", - "ShipVia": 3, - "Freight": 150.15, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10552, + "EmployeeID": 2, + "OrderDate": "1997-05-29T00:00:00", + "RequiredDate": "1997-06-26T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 1, + "Freight": 83.22, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 70, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10317, - "EmployeeID": 6, - "OrderDate": "1996-09-30T00:00:00", - "RequiredDate": "1996-10-28T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", + "OrderID": 10601, + "EmployeeID": 7, + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 58.3, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 20, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10318, - "EmployeeID": 8, - "OrderDate": "1996-10-01T00:00:00", - "RequiredDate": "1996-10-29T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderID": 10613, + "EmployeeID": 4, + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 4.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 30575, - "ShipPostalCode": 43000, - "ShipCountry": "UK", + "Freight": 8.11, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 6, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10319, - "EmployeeID": 7, - "OrderDate": "1996-10-02T00:00:00", - "RequiredDate": "1996-10-30T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", - "ShipVia": 3, - "Freight": 64.5, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10641, + "EmployeeID": 4, + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 2, + "Freight": 179.61, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 14, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10320, - "EmployeeID": 5, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-18T00:00:00", - "ShipVia": 3, - "Freight": 34.57, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10705, + "EmployeeID": 9, + "OrderDate": "1997-10-15T00:00:00", + "RequiredDate": "1997-11-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 3.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10321, + "OrderID": 10796, "EmployeeID": 3, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-31T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", - "ShipVia": 2, - "Freight": 3.43, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 80331, - "ShipPostalCode": 24000, - "ShipCountry": "UK", + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 1, + "Freight": 26.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 21, + "Discount": 0.2 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10322, - "EmployeeID": 7, - "OrderDate": "1996-10-04T00:00:00", - "RequiredDate": "1996-11-01T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", - "ShipVia": 3, - "Freight": 0.4, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 24, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10323, + "OrderID": 10863, "EmployeeID": 4, - "OrderDate": "1996-10-07T00:00:00", - "RequiredDate": "1996-11-04T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 1, - "Freight": 4.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 30.26, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 12.4, - "Quantity": 5, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 4, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 12, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10901, + "EmployeeID": 4, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", + "ShipVia": 1, + "Freight": 62.09, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10324, - "EmployeeID": 9, - "OrderDate": "1996-10-08T00:00:00", - "RequiredDate": "1996-11-05T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", - "ShipVia": 1, - "Freight": 214.27, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10957, + "EmployeeID": 8, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 105.36, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.16 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 70, - "Discount": 0.16 + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 30, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 8, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10960, + "EmployeeID": 3, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 2.08, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 80, - "Discount": 0.16 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10325, + "OrderID": 10976, "EmployeeID": 1, - "OrderDate": "1996-10-09T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 3, - "Freight": 64.86, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 1, + "Freight": 37.97, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 6, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 11055, + "EmployeeID": 7, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", + "ShipVia": 2, + "Freight": 120.92, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 12, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 9, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ - { - "OrderID": 10326, - "EmployeeID": 4, - "OrderDate": "1996-10-10T00:00:00", - "RequiredDate": "1996-11-07T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 2, - "Freight": 77.92, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 24, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 16, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 50, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] @@ -3611,1149 +3052,787 @@ ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 31000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", "Orders": [ { - "OrderID": 10327, - "EmployeeID": 2, - "OrderDate": "1996-10-11T00:00:00", - "RequiredDate": "1996-11-08T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", + "OrderID": 10258, + "EmployeeID": 1, + "OrderDate": "1996-07-17T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", "ShipVia": 1, - "Freight": 63.36, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", + "Freight": 140.51, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 11, - "UnitPrice": 16.8, "Quantity": 50, "Discount": 0.2 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 35, + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 65, "Discount": 0.2 }, { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10328, - "EmployeeID": 4, - "OrderDate": "1996-10-14T00:00:00", - "RequiredDate": "1996-11-11T00:00:00", - "ShippedDate": "1996-10-17T00:00:00", + "OrderID": 10263, + "EmployeeID": 9, + "OrderDate": "1996-07-23T00:00:00", + "RequiredDate": "1996-08-20T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", "ShipVia": 3, - "Freight": 87.03, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 146.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 36, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10329, - "EmployeeID": 4, - "OrderDate": "1996-10-15T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", - "ShipVia": 2, - "Freight": 191.67, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 10351, + "EmployeeID": 1, + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 162.33, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 10, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 20, "Discount": 0.06 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 13, + "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 20, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 77, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 12, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 10, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10330, - "EmployeeID": 3, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", - "ShipVia": 1, - "Freight": 12.75, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10368, + "EmployeeID": 2, + "OrderDate": "1996-11-29T00:00:00", + "RequiredDate": "1996-12-27T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 101.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 5, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 13, + "Discount": 0.1 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 25, - "Discount": 0.16 + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10331, - "EmployeeID": 9, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-27T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", + "OrderID": 10382, + "EmployeeID": 4, + "OrderDate": "1996-12-13T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1996-12-16T00:00:00", "ShipVia": 1, - "Freight": 10.19, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 94.77, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 32, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 49000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10332, - "EmployeeID": 3, - "OrderDate": "1996-10-17T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", - "ShipVia": 2, - "Freight": 52.84, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { "ProductID": 18, "UnitPrice": 50, - "Quantity": 40, - "Discount": 0.2 + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 16, - "Discount": 0.2 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10333, - "EmployeeID": 5, - "OrderDate": "1996-10-18T00:00:00", - "RequiredDate": "1996-11-15T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", - "ShipVia": 3, - "Freight": 0.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10390, + "EmployeeID": 6, + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-26T00:00:00", + "ShipVia": 1, + "Freight": 126.38, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 40, "Discount": 0.1 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 40, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10334, + "OrderID": 10402, "EmployeeID": 8, - "OrderDate": "1996-10-21T00:00:00", - "RequiredDate": "1996-11-18T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", + "OrderDate": "1997-01-02T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", "ShipVia": 2, - "Freight": 8.56, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 67.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 8, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 65, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10335, - "EmployeeID": 7, - "OrderDate": "1996-10-22T00:00:00", - "RequiredDate": "1996-11-19T00:00:00", - "ShippedDate": "1996-10-24T00:00:00", - "ShipVia": 2, - "Freight": 42.11, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10430, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-03T00:00:00", + "ShipVia": 1, + "Freight": 458.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 7, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 45, "Discount": 0.2 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 48, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10336, - "EmployeeID": 7, - "OrderDate": "1996-10-23T00:00:00", - "RequiredDate": "1996-11-20T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", + "OrderID": 10442, + "EmployeeID": 3, + "OrderDate": "1997-02-11T00:00:00", + "RequiredDate": "1997-03-11T00:00:00", + "ShippedDate": "1997-02-18T00:00:00", "ShipVia": 2, - "Freight": 15.51, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "Freight": 47.94, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 80, + "Discount": 0 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10337, - "EmployeeID": 4, - "OrderDate": "1996-10-24T00:00:00", - "RequiredDate": "1996-11-21T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", - "ShipVia": 3, - "Freight": 108.26, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10514, + "EmployeeID": 3, + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 2, + "Freight": 789.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 39, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 24, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 20, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 28, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 39, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10338, - "EmployeeID": 4, - "OrderDate": "1996-10-25T00:00:00", - "RequiredDate": "1996-11-22T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", + "OrderID": 10571, + "EmployeeID": 8, + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 3, - "Freight": 84.21, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 20, - "Discount": 0 + "Freight": 26.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 11, + "Discount": 0.16 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 15, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 46000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10339, + "OrderID": 10595, "EmployeeID": 2, - "OrderDate": "1996-10-28T00:00:00", - "RequiredDate": "1996-11-25T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 15.66, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 40000, - "ShipCountry": "Canada", + "OrderDate": "1997-07-10T00:00:00", + "RequiredDate": "1997-08-07T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 1, + "Freight": 96.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 120, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 28, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 65, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10340, - "EmployeeID": 1, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", + "OrderID": 10633, + "EmployeeID": 7, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-18T00:00:00", "ShipVia": 3, - "Freight": 166.31, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 477.9, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 13, + "Discount": 0.16 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 80, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10341, + "OrderID": 10667, "EmployeeID": 7, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", - "ShipVia": 3, - "Freight": 26.78, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 78.09, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 8, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 14, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10342, + "OrderID": 10698, "EmployeeID": 4, - "OrderDate": "1996-10-30T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 54.83, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-17T00:00:00", + "ShipVia": 1, + "Freight": 272.47, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 24, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 56, - "Discount": 0.2 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.06 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 65, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 8, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10343, - "EmployeeID": 4, - "OrderDate": "1996-10-31T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-11-06T00:00:00", - "ShipVia": 1, - "Freight": 110.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10764, + "EmployeeID": 6, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 3, + "Freight": 145.45, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 68, + "ProductID": 3, "UnitPrice": 10, - "Quantity": 4, - "Discount": 0.06 + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 130, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10344, - "EmployeeID": 4, - "OrderDate": "1996-11-01T00:00:00", - "RequiredDate": "1996-11-29T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", + "OrderID": 10771, + "EmployeeID": 9, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", "ShipVia": 2, - "Freight": 23.29, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 11.19, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 35, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 16, "Discount": 0 - }, - { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10345, - "EmployeeID": 2, - "OrderDate": "1996-11-04T00:00:00", - "RequiredDate": "1996-12-02T00:00:00", - "ShippedDate": "1996-11-11T00:00:00", - "ShipVia": 2, - "Freight": 249.06, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10773, + "EmployeeID": 1, + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1998-01-08T00:00:00", + "ShippedDate": "1997-12-16T00:00:00", + "ShipVia": 3, + "Freight": 96.43, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 33, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 80, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 70, + "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 9, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 7, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10346, - "EmployeeID": 3, - "OrderDate": "1996-11-05T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", + "OrderID": 10776, + "EmployeeID": 1, + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1998-01-12T00:00:00", + "ShippedDate": "1997-12-18T00:00:00", "ShipVia": 3, - "Freight": 142.08, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 351.53, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 36, - "Discount": 0.1 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10347, - "EmployeeID": 4, - "OrderDate": "1996-11-06T00:00:00", - "RequiredDate": "1996-12-04T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 3.1, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 4, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 27, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 120, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10348, - "EmployeeID": 4, - "OrderDate": "1996-11-07T00:00:00", - "RequiredDate": "1996-12-05T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", + "OrderID": 10795, + "EmployeeID": 8, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-20T00:00:00", "ShipVia": 2, - "Freight": 0.78, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 126.66, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 65, + "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 25, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10349, + "OrderID": 10836, "EmployeeID": 7, - "OrderDate": "1996-11-08T00:00:00", - "RequiredDate": "1996-12-06T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", "ShipVia": 1, - "Freight": 8.63, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 411.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 52, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, "Quantity": 24, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10350, - "EmployeeID": 6, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", - "ShipVia": 2, - "Freight": 64.19, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ + }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10351, - "EmployeeID": 1, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 162.33, + "OrderID": 10854, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-05T00:00:00", + "ShipVia": 2, + "Freight": 100.22, "ShipName": "Ernst Handel", "ShipAddress": "Kirchgasse 6", "ShipCity": "Graz", @@ -4761,450 +3840,329 @@ "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 100, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 13, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 77, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 65, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10352, + "OrderID": 10895, "EmployeeID": 3, - "OrderDate": "1996-11-12T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-18T00:00:00", - "ShipVia": 3, - "Freight": 1.3, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", + "ShipVia": 1, + "Freight": 162.75, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, + "UnitPrice": 4.5, + "Quantity": 110, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 91, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 100, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10353, - "EmployeeID": 7, - "OrderDate": "1996-11-13T00:00:00", - "RequiredDate": "1996-12-11T00:00:00", - "ShippedDate": "1996-11-25T00:00:00", + "OrderID": 10968, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-01T00:00:00", "ShipVia": 3, - "Freight": 360.63, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, + "Freight": 74.6, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10354, + "OrderID": 10979, "EmployeeID": 8, - "OrderDate": "1996-11-14T00:00:00", - "RequiredDate": "1996-12-12T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 3, - "Freight": 53.8, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-03-31T00:00:00", + "ShipVia": 2, + "Freight": 353.07, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 12, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 4, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 19000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10355, - "EmployeeID": 6, - "OrderDate": "1996-11-15T00:00:00", - "RequiredDate": "1996-12-13T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 41.95, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 37000, - "ShipCountry": "UK", - "OrderDetails": [ + }, { "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, + "UnitPrice": 4.5, + "Quantity": 80, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10356, - "EmployeeID": 6, - "OrderDate": "1996-11-18T00:00:00", - "RequiredDate": "1996-12-16T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 2, - "Freight": 36.71, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10990, + "EmployeeID": 2, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 3, + "Freight": 117.61, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 31, + "ProductID": 21, "UnitPrice": 10, - "Quantity": 30, + "Quantity": 65, "Discount": 0 }, + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 60, + "Discount": 0.16 + }, { "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 12, - "Discount": 0 + "UnitPrice": 24, + "Quantity": 65, + "Discount": 0.16 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 66, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10357, - "EmployeeID": 1, - "OrderDate": "1996-11-19T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 11008, + "EmployeeID": 7, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", "ShipVia": 3, - "Freight": 34.88, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 79.46, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 16, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 90, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 8, - "Discount": 0.2 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10358, - "EmployeeID": 5, - "OrderDate": "1996-11-20T00:00:00", - "RequiredDate": "1996-12-18T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 1, - "Freight": 19.64, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 11017, + "EmployeeID": 9, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 2, + "Freight": 754.26, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 110, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10359, - "EmployeeID": 5, - "OrderDate": "1996-11-21T00:00:00", - "RequiredDate": "1996-12-19T00:00:00", - "ShippedDate": "1996-11-26T00:00:00", - "ShipVia": 3, - "Freight": 288.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "OrderID": 11072, + "EmployeeID": 4, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShipVia": 2, + "Freight": 258.64, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 56, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 22, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 130, + "Discount": 0 } ] } ] }, { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", + "CustomerID": "CENTC", + "Company": "Centro comercial Moctezuma", + "ContactName": "Francisco Chang", "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", + "Address": "Sierras de Granada 9993", + "City": "México D.F.", + "PostalCode": 5022, + "Country": "Mexico", + "Phone": "(5) 555-3392", + "Fax": "(5) 555-7293", "Orders": [ { - "OrderID": 10360, + "OrderID": 10259, "EmployeeID": 4, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderDate": "1996-07-18T00:00:00", + "RequiredDate": "1996-08-15T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", "ShipVia": 3, - "Freight": 131.7, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 3.25, + "ShipName": "Centro comercial Moctezuma", + "ShipAddress": "Sierras de Granada 9993", + "ShipCity": "México D.F.", + "ShipPostalCode": 5022, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 210.8, + "ProductID": 21, + "UnitPrice": 8, "Quantity": 10, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 28, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 1, "Discount": 0 } ] @@ -5212,815 +4170,636 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, + "CustomerID": "OTTIK", + "Company": "Ottilies Käseladen", + "ContactName": "Henriette Pfalzheim", + "ContactTitle": "Owner", + "Address": "Mehrheimerstr. 369", + "City": "Köln", + "PostalCode": 50739, "Country": "Germany", - "Phone": "0372-035188", + "Phone": "0221-0644327", + "Fax": "0221-0765721", "Orders": [ { - "OrderID": 10361, - "EmployeeID": 1, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", - "ShipVia": 2, - "Freight": 183.17, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, + "OrderID": 10260, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-29T00:00:00", + "ShipVia": 1, + "Freight": 55.09, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 54, - "Discount": 0.1 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 16, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 55, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10362, - "EmployeeID": 3, - "OrderDate": "1996-11-25T00:00:00", - "RequiredDate": "1996-12-23T00:00:00", - "ShippedDate": "1996-11-28T00:00:00", - "ShipVia": 1, - "Freight": 96.04, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 11.2, + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 50, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10363, - "EmployeeID": 4, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1996-12-24T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", - "ShipVia": 3, - "Freight": 30.54, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, + "OrderID": 10407, + "EmployeeID": 2, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-04T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", + "ShipVia": 2, + "Freight": 91.48, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 12, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, "Discount": 0 }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ - { - "OrderID": 10364, - "EmployeeID": 1, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", - "ShipVia": 1, - "Freight": 71.97, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 20000, - "ShipCountry": "UK", - "OrderDetails": [ { "ProductID": 69, "UnitPrice": 28.8, - "Quantity": 30, + "Quantity": 15, "Discount": 0 }, { "ProductID": 71, "UnitPrice": 17.2, - "Quantity": 5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10365, - "EmployeeID": 3, - "OrderDate": "1996-11-27T00:00:00", - "RequiredDate": "1996-12-25T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 10508, + "EmployeeID": 1, + "OrderDate": "1997-04-16T00:00:00", + "RequiredDate": "1997-05-14T00:00:00", + "ShippedDate": "1997-05-13T00:00:00", "ShipVia": 2, - "Freight": 22, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "Freight": 4.99, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 24, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10366, - "EmployeeID": 8, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1996-12-30T00:00:00", - "ShipVia": 2, - "Freight": 10.14, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 10554, + "EmployeeID": 4, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 3, + "Freight": 120.97, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 5, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 }, { "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, - "Discount": 0 + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10367, - "EmployeeID": 7, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1996-12-26T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 10580, + "EmployeeID": 4, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-01T00:00:00", "ShipVia": 3, - "Freight": 13.55, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 75.89, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 36, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 18, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, + "Discount": 0.06 }, { "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0 + "UnitPrice": 21.05, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10368, - "EmployeeID": 2, - "OrderDate": "1996-11-29T00:00:00", - "RequiredDate": "1996-12-27T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 2, - "Freight": 101.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10684, + "EmployeeID": 3, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 1, + "Freight": 145.63, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 13, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10369, - "EmployeeID": 8, - "OrderDate": "1996-12-02T00:00:00", - "RequiredDate": "1996-12-30T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 2, - "Freight": 195.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 10766, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 157.55, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 20, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10370, + "OrderID": 10833, "EmployeeID": 6, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-27T00:00:00", + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 2, - "Freight": 1.17, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 71.49, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 9, + "Discount": 0.1 }, { - "ProductID": 74, - "UnitPrice": 8, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 9, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10999, + "EmployeeID": 6, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-01T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 96.35, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 21, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10371, - "EmployeeID": 1, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", - "ShipVia": 1, - "Freight": 0.45, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 11020, + "EmployeeID": 2, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 2, + "Freight": 43.3, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 24, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", + "CustomerID": "QUEDE", + "Company": "Que Delícia", + "ContactName": "Bernardo Batista", + "ContactTitle": "Accounting Manager", + "Address": "Rua da Panificadora, 12", "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, + "Region": "RJ", + "PostalCode": 2389, "Country": "Brazil", - "Phone": "(11) 555-1189", + "Phone": "(21) 555-4252", + "Fax": "(21) 555-4545", "Orders": [ { - "OrderID": 10372, - "EmployeeID": 5, - "OrderDate": "1996-12-04T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", + "OrderID": 10261, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-30T00:00:00", "ShipVia": 2, - "Freight": 890.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, + "Freight": 3.05, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 12, - "Discount": 0.25 - }, - { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 70, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 42, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10373, - "EmployeeID": 4, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-11T00:00:00", - "ShipVia": 3, - "Freight": 124.12, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10291, + "EmployeeID": 6, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-04T00:00:00", + "ShipVia": 2, + "Freight": 6.4, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 80, - "Discount": 0.2 + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 24, + "Discount": 0.1 + }, + { + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10374, - "EmployeeID": 1, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 3, - "Freight": 3.94, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10379, + "EmployeeID": 2, + "OrderDate": "1996-12-11T00:00:00", + "RequiredDate": "1997-01-08T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 1, + "Freight": 45.03, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 15, - "Discount": 0 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 16, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10375, - "EmployeeID": 3, - "OrderDate": "1996-12-06T00:00:00", - "RequiredDate": "1997-01-03T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 2, - "Freight": 20.12, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "OrderID": 10421, + "EmployeeID": 8, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-03-04T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 1, + "Freight": 99.23, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 15, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 4, + "Discount": 0.16 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0.16 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, "Quantity": 10, - "Discount": 0 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 34000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10376, + "OrderID": 10587, "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 2, - "Freight": 20.39, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 11000, - "ShipCountry": "Canada", + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 1, + "Freight": 62.52, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 42, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 13000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10377, - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 22.21, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 41000, - "ShipCountry": "UK", + "OrderID": 10647, + "EmployeeID": 4, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 2, + "Freight": 45.54, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 39, - "UnitPrice": 14.4, + "UnitPrice": 18, "Quantity": 20, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 27000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10378, - "EmployeeID": 5, - "OrderDate": "1996-12-10T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-19T00:00:00", - "ShipVia": 3, - "Freight": 5.44, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "OrderID": 10720, + "EmployeeID": 8, + "OrderDate": "1997-10-28T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 2, + "Freight": 9.53, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 + }, { "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 6, + "UnitPrice": 21.5, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10379, + "OrderID": 10794, + "EmployeeID": 6, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 1, + "Freight": 21.49, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, + "Discount": 0.2 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10989, "EmployeeID": 2, - "OrderDate": "1996-12-11T00:00:00", - "RequiredDate": "1997-01-08T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", "ShipVia": 1, - "Freight": 45.03, + "Freight": 34.76, "ShipName": "Que Delícia", "ShipAddress": "Rua da Panificadora, 12", "ShipCity": "Lyon", @@ -6029,982 +4808,767 @@ "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 16, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, + "Discount": 0 } ] } ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", "Orders": [ { - "OrderID": 10380, + "OrderID": 10262, "EmployeeID": 8, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderDate": "1996-07-22T00:00:00", + "RequiredDate": "1996-08-19T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", "ShipVia": 3, - "Freight": 35.03, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 48.29, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10381, - "EmployeeID": 3, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 7.99, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10272, + "EmployeeID": 6, + "OrderDate": "1996-08-02T00:00:00", + "RequiredDate": "1996-08-30T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", + "ShipVia": 2, + "Freight": 98.03, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 14, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10382, + "OrderID": 10294, "EmployeeID": 4, - "OrderDate": "1996-12-13T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1996-12-16T00:00:00", - "ShipVia": 1, - "Freight": 94.77, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderDate": "1996-08-30T00:00:00", + "RequiredDate": "1996-09-27T00:00:00", + "ShippedDate": "1996-09-05T00:00:00", + "ShipVia": 2, + "Freight": 147.26, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 32, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 9, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 14, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 50, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 25000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10383, - "EmployeeID": 8, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-18T00:00:00", - "ShipVia": 3, - "Freight": 34.24, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 36000, - "ShipCountry": "UK", + "OrderID": 10314, + "EmployeeID": 1, + "OrderDate": "1996-09-25T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 74.16, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 25, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 13000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10384, - "EmployeeID": 3, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", + "OrderID": 10316, + "EmployeeID": 1, + "OrderDate": "1996-09-27T00:00:00", + "RequiredDate": "1996-10-25T00:00:00", + "ShippedDate": "1996-10-08T00:00:00", "ShipVia": 3, - "Freight": 168.64, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 33000, - "ShipCountry": "Sweden", + "Freight": 150.15, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 28, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 70, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10385, - "EmployeeID": 1, - "OrderDate": "1996-12-17T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1996-12-23T00:00:00", - "ShipVia": 2, - "Freight": 30.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, + "OrderID": 10346, + "EmployeeID": 3, + "OrderDate": "1996-11-05T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 142.08, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 36, + "Discount": 0.1 }, { - "ProductID": 60, - "UnitPrice": 27.2, + "ProductID": 56, + "UnitPrice": 30.4, "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 8, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10386, - "EmployeeID": 9, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-25T00:00:00", - "ShipVia": 3, - "Freight": 13.99, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10401, + "EmployeeID": 1, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", + "ShipVia": 1, + "Freight": 12.51, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10387, - "EmployeeID": 1, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-15T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 2, - "Freight": 93.63, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10479, + "EmployeeID": 3, + "OrderDate": "1997-03-19T00:00:00", + "RequiredDate": "1997-04-16T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", + "ShipVia": 3, + "Freight": 708.95, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 6, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 28, "Discount": 0 }, { "ProductID": 59, "UnitPrice": 44, - "Quantity": 12, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 12000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10388, - "EmployeeID": 2, - "OrderDate": "1996-12-19T00:00:00", - "RequiredDate": "1997-01-16T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 1, - "Freight": 34.86, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 45000, - "ShipCountry": "UK", + "OrderID": 10564, + "EmployeeID": 4, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-08T00:00:00", + "ShippedDate": "1997-06-16T00:00:00", + "ShipVia": 3, + "Freight": 13.75, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 7.6, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10569, + "EmployeeID": 5, + "OrderDate": "1997-06-16T00:00:00", + "RequiredDate": "1997-07-14T00:00:00", + "ShippedDate": "1997-07-11T00:00:00", + "ShipVia": 1, + "Freight": 58.98, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0.2 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 40, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 26000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10389, - "EmployeeID": 4, - "OrderDate": "1996-12-20T00:00:00", - "RequiredDate": "1997-01-17T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", - "ShipVia": 2, - "Freight": 47.42, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10598, + "EmployeeID": 1, + "OrderDate": "1997-07-14T00:00:00", + "RequiredDate": "1997-08-11T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", + "ShipVia": 3, + "Freight": 44.42, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 16, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 15, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 9, "Discount": 0 + } + ] + }, + { + "OrderID": 10761, + "EmployeeID": 5, + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 2, + "Freight": 18.66, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 20, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10820, + "EmployeeID": 3, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 37.52, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 12, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10390, - "EmployeeID": 6, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-26T00:00:00", + "OrderID": 10852, + "EmployeeID": 8, + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 126.38, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 174.05, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 45, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 50, + "Discount": 0 + } + ] + }, + { + "OrderID": 10889, + "EmployeeID": 9, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", + "ShipVia": 3, + "Freight": 280.61, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10391, + "OrderID": 10988, "EmployeeID": 3, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-31T00:00:00", - "ShipVia": 3, - "Freight": 5.45, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 61.14, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 18, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10392, + "OrderID": 11000, "EmployeeID": 2, - "OrderDate": "1996-12-24T00:00:00", - "RequiredDate": "1997-01-21T00:00:00", - "ShippedDate": "1997-01-01T00:00:00", - "ShipVia": 3, - "Freight": 122.46, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10393, - "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", "ShipVia": 3, - "Freight": 126.56, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "Freight": 55.12, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, + "ProductID": 4, + "UnitPrice": 22, "Quantity": 25, "Discount": 0.25 }, { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 42, - "Discount": 0.25 - }, - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 7, - "Discount": 0.25 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 70, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 32, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10394, + "OrderID": 11077, "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 3, - "Freight": 30.34, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShipVia": 2, + "Freight": 8.53, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 24, + "Discount": 0.2 + }, + { + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 1, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10395, - "EmployeeID": 6, - "OrderDate": "1996-12-26T00:00:00", - "RequiredDate": "1997-01-23T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 1, - "Freight": 184.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ + }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 1, + "Discount": 0.02 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 70, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 1, + "Discount": 0.06 + }, + { + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 2, "Discount": 0.1 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 8, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 1, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10396, - "EmployeeID": 1, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1997-01-06T00:00:00", - "ShipVia": 3, - "Freight": 135.35, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ + }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 2, + "Discount": 0.06 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 21, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 1, + "Discount": 0.04 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 2, + "Discount": 0.04 + }, + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 1, + "Discount": 0.04 + }, + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 2, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ - { - "OrderID": 10397, - "EmployeeID": 5, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-24T00:00:00", - "ShippedDate": "1997-01-02T00:00:00", - "ShipVia": 1, - "Freight": 60.26, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", - "OrderDetails": [ + }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 1, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 18, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10398, - "EmployeeID": 2, - "OrderDate": "1996-12-30T00:00:00", - "RequiredDate": "1997-01-27T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 89.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.06 + }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 30, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10399, - "EmployeeID": 8, - "OrderDate": "1996-12-31T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", - "ShipVia": 3, - "Freight": 27.36, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 3, + "Discount": 0.02 + }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 35, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 2, + "Discount": 0.04 + }, + { + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 2, + "Discount": 0.0099999998 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 4, "Discount": 0 }, { "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 14, + "UnitPrice": 13, + "Quantity": 2, "Discount": 0 } ] @@ -7012,1094 +5576,932 @@ ] }, { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 47000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 36000, + "Country": "Sweden", + "Phone": "0695-34 67 21", "Orders": [ { - "OrderID": 10400, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderID": 10264, + "EmployeeID": 6, + "OrderDate": "1996-07-24T00:00:00", + "RequiredDate": "1996-08-21T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", "ShipVia": 3, - "Freight": 83.93, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "Freight": 3.67, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 15000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 35, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10401, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", + "OrderID": 10327, + "EmployeeID": 2, + "OrderDate": "1996-10-11T00:00:00", + "RequiredDate": "1996-11-08T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", "ShipVia": 1, - "Freight": 12.51, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 63.36, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 70, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 50, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 35, + "Discount": 0.2 }, + { + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10378, + "EmployeeID": 5, + "OrderDate": "1996-12-10T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-19T00:00:00", + "ShipVia": 3, + "Freight": 5.44, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", + "OrderDetails": [ { "ProductID": 71, "UnitPrice": 17.2, - "Quantity": 60, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10402, - "EmployeeID": 8, - "OrderDate": "1997-01-02T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", + "OrderID": 10434, + "EmployeeID": 3, + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-02-13T00:00:00", "ShipVia": 2, - "Freight": 67.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 17.92, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 10000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 60, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 65, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 18, + "Discount": 0.16 } ] }, { - "OrderID": 10403, - "EmployeeID": 4, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 73.79, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10460, + "EmployeeID": 8, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 1, + "Freight": 16.27, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 44000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, + "ProductID": 68, + "UnitPrice": 10, "Quantity": 21, - "Discount": 0.16 + "Discount": 0.25 }, { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 4, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10404, - "EmployeeID": 2, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", + "OrderID": 10533, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-22T00:00:00", "ShipVia": 1, - "Freight": 155.97, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 188.04, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, "Discount": 0.06 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 24, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10405, - "EmployeeID": 1, - "OrderDate": "1997-01-06T00:00:00", - "RequiredDate": "1997-02-03T00:00:00", - "ShippedDate": "1997-01-22T00:00:00", - "ShipVia": 1, - "Freight": 34.82, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10406, - "EmployeeID": 7, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-13T00:00:00", - "ShipVia": 1, - "Freight": 108.04, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10561, + "EmployeeID": 2, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 2, + "Freight": 242.21, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 18000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, + "ProductID": 44, + "UnitPrice": 19.45, "Quantity": 10, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 42, - "Discount": 0.1 - }, - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10407, - "EmployeeID": 2, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-04T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", + "OrderID": 10703, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-10-20T00:00:00", "ShipVia": 2, - "Freight": 91.48, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 152.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 22000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10408, - "EmployeeID": 8, - "OrderDate": "1997-01-08T00:00:00", - "RequiredDate": "1997-02-05T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", + "OrderID": 10762, + "EmployeeID": 3, + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", "ShipVia": 1, - "Freight": 11.26, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 328.74, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10409, - "EmployeeID": 3, - "OrderDate": "1997-01-09T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", + "OrderID": 10774, + "EmployeeID": 4, + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", "ShipVia": 1, - "Freight": 29.83, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 48.2, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 20000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 12, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 2, + "Discount": 0.25 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 12, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 28000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10410, - "EmployeeID": 3, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", - "ShipVia": 3, - "Freight": 2.4, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 30000, - "ShipCountry": "Canada", + "OrderID": 10824, + "EmployeeID": 8, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 1.23, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 23000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 49, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 16, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 9, "Discount": 0 } ] }, { - "OrderID": 10411, - "EmployeeID": 9, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-21T00:00:00", - "ShipVia": 3, - "Freight": 23.65, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 10000, - "ShipCountry": "Canada", + "OrderID": 10880, + "EmployeeID": 7, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 88.01, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 26000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 25, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 40, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 50, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10412, + "OrderID": 10902, + "EmployeeID": 1, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", + "ShipVia": 1, + "Freight": 44.15, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 33000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 6, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10955, "EmployeeID": 8, - "OrderDate": "1997-01-13T00:00:00", - "RequiredDate": "1997-02-10T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 3.77, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 3.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 47000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10413, - "EmployeeID": 3, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", - "ShipVia": 2, - "Freight": 95.66, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10977, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 3, + "Freight": 208.5, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 24, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 14, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10414, - "EmployeeID": 2, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-17T00:00:00", - "ShipVia": 3, - "Freight": 21.48, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10980, + "EmployeeID": 4, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 1, + "Freight": 1.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, - "Discount": 0.06 - }, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10993, + "EmployeeID": 7, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 3, + "Freight": 8.81, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 15000, + "ShipCountry": "Sweden", + "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11001, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 2, + "Freight": 197.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 14000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] + }, + { + "OrderID": 11050, + "EmployeeID": 8, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", + "ShipVia": 2, + "Freight": 59.41, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.1 + } + ] } ] }, { - "CustomerID": "HUNGC", - "Company": "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": "BLONP", + "Company": "Blondesddsl père et fils", + "ContactName": "Frédérique Citeaux", + "ContactTitle": "Marketing Manager", + "Address": "24, place Kléber", + "City": "Strasbourg", + "PostalCode": 67000, + "Country": "France", + "Phone": "88.60.15.31", + "Fax": "88.60.15.32", "Orders": [ { - "OrderID": 10415, - "EmployeeID": 3, - "OrderDate": "1997-01-15T00:00:00", - "RequiredDate": "1997-02-12T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", + "OrderID": 10265, + "EmployeeID": 2, + "OrderDate": "1996-07-25T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", "ShipVia": 1, - "Freight": 0.2, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "Freight": 55.28, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 17, "UnitPrice": 31.2, - "Quantity": 2, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 70, + "UnitPrice": 12, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10416, - "EmployeeID": 8, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 3, - "Freight": 22.72, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10297, + "EmployeeID": 5, + "OrderDate": "1996-09-04T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", + "ShipVia": 2, + "Freight": 5.74, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, + "ProductID": 72, + "UnitPrice": 27.8, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10417, + "OrderID": 10360, "EmployeeID": 4, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-28T00:00:00", + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", "ShipVia": 3, - "Freight": 70.29, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 131.7, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, + "ProductID": 49, + "UnitPrice": 16, "Quantity": 35, "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 28, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10418, - "EmployeeID": 4, - "OrderDate": "1997-01-17T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", - "ShipVia": 1, - "Freight": 17.55, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10436, + "EmployeeID": 3, + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-11T00:00:00", + "ShipVia": 2, + "Freight": 156.66, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 60, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 55, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 24, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10449, + "EmployeeID": 3, + "OrderDate": "1997-02-18T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-27T00:00:00", + "ShipVia": 2, + "Freight": 53.3, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 16, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10419, - "EmployeeID": 4, - "OrderDate": "1997-01-20T00:00:00", - "RequiredDate": "1997-02-17T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", - "ShipVia": 2, - "Freight": 137.35, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10559, + "EmployeeID": 6, + "OrderDate": "1997-06-05T00:00:00", + "RequiredDate": "1997-07-03T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 1, + "Freight": 8.05, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 60, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 18, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10420, - "EmployeeID": 3, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10566, + "EmployeeID": 9, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", "ShipVia": 1, - "Freight": 44.12, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 88.4, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 77.6, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 18, + "Discount": 0.16 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10421, - "EmployeeID": 8, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-03-04T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10584, + "EmployeeID": 4, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 1, - "Freight": 99.23, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 59.14, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 4, - "Discount": 0.16 - }, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10628, + "EmployeeID": 4, + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 30.36, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 10, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10422, - "EmployeeID": 2, - "OrderDate": "1997-01-22T00:00:00", - "RequiredDate": "1997-02-19T00:00:00", - "ShippedDate": "1997-01-31T00:00:00", - "ShipVia": 1, - "Freight": 3.02, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10679, + "EmployeeID": 8, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 27.94, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 2, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10423, + "OrderID": 10826, "EmployeeID": 6, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", - "ShipVia": 3, - "Freight": 24.5, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 1, + "Freight": 7.09, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 31, - "UnitPrice": 10, - "Quantity": 14, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 20, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 } ] @@ -8107,599 +6509,459 @@ ] }, { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 11000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", + "CustomerID": "WARTH", + "Company": "Wartian Herkku", + "ContactName": "Pirkko Koskitalo", + "ContactTitle": "Accounting Manager", + "Address": "Torikatu 38", + "City": "Oulu", + "PostalCode": 90110, + "Country": "Finland", + "Phone": "981-443655", + "Fax": "981-443655", "Orders": [ { - "OrderID": 10424, - "EmployeeID": 7, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-20T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 2, - "Freight": 370.61, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "OrderID": 10266, + "EmployeeID": 3, + "OrderDate": "1996-07-26T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 25.73, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0.2 - }, + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 12, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10270, + "EmployeeID": 1, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 1, + "Freight": 136.54, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 49, - "Discount": 0.2 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10425, - "EmployeeID": 6, - "OrderDate": "1997-01-24T00:00:00", - "RequiredDate": "1997-02-21T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 7.93, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10320, + "EmployeeID": 5, + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-18T00:00:00", + "ShipVia": 3, + "Freight": 34.57, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 10, - "Discount": 0.25 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10426, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-02-06T00:00:00", - "ShipVia": 1, - "Freight": 18.69, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 10333, + "EmployeeID": 5, + "OrderDate": "1996-10-18T00:00:00", + "RequiredDate": "1996-11-15T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", + "ShipVia": 3, + "Freight": 0.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 5, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 7, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 40, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10427, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 10412, + "EmployeeID": 8, + "OrderDate": "1997-01-13T00:00:00", + "RequiredDate": "1997-02-10T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", "ShipVia": 2, - "Freight": 31.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 3.77, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { "ProductID": 14, "UnitPrice": 18.6, - "Quantity": 35, - "Discount": 0 + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10428, - "EmployeeID": 7, - "OrderDate": "1997-01-28T00:00:00", - "RequiredDate": "1997-02-25T00:00:00", - "ShippedDate": "1997-02-04T00:00:00", - "ShipVia": 1, - "Freight": 11.09, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10416, + "EmployeeID": 8, + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 3, + "Freight": 22.72, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10429, - "EmployeeID": 3, - "OrderDate": "1997-01-29T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", - "ShipVia": 2, - "Freight": 56.63, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ + }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 40, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10430, - "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-03T00:00:00", + "OrderID": 10437, + "EmployeeID": 8, + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-12T00:00:00", "ShipVia": 1, - "Freight": 458.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 19.97, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10455, + "EmployeeID": 8, + "OrderDate": "1997-02-24T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 2, + "Freight": 180.45, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 53, + "UnitPrice": 26.2, "Quantity": 50, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.2 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 46000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10431, + "OrderID": 10526, "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-15T00:00:00", "ShipVia": 2, - "Freight": 44.17, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 16000, - "ShipCountry": "Canada", + "Freight": 58.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 7.6, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10432, - "EmployeeID": 3, - "OrderDate": "1997-01-31T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderID": 10553, + "EmployeeID": 2, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-03T00:00:00", "ShipVia": 2, - "Freight": 4.34, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 149.49, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 10, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10433, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", - "ShipVia": 3, - "Freight": 73.83, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10583, + "EmployeeID": 2, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 2, + "Freight": 7.28, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 28, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 40000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10434, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-02-13T00:00:00", - "ShipVia": 2, - "Freight": 17.92, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 10000, - "ShipCountry": "Sweden", - "OrderDetails": [ + }, { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 18, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ + }, { - "OrderID": 10435, - "EmployeeID": 8, - "OrderDate": "1997-02-04T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", - "ShipVia": 2, - "Freight": 9.21, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 38000, - "ShipCountry": "UK", + "OrderID": 10636, + "EmployeeID": 4, + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 1.15, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 12, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 10, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10436, - "EmployeeID": 3, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-11T00:00:00", - "ShipVia": 2, - "Freight": 156.66, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10750, + "EmployeeID": 9, + "OrderDate": "1997-11-21T00:00:00", + "RequiredDate": "1997-12-19T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 79.3, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 14, + "UnitPrice": 23.25, "Quantity": 5, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 30.4, + "ProductID": 45, + "UnitPrice": 9.5, "Quantity": 40, - "Discount": 0.1 + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10781, + "EmployeeID": 2, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 3, + "Freight": 73.16, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10437, - "EmployeeID": 8, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-12T00:00:00", - "ShipVia": 1, - "Freight": 19.97, + "OrderID": 11025, + "EmployeeID": 6, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 3, + "Freight": 29.17, "ShipName": "Wartian Herkku", "ShipAddress": "Torikatu 38", "ShipCity": "Oulu", @@ -8707,709 +6969,557 @@ "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", + "CustomerID": "FRANK", + "Company": "Frankenversand", + "ContactName": "Peter Franken", "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, + "Address": "Berliner Platz 43", + "City": "München", + "PostalCode": 80805, "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", + "Phone": "089-0877310", + "Fax": "089-0877451", "Orders": [ { - "OrderID": 10438, - "EmployeeID": 3, - "OrderDate": "1997-02-06T00:00:00", - "RequiredDate": "1997-03-06T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 8.24, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, + "OrderID": 10267, + "EmployeeID": 4, + "OrderDate": "1996-07-29T00:00:00", + "RequiredDate": "1996-08-26T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", + "ShipVia": 1, + "Freight": 208.58, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 15.6, + "ProductID": 76, + "UnitPrice": 14.4, "Quantity": 15, - "Discount": 0.2 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 38000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10439, - "EmployeeID": 6, - "OrderDate": "1997-02-07T00:00:00", - "RequiredDate": "1997-03-07T00:00:00", - "ShippedDate": "1997-02-10T00:00:00", + "OrderID": 10337, + "EmployeeID": 4, + "OrderDate": "1996-10-24T00:00:00", + "RequiredDate": "1996-11-21T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", "ShipVia": 3, - "Freight": 4.07, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "Freight": 108.26, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 15, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 16, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 6, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 30, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10440, + "OrderID": 10342, "EmployeeID": 4, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-10T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", + "OrderDate": "1996-10-30T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", "ShipVia": 2, - "Freight": 86.53, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 54.83, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 15.2, - "Quantity": 45, - "Discount": 0.16 + "Quantity": 24, + "Discount": 0.2 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 49, - "Discount": 0.16 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 56, + "Discount": 0.2 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 90, - "Discount": 0.16 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10441, - "EmployeeID": 3, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-24T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 2, - "Freight": 73.02, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10396, + "EmployeeID": 1, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1997-01-06T00:00:00", + "ShipVia": 3, + "Freight": 135.35, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 50, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10442, - "EmployeeID": 3, - "OrderDate": "1997-02-11T00:00:00", - "RequiredDate": "1997-03-11T00:00:00", - "ShippedDate": "1997-02-18T00:00:00", - "ShipVia": 2, - "Freight": 47.94, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10488, + "EmployeeID": 8, + "OrderDate": "1997-03-27T00:00:00", + "RequiredDate": "1997-04-24T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, + "ProductID": 59, + "UnitPrice": 44, "Quantity": 30, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 80, - "Discount": 0 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 60, - "Discount": 0 + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10443, + "OrderID": 10560, "EmployeeID": 8, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", "ShipVia": 1, - "Freight": 13.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 36.65, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 19000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10444, - "EmployeeID": 3, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-21T00:00:00", - "ShipVia": 3, - "Freight": 3.5, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 21000, - "ShipCountry": "Sweden", + "OrderID": 10623, + "EmployeeID": 8, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", + "ShipVia": 2, + "Freight": 97.18, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 10, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, + "ProductID": 19, + "UnitPrice": 9.2, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 8, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 35, + "UnitPrice": 18, "Quantity": 30, - "Discount": 0 + "Discount": 0.1 } ] }, { - "OrderID": 10445, - "EmployeeID": 3, - "OrderDate": "1997-02-13T00:00:00", - "RequiredDate": "1997-03-13T00:00:00", - "ShippedDate": "1997-02-20T00:00:00", + "OrderID": 10653, + "EmployeeID": 1, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", "ShipVia": 1, - "Freight": 9.3, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 11000, - "ShipCountry": "Sweden", + "Freight": 93.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10446, - "EmployeeID": 6, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-02-19T00:00:00", + "OrderID": 10670, + "EmployeeID": 4, + "OrderDate": "1997-09-16T00:00:00", + "RequiredDate": "1997-10-14T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", "ShipVia": 1, - "Freight": 14.68, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, + "Freight": 203.48, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 12, - "Discount": 0.1 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 32, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 15, - "Discount": 0.1 - } + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 25, + "Discount": 0 + } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10447, - "EmployeeID": 4, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-03-07T00:00:00", + "OrderID": 10675, + "EmployeeID": 5, + "OrderDate": "1997-09-19T00:00:00", + "RequiredDate": "1997-10-17T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", "ShipVia": 2, - "Freight": 68.66, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 31.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 40, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 35, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10448, - "EmployeeID": 4, - "OrderDate": "1997-02-17T00:00:00", - "RequiredDate": "1997-03-17T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", + "OrderID": 10717, + "EmployeeID": 1, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 2, - "Freight": 38.82, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 59.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 6, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 32, + "Discount": 0.06 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10449, - "EmployeeID": 3, - "OrderDate": "1997-02-18T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-27T00:00:00", + "OrderID": 10791, + "EmployeeID": 6, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-01T00:00:00", "ShipVia": 2, - "Freight": 53.3, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 16.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 14, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 52, - "UnitPrice": 5.6, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10450, - "EmployeeID": 8, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-19T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", + "OrderID": 10859, + "EmployeeID": 1, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", "ShipVia": 2, - "Freight": 7.23, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 76.1, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 40, + "Discount": 0.25 }, { "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, - "Discount": 0.2 + "UnitPrice": 7.45, + "Quantity": 35, + "Discount": 0.25 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10451, - "EmployeeID": 4, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", - "ShipVia": 3, - "Freight": 189.09, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, + "OrderID": 10929, + "EmployeeID": 6, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 1, + "Freight": 33.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 49, + "Discount": 0 }, { "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 55, - "Discount": 0.1 + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10452, - "EmployeeID": 8, - "OrderDate": "1997-02-20T00:00:00", - "RequiredDate": "1997-03-20T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", - "ShipVia": 1, - "Freight": 140.26, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11012, + "EmployeeID": 1, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 3, + "Freight": 242.95, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 15, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 100, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 36, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, "Discount": 0.06 } ] @@ -9417,8638 +7527,2449 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 44000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "CustomerID": "GROSR", + "Company": "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", "Orders": [ { - "OrderID": 10453, - "EmployeeID": 1, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", - "ShipVia": 2, - "Freight": 25.36, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 46000, - "ShipCountry": "UK", + "OrderID": 10268, + "EmployeeID": 8, + "OrderDate": "1996-07-30T00:00:00", + "RequiredDate": "1996-08-27T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 3, + "Freight": 66.29, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10454, - "EmployeeID": 4, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-25T00:00:00", + "OrderID": 10785, + "EmployeeID": 1, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", "ShipVia": 3, - "Freight": 2.74, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 1.51, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 10, - "Discount": 0.2 + "Discount": 0 } ] } ] }, { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", + "CustomerID": "WHITC", + "Company": "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", "Orders": [ { - "OrderID": 10455, - "EmployeeID": 8, - "OrderDate": "1997-02-24T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", - "ShipVia": 2, - "Freight": 180.45, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10269, + "EmployeeID": 5, + "OrderDate": "1996-07-31T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", + "ShipVia": 1, + "Freight": 4.56, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 50, - "Discount": 0 - }, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10344, + "EmployeeID": 4, + "OrderDate": "1996-11-01T00:00:00", + "RequiredDate": "1996-11-29T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", + "ShipVia": 2, + "Freight": 23.29, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 25, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10456, - "EmployeeID": 8, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 8.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10469, + "EmployeeID": 1, + "OrderDate": "1997-03-10T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 1, + "Freight": 60.18, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 40, "Discount": 0.16 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 21, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 2, "Discount": 0.16 } ] }, { - "OrderID": 10457, - "EmployeeID": 2, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-03-25T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", - "ShipVia": 1, - "Freight": 11.57, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10483, + "EmployeeID": 7, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-25T00:00:00", + "ShipVia": 2, + "Freight": 15.28, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 36, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 35, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10458, - "EmployeeID": 7, - "OrderDate": "1997-02-26T00:00:00", - "RequiredDate": "1997-03-26T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", + "OrderID": 10504, + "EmployeeID": 4, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-18T00:00:00", "ShipVia": 3, - "Freight": 147.06, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 59.13, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 15, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10459, - "EmployeeID": 4, - "OrderDate": "1997-02-27T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 25.09, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 31000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10460, + "OrderID": 10596, "EmployeeID": 8, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", "ShipVia": 1, - "Freight": 16.27, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 44000, - "ShipCountry": "Sweden", + "Freight": 16.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0.2 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 24, + "Discount": 0.2 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 4, - "Discount": 0.25 + "UnitPrice": 7.75, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10461, - "EmployeeID": 1, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-05T00:00:00", + "OrderID": 10693, + "EmployeeID": 3, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-10-10T00:00:00", "ShipVia": 3, - "Freight": 148.61, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 139.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 28, - "Discount": 0.25 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 60, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 34000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ - { - "OrderID": 10462, - "EmployeeID": 2, - "OrderDate": "1997-03-03T00:00:00", - "RequiredDate": "1997-03-31T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 1, - "Freight": 6.17, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", - "OrderDetails": [ + "Discount": 0.16 + }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 1, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 21, - "Discount": 0 + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10463, - "EmployeeID": 5, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-06T00:00:00", + "OrderID": 10696, + "EmployeeID": 8, + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", "ShipVia": 3, - "Freight": 14.78, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 102.55, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 21, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 50, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10464, - "EmployeeID": 4, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 2, - "Freight": 89, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 16, - "Discount": 0.2 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10465, - "EmployeeID": 1, - "OrderDate": "1997-03-05T00:00:00", - "RequiredDate": "1997-04-02T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 3, - "Freight": 145.04, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 45, - "UnitPrice": 7.6, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ - { - "OrderID": 10466, - "EmployeeID": 4, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-13T00:00:00", - "ShipVia": 1, - "Freight": 11.93, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10467, - "EmployeeID": 8, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10468, + "OrderID": 10723, "EmployeeID": 3, - "OrderDate": "1997-03-07T00:00:00", - "RequiredDate": "1997-04-04T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", - "ShipVia": 3, - "Freight": 44.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ - { - "OrderID": 10469, - "EmployeeID": 1, - "OrderDate": "1997-03-10T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-11-27T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", "ShipVia": 1, - "Freight": 60.18, + "Freight": 21.72, "ShipName": "White Clover Markets", "ShipAddress": "1029 - 12th Ave. S.", "ShipCity": "Seattle", "ShipRegion": "WA", "ShipPostalCode": 98124, "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 2, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10470, - "EmployeeID": 4, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 2, - "Freight": 64.56, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 8, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 26000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10471, - "EmployeeID": 2, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 3, - "Freight": 45.59, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10472, - "EmployeeID": 8, - "OrderDate": "1997-03-12T00:00:00", - "RequiredDate": "1997-04-09T00:00:00", - "ShippedDate": "1997-03-19T00:00:00", - "ShipVia": 1, - "Freight": 4.2, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 33000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 80, - "Discount": 0.06 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 41000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10473, - "EmployeeID": 1, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 3, - "Freight": 16.37, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60471, - "ShipPostalCode": 37000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10474, - "EmployeeID": 5, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-04-10T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 2, - "Freight": 83.49, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10475, - "EmployeeID": 9, - "OrderDate": "1997-03-14T00:00:00", - "RequiredDate": "1997-04-11T00:00:00", - "ShippedDate": "1997-04-04T00:00:00", - "ShipVia": 1, - "Freight": 68.52, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 42, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10476, - "EmployeeID": 8, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", - "ShipVia": 3, - "Freight": 4.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ - { - "OrderID": 10477, - "EmployeeID": 5, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", - "ShipVia": 2, - "Freight": 13.02, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 21, - "Discount": 0.25 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10478, - "EmployeeID": 2, - "OrderDate": "1997-03-18T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-26T00:00:00", - "ShipVia": 3, - "Freight": 4.81, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10479, - "EmployeeID": 3, - "OrderDate": "1997-03-19T00:00:00", - "RequiredDate": "1997-04-16T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 3, - "Freight": 708.95, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ - { - "OrderID": 10480, - "EmployeeID": 6, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ - { - "OrderID": 10481, - "EmployeeID": 8, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", - "ShipVia": 2, - "Freight": 64.33, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "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", - "Orders": [ - { - "OrderID": 10482, - "EmployeeID": 1, - "OrderDate": "1997-03-21T00:00:00", - "RequiredDate": "1997-04-18T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 7.48, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ - { - "OrderID": 10483, - "EmployeeID": 7, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-25T00:00:00", - "ShipVia": 2, - "Freight": 15.28, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 35, - "Discount": 0.06 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 30, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 46000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10484, - "EmployeeID": 3, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-01T00:00:00", - "ShipVia": 3, - "Freight": 6.88, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 31000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10485, - "EmployeeID": 4, - "OrderDate": "1997-03-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-31T00:00:00", - "ShipVia": 2, - "Freight": 64.45, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 60, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10486, - "EmployeeID": 1, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", - "ShipVia": 2, - "Freight": 30.53, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 16, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10487, - "EmployeeID": 2, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-03-28T00:00:00", - "ShipVia": 2, - "Freight": 71.07, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10488, - "EmployeeID": 8, - "OrderDate": "1997-03-27T00:00:00", - "RequiredDate": "1997-04-24T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10489, - "EmployeeID": 6, - "OrderDate": "1997-03-28T00:00:00", - "RequiredDate": "1997-04-25T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 5.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10490, - "EmployeeID": 7, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-03T00:00:00", - "ShipVia": 2, - "Freight": 210.19, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 36, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ - { - "OrderID": 10491, - "EmployeeID": 8, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-08T00:00:00", - "ShipVia": 3, - "Freight": 16.96, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 33000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ - { - "OrderID": 10492, - "EmployeeID": 3, - "OrderDate": "1997-04-01T00:00:00", - "RequiredDate": "1997-04-29T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 1, - "Freight": 62.89, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 16000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 60, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10493, - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 10.64, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 10, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ - { - "OrderID": 10494, - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 65.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 24000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ - { - "OrderID": 10495, - "EmployeeID": 3, - "OrderDate": "1997-04-03T00:00:00", - "RequiredDate": "1997-05-01T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 3, - "Freight": 4.65, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 33000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10496, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 2, - "Freight": 46.77, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10497, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 1, - "Freight": 36.21, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10498, - "EmployeeID": 8, - "OrderDate": "1997-04-07T00:00:00", - "RequiredDate": "1997-05-05T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 2, - "Freight": 29.75, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10499, - "EmployeeID": 4, - "OrderDate": "1997-04-08T00:00:00", - "RequiredDate": "1997-05-06T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 102.02, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10500, - "EmployeeID": 6, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-17T00:00:00", - "ShipVia": 1, - "Freight": 42.68, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10501, - "EmployeeID": 9, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 3, - "Freight": 8.85, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10502, - "EmployeeID": 2, - "OrderDate": "1997-04-10T00:00:00", - "RequiredDate": "1997-05-08T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 69.32, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10503, - "EmployeeID": 6, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 16.74, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ - { - "OrderID": 10504, - "EmployeeID": 4, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-18T00:00:00", - "ShipVia": 3, - "Freight": 59.13, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 47000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10505, - "EmployeeID": 3, - "OrderDate": "1997-04-14T00:00:00", - "RequiredDate": "1997-05-12T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 7.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 11000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10506, - "EmployeeID": 9, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 21.19, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 14, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10507, - "EmployeeID": 7, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-04-22T00:00:00", - "ShipVia": 1, - "Freight": 47.45, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 15, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10508, - "EmployeeID": 1, - "OrderDate": "1997-04-16T00:00:00", - "RequiredDate": "1997-05-14T00:00:00", - "ShippedDate": "1997-05-13T00:00:00", - "ShipVia": 2, - "Freight": 4.99, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10509, - "EmployeeID": 4, - "OrderDate": "1997-04-17T00:00:00", - "RequiredDate": "1997-05-15T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 0.15, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10510, - "EmployeeID": 6, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", - "ShipVia": 3, - "Freight": 367.63, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 36, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10511, - "EmployeeID": 4, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 350.64, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.16 - }, - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 50, - "Discount": 0.16 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10512, - "EmployeeID": 7, - "OrderDate": "1997-04-21T00:00:00", - "RequiredDate": "1997-05-19T00:00:00", - "ShippedDate": "1997-04-24T00:00:00", - "ShipVia": 2, - "Freight": 3.53, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.16 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 9, - "Discount": 0.16 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.16 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 12, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ - { - "OrderID": 10513, - "EmployeeID": 7, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-06-03T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", - "ShipVia": 1, - "Freight": 105.65, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.2 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, - "Discount": 0.2 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 15, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10514, - "EmployeeID": 3, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", - "ShipVia": 2, - "Freight": 789.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 39, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 39, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10515, - "EmployeeID": 2, - "OrderDate": "1997-04-23T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 1, - "Freight": 204.47, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 16, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 120, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0.16 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 84, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10516, - "EmployeeID": 2, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 62.78, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 80, - "Discount": 0.1 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 17000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ - { - "OrderID": 10517, - "EmployeeID": 3, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 3, - "Freight": 32.07, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 16000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ - { - "OrderID": 10518, - "EmployeeID": 4, - "OrderDate": "1997-04-25T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-05-05T00:00:00", - "ShipVia": 2, - "Freight": 218.15, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ - { - "OrderID": 10519, - "EmployeeID": 6, - "OrderDate": "1997-04-28T00:00:00", - "RequiredDate": "1997-05-26T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 91.76, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ - { - "OrderID": 10520, - "EmployeeID": 7, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 1, - "Freight": 13.37, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10521, - "EmployeeID": 8, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 17.22, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10522, - "EmployeeID": 4, - "OrderDate": "1997-04-30T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-06T00:00:00", - "ShipVia": 1, - "Freight": 45.33, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.2 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 12000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10523, - "EmployeeID": 7, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 2, - "Freight": 77.63, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 42000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 37000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10524, - "EmployeeID": 1, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", - "ShipVia": 2, - "Freight": 244.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10525, - "EmployeeID": 1, - "OrderDate": "1997-05-02T00:00:00", - "RequiredDate": "1997-05-30T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 11.06, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10526, - "EmployeeID": 4, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-15T00:00:00", - "ShipVia": 2, - "Freight": 58.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10527, - "EmployeeID": 7, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", - "ShipVia": 1, - "Freight": 41.9, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ - { - "OrderID": 10528, - "EmployeeID": 6, - "OrderDate": "1997-05-06T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", - "ShipVia": 2, - "Freight": 3.35, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.2 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 45000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ - { - "OrderID": 10529, - "EmployeeID": 5, - "OrderDate": "1997-05-07T00:00:00", - "RequiredDate": "1997-06-04T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", - "ShipVia": 2, - "Freight": 66.69, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10530, - "EmployeeID": 3, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", - "ShipVia": 2, - "Freight": 339.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ - { - "OrderID": 10531, - "EmployeeID": 7, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", - "ShipVia": 1, - "Freight": 8.12, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 33000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ - { - "OrderID": 10532, - "EmployeeID": 7, - "OrderDate": "1997-05-09T00:00:00", - "RequiredDate": "1997-06-06T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", - "ShipVia": 3, - "Freight": 74.46, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 45000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 10000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10533, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-22T00:00:00", - "ShipVia": 1, - "Freight": 188.04, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.06 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 24, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10534, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-14T00:00:00", - "ShipVia": 2, - "Freight": 27.94, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10535, - "EmployeeID": 4, - "OrderDate": "1997-05-13T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-21T00:00:00", - "ShipVia": 1, - "Freight": 15.64, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10536, - "EmployeeID": 3, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-06-11T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 2, - "Freight": 58.88, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ - { - "OrderID": 10537, - "EmployeeID": 1, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", - "ShipVia": 1, - "Freight": 78.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10538, - "EmployeeID": 9, - "OrderDate": "1997-05-15T00:00:00", - "RequiredDate": "1997-06-12T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", - "ShipVia": 3, - "Freight": 4.87, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 45000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 1, - "Discount": 0 - } - ] - }, - { - "OrderID": 10539, - "EmployeeID": 6, - "OrderDate": "1997-05-16T00:00:00", - "RequiredDate": "1997-06-13T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 3, - "Freight": 12.36, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 14000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10540, - "EmployeeID": 3, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 3, - "Freight": 1007.64, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10541, - "EmployeeID": 2, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-05-29T00:00:00", - "ShipVia": 1, - "Freight": 68.65, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.1 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 4, - "Discount": 0.1 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 36, - "Discount": 0.1 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10542, - "EmployeeID": 1, - "OrderDate": "1997-05-20T00:00:00", - "RequiredDate": "1997-06-17T00:00:00", - "ShippedDate": "1997-05-26T00:00:00", - "ShipVia": 3, - "Freight": 10.95, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 24, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10543, - "EmployeeID": 8, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 48.17, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ - { - "OrderID": 10544, - "EmployeeID": 4, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 24.91, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 7, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "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", - "Orders": [ - { - "OrderID": 10545, - "EmployeeID": 8, - "OrderDate": "1997-05-22T00:00:00", - "RequiredDate": "1997-06-19T00:00:00", - "ShippedDate": "1997-06-26T00:00:00", - "ShipVia": 2, - "Freight": 11.92, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10546, - "EmployeeID": 1, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-05-27T00:00:00", - "ShipVia": 3, - "Freight": 194.72, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10547, - "EmployeeID": 3, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", - "ShipVia": 2, - "Freight": 178.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 48000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 24, - "Discount": 0.16 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 60, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ - { - "OrderID": 10548, - "EmployeeID": 3, - "OrderDate": "1997-05-26T00:00:00", - "RequiredDate": "1997-06-23T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", - "ShipVia": 2, - "Freight": 1.43, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.25 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10549, - "EmployeeID": 5, - "OrderDate": "1997-05-27T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 171.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 55, - "Discount": 0.16 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 100, - "Discount": 0.16 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 48, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ - { - "OrderID": 10550, - "EmployeeID": 7, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-06-25T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 3, - "Freight": 4.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0.1 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ - { - "OrderID": 10551, - "EmployeeID": 4, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 3, - "Freight": 72.95, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10552, - "EmployeeID": 2, - "OrderDate": "1997-05-29T00:00:00", - "RequiredDate": "1997-06-26T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 1, - "Freight": 83.22, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10553, - "EmployeeID": 2, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-03T00:00:00", - "ShipVia": 2, - "Freight": 149.49, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10554, - "EmployeeID": 4, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 3, - "Freight": 120.97, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10555, - "EmployeeID": 6, - "OrderDate": "1997-06-02T00:00:00", - "RequiredDate": "1997-06-30T00:00:00", - "ShippedDate": "1997-06-04T00:00:00", - "ShipVia": 3, - "Freight": 252.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 18, - "Discount": 0.2 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ - { - "OrderID": 10556, - "EmployeeID": 2, - "OrderDate": "1997-06-03T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 9.8, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10557, - "EmployeeID": 9, - "OrderDate": "1997-06-03T00:00:00", - "RequiredDate": "1997-06-17T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 2, - "Freight": 96.72, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 10000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10558, - "EmployeeID": 1, - "OrderDate": "1997-06-04T00:00:00", - "RequiredDate": "1997-07-02T00:00:00", - "ShippedDate": "1997-06-10T00:00:00", - "ShipVia": 2, - "Freight": 72.97, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 27000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10559, - "EmployeeID": 6, - "OrderDate": "1997-06-05T00:00:00", - "RequiredDate": "1997-07-03T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 8.05, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 18, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10560, - "EmployeeID": 8, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", - "ShipVia": 1, - "Freight": 36.65, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 20000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10561, - "EmployeeID": 2, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", - "ShipVia": 2, - "Freight": 242.21, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 18000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10562, - "EmployeeID": 1, - "OrderDate": "1997-06-09T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-12T00:00:00", - "ShipVia": 1, - "Freight": 22.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ - { - "OrderID": 10563, - "EmployeeID": 2, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-06-24T00:00:00", - "ShipVia": 2, - "Freight": 60.43, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 70, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10564, - "EmployeeID": 4, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-08T00:00:00", - "ShippedDate": "1997-06-16T00:00:00", - "ShipVia": 3, - "Freight": 13.75, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.06 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 25, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 15000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10565, - "EmployeeID": 8, - "OrderDate": "1997-06-11T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", - "ShipVia": 2, - "Freight": 7.15, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 24000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 18, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10566, - "EmployeeID": 9, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", - "ShipVia": 1, - "Freight": 88.4, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 18, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10567, - "EmployeeID": 1, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-17T00:00:00", - "ShipVia": 1, - "Freight": 33.97, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 60, - "Discount": 0.2 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ - { - "OrderID": 10568, - "EmployeeID": 3, - "OrderDate": "1997-06-13T00:00:00", - "RequiredDate": "1997-07-11T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 3, - "Freight": 6.54, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10569, - "EmployeeID": 5, - "OrderDate": "1997-06-16T00:00:00", - "RequiredDate": "1997-07-14T00:00:00", - "ShippedDate": "1997-07-11T00:00:00", - "ShipVia": 1, - "Freight": 58.98, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 34000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10570, - "EmployeeID": 3, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-19T00:00:00", - "ShipVia": 3, - "Freight": 188.99, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 40000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10571, - "EmployeeID": 8, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 3, - "Freight": 26.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 11, - "Discount": 0.16 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 43000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10572, - "EmployeeID": 3, - "OrderDate": "1997-06-18T00:00:00", - "RequiredDate": "1997-07-16T00:00:00", - "ShippedDate": "1997-06-25T00:00:00", - "ShipVia": 2, - "Freight": 116.43, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 25000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10573, - "EmployeeID": 7, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-20T00:00:00", - "ShipVia": 3, - "Freight": 84.84, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "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", - "Orders": [ - { - "OrderID": 10574, - "EmployeeID": 4, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 2, - "Freight": 37.6, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ - { - "OrderID": 10575, - "EmployeeID": 5, - "OrderDate": "1997-06-20T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 1, - "Freight": 127.34, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ - { - "OrderID": 10576, - "EmployeeID": 3, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 3, - "Freight": 18.56, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "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", - "Orders": [ - { - "OrderID": 10577, - "EmployeeID": 9, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 2, - "Freight": 25.41, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 44000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10578, - "EmployeeID": 4, - "OrderDate": "1997-06-24T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", - "ShipVia": 3, - "Freight": 29.6, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 44000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ - { - "OrderID": 10579, - "EmployeeID": 1, - "OrderDate": "1997-06-25T00:00:00", - "RequiredDate": "1997-07-23T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 2, - "Freight": 13.73, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10580, - "EmployeeID": 4, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-01T00:00:00", - "ShipVia": 3, - "Freight": 75.89, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 30, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10581, - "EmployeeID": 3, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-02T00:00:00", - "ShipVia": 1, - "Freight": 3.01, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10582, - "EmployeeID": 3, - "OrderDate": "1997-06-27T00:00:00", - "RequiredDate": "1997-07-25T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 2, - "Freight": 27.71, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 14, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10583, - "EmployeeID": 2, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 2, - "Freight": 7.28, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.16 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10584, - "EmployeeID": 4, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 1, - "Freight": 59.14, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ - { - "OrderID": 10585, - "EmployeeID": 7, - "OrderDate": "1997-07-01T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 1, - "Freight": 13.41, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10586, - "EmployeeID": 9, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 1, - "Freight": 0.48, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ - { - "OrderID": 10587, - "EmployeeID": 1, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 1, - "Freight": 62.52, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10588, - "EmployeeID": 2, - "OrderDate": "1997-07-03T00:00:00", - "RequiredDate": "1997-07-31T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 3, - "Freight": 194.67, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 40, - "Discount": 0.2 - }, + "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 100, - "Discount": 0.2 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10589, - "EmployeeID": 8, - "OrderDate": "1997-07-04T00:00:00", - "RequiredDate": "1997-08-01T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 10740, + "EmployeeID": 4, + "OrderDate": "1997-11-13T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", "ShipVia": 2, - "Freight": 4.42, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, + "Freight": 81.88, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 5, + "Discount": 0.2 + }, { "ProductID": 35, "UnitPrice": 18, - "Quantity": 4, - "Discount": 0 + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 22000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10590, + "OrderID": 10861, "EmployeeID": 4, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 3, - "Freight": 44.77, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 47000, - "ShipCountry": "Canada", + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-02-27T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 14.93, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 42, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 60, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10591, - "EmployeeID": 1, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-07-21T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", - "ShipVia": 1, - "Freight": 55.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 20, + "Discount": 0 + }, { - "ProductID": 3, + "ProductID": 21, "UnitPrice": 10, - "Quantity": 14, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 50, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10592, + "OrderID": 10904, "EmployeeID": 3, - "OrderDate": "1997-07-08T00:00:00", - "RequiredDate": "1997-08-05T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", - "ShipVia": 1, - "Freight": 32.1, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 162.95, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, - "Discount": 0.06 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 35, + "Discount": 0 + } + ] + }, + { + "OrderID": 11032, + "EmployeeID": 2, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 606.19, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 30, + "Discount": 0 } ] }, { - "OrderID": 10593, + "OrderID": 11066, "EmployeeID": 7, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-08-13T00:00:00", + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", "ShipVia": 2, - "Freight": 174.2, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 44.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, - "Discount": 0.2 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 42, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 35, + "Discount": 0 } ] } ] }, { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, + "CustomerID": "SPLIR", + "Company": "Split Rail Beer & Ale", + "ContactName": "Art Braunschweiger", + "ContactTitle": "Sales Manager", + "Address": "P.O. Box 555", + "City": "Lander", + "Region": "WY", + "PostalCode": 82520, "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", + "Phone": "(307) 555-4680", + "Fax": "(307) 555-6525", "Orders": [ { - "OrderID": 10594, - "EmployeeID": 3, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", + "OrderID": 10271, + "EmployeeID": 6, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-30T00:00:00", "ShipVia": 2, - "Freight": 5.24, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "Freight": 4.54, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, + "ProductID": 33, + "UnitPrice": 2, "Quantity": 24, "Discount": 0 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10595, - "EmployeeID": 2, - "OrderDate": "1997-07-10T00:00:00", - "RequiredDate": "1997-08-07T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 1, - "Freight": 96.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10329, + "EmployeeID": 4, + "OrderDate": "1996-10-15T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 2, + "Freight": 191.67, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 120, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 65, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 12, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10596, - "EmployeeID": 8, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", + "OrderID": 10349, + "EmployeeID": 7, + "OrderDate": "1996-11-08T00:00:00", + "RequiredDate": "1996-12-06T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", "ShipVia": 1, - "Freight": 16.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, + "Freight": 8.63, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, - "Discount": 0.2 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 24, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10597, - "EmployeeID": 7, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", - "ShipVia": 3, - "Freight": 35.12, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10369, + "EmployeeID": 8, + "OrderDate": "1996-12-02T00:00:00", + "RequiredDate": "1996-12-30T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 195.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 29, + "UnitPrice": 99, "Quantity": 20, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 18, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10598, + "OrderID": 10385, "EmployeeID": 1, - "OrderDate": "1997-07-14T00:00:00", - "RequiredDate": "1997-08-11T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", - "ShipVia": 3, - "Freight": 44.42, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, + "OrderDate": "1996-12-17T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1996-12-23T00:00:00", + "ShipVia": 2, + "Freight": 30.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 50, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 45000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10599, - "EmployeeID": 6, - "OrderDate": "1997-07-15T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", - "ShipVia": 3, - "Freight": 29.98, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 21000, - "ShipCountry": "UK", + "OrderID": 10432, + "EmployeeID": 3, + "OrderDate": "1997-01-31T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 4.34, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 26, + "UnitPrice": 24.9, "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10600, - "EmployeeID": 4, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-13T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", - "ShipVia": 1, - "Freight": 45.13, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "OrderID": 10756, + "EmployeeID": 8, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-02T00:00:00", + "ShipVia": 2, + "Freight": 73.21, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 4, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 21, + "Discount": 0.2 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.2 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10601, - "EmployeeID": 7, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", + "OrderID": 10821, + "EmployeeID": 1, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-15T00:00:00", "ShipVia": 1, - "Freight": 58.3, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 36.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 60, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10602, - "EmployeeID": 8, - "OrderDate": "1997-07-17T00:00:00", - "RequiredDate": "1997-08-14T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", - "ShipVia": 2, - "Freight": 2.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderID": 10974, + "EmployeeID": 3, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 12.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 10, + "Discount": 0 } ] } ] }, { - "CustomerID": "SAVEA", - "Company": "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", + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", "Orders": [ { - "OrderID": 10603, - "EmployeeID": 8, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", - "ShipVia": 2, - "Freight": 48.77, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10273, + "EmployeeID": 3, + "OrderDate": "1996-08-05T00:00:00", + "RequiredDate": "1996-09-02T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", + "ShipVia": 3, + "Freight": 76.07, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 48, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 24, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 33, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10604, + "OrderID": 10285, "EmployeeID": 1, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", - "ShipVia": 1, - "Freight": 7.46, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderDate": "1996-08-20T00:00:00", + "RequiredDate": "1996-09-17T00:00:00", + "ShippedDate": "1996-08-26T00:00:00", + "ShipVia": 2, + "Freight": 76.83, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 36, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 12000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10605, - "EmployeeID": 1, - "OrderDate": "1997-07-21T00:00:00", - "RequiredDate": "1997-08-18T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", + "OrderID": 10313, + "EmployeeID": 2, + "OrderDate": "1996-09-24T00:00:00", + "RequiredDate": "1996-10-22T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", "ShipVia": 2, - "Freight": 379.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 43000, - "ShipCountry": "Canada", + "Freight": 1.96, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10345, + "EmployeeID": 2, + "OrderDate": "1996-11-04T00:00:00", + "RequiredDate": "1996-12-02T00:00:00", + "ShippedDate": "1996-11-11T00:00:00", + "ShipVia": 2, + "Freight": 249.06, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 80, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10606, - "EmployeeID": 4, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-31T00:00:00", - "ShipVia": 3, - "Freight": 79.4, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "OrderID": 10361, + "EmployeeID": 1, + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 183.17, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 54, + "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 55, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10607, - "EmployeeID": 5, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", + "OrderID": 10418, + "EmployeeID": 4, + "OrderDate": "1997-01-17T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", "ShipVia": 1, - "Freight": 200.24, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 17.55, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 100, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 42, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 12, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10608, + "OrderID": 10451, "EmployeeID": 4, - "OrderDate": "1997-07-23T00:00:00", - "RequiredDate": "1997-08-20T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 27.79, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 189.09, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 120, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, "Quantity": 28, - "Discount": 0 + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 55, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10609, - "EmployeeID": 7, - "OrderDate": "1997-07-24T00:00:00", - "RequiredDate": "1997-08-21T00:00:00", - "ShippedDate": "1997-07-30T00:00:00", - "ShipVia": 2, - "Freight": 1.85, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10515, + "EmployeeID": 2, + "OrderDate": "1997-04-23T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 1, + "Freight": 204.47, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 16, + "Discount": 0.16 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 120, "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, + "Discount": 0.16 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 84, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10610, - "EmployeeID": 8, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", + "OrderID": 10527, + "EmployeeID": 7, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", "ShipVia": 1, - "Freight": 26.78, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 41.9, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, + "Discount": 0.1 + }, { "ProductID": 36, "UnitPrice": 19, - "Quantity": 21, - "Discount": 0.25 + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10611, - "EmployeeID": 6, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 80.65, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10540, + "EmployeeID": 3, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 3, + "Freight": 1007.64, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 6, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10612, - "EmployeeID": 1, - "OrderDate": "1997-07-28T00:00:00", - "RequiredDate": "1997-08-25T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 544.08, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10549, + "EmployeeID": 5, + "OrderDate": "1997-05-27T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 171.24, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 55, + "Discount": 0.16 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 100, + "Discount": 0.16 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 48, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10588, + "EmployeeID": 2, + "OrderDate": "1997-07-03T00:00:00", + "RequiredDate": "1997-07-31T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", + "ShipVia": 3, + "Freight": 194.67, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 100, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10658, + "EmployeeID": 4, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 1, + "Freight": 364.15, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 55, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 18, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 70, + "Discount": 0.06 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 40, - "Discount": 0 + "Quantity": 55, + "Discount": 0.06 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 70, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10613, - "EmployeeID": 4, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderID": 10691, + "EmployeeID": 2, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-10-22T00:00:00", "ShipVia": 2, - "Freight": 8.11, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 810.05, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 48, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10614, + "OrderID": 10694, "EmployeeID": 8, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-11-03T00:00:00", + "ShippedDate": "1997-10-09T00:00:00", "ShipVia": 3, - "Freight": 1.93, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, + "Freight": 398.36, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 14, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 90, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 8, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 5, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10615, - "EmployeeID": 2, - "OrderDate": "1997-07-30T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", + "OrderID": 10721, + "EmployeeID": 5, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-11-26T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", "ShipVia": 3, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 48.92, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 5, - "Discount": 0 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 50, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10616, - "EmployeeID": 1, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-05T00:00:00", - "ShipVia": 2, - "Freight": 116.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderID": 10745, + "EmployeeID": 9, + "OrderDate": "1997-11-18T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 1, + "Freight": 3.52, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 45, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 7, + "Discount": 0 } ] }, { - "OrderID": 10617, - "EmployeeID": 4, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-04T00:00:00", - "ShipVia": 2, - "Freight": 18.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderID": 10765, + "EmployeeID": 3, + "OrderDate": "1997-12-04T00:00:00", + "RequiredDate": "1998-01-01T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 3, + "Freight": 42.74, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 80, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 45000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10618, + "OrderID": 10788, "EmployeeID": 1, - "OrderDate": "1997-08-01T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 42.7, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10845, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 154.68, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 49000, - "ShipCountry": "Canada", + "Freight": 212.98, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, + "ProductID": 23, + "UnitPrice": 9, "Quantity": 70, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 42, + "Discount": 0.1 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 60, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 48, "Discount": 0 } ] }, { - "OrderID": 10619, - "EmployeeID": 3, - "OrderDate": "1997-08-04T00:00:00", - "RequiredDate": "1997-09-01T00:00:00", - "ShippedDate": "1997-08-07T00:00:00", - "ShipVia": 3, - "Freight": 91.05, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 20000, - "ShipCountry": "Canada", + "OrderID": 10865, + "EmployeeID": 2, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 348.14, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 42, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 48000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ + }, { - "OrderID": 10620, - "EmployeeID": 2, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", - "ShipVia": 3, - "Freight": 0.94, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 15000, - "ShipCountry": "Canada", + "OrderID": 10878, + "EmployeeID": 4, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 46.69, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10938, + "EmployeeID": 3, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 31.89, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0.25 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0.25 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 49, + "Discount": 0.25 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10621, - "EmployeeID": 4, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", + "OrderID": 10962, + "EmployeeID": 8, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", "ShipVia": 2, - "Freight": 23.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 90304, - "ShipPostalCode": 28000, - "ShipCountry": "UK", + "Freight": 275.79, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 10, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 77, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 53, + "UnitPrice": 32.8, "Quantity": 20, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 44, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10622, - "EmployeeID": 4, - "OrderDate": "1997-08-06T00:00:00", - "RequiredDate": "1997-09-03T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", - "ShipVia": 3, - "Freight": 50.97, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10991, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 1, + "Freight": 38.51, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.2 + }, + { + "ProductID": 70, + "UnitPrice": 15, "Quantity": 20, - "Discount": 0 + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 90, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10623, - "EmployeeID": 8, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", + "OrderID": 10996, + "EmployeeID": 4, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 2, - "Freight": 97.18, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, + "Freight": 1.12, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 21, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0 + } + ] + }, + { + "OrderID": 11021, + "EmployeeID": 3, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 1, + "Freight": 297.18, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 11, + "Discount": 0.25 }, { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 20, + "UnitPrice": 81, "Quantity": 15, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 63, + "Discount": 0 }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 44, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "MAGAA", + "Company": "Magazzini Alimentari Riuniti", + "ContactName": "Giovanni Rovelli", + "ContactTitle": "Marketing Manager", + "Address": "Via Ludovico il Moro 22", + "City": "Bergamo", + "PostalCode": 24100, + "Country": "Italy", + "Phone": "035-640230", + "Fax": "035-640231", + "Orders": [ + { + "OrderID": 10275, + "EmployeeID": 1, + "OrderDate": "1996-08-07T00:00:00", + "RequiredDate": "1996-09-04T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", + "ShipVia": 1, + "Freight": 26.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 3, - "Discount": 0 + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 6, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10624, - "EmployeeID": 4, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", + "OrderID": 10300, + "EmployeeID": 2, + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", "ShipVia": 2, - "Freight": 94.8, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "Freight": 17.68, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 6, + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10625, - "EmployeeID": 3, - "OrderDate": "1997-08-08T00:00:00", - "RequiredDate": "1997-09-05T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", + "OrderID": 10404, + "EmployeeID": 2, + "OrderDate": "1997-01-03T00:00:00", + "RequiredDate": "1997-01-31T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", "ShipVia": 1, - "Freight": 43.9, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 155.97, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, + "Discount": 0.06 }, { "ProductID": 42, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 + "UnitPrice": 11.2, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 47000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10626, - "EmployeeID": 1, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-08T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", + "OrderID": 10467, + "EmployeeID": 8, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", "ShipVia": 2, - "Freight": 138.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 39000, - "ShipCountry": "Sweden", + "Freight": 4.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 12, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 12, "Discount": 0 + } + ] + }, + { + "OrderID": 10635, + "EmployeeID": 8, + "OrderDate": "1997-08-18T00:00:00", + "RequiredDate": "1997-09-15T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 47.46, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 20, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10627, - "EmployeeID": 8, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10754, + "EmployeeID": 6, + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", "ShipVia": 3, - "Freight": 107.46, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 2.38, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 3, "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10628, + "OrderID": 10784, "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", "ShipVia": 3, - "Freight": 30.36, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 70.09, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10629, - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", + "OrderID": 10818, + "EmployeeID": 7, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", "ShipVia": 3, - "Freight": 85.46, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 65.48, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 32, + "UnitPrice": 32, "Quantity": 20, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 9, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10630, - "EmployeeID": 1, - "OrderDate": "1997-08-13T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", + "OrderID": 10939, + "EmployeeID": 2, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 2, - "Freight": 32.35, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 76.33, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10631, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-15T00:00:00", - "ShipVia": 1, - "Freight": 0.87, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10632, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 1, - "Freight": 41.38, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10950, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-13T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 2.5, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "TORTU", + "Company": "Tortuga Restaurante", + "ContactName": "Miguel Angel Paolino", + "ContactTitle": "Owner", + "Address": "Avda. Azteca 123", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 555-2933", "Orders": [ { - "OrderID": 10633, - "EmployeeID": 7, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-18T00:00:00", + "OrderID": 10276, + "EmployeeID": 8, + "OrderDate": "1996-08-08T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-14T00:00:00", "ShipVia": 3, - "Freight": 477.9, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 13.84, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 15, + "Discount": 0 }, { "ProductID": 13, - "UnitPrice": 6, - "Quantity": 13, - "Discount": 0.16 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 80, - "Discount": 0.16 + "UnitPrice": 4.8, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10634, - "EmployeeID": 4, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10293, + "EmployeeID": 1, + "OrderDate": "1996-08-29T00:00:00", + "RequiredDate": "1996-09-26T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 3, - "Freight": 487.38, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 21.18, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 50, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 15, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 5, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 7.75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0 + } + ] + }, + { + "OrderID": 10304, + "EmployeeID": 1, + "OrderDate": "1996-09-12T00:00:00", + "RequiredDate": "1996-10-10T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", + "ShipVia": 2, + "Freight": 63.79, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10635, - "EmployeeID": 8, - "OrderDate": "1997-08-18T00:00:00", - "RequiredDate": "1997-09-15T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10319, + "EmployeeID": 7, + "OrderDate": "1996-10-02T00:00:00", + "RequiredDate": "1996-10-30T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", "ShipVia": 3, - "Freight": 47.46, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 64.5, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10636, + "OrderID": 10518, "EmployeeID": 4, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 1.15, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderDate": "1997-04-25T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-05-05T00:00:00", + "ShipVia": 2, + "Freight": 218.15, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10637, - "EmployeeID": 6, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 201.29, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10576, + "EmployeeID": 3, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", + "ShipVia": 3, + "Freight": 18.56, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10638, - "EmployeeID": 3, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", - "ShipVia": 1, - "Freight": 158.44, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10676, + "EmployeeID": 2, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-29T00:00:00", + "ShipVia": 2, + "Freight": 2.01, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 60, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10639, - "EmployeeID": 7, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-08-27T00:00:00", + "OrderID": 10842, + "EmployeeID": 1, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 3, - "Freight": 38.64, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 54.42, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10640, - "EmployeeID": 4, - "OrderDate": "1997-08-21T00:00:00", - "RequiredDate": "1997-09-18T00:00:00", - "ShippedDate": "1997-08-28T00:00:00", - "ShipVia": 1, - "Freight": 23.55, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10915, + "EmployeeID": 2, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", + "ShipVia": 2, + "Freight": 3.51, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10641, - "EmployeeID": 4, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", + "OrderID": 11069, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", "ShipVia": 2, - "Freight": 179.61, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 15.67, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] @@ -18056,182 +9977,158 @@ ] }, { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", + "CustomerID": "MORGK", + "Company": "Morgenstern Gesundkost", + "ContactName": "Alexander Feuer", + "ContactTitle": "Marketing Assistant", + "Address": "Heerstr. 22", + "City": "Leipzig", + "PostalCode": 4179, + "Country": "Germany", + "Phone": "0342-023176", "Orders": [ { - "OrderID": 10642, - "EmployeeID": 7, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-09-05T00:00:00", + "OrderID": 10277, + "EmployeeID": 2, + "OrderDate": "1996-08-09T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-08-13T00:00:00", "ShipVia": 3, - "Freight": 41.89, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 125.77, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10643, - "EmployeeID": 6, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", + "OrderID": 10575, + "EmployeeID": 5, + "OrderDate": "1997-06-20T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 1, - "Freight": 29.46, - "ShipName": "Alfreds Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, + "Freight": 127.34, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10644, + "OrderID": 10699, "EmployeeID": 3, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", - "ShipVia": 2, - "Freight": 0.14, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", + "ShipVia": 3, + "Freight": 0.58, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 4, - "Discount": 0.1 - }, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10779, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 2, + "Freight": 58.13, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 43, - "UnitPrice": 46, + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 20, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0.1 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10645, + "OrderID": 10945, "EmployeeID": 4, - "OrderDate": "1997-08-26T00:00:00", - "RequiredDate": "1997-09-23T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-04-09T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 1, - "Freight": 12.41, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 10.22, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, + "ProductID": 13, + "UnitPrice": 6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 15, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 } ] @@ -18239,376 +10136,273 @@ ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 32000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", "Orders": [ { - "OrderID": 10646, - "EmployeeID": 9, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 3, - "Freight": 142.33, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10278, + "EmployeeID": 8, + "OrderDate": "1996-08-12T00:00:00", + "RequiredDate": "1996-09-09T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 92.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 26000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 16, + "Discount": 0 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10647, - "EmployeeID": 4, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 2, - "Freight": 45.54, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10280, + "EmployeeID": 2, + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-09-11T00:00:00", + "ShippedDate": "1996-09-12T00:00:00", + "ShipVia": 1, + "Freight": 8.98, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 50000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, + "ProductID": 55, + "UnitPrice": 19.2, "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ - { - "OrderID": 10648, - "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-09T00:00:00", - "ShipVia": 2, - "Freight": 14.25, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 43000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10649, - "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-09-25T00:00:00", - "ShippedDate": "1997-08-29T00:00:00", - "ShipVia": 3, - "Freight": 6.2, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 21000, - "ShipCountry": "Belgium", + "OrderID": 10384, + "EmployeeID": 3, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", + "ShipVia": 3, + "Freight": 168.64, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 33000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, + "ProductID": 60, + "UnitPrice": 27.2, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10650, - "EmployeeID": 5, - "OrderDate": "1997-08-29T00:00:00", - "RequiredDate": "1997-09-26T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", + "OrderID": 10444, + "EmployeeID": 3, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-21T00:00:00", "ShipVia": 3, - "Freight": 176.81, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "Freight": 3.5, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 21000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10651, - "EmployeeID": 8, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", + "OrderID": 10524, + "EmployeeID": 1, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", "ShipVia": 2, - "Freight": 20.6, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 244.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 2, + "Discount": 0 }, - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 10652, - "EmployeeID": 4, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", - "ShipVia": 2, - "Freight": 7.14, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", - "OrderDetails": [ { "ProductID": 30, "UnitPrice": 25.89, - "Quantity": 2, - "Discount": 0.25 + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10653, - "EmployeeID": 1, - "OrderDate": "1997-09-02T00:00:00", - "RequiredDate": "1997-09-30T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 1, - "Freight": 93.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10572, + "EmployeeID": 3, + "OrderDate": "1997-06-18T00:00:00", + "RequiredDate": "1997-07-16T00:00:00", + "ShippedDate": "1997-06-25T00:00:00", + "ShipVia": 2, + "Freight": 116.43, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 25000, + "ShipCountry": "Sweden", "OrderDetails": [ { "ProductID": 16, "UnitPrice": 17.45, - "Quantity": 30, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 15, "Discount": 0.1 + } + ] + }, + { + "OrderID": 10626, + "EmployeeID": 1, + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-08T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 2, + "Freight": 138.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 39000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 12, + "Discount": 0 }, { "ProductID": 60, "UnitPrice": 34, "Quantity": 20, - "Discount": 0.1 + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 28000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { "OrderID": 10654, "EmployeeID": 5, @@ -18642,838 +10436,738 @@ "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10655, - "EmployeeID": 1, - "OrderDate": "1997-09-03T00:00:00", + "OrderID": 10672, + "EmployeeID": 9, + "OrderDate": "1997-09-17T00:00:00", "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", "ShipVia": 2, - "Freight": 4.41, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ - { - "OrderID": 10656, - "EmployeeID": 6, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", - "ShipVia": 1, - "Freight": 57.15, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 95.75, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 16000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0.1 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 28, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, "Discount": 0.1 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10657, - "EmployeeID": 2, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", + "OrderID": 10689, + "EmployeeID": 1, + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-29T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", "ShipVia": 2, - "Freight": 352.69, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 13.42, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 24000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 45, - "Discount": 0 - }, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10733, + "EmployeeID": 1, + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-10T00:00:00", + "ShipVia": 3, + "Freight": 110.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 27000, + "ShipCountry": "Sweden", + "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 10, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 45, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10658, - "EmployeeID": 4, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", + "OrderID": 10778, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", "ShipVia": 1, - "Freight": 364.15, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 6.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 13000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10837, + "EmployeeID": 9, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 13.32, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 44000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, "Discount": 0 }, { "ProductID": 40, "UnitPrice": 18.4, - "Quantity": 70, - "Discount": 0.06 + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 55, - "Discount": 0.06 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10659, - "EmployeeID": 7, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", + "OrderID": 10857, + "EmployeeID": 8, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", "ShipVia": 2, - "Freight": 105.81, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 188.85, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 43000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 24, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10660, - "EmployeeID": 8, - "OrderDate": "1997-09-08T00:00:00", - "RequiredDate": "1997-10-06T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", + "OrderID": 10866, + "EmployeeID": 5, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-03T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", "ShipVia": 1, - "Freight": 111.29, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "Freight": 109.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10661, - "EmployeeID": 7, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", - "ShipVia": 3, - "Freight": 17.55, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ + "Discount": 0.25 + }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 6, + "Discount": 0.25 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 49, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 40, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10662, - "EmployeeID": 3, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", + "OrderID": 10875, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", "ShipVia": 2, - "Freight": 1.28, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 32.37, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 37000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0.1 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10663, - "EmployeeID": 2, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-09-24T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", + "OrderID": 10924, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", "ShipVia": 2, - "Freight": 113.15, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 151.52, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 42, - "UnitPrice": 14, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 30, - "Discount": 0.06 + "Discount": 0.1 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 6, + "Discount": 0 } ] } ] }, { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", + "CustomerID": "LEHMS", + "Company": "Lehmanns Marktstand", + "ContactName": "Renate Messner", + "ContactTitle": "Sales Representative", + "Address": "Magazinweg 7", + "City": "Frankfurt a.M.", + "PostalCode": 60528, + "Country": "Germany", + "Phone": "069-0245984", + "Fax": "069-0245874", "Orders": [ { - "OrderID": 10664, - "EmployeeID": 1, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 3, - "Freight": 1.27, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10279, + "EmployeeID": 8, + "OrderDate": "1996-08-13T00:00:00", + "RequiredDate": "1996-09-10T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 25.83, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10284, + "EmployeeID": 4, + "OrderDate": "1996-08-19T00:00:00", + "RequiredDate": "1996-09-16T00:00:00", + "ShippedDate": "1996-08-27T00:00:00", + "ShipVia": 1, + "Freight": 76.56, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0.25 + }, + { + "ProductID": 67, + "UnitPrice": 11.2, + "Quantity": 5, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10665, - "EmployeeID": 1, - "OrderDate": "1997-09-11T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-17T00:00:00", - "ShipVia": 2, - "Freight": 26.31, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10343, + "EmployeeID": 4, + "OrderDate": "1996-10-31T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-11-06T00:00:00", + "ShipVia": 1, + "Freight": 110.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 1, - "Discount": 0 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 4, + "Discount": 0.06 }, { "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "UnitPrice": 14.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10666, + "OrderID": 10497, "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", - "ShipVia": 2, - "Freight": 232.42, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", + "ShipVia": 1, + "Freight": 36.21, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10667, - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", + "OrderID": 10522, + "EmployeeID": 4, + "OrderDate": "1997-04-30T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-06T00:00:00", "ShipVia": 1, - "Freight": 78.09, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 45.33, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 45, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 14, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10668, - "EmployeeID": 1, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", + "OrderID": 10534, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-14T00:00:00", "ShipVia": 2, - "Freight": 47.22, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, + "Freight": 27.94, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ - { - "OrderID": 10669, - "EmployeeID": 2, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", - "ShipVia": 1, - "Freight": 24.39, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10670, - "EmployeeID": 4, - "OrderDate": "1997-09-16T00:00:00", - "RequiredDate": "1997-10-14T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", - "ShipVia": 1, - "Freight": 203.48, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, + "OrderID": 10536, + "EmployeeID": 3, + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-06-11T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 2, + "Freight": 58.88, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 32, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 60, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 25, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10557, + "EmployeeID": 9, + "OrderDate": "1997-06-03T00:00:00", + "RequiredDate": "1997-06-17T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 2, + "Freight": 96.72, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 25, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10671, - "EmployeeID": 1, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-09-24T00:00:00", + "OrderID": 10592, + "EmployeeID": 3, + "OrderDate": "1997-07-08T00:00:00", + "RequiredDate": "1997-08-05T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", "ShipVia": 1, - "Freight": 30.34, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 32.1, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 10, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 5, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10772, + "EmployeeID": 3, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 91.28, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10862, + "EmployeeID": 8, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 53.23, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10672, - "EmployeeID": 9, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", + "OrderID": 10891, + "EmployeeID": 7, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", "ShipVia": 2, - "Freight": 95.75, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 16000, - "ShipCountry": "Sweden", + "Freight": 20.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, + "ProductID": 30, + "UnitPrice": 25.89, "Quantity": 15, - "Discount": 0.1 + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10934, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 3, + "Freight": 32.01, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 11070, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShipVia": 1, + "Freight": 136, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.16 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 } ] @@ -19481,275 +11175,177 @@ ] }, { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", + "CustomerID": "ROMEY", + "Company": "Romero y tomillo", + "ContactName": "Alejandra Camino", + "ContactTitle": "Accounting Manager", + "Address": "Gran Vía, 1", + "City": "Madrid", + "PostalCode": 28001, + "Country": "Spain", + "Phone": "(91) 745 6200", + "Fax": "(91) 745 6210", "Orders": [ { - "OrderID": 10673, - "EmployeeID": 2, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 1, - "Freight": 22.76, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10281, + "EmployeeID": 4, + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-08-28T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 2.94, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, + "ProductID": 24, + "UnitPrice": 3.6, "Quantity": 6, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10674, + "OrderID": 10282, "EmployeeID": 4, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 2, - "Freight": 0.9, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60688, - "ShipPostalCode": 25000, - "ShipCountry": "UK", + "OrderDate": "1996-08-15T00:00:00", + "RequiredDate": "1996-09-12T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 5, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10675, - "EmployeeID": 5, - "OrderDate": "1997-09-19T00:00:00", - "RequiredDate": "1997-10-17T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", - "ShipVia": 2, - "Freight": 31.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10306, + "EmployeeID": 1, + "OrderDate": "1996-09-16T00:00:00", + "RequiredDate": "1996-10-14T00:00:00", + "ShippedDate": "1996-09-23T00:00:00", + "ShipVia": 3, + "Freight": 7.56, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 10, "Discount": 0 }, { "ProductID": 53, - "UnitPrice": 32.8, + "UnitPrice": 26.2, "Quantity": 10, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10676, - "EmployeeID": 2, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-29T00:00:00", + "OrderID": 10917, + "EmployeeID": 4, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", "ShipVia": 2, - "Freight": 2.01, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 8.29, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10677, - "EmployeeID": 1, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", - "ShipVia": 3, - "Freight": 4.03, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10678, - "EmployeeID": 7, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", - "ShipVia": 3, - "Freight": 388.98, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11013, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 32.99, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 100, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 120, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 2, "Discount": 0 } ] @@ -19757,1581 +11353,1417 @@ ] }, { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", + "CustomerID": "LILAS", + "Company": "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", "Orders": [ { - "OrderID": 10679, - "EmployeeID": 8, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", + "OrderID": 10283, + "EmployeeID": 3, + "OrderDate": "1996-08-16T00:00:00", + "RequiredDate": "1996-09-13T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", "ShipVia": 3, - "Freight": 27.94, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 84.81, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10680, - "EmployeeID": 1, - "OrderDate": "1997-09-24T00:00:00", - "RequiredDate": "1997-10-22T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", + "OrderID": 10296, + "EmployeeID": 6, + "OrderDate": "1996-09-03T00:00:00", + "RequiredDate": "1996-10-01T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 1, - "Freight": 26.61, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 0.12, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10681, + "OrderID": 10330, "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 3, - "Freight": 76.13, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", + "ShipVia": 1, + "Freight": 12.75, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0.1 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 28, - "Discount": 0 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10682, - "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 2, - "Freight": 36.13, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + }, + { + "OrderID": 10357, + "EmployeeID": 1, + "OrderDate": "1996-11-19T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 34.88, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, + "ProductID": 10, + "UnitPrice": 24.8, "Quantity": 30, - "Discount": 0 + "Discount": 0.2 }, { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 4, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10683, - "EmployeeID": 2, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 1, - "Freight": 4.4, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10381, + "EmployeeID": 3, + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 7.99, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 9, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10684, - "EmployeeID": 3, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 1, - "Freight": 145.63, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "OrderID": 10461, + "EmployeeID": 1, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-05T00:00:00", + "ShipVia": 3, + "Freight": 148.61, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 28, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10685, + "OrderID": 10499, "EmployeeID": 4, - "OrderDate": "1997-09-29T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", + "OrderDate": "1997-04-08T00:00:00", + "RequiredDate": "1997-05-06T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", "ShipVia": 2, - "Freight": 33.75, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 102.02, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 25, "Discount": 0 + } + ] + }, + { + "OrderID": 10543, + "EmployeeID": 8, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 2, + "Freight": 48.17, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10686, + "OrderID": 10780, "EmployeeID": 2, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-08T00:00:00", - "ShipVia": 1, - "Freight": 96.5, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-25T00:00:00", + "ShipVia": 1, + "Freight": 42.13, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, + "ProductID": 77, + "UnitPrice": 13, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10687, - "EmployeeID": 9, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-30T00:00:00", + "OrderID": 10823, + "EmployeeID": 5, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", "ShipVia": 2, - "Freight": 296.43, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 163.97, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10688, - "EmployeeID": 4, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", + "OrderID": 10899, + "EmployeeID": 5, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", + "ShipVia": 3, + "Freight": 1.21, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10997, + "EmployeeID": 8, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 299.09, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 73.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 14, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 21000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10689, - "EmployeeID": 1, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-29T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", - "ShipVia": 2, - "Freight": 13.42, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 24000, - "ShipCountry": "Sweden", + "OrderID": 11065, + "EmployeeID": 8, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShipVia": 1, + "Freight": 12.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 35, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 4, + "Discount": 0.25 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10690, - "EmployeeID": 1, - "OrderDate": "1997-10-02T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", - "ShipVia": 1, - "Freight": 15.8, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + }, + { + "OrderID": 11071, + "EmployeeID": 1, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShipVia": 1, + "Freight": 0.93, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", + "CustomerID": "RICAR", + "Company": "Ricardo Adocicados", + "ContactName": "Janete Limeira", + "ContactTitle": "Sales Associate", + "Address": "Av. Copacabana, 267", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-3412", "Orders": [ { - "OrderID": 10691, - "EmployeeID": 2, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-10-22T00:00:00", - "ShipVia": 2, - "Freight": 810.05, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10287, + "EmployeeID": 8, + "OrderDate": "1996-08-22T00:00:00", + "RequiredDate": "1996-09-19T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", + "ShipVia": 3, + "Freight": 12.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, + "ProductID": 16, + "UnitPrice": 13.9, "Quantity": 40, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 24, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 48, - "Discount": 0 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10692, + "OrderID": 10299, "EmployeeID": 4, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-10-31T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", + "OrderDate": "1996-09-06T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-13T00:00:00", "ShipVia": 2, - "Freight": 61.02, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 29.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10693, - "EmployeeID": 3, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-10-10T00:00:00", - "ShipVia": 3, - "Freight": 139.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10447, + "EmployeeID": 4, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-03-07T00:00:00", + "ShipVia": 2, + "Freight": 68.66, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 6, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10694, + "OrderID": 10481, "EmployeeID": 8, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-11-03T00:00:00", - "ShippedDate": "1997-10-09T00:00:00", - "ShipVia": 3, - "Freight": 398.36, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", + "ShipVia": 2, + "Freight": 64.33, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 90, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10563, + "EmployeeID": 2, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-06-24T00:00:00", + "ShipVia": 2, + "Freight": 60.43, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, "Quantity": 25, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 70, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10695, - "EmployeeID": 7, - "OrderDate": "1997-10-07T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 1, - "Freight": 16.72, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10622, + "EmployeeID": 4, + "OrderDate": "1997-08-06T00:00:00", + "RequiredDate": "1997-09-03T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 3, + "Freight": 50.97, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 4, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10648, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-09T00:00:00", + "ShipVia": 2, + "Freight": 14.25, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 15, "Discount": 0 }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0 + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10696, - "EmployeeID": 8, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 3, - "Freight": 102.55, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10813, + "EmployeeID": 1, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 1, + "Freight": 47.38, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 12, + "Discount": 0.2 }, { "ProductID": 46, "UnitPrice": 12, - "Quantity": 18, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10697, - "EmployeeID": 3, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-05T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", + "OrderID": 10851, + "EmployeeID": 5, + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-23T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", "ShipVia": 1, - "Freight": 45.52, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", + "Freight": 160.55, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, - "Discount": 0.25 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, + "Discount": 0.06 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 9, - "Discount": 0.25 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 58, - "UnitPrice": 13.25, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10877, + "EmployeeID": 1, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 1, + "Freight": 38.06, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 30, "Discount": 0.25 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10698, - "EmployeeID": 4, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-17T00:00:00", - "ShipVia": 1, - "Freight": 272.47, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 11059, + "EmployeeID": 2, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-06-10T00:00:00", + "ShipVia": 2, + "Freight": 85.8, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 30, "Discount": 0 }, { "ProductID": 17, "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 65, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 8, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0 } ] } ] }, { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", + "CustomerID": "REGGC", + "Company": "Reggiani Caseifici", + "ContactName": "Maurizio Moroni", + "ContactTitle": "Sales Associate", + "Address": "Strada Provinciale 124", + "City": "Reggio Emilia", + "PostalCode": 42100, + "Country": "Italy", + "Phone": "0522-556721", + "Fax": "0522-556722", "Orders": [ { - "OrderID": 10699, - "EmployeeID": 3, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", - "ShipVia": 3, - "Freight": 0.58, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "OrderID": 10288, + "EmployeeID": 4, + "OrderDate": "1996-08-23T00:00:00", + "RequiredDate": "1996-09-20T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", + "ShipVia": 1, + "Freight": 7.45, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 12, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10428, + "EmployeeID": 7, + "OrderDate": "1997-01-28T00:00:00", + "RequiredDate": "1997-02-25T00:00:00", + "ShippedDate": "1997-02-04T00:00:00", + "ShipVia": 1, + "Freight": 11.09, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10700, - "EmployeeID": 3, - "OrderDate": "1997-10-10T00:00:00", - "RequiredDate": "1997-11-07T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", + "OrderID": 10443, + "EmployeeID": 8, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", "ShipVia": 1, - "Freight": 65.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 13.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 5, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 34, - "UnitPrice": 14, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 12, - "Discount": 0.2 + "Discount": 0 + } + ] + }, + { + "OrderID": 10562, + "EmployeeID": 1, + "OrderDate": "1997-06-09T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-12T00:00:00", + "ShipVia": 1, + "Freight": 22.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 40, - "Discount": 0.2 - }, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10586, + "EmployeeID": 9, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 1, + "Freight": 0.48, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10655, + "EmployeeID": 1, + "OrderDate": "1997-09-03T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 4.41, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10701, - "EmployeeID": 6, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-10-27T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", - "ShipVia": 3, - "Freight": 220.31, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10727, + "EmployeeID": 2, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-12-01T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 89.9, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10702, - "EmployeeID": 4, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", + "OrderID": 10812, + "EmployeeID": 5, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", "ShipVia": 1, - "Freight": 23.94, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 59.78, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 16, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 47000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10703, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-10-20T00:00:00", + "OrderID": 10908, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", "ShipVia": 2, - "Freight": 152.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 22000, - "ShipCountry": "Sweden", + "Freight": 32.96, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 14, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10704, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", - "ShipVia": 1, - "Freight": 4.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10942, + "EmployeeID": 9, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 3, + "Freight": 17.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 28, + "Discount": 0 + } + ] + }, + { + "OrderID": 11010, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 28.71, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 6, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, "Discount": 0 }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 24, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10705, - "EmployeeID": 9, - "OrderDate": "1997-10-15T00:00:00", - "RequiredDate": "1997-11-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 11062, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", "ShipVia": 2, - "Freight": 3.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 29.93, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 4, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 12, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", + "CustomerID": "BSBEV", + "Company": "B's Beverages", + "ContactName": "Victoria Ashworth", "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", + "Address": "Fauntleroy Circus", + "City": "London", + "PostalCode": 20000, + "Country": "UK", + "Phone": "(171) 555-1212", "Orders": [ { - "OrderID": 10706, - "EmployeeID": 8, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-11-13T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", + "OrderID": 10289, + "EmployeeID": 7, + "OrderDate": "1996-08-26T00:00:00", + "RequiredDate": "1996-09-23T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", "ShipVia": 3, - "Freight": 135.63, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 22.77, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 18000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 10471, + "EmployeeID": 2, + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 3, + "Freight": 45.59, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 8, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 14000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10707, - "EmployeeID": 4, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", + "OrderID": 10484, + "EmployeeID": 3, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-01T00:00:00", "ShipVia": 3, - "Freight": 21.74, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 29000, + "Freight": 6.88, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 31000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 21, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 40, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ - { - "OrderID": 10708, - "EmployeeID": 6, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 2.96, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + }, + { + "OrderID": 10538, + "EmployeeID": 9, + "OrderDate": "1997-05-15T00:00:00", + "RequiredDate": "1997-06-12T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 3, + "Freight": 4.87, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 45000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 4, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 5, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 1, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10709, - "EmployeeID": 1, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-11-20T00:00:00", + "OrderID": 10578, + "EmployeeID": 4, + "OrderDate": "1997-06-24T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", "ShipVia": 3, - "Freight": 210.8, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 29.6, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 44000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 28, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10710, - "EmployeeID": 1, - "OrderDate": "1997-10-20T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", - "ShipVia": 1, - "Freight": 4.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10599, + "EmployeeID": 6, + "OrderDate": "1997-07-15T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", + "ShipVia": 3, + "Freight": 29.98, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 21000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10711, - "EmployeeID": 5, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", + "OrderID": 10943, + "EmployeeID": 4, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 52.41, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 2.17, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 42, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 120, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10712, + "OrderID": 10947, "EmployeeID": 3, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", - "ShipVia": 1, - "Freight": 89.93, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 13000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11023, + "EmployeeID": 1, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 123.83, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 43, + "UnitPrice": 46, "Quantity": 30, "Discount": 0 } @@ -21340,191 +12772,158 @@ ] }, { - "CustomerID": "SAVEA", - "Company": "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", + "CustomerID": "COMMI", + "Company": "Comércio Mineiro", + "ContactName": "Pedro Afonso", + "ContactTitle": "Sales Associate", + "Address": "Av. dos Lusíadas, 23", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5432, + "Country": "Brazil", + "Phone": "(11) 555-7647", "Orders": [ { - "OrderID": 10713, - "EmployeeID": 1, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-24T00:00:00", + "OrderID": 10290, + "EmployeeID": 8, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", "ShipVia": 1, - "Freight": 167.05, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 79.7, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 110, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 24, + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, "Discount": 0 } ] }, { - "OrderID": 10714, - "EmployeeID": 5, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", - "ShipVia": 3, - "Freight": 24.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10466, + "EmployeeID": 4, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-13T00:00:00", + "ShipVia": 1, + "Freight": 11.93, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 27, - "Discount": 0.25 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 50, - "Discount": 0.25 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10715, - "EmployeeID": 3, - "OrderDate": "1997-10-23T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 1, - "Freight": 63.2, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10494, + "EmployeeID": 4, + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", + "ShipVia": 2, + "Freight": 65.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, + "ProductID": 56, + "UnitPrice": 30.4, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10716, - "EmployeeID": 4, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", + "OrderID": 10969, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", "ShipVia": 2, - "Freight": 22.57, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 0.21, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11042, + "EmployeeID": 2, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 29.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 7, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 15, "Discount": 0 }, { "ProductID": 61, "UnitPrice": 28.5, - "Quantity": 10, + "Quantity": 4, "Discount": 0 } ] @@ -21532,900 +12931,820 @@ ] }, { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", + "CustomerID": "TRADH", + "Company": "Tradição Hipermercados", + "ContactName": "Anabela Domingues", + "ContactTitle": "Sales Representative", + "Address": "Av. Inês de Castro, 414", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5634, + "Country": "Brazil", + "Phone": "(11) 555-2167", + "Fax": "(11) 555-2168", "Orders": [ { - "OrderID": 10717, + "OrderID": 10292, "EmployeeID": 1, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", + "OrderDate": "1996-08-28T00:00:00", + "RequiredDate": "1996-09-25T00:00:00", + "ShippedDate": "1996-09-02T00:00:00", "ShipVia": 2, - "Freight": 59.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 1.35, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10496, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", + "ShipVia": 2, + "Freight": 46.77, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 31, "UnitPrice": 10, - "Quantity": 32, + "Quantity": 20, "Discount": 0.06 + } + ] + }, + { + "OrderID": 10606, + "EmployeeID": 4, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-31T00:00:00", + "ShipVia": 3, + "Freight": 79.4, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10718, - "EmployeeID": 1, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 3, - "Freight": 170.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10830, + "EmployeeID": 4, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 2, + "Freight": 81.83, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10719, - "EmployeeID": 8, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 51.44, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10834, + "EmployeeID": 1, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 3, + "Freight": 29.78, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 8, + "Discount": 0.06 }, { "ProductID": 30, "UnitPrice": 25.89, - "Quantity": 3, - "Discount": 0.25 + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10839, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-22T00:00:00", + "ShipVia": 3, + "Freight": 35.43, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", "Orders": [ { - "OrderID": 10720, - "EmployeeID": 8, - "OrderDate": "1997-10-28T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", + "OrderID": 10298, + "EmployeeID": 6, + "OrderDate": "1996-09-05T00:00:00", + "RequiredDate": "1996-10-03T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 2, - "Freight": 9.53, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 168.22, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 8, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.25 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10721, - "EmployeeID": 5, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-11-26T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", - "ShipVia": 3, - "Freight": 48.92, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10309, + "EmployeeID": 3, + "OrderDate": "1996-09-19T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 1, + "Freight": 47.3, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10722, - "EmployeeID": 8, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-04T00:00:00", - "ShipVia": 1, - "Freight": 74.58, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10335, + "EmployeeID": 7, + "OrderDate": "1996-10-22T00:00:00", + "RequiredDate": "1996-11-19T00:00:00", + "ShippedDate": "1996-10-24T00:00:00", + "ShipVia": 2, + "Freight": 42.11, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { "ProductID": 2, - "UnitPrice": 19, - "Quantity": 3, - "Discount": 0 + "UnitPrice": 15.2, + "Quantity": 7, + "Discount": 0.2 }, { "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0 + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 45, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 42, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 48, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10723, - "EmployeeID": 3, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-11-27T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", - "ShipVia": 1, - "Freight": 21.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10373, + "EmployeeID": 4, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-11T00:00:00", + "ShipVia": 3, + "Freight": 124.12, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 15, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 80, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 31000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10724, + "OrderID": 10380, "EmployeeID": 8, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 57.75, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 39000, - "ShipCountry": "Canada", + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 3, + "Freight": 35.03, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 6, + "Discount": 0.1 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10725, - "EmployeeID": 4, - "OrderDate": "1997-10-31T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 3, - "Freight": 10.83, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10429, + "EmployeeID": 3, + "OrderDate": "1997-01-29T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 56.63, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10503, + "EmployeeID": 6, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 2, + "Freight": 16.74, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 18000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10726, - "EmployeeID": 4, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", - "ShipVia": 1, - "Freight": 16.56, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 21000, - "ShipCountry": "UK", + "OrderID": 10516, + "EmployeeID": 2, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 62.78, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 18, + "UnitPrice": 62.5, "Quantity": 25, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 80, + "Discount": 0.1 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10727, - "EmployeeID": 2, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-12-01T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", + "OrderID": 10567, + "EmployeeID": 1, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-17T00:00:00", "ShipVia": 1, - "Freight": 89.9, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0.06 + "Freight": 33.97, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, + "Discount": 0 }, { "ProductID": 59, "UnitPrice": 55, - "Quantity": 10, - "Discount": 0.06 + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10728, - "EmployeeID": 4, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-11-11T00:00:00", - "ShipVia": 2, - "Freight": 58.33, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10646, + "EmployeeID": 9, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 142.33, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 15, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 12, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10729, - "EmployeeID": 8, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", + "OrderID": 10661, + "EmployeeID": 7, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", "ShipVia": 3, - "Freight": 141.06, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 17.55, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 40, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 49, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10730, - "EmployeeID": 5, - "OrderDate": "1997-11-05T00:00:00", - "RequiredDate": "1997-12-03T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", - "ShipVia": 1, - "Freight": 20.12, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10687, + "EmployeeID": 9, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-30T00:00:00", + "ShipVia": 2, + "Freight": 296.43, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 50, + "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 3, - "Discount": 0.06 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10731, - "EmployeeID": 7, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", - "ShipVia": 1, - "Freight": 96.65, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10701, + "EmployeeID": 6, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-10-27T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 3, + "Freight": 220.31, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.16 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10732, + "OrderID": 10712, "EmployeeID": 3, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", "ShipVia": 1, - "Freight": 16.97, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 89.93, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 29000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10733, - "EmployeeID": 1, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-10T00:00:00", - "ShipVia": 3, - "Freight": 110.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 27000, - "ShipCountry": "Sweden", + "OrderID": 10736, + "EmployeeID": 9, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 44.1, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 16, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 25, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10734, - "EmployeeID": 2, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-12T00:00:00", - "ShipVia": 3, - "Freight": 1.63, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 10897, + "EmployeeID": 3, + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-25T00:00:00", + "ShipVia": 2, + "Freight": 603.54, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 80, "Discount": 0 }, { "ProductID": 30, "UnitPrice": 25.89, - "Quantity": 15, + "Quantity": 36, "Discount": 0 + } + ] + }, + { + "OrderID": 10912, + "EmployeeID": 2, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 580.91, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10735, - "EmployeeID": 6, - "OrderDate": "1997-11-10T00:00:00", - "RequiredDate": "1997-12-08T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 2, - "Freight": 45.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10985, + "EmployeeID": 2, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 91.51, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 36, "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 35, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10736, - "EmployeeID": 9, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderID": 11063, + "EmployeeID": 3, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", "ShipVia": 2, - "Freight": 44.1, + "Freight": 81.73, "ShipName": "Hungry Owl All-Night Grocers", "ShipAddress": "8 Johnstown Road", "ShipCity": "Cork", @@ -22433,315 +13752,351 @@ "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 40, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", + "CustomerID": "WANDK", + "Company": "Die Wandernde Kuh", + "ContactName": "Rita Müller", + "ContactTitle": "Sales Representative", + "Address": "Adenauerallee 900", + "City": "Stuttgart", + "PostalCode": 70563, + "Country": "Germany", + "Phone": "0711-020361", + "Fax": "0711-035428", "Orders": [ { - "OrderID": 10737, - "EmployeeID": 2, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10301, + "EmployeeID": 8, + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", "ShipVia": 2, - "Freight": 7.79, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 45.08, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 4, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 10738, + "OrderID": 10312, "EmployeeID": 2, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 1, - "Freight": 2.91, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "OrderDate": "1996-09-23T00:00:00", + "RequiredDate": "1996-10-21T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 40.26, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10739, - "EmployeeID": 3, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-17T00:00:00", - "ShipVia": 3, - "Freight": 11.08, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "OrderID": 10348, + "EmployeeID": 4, + "OrderDate": "1996-11-07T00:00:00", + "RequiredDate": "1996-12-05T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 2, + "Freight": 0.78, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 18, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10740, - "EmployeeID": 4, - "OrderDate": "1997-11-13T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", - "ShipVia": 2, - "Freight": 81.88, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10356, + "EmployeeID": 6, + "OrderDate": "1996-11-18T00:00:00", + "RequiredDate": "1996-12-16T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", + "ShipVia": 2, + "Freight": 36.71, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 5, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10513, + "EmployeeID": 7, + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-06-03T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", + "ShipVia": 1, + "Freight": 105.65, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, "Quantity": 40, "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 15, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10741, - "EmployeeID": 4, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 3, - "Freight": 10.96, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 13000, - "ShipCountry": "UK", + "OrderID": 10632, + "EmployeeID": 8, + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 1, + "Freight": 41.38, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 19, - "Quantity": 15, - "Discount": 0.2 + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 14000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10742, - "EmployeeID": 3, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-12-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 3, - "Freight": 243.73, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 25000, - "ShipCountry": "Canada", + "OrderID": 10640, + "EmployeeID": 4, + "OrderDate": "1997-08-21T00:00:00", + "RequiredDate": "1997-09-18T00:00:00", + "ShippedDate": "1997-08-28T00:00:00", + "ShipVia": 1, + "Freight": 23.55, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, + "ProductID": 69, + "UnitPrice": 36, "Quantity": 20, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10651, + "EmployeeID": 8, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 20.6, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, - "Discount": 0 + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10743, + "OrderID": 10668, "EmployeeID": 1, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 48000, - "ShipCountry": "UK", + "Freight": 47.22, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 15, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11046, + "EmployeeID": 8, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 71.64, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 28, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 18, "Discount": 0.06 } ] @@ -22749,394 +14104,328 @@ ] }, { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", + "CustomerID": "GODOS", + "Company": "Godos Cocina Típica", + "ContactName": "José Pedro Freyre", "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", + "Address": "C/ Romero, 33", + "City": "Sevilla", + "PostalCode": 41101, + "Country": "Spain", + "Phone": "(95) 555 82 82", "Orders": [ { - "OrderID": 10744, - "EmployeeID": 6, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", - "ShipVia": 1, - "Freight": 69.19, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderID": 10303, + "EmployeeID": 7, + "OrderDate": "1996-09-11T00:00:00", + "RequiredDate": "1996-10-09T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 107.83, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0.2 + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10745, - "EmployeeID": 9, - "OrderDate": "1997-11-18T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 1, - "Freight": 3.52, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10550, + "EmployeeID": 7, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-06-25T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 3, + "Freight": 4.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 24, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 45, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10746, - "EmployeeID": 1, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderID": 10629, + "EmployeeID": 4, + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", "ShipVia": 3, - "Freight": 31.43, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 85.46, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 64, + "UnitPrice": 33.25, "Quantity": 9, "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 40, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10747, - "EmployeeID": 6, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-26T00:00:00", - "ShipVia": 1, - "Freight": 117.33, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10872, + "EmployeeID": 5, + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 2, + "Freight": 175.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 9, - "Discount": 0 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10748, - "EmployeeID": 3, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", - "ShipVia": 1, - "Freight": 232.55, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10874, + "EmployeeID": 5, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", + "ShipVia": 2, + "Freight": 19.58, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 44, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 36000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10749, - "EmployeeID": 4, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", + "OrderID": 10888, + "EmployeeID": 1, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 2, - "Freight": 61.53, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40198, - "ShipPostalCode": 33000, - "ShipCountry": "UK", + "Freight": 51.87, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 6, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10750, - "EmployeeID": 9, - "OrderDate": "1997-11-21T00:00:00", - "RequiredDate": "1997-12-19T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", + "OrderID": 10911, + "EmployeeID": 3, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", "ShipVia": 1, - "Freight": 79.3, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 38.19, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 5, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10751, + "OrderID": 10948, "EmployeeID": 3, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-12-03T00:00:00", + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 3, - "Freight": 130.79, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 23.39, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11009, + "EmployeeID": 2, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 59.11, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 18, + "Discount": 0.25 }, { - "ProductID": 73, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 11037, + "EmployeeID": 7, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 3.2, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 70, "UnitPrice": 15, - "Quantity": 15, + "Quantity": 4, "Discount": 0 } ] @@ -23144,721 +14433,563 @@ ] }, { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 15000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", + "CustomerID": "OLDWO", + "Company": "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", "Orders": [ { - "OrderID": 10752, - "EmployeeID": 2, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", + "OrderID": 10305, + "EmployeeID": 8, + "OrderDate": "1996-09-13T00:00:00", + "RequiredDate": "1996-10-11T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", "ShipVia": 3, - "Freight": 1.39, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "Freight": 257.62, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 3, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10753, - "EmployeeID": 3, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 1, - "Freight": 7.7, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10338, + "EmployeeID": 4, + "OrderDate": "1996-10-25T00:00:00", + "RequiredDate": "1996-11-22T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", + "ShipVia": 3, + "Freight": 84.21, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 4, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10754, - "EmployeeID": 6, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 3, - "Freight": 2.38, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10441, + "EmployeeID": 3, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-24T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 2, + "Freight": 73.02, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 3, + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10755, - "EmployeeID": 4, - "OrderDate": "1997-11-26T00:00:00", - "RequiredDate": "1997-12-24T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", + "OrderID": 10594, + "EmployeeID": 3, + "OrderDate": "1997-07-09T00:00:00", + "RequiredDate": "1997-08-06T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", "ShipVia": 2, - "Freight": 16.71, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 5.24, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 58, + "UnitPrice": 13.25, "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10680, + "EmployeeID": 1, + "OrderDate": "1997-09-24T00:00:00", + "RequiredDate": "1997-10-22T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 1, + "Freight": 26.61, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 14, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0.25 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 25, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10756, + "OrderID": 10706, "EmployeeID": 8, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-02T00:00:00", - "ShipVia": 2, - "Freight": 73.21, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-11-13T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 3, + "Freight": 135.63, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10757, - "EmployeeID": 6, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 1, - "Freight": 8.19, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "OrderID": 10808, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 45.53, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 30, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 24, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10758, + "OrderID": 10855, "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-04T00:00:00", - "ShipVia": 3, - "Freight": 138.17, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 170.97, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 60, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 24, "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10759, - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", + "OrderID": 10965, + "EmployeeID": 6, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", "ShipVia": 3, - "Freight": 11.99, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 144.38, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 38000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10760, - "EmployeeID": 4, - "OrderDate": "1997-12-01T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1997-12-10T00:00:00", + "OrderID": 11034, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", "ShipVia": 1, - "Freight": 155.64, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 12000, - "ShipCountry": "Belgium", + "Freight": 40.32, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 40, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 6, + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, + "CustomerID": "LONEP", + "Company": "Lonesome Pine Restaurant", + "ContactName": "Fran Wilson", + "ContactTitle": "Sales Manager", + "Address": "89 Chiaroscuro Rd.", + "City": "Portland", + "Region": "OR", + "PostalCode": 97219, "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "Phone": "(503) 555-9573", + "Fax": "(503) 555-9646", "Orders": [ { - "OrderID": 10761, - "EmployeeID": 5, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", + "OrderID": 10307, + "EmployeeID": 2, + "OrderDate": "1996-09-17T00:00:00", + "RequiredDate": "1996-10-15T00:00:00", + "ShippedDate": "1996-09-25T00:00:00", "ShipVia": 2, - "Freight": 18.66, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, + "Freight": 0.56, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 18, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 34000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10762, - "EmployeeID": 3, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", + "OrderID": 10317, + "EmployeeID": 6, + "OrderDate": "1996-09-30T00:00:00", + "RequiredDate": "1996-10-28T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", "ShipVia": 1, - "Freight": 328.74, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", + "Freight": 12.69, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 16, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10544, + "EmployeeID": 4, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 24.91, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 28, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 7, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10662, + "EmployeeID": 3, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 2, + "Freight": 1.28, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10763, - "EmployeeID": 3, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", - "ShipVia": 3, - "Freight": 37.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "OrderID": 10665, + "EmployeeID": 1, + "OrderDate": "1997-09-11T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-17T00:00:00", + "ShipVia": 2, + "Freight": 26.31, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 6, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10764, + "OrderID": 10867, "EmployeeID": 6, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", - "ShipVia": 3, - "Freight": 145.45, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", + "ShipVia": 1, + "Freight": 1.93, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 130, - "Discount": 0.1 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10765, - "EmployeeID": 3, - "OrderDate": "1997-12-04T00:00:00", - "RequiredDate": "1998-01-01T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", + "OrderID": 10883, + "EmployeeID": 8, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 3, - "Freight": 42.74, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 0.53, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 80, - "Discount": 0.1 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10766, + "OrderID": 11018, "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 1, - "Freight": 157.55, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 2, + "Freight": 11.65, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, "Discount": 0 }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10767, - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 3, - "Freight": 1.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 2, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, "Discount": 0 } ] @@ -23866,108 +14997,137 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 43000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "CustomerID": "ANATR", + "Company": "Ana Trujillo Emparedados y helados", + "ContactName": "Ana Trujillo", + "ContactTitle": "Owner", + "Address": "Avda. de la Constitución 2222", + "City": "México D.F.", + "PostalCode": 5021, + "Country": "Mexico", + "Phone": "(5) 555-4729", + "Fax": "(5) 555-3745", "Orders": [ { - "OrderID": 10768, - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 2, - "Freight": 146.32, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 32000, - "ShipCountry": "UK", + "OrderID": 10308, + "EmployeeID": 7, + "OrderDate": "1996-09-18T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-24T00:00:00", + "ShipVia": 3, + "Freight": 1.61, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 4, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10625, + "EmployeeID": 3, + "OrderDate": "1997-08-08T00:00:00", + "RequiredDate": "1997-09-05T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", + "ShipVia": 1, + "Freight": 43.9, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10769, + "OrderID": 10759, "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 65.06, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "ShipVia": 3, + "Freight": 11.99, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10926, + "EmployeeID": 4, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 39.92, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, "Discount": 0 } ] @@ -23975,115 +15135,123 @@ ] }, { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", + "CustomerID": "THEBI", + "Company": "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", "Orders": [ { - "OrderID": 10770, + "OrderID": 10310, "EmployeeID": 8, - "OrderDate": "1997-12-09T00:00:00", - "RequiredDate": "1998-01-06T00:00:00", - "ShippedDate": "1997-12-17T00:00:00", - "ShipVia": 3, - "Freight": 5.32, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-18T00:00:00", + "ShippedDate": "1996-09-27T00:00:00", + "ShipVia": 2, + "Freight": 17.52, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 5, + "Discount": 0 + } + ] + }, { - "OrderID": 10771, - "EmployeeID": 9, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", + "OrderID": 10708, + "EmployeeID": 6, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 11.19, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 2.96, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10772, - "EmployeeID": 3, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 2, - "Freight": 91.28, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10805, + "EmployeeID": 2, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 237.34, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 18, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10992, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 4.27, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 2, "Discount": 0 } ] @@ -24091,132 +15259,131 @@ ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "DUMON", + "Company": "Du monde entier", + "ContactName": "Janine Labrune", + "ContactTitle": "Owner", + "Address": "67, rue des Cinquante Otages", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.67.88.88", + "Fax": "40.67.89.89", "Orders": [ { - "OrderID": 10773, + "OrderID": 10311, "EmployeeID": 1, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1998-01-08T00:00:00", - "ShippedDate": "1997-12-16T00:00:00", + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-26T00:00:00", "ShipVia": 3, - "Freight": 96.43, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 24.69, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 33, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 70, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 69, + "UnitPrice": 28.8, "Quantity": 7, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 18000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10774, - "EmployeeID": 4, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 48.2, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 20000, - "ShipCountry": "Sweden", + "OrderID": 10609, + "EmployeeID": 7, + "OrderDate": "1997-07-24T00:00:00", + "RequiredDate": "1997-08-21T00:00:00", + "ShippedDate": "1997-07-30T00:00:00", + "ShipVia": 2, + "Freight": 1.85, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 50, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "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", - "Orders": [ + }, + { + "OrderID": 10683, + "EmployeeID": 2, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 1, + "Freight": 4.4, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 9, + "Discount": 0 + } + ] + }, { - "OrderID": 10775, + "OrderID": 10890, "EmployeeID": 7, - "OrderDate": "1997-12-12T00:00:00", - "RequiredDate": "1998-01-09T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 1, - "Freight": 20.25, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "Freight": 32.76, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 6, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 67, + "ProductID": 34, "UnitPrice": 14, - "Quantity": 3, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, "Discount": 0 } ] @@ -24224,1031 +15391,791 @@ ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "ISLAT", + "Company": "Island Trading", + "ContactName": "Helen Bennett", + "ContactTitle": "Marketing Manager", + "Address": "Garden House Crowther Way", + "City": "Cowes", + "Region": "Northeast", + "PostalCode": 42000, + "Country": "UK", + "Phone": "(198) 555-8888", "Orders": [ { - "OrderID": 10776, - "EmployeeID": 1, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1998-01-12T00:00:00", - "ShippedDate": "1997-12-18T00:00:00", - "ShipVia": 3, - "Freight": 351.53, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10315, + "EmployeeID": 4, + "OrderDate": "1996-09-26T00:00:00", + "RequiredDate": "1996-10-24T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 41.76, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40301, + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 27, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 120, - "Discount": 0.06 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10777, - "EmployeeID": 7, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", + "OrderID": 10318, + "EmployeeID": 8, + "OrderDate": "1996-10-01T00:00:00", + "RequiredDate": "1996-10-29T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", "ShipVia": 2, - "Freight": 3.01, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 4.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 30575, + "ShipPostalCode": 43000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 18000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10778, + "OrderID": 10321, "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 1, - "Freight": 6.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 13000, - "ShipCountry": "Sweden", + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-31T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 2, + "Freight": 3.43, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 80331, + "ShipPostalCode": 24000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, + "ProductID": 35, + "UnitPrice": 14.4, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10779, - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 2, - "Freight": 58.13, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "OrderID": 10473, + "EmployeeID": 1, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", + "ShipVia": 3, + "Freight": 16.37, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60471, + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10780, - "EmployeeID": 2, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-25T00:00:00", - "ShipVia": 1, - "Freight": 42.13, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10621, + "EmployeeID": 4, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 2, + "Freight": 23.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 90304, + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 35, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10781, - "EmployeeID": 2, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 3, - "Freight": 73.16, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 35, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10782, - "EmployeeID": 9, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 1.1, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10674, + "EmployeeID": 4, + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 2, + "Freight": 0.9, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60688, + "ShipPostalCode": 25000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 1, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10783, + "OrderID": 10749, "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", "ShippedDate": "1997-12-19T00:00:00", "ShipVia": 2, - "Freight": 124.98, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 61.53, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40198, + "ShipPostalCode": 33000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10784, - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 70.09, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10798, + "EmployeeID": 2, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 1, + "Freight": 2.33, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 50129, + "ShipPostalCode": 12000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 2, - "Discount": 0.16 + "Discount": 0 }, { "ProductID": 72, "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0.16 + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10785, - "EmployeeID": 1, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 3, - "Freight": 1.51, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", + "OrderID": 10829, + "EmployeeID": 9, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-10T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 1, + "Freight": 154.72, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 20759, + "ShipPostalCode": 13000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 10, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10786, - "EmployeeID": 8, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-16T00:00:00", - "ShippedDate": "1997-12-23T00:00:00", - "ShipVia": 1, - "Freight": 110.87, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10933, + "EmployeeID": 6, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 3, + "Freight": 54.15, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40216, + "ShipPostalCode": 24000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 42, - "Discount": 0.2 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0 } ] } ] }, { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", + "CustomerID": "PERIC", + "Company": "Pericles Comidas clásicas", + "ContactName": "Guillermo Fernández", + "ContactTitle": "Sales Representative", + "Address": "Calle Dr. Jorge Cash 321", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 552-3745", + "Fax": "(5) 545-3745", "Orders": [ { - "OrderID": 10787, - "EmployeeID": 2, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 249.93, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10322, + "EmployeeID": 7, + "OrderDate": "1996-10-04T00:00:00", + "RequiredDate": "1996-11-01T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 3, + "Freight": 0.4, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 52, + "UnitPrice": 5.6, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10788, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 42.7, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10354, + "EmployeeID": 8, + "OrderDate": "1996-11-14T00:00:00", + "RequiredDate": "1996-12-12T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 3, + "Freight": 53.8, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10789, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", + "OrderID": 10474, + "EmployeeID": 5, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-04-10T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", "ShipVia": 2, - "Freight": 100.6, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 83.49, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 30, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 15, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10790, - "EmployeeID": 6, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", + "OrderID": 10502, + "EmployeeID": 2, + "OrderDate": "1997-04-10T00:00:00", + "RequiredDate": "1997-05-08T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 1, - "Freight": 28.23, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 69.32, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 3, - "Discount": 0.16 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10995, + "EmployeeID": 1, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", + "ShipVia": 3, + "Freight": 46, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 51, + "UnitPrice": 53, "Quantity": 20, - "Discount": 0.16 + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10791, - "EmployeeID": 6, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-01T00:00:00", + "OrderID": 11073, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", "ShipVia": 2, - "Freight": 16.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 24.95, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, - "Discount": 0.06 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 } ] } ] }, { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", + "CustomerID": "KOENE", + "Company": "Königlich Essen", + "ContactName": "Philip Cramer", + "ContactTitle": "Sales Associate", + "Address": "Maubelstr. 90", + "City": "Brandenburg", + "PostalCode": 14776, + "Country": "Germany", + "Phone": "0555-09876", "Orders": [ { - "OrderID": 10792, - "EmployeeID": 1, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 3, - "Freight": 23.79, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10323, + "EmployeeID": 4, + "OrderDate": "1996-10-07T00:00:00", + "RequiredDate": "1996-11-04T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 4.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 18000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10793, - "EmployeeID": 3, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", + "OrderID": 10325, + "EmployeeID": 1, + "OrderDate": "1996-10-09T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", "ShipVia": 3, - "Freight": 4.52, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "Freight": 64.86, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 12, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ - { - "OrderID": 10794, - "EmployeeID": 6, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 1, - "Freight": 21.49, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ + }, { "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.2 + "UnitPrice": 18.6, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10795, + "OrderID": 10456, "EmployeeID": 8, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-20T00:00:00", + "OrderDate": "1997-02-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", "ShipVia": 2, - "Freight": 126.66, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 8.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 65, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 21, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10796, + "OrderID": 10468, "EmployeeID": 3, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 1, - "Freight": 26.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderDate": "1997-03-07T00:00:00", + "RequiredDate": "1997-04-04T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 44.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 21, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10506, + "EmployeeID": 9, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 21.19, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 14, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10542, + "EmployeeID": 1, + "OrderDate": "1997-05-20T00:00:00", + "RequiredDate": "1997-06-17T00:00:00", + "ShippedDate": "1997-05-26T00:00:00", + "ShipVia": 3, + "Freight": 10.95, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 24, - "Discount": 0.2 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10797, - "EmployeeID": 7, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", + "OrderID": 10630, + "EmployeeID": 1, + "OrderDate": "1997-08-13T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", "ShipVia": 2, - "Freight": 33.35, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, + "Freight": 32.35, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10798, - "EmployeeID": 2, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 1, - "Freight": 2.33, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 50129, - "ShipPostalCode": 12000, - "ShipCountry": "UK", + "OrderID": 10718, + "EmployeeID": 1, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 3, + "Freight": 170.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 2, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { "OrderID": 10799, "EmployeeID": 9, @@ -25282,723 +16209,469 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10800, - "EmployeeID": 1, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 3, - "Freight": 137.44, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 50000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 7, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ - { - "OrderID": 10801, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 2, - "Freight": 97.09, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10802, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", + "OrderID": 10817, + "EmployeeID": 3, + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", "ShipVia": 2, - "Freight": 257.26, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 306.07, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 38, + "UnitPrice": 263.5, "Quantity": 30, - "Discount": 0.25 + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 40, + "UnitPrice": 18.4, "Quantity": 60, - "Discount": 0.25 + "Discount": 0.16 }, { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 5, - "Discount": 0.25 + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10803, - "EmployeeID": 4, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-06T00:00:00", - "ShipVia": 1, - "Freight": 55.23, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderID": 10849, + "EmployeeID": 9, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 2, + "Freight": 0.56, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 24, - "Discount": 0.06 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 49, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 18, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10804, - "EmployeeID": 6, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", + "OrderID": 10893, + "EmployeeID": 9, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 2, - "Freight": 27.33, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 20000, - "ShipCountry": "UK", + "Freight": 77.78, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 36, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 24, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 4, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ - { - "OrderID": 10805, - "EmployeeID": 2, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 3, - "Freight": 237.34, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", - "OrderDetails": [ + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 24, + "Discount": 0 + }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 10, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10806, - "EmployeeID": 3, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 2, - "Freight": 22.11, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 11028, + "EmployeeID": 2, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 1, + "Freight": 29.59, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 2, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 24, + "Discount": 0 } ] } ] }, { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", + "CustomerID": "SAVEA", + "Company": "Save-a-lot Markets", + "ContactName": "Jose Pavarotti", "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", + "Address": "187 Suffolk Ln.", + "City": "Boise", + "Region": "ID", + "PostalCode": 83720, + "Country": "USA", + "Phone": "(208) 555-8097", "Orders": [ { - "OrderID": 10807, - "EmployeeID": 4, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10324, + "EmployeeID": 9, + "OrderDate": "1996-10-08T00:00:00", + "RequiredDate": "1996-11-05T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "Freight": 214.27, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 1, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 21, + "Discount": 0.16 + }, + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 70, + "Discount": 0.16 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 80, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10808, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", + "OrderID": 10393, + "EmployeeID": 1, + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", "ShipVia": 3, - "Freight": 45.53, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "Freight": 126.56, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 42, + "Discount": 0.25 + }, + { + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 7, + "Discount": 0.25 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 70, + "Discount": 0.25 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 32, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10809, - "EmployeeID": 7, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 1, - "Freight": 4.87, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderID": 10398, + "EmployeeID": 2, + "OrderDate": "1996-12-30T00:00:00", + "RequiredDate": "1997-01-27T00:00:00", + "ShippedDate": "1997-01-09T00:00:00", + "ShipVia": 3, + "Freight": 89.16, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 120, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 42000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ + }, { - "OrderID": 10810, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 3, - "Freight": 4.33, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10440, + "EmployeeID": 4, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-10T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 86.53, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 45, + "Discount": 0.16 + }, + { + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 49, + "Discount": 0.16 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 5, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 90, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10811, + "OrderID": 10452, "EmployeeID": 8, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", + "OrderDate": "1997-02-20T00:00:00", + "RequiredDate": "1997-03-20T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", "ShipVia": 1, - "Freight": 31.22, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 140.26, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 15, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 100, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10812, - "EmployeeID": 5, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 1, - "Freight": 59.78, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10510, + "EmployeeID": 6, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", + "ShipVia": 3, + "Freight": 367.63, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.1 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 40, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 36, "Discount": 0.1 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10813, - "EmployeeID": 1, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 1, - "Freight": 47.38, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10555, + "EmployeeID": 6, + "OrderDate": "1997-06-02T00:00:00", + "RequiredDate": "1997-06-30T00:00:00", + "ShippedDate": "1997-06-04T00:00:00", + "ShipVia": 3, + "Freight": 252.49, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 46, - "UnitPrice": 12, + "ProductID": 19, + "UnitPrice": 9.2, "Quantity": 35, - "Discount": 0 + "Discount": 0.2 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 18, + "Discount": 0.2 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10814, - "EmployeeID": 3, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 130.94, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10603, + "EmployeeID": 8, + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 2, + "Freight": 48.77, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 48, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 8, - "Discount": 0.16 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10815, - "EmployeeID": 2, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 14.62, + "OrderID": 10607, + "EmployeeID": 5, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 1, + "Freight": 200.24, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -26006,2194 +16679,1895 @@ "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 100, + "Discount": 0 + }, { "ProductID": 33, "UnitPrice": 2.5, - "Quantity": 16, + "Quantity": 14, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ - { - "OrderID": 10816, - "EmployeeID": 4, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-02-03T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 2, - "Freight": 719.78, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 42, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10817, - "EmployeeID": 3, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", + "OrderID": 10612, + "EmployeeID": 1, + "OrderDate": "1997-07-28T00:00:00", + "RequiredDate": "1997-08-25T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 306.07, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 544.08, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0.16 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 40, + "Discount": 0 }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0 + } + ] + }, + { + "OrderID": 10627, + "EmployeeID": 8, + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 107.46, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 25, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10818, - "EmployeeID": 7, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 3, - "Freight": 65.48, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10657, + "EmployeeID": 2, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", + "ShipVia": 2, + "Freight": 352.69, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 50, "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 20, + "Quantity": 24, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10819, - "EmployeeID": 2, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 19.76, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ + }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 7, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10820, - "EmployeeID": 3, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 37.52, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ + }, { "ProductID": 56, "UnitPrice": 38, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10821, - "EmployeeID": 1, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-15T00:00:00", - "ShipVia": 1, - "Freight": 36.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, + "OrderID": 10678, + "EmployeeID": 7, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", + "ShipVia": 3, + "Freight": 388.98, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 100, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 6, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "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", - "Orders": [ - { - "OrderID": 10822, - "EmployeeID": 6, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 7, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 120, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10823, - "EmployeeID": 5, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 163.97, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10700, + "EmployeeID": 3, + "OrderDate": "1997-10-10T00:00:00", + "RequiredDate": "1997-11-07T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", + "ShipVia": 1, + "Freight": 65.1, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 40, - "Discount": 0.1 + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 46000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10824, - "EmployeeID": 8, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 1.23, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 23000, - "ShipCountry": "Sweden", + "OrderID": 10711, + "EmployeeID": 5, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 2, + "Freight": 52.41, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0 + }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 12, + "Quantity": 42, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 9, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 120, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10825, + "OrderID": 10713, "EmployeeID": 1, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", + "OrderDate": "1997-10-22T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-24T00:00:00", "ShipVia": 1, - "Freight": 79.25, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 167.05, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0 + }, { "ProductID": 26, "UnitPrice": 31.23, - "Quantity": 12, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 20, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 110, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10826, - "EmployeeID": 6, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", + "OrderID": 10722, + "EmployeeID": 8, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-04T00:00:00", "ShipVia": 1, - "Freight": 7.09, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 74.58, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 3, + "Discount": 0 + }, { "ProductID": 31, "UnitPrice": 12.5, - "Quantity": 35, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10827, - "EmployeeID": 1, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", - "ShipVia": 2, - "Freight": 63.54, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10748, + "EmployeeID": 3, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", + "ShipVia": 1, + "Freight": 232.55, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 44, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, + "Discount": 0 + } + ] + }, + { + "OrderID": 10757, + "EmployeeID": 6, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 1, + "Freight": 8.19, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 15, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10828, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 1, - "Freight": 90.85, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10815, + "EmployeeID": 2, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 3, + "Freight": 14.62, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, "Discount": 0 + } + ] + }, + { + "OrderID": 10847, + "EmployeeID": 4, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 3, + "Freight": 487.57, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.2 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 2, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0.2 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 60, + "Discount": 0.2 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 36, + "Discount": 0.2 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 45, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 55, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10829, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-10T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 1, - "Freight": 154.72, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 20759, - "ShipPostalCode": 13000, - "ShipCountry": "UK", + "OrderID": 10882, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 3, + "Freight": 23.1, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 8, - "UnitPrice": 40, + "ProductID": 49, + "UnitPrice": 20, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 32, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10894, + "EmployeeID": 1, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 1, + "Freight": 116.13, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { "ProductID": 13, "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 + "Quantity": 28, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 120, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10830, - "EmployeeID": 4, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", + "OrderID": 10941, + "EmployeeID": 7, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 81.83, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "Freight": 400.81, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 28, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 44, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 30, - "Discount": 0 + "Discount": 0.25 }, { "ProductID": 68, "UnitPrice": 12.5, - "Quantity": 24, + "Quantity": 80, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10831, - "EmployeeID": 3, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderID": 10983, + "EmployeeID": 2, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", "ShipVia": 2, - "Freight": 72.19, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 657.54, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 8, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 84, + "Discount": 0.16 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 9, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10832, - "EmployeeID": 2, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 43.26, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 11002, + "EmployeeID": 4, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 1, + "Freight": 141.16, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 13, "UnitPrice": 6, - "Quantity": 3, - "Discount": 0.2 + "Quantity": 56, + "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0.2 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 3, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10833, - "EmployeeID": 6, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderID": 11030, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", "ShipVia": 2, - "Freight": 71.49, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 830.75, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 9, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 100, + "Discount": 0.25 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 9, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10834, - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 3, - "Freight": 29.78, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 70, + "Discount": 0 + }, { "ProductID": 29, "UnitPrice": 123.79, - "Quantity": 8, - "Discount": 0.06 + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 100, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10835, + "OrderID": 11064, "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 3, - "Freight": 69.53, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 30.09, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 77, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 55, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "BOLID", + "Company": "Bólido Comidas preparadas", + "ContactName": "Martín Sommer", + "ContactTitle": "Owner", + "Address": "C/ Araquil, 67", + "City": "Madrid", + "PostalCode": 28023, + "Country": "Spain", + "Phone": "(91) 555 22 82", + "Fax": "(91) 555 91 99", "Orders": [ { - "OrderID": 10836, - "EmployeeID": 7, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 1, - "Freight": 411.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10326, + "EmployeeID": 4, + "OrderDate": "1996-10-10T00:00:00", + "RequiredDate": "1996-11-07T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 2, + "Freight": 77.92, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 52, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 6, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 24, "Discount": 0 }, { "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 24, + "UnitPrice": 15.6, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 60, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 50, "Discount": 0 + } + ] + }, + { + "OrderID": 10801, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 2, + "Freight": 97.09, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10970, + "EmployeeID": 9, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 1, + "Freight": 16.16, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 40, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "FURIB", + "Company": "Furia Bacalhau e Frutos do Mar", + "ContactName": "Lino Rodriguez", + "ContactTitle": "Sales Manager", + "Address": "Jardim das rosas n. 32", + "City": "Lisboa", + "PostalCode": 1675, + "Country": "Portugal", + "Phone": "(1) 354-2534", + "Fax": "(1) 354-2535", "Orders": [ { - "OrderID": 10837, - "EmployeeID": 9, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderID": 10328, + "EmployeeID": 4, + "OrderDate": "1996-10-14T00:00:00", + "RequiredDate": "1996-11-11T00:00:00", + "ShippedDate": "1996-10-17T00:00:00", "ShipVia": 3, - "Freight": 13.32, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 44000, - "ShipCountry": "Sweden", + "Freight": 87.03, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 65, + "UnitPrice": 16.8, "Quantity": 40, - "Discount": 0.25 + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10838, + "OrderID": 10352, "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderDate": "1996-11-12T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-18T00:00:00", "ShipVia": 3, - "Freight": 59.28, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 1.3, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10839, - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-22T00:00:00", - "ShipVia": 3, - "Freight": 35.43, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "OrderID": 10464, + "EmployeeID": 4, + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 2, + "Freight": 89, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 16, + "Discount": 0.2 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, "Quantity": 30, - "Discount": 0.1 + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10840, - "EmployeeID": 4, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", - "ShipVia": 2, - "Freight": 2.71, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10491, + "EmployeeID": 8, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-08T00:00:00", + "ShipVia": 3, + "Freight": 16.96, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10841, - "EmployeeID": 5, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 2, - "Freight": 424.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10551, + "EmployeeID": 4, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 3, + "Freight": 72.95, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 50, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 40, "Discount": 0 + } + ] + }, + { + "OrderID": 10604, + "EmployeeID": 1, + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", + "ShipVia": 1, + "Freight": 7.46, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 6, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10842, + "OrderID": 10664, "EmployeeID": 1, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", "ShipVia": 3, - "Freight": 54.42, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 1.27, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 5, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 12, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10843, - "EmployeeID": 4, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 9.26, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10963, + "EmployeeID": 9, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 3, + "Freight": 2.7, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", + "CustomerID": "BONAP", + "Company": "Bon app'", + "ContactName": "Laurence Lebihan", + "ContactTitle": "Owner", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", "Orders": [ { - "OrderID": 10844, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 25.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10331, + "EmployeeID": 9, + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-27T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", + "ShipVia": 1, + "Freight": 10.19, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 35, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10845, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 212.98, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10340, + "EmployeeID": 1, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 166.31, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.1 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 42, - "Discount": 0.1 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 48, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 40, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10846, - "EmployeeID": 2, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 56.46, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10362, + "EmployeeID": 3, + "OrderDate": "1996-11-25T00:00:00", + "RequiredDate": "1996-12-23T00:00:00", + "ShippedDate": "1996-11-28T00:00:00", + "ShipVia": 1, + "Freight": 96.04, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 21, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10847, + "OrderID": 10470, "EmployeeID": 4, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 3, - "Freight": 487.57, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 2, + "Freight": 64.56, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.2 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 60, - "Discount": 0.2 - }, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10511, + "EmployeeID": 4, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 350.64, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 36, - "Discount": 0.2 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 55, - "Discount": 0.2 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ + }, { - "OrderID": 10848, - "EmployeeID": 7, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", + "OrderID": 10525, + "EmployeeID": 1, + "OrderDate": "1997-05-02T00:00:00", + "RequiredDate": "1997-05-30T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", "ShipVia": 2, - "Freight": 38.24, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 39000, - "ShipCountry": "UK", + "Freight": 11.06, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 30, "Discount": 0 }, { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 3, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10849, - "EmployeeID": 9, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10663, + "EmployeeID": 2, + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-09-24T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 113.15, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 49, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 18, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10850, - "EmployeeID": 1, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10715, + "EmployeeID": 3, + "OrderDate": "1997-10-23T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 1, - "Freight": 49.19, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, + "Freight": 63.2, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 4, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 71, + "UnitPrice": 21.5, "Quantity": 30, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10851, + "OrderID": 10730, "EmployeeID": 5, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-23T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderDate": "1997-11-05T00:00:00", + "RequiredDate": "1997-12-03T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", "ShipVia": 1, - "Freight": 160.55, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 20.12, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, "Discount": 0.06 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 3, "Discount": 0.06 }, { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 65, + "UnitPrice": 21.05, "Quantity": 10, "Discount": 0.06 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, - "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10852, - "EmployeeID": 8, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10732, + "EmployeeID": 3, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", "ShipVia": 1, - "Freight": 174.05, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 16.97, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 + } + ] + }, + { + "OrderID": 10755, + "EmployeeID": 4, + "OrderDate": "1997-11-26T00:00:00", + "RequiredDate": "1997-12-24T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", + "ShipVia": 2, + "Freight": 16.71, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 14, + "Discount": 0.25 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 25, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10827, + "EmployeeID": 1, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 2, + "Freight": 63.54, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 50, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10853, + "OrderID": 10871, "EmployeeID": 9, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", "ShipVia": 2, - "Freight": 53.83, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "Freight": 112.27, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, - "Discount": 0 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10854, - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-05T00:00:00", - "ShipVia": 2, - "Freight": 100.22, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10876, + "EmployeeID": 7, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 60.42, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 100, - "Discount": 0.16 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10855, - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", + "OrderID": 10932, + "EmployeeID": 8, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 1, - "Freight": 170.97, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 134.64, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 16, "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0 + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 14, + "Discount": 0.1 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 24, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10940, + "EmployeeID": 8, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 3, + "Freight": 19.77, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10856, - "EmployeeID": 3, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", + "OrderID": 11076, + "EmployeeID": 4, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", "ShipVia": 2, - "Freight": 58.43, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "Freight": 38.28, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, + "Discount": 0.25 + }, + { + "ProductID": 14, + "UnitPrice": 23.25, "Quantity": 20, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, + "Discount": 0.25 } ] } ] }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 33000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "MEREP", + "Company": "Mère Paillarde", + "ContactName": "Jean Fresnière", + "ContactTitle": "Marketing Assistant", + "Address": "43 rue St. Laurent", + "City": "Montréal", + "Region": "Québec", + "PostalCode": 49000, + "Country": "Canada", + "Phone": "(514) 555-8054", + "Fax": "(514) 555-8055", "Orders": [ { - "OrderID": 10857, - "EmployeeID": 8, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", + "OrderID": 10332, + "EmployeeID": 3, + "OrderDate": "1996-10-17T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", "ShipVia": 2, - "Freight": 188.85, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 43000, - "ShipCountry": "Sweden", + "Freight": 52.84, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 36000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0.25 + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 16, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne d'abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de l'Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ + }, { - "OrderID": 10858, + "OrderID": 10339, "EmployeeID": 2, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", - "ShipVia": 1, - "Freight": 52.51, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "OrderDate": "1996-10-28T00:00:00", + "RequiredDate": "1996-11-25T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", + "ShipVia": 2, + "Freight": 15.66, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 10, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10859, + "OrderID": 10376, "EmployeeID": 1, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", "ShipVia": 2, - "Freight": 76.1, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 20.39, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 11000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 35, - "Discount": 0.25 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 42, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10860, - "EmployeeID": 3, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 3, - "Freight": 19.26, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10424, + "EmployeeID": 7, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-20T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 2, + "Freight": 370.61, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 49, + "Discount": 0.2 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10861, - "EmployeeID": 4, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-02-27T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", - "ShipVia": 2, - "Freight": 14.93, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10439, + "EmployeeID": 6, + "OrderDate": "1997-02-07T00:00:00", + "RequiredDate": "1997-03-07T00:00:00", + "ShippedDate": "1997-02-10T00:00:00", + "ShipVia": 3, + "Freight": 4.07, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 42, + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 35, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10505, + "EmployeeID": 3, + "OrderDate": "1997-04-14T00:00:00", + "RequiredDate": "1997-05-12T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 7.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 11000, + "ShipCountry": "Canada", + "OrderDetails": [ { "ProductID": 62, "UnitPrice": 49.3, @@ -28201,132 +18575,195 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10862, + "OrderID": 10565, "EmployeeID": 8, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderDate": "1997-06-11T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", "ShipVia": 2, - "Freight": 53.23, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 7.15, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 24000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 18, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10570, + "EmployeeID": 3, + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-19T00:00:00", + "ShipVia": 3, + "Freight": 188.99, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { "ProductID": 11, "UnitPrice": 21, - "Quantity": 25, - "Discount": 0 + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10863, + "OrderID": 10590, "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 3, + "Freight": 44.77, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 47000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 60, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10605, + "EmployeeID": 1, + "OrderDate": "1997-07-21T00:00:00", + "RequiredDate": "1997-08-18T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", "ShipVia": 2, - "Freight": 30.26, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 379.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 43000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 70, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10618, + "EmployeeID": 1, + "OrderDate": "1997-08-01T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 1, + "Freight": 154.68, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 49000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, "Quantity": 20, - "Discount": 0.16 + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10864, - "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", + "OrderID": 10724, + "EmployeeID": 8, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 3.04, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "Freight": 57.75, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 39000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] @@ -28334,372 +18771,367 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", + "CustomerID": "PRINI", + "Company": "Princesa Isabel Vinhos", + "ContactName": "Isabel de Castro", + "ContactTitle": "Sales Representative", + "Address": "Estrada da saúde n. 58", + "City": "Lisboa", + "PostalCode": 1756, + "Country": "Portugal", + "Phone": "(1) 356-5634", "Orders": [ { - "OrderID": 10865, - "EmployeeID": 2, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 1, - "Freight": 348.14, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10336, + "EmployeeID": 7, + "OrderDate": "1996-10-23T00:00:00", + "RequiredDate": "1996-11-20T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", + "ShipVia": 2, + "Freight": 15.51, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, - "Discount": 0.06 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 18, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10866, + "OrderID": 10397, "EmployeeID": 5, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-03T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-24T00:00:00", + "ShippedDate": "1997-01-02T00:00:00", "ShipVia": 1, - "Freight": 109.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "Freight": 60.26, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 6, - "Discount": 0.25 - }, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10433, + "EmployeeID": 3, + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 73.83, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 28, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10867, - "EmployeeID": 6, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 1, - "Freight": 1.93, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10477, + "EmployeeID": 5, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", + "ShipVia": 2, + "Freight": 13.02, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10868, - "EmployeeID": 7, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", + "OrderID": 11007, + "EmployeeID": 8, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 191.27, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 202.24, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 42, - "Discount": 0.1 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 14, + "Discount": 0 } ] } ] }, { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 34000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", + "CustomerID": "SIMOB", + "Company": "Simons bistro", + "ContactName": "Jytte Petersen", + "ContactTitle": "Owner", + "Address": "Vinbæltet 34", + "City": "Kobenhavn", + "PostalCode": 1734, + "Country": "Denmark", + "Phone": "31 12 34 56", + "Fax": "31 13 35 57", "Orders": [ { - "OrderID": 10869, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 1, - "Freight": 143.28, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "OrderID": 10341, + "EmployeeID": 7, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", + "ShipVia": 3, + "Freight": 26.78, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 - }, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10417, + "EmployeeID": 4, + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-28T00:00:00", + "ShipVia": 3, + "Freight": 70.29, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 50, "Discount": 0 }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 2, + "Discount": 0.25 + }, { "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "UnitPrice": 10, + "Quantity": 36, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10870, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", + "OrderID": 10556, + "EmployeeID": 2, + "OrderDate": "1997-06-03T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 1, + "Freight": 9.8, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10642, + "EmployeeID": 7, + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-09-05T00:00:00", "ShipVia": 3, - "Freight": 12.04, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 41.89, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10669, + "EmployeeID": 2, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", + "ShipVia": 1, + "Freight": 24.39, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 2, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10871, - "EmployeeID": 9, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", + "OrderID": 10802, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", "ShipVia": 2, - "Freight": 112.27, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 257.26, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, + "Discount": 0.25 }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ - { - "OrderID": 10872, - "EmployeeID": 5, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 2, - "Freight": 175.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", - "OrderDetails": [ { "ProductID": 55, "UnitPrice": 24, - "Quantity": 10, - "Discount": 0.06 + "Quantity": 60, + "Discount": 0.25 }, { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.06 - }, + "Quantity": 5, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11074, + "EmployeeID": 7, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShipVia": 2, + "Freight": 18.44, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, "Discount": 0.06 } ] @@ -28707,292 +19139,246 @@ ] }, { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", + "CustomerID": "FAMIA", + "Company": "Familia Arquibaldo", + "ContactName": "Aria Cruz", + "ContactTitle": "Marketing Assistant", + "Address": "Rua Orós, 92", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5442, + "Country": "Brazil", + "Phone": "(11) 555-9857", "Orders": [ { - "OrderID": 10873, + "OrderID": 10347, "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 1, - "Freight": 0.82, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderDate": "1996-11-06T00:00:00", + "RequiredDate": "1996-12-04T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 3.1, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 50, + "Discount": 0.16 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 4, "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10874, - "EmployeeID": 5, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 2, - "Freight": 19.58, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10386, + "EmployeeID": 9, + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-25T00:00:00", + "ShipVia": 3, + "Freight": 13.99, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 34, + "UnitPrice": 11.2, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10875, - "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 2, - "Freight": 32.37, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 37000, - "ShipCountry": "Sweden", + "OrderID": 10414, + "EmployeeID": 2, + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-17T00:00:00", + "ShipVia": 3, + "Freight": 21.48, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 21, - "Discount": 0.1 + "UnitPrice": 7.3, + "Quantity": 18, + "Discount": 0.06 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10876, + "OrderID": 10512, "EmployeeID": 7, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 3, - "Freight": 60.42, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderDate": "1997-04-21T00:00:00", + "RequiredDate": "1997-05-19T00:00:00", + "ShippedDate": "1997-04-24T00:00:00", + "ShipVia": 2, + "Freight": 3.53, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.16 + }, { "ProductID": 46, "UnitPrice": 12, - "Quantity": 21, - "Discount": 0 + "Quantity": 9, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, - "Discount": 0 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.16 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10877, - "EmployeeID": 1, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", + "OrderID": 10581, + "EmployeeID": 3, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-02T00:00:00", "ShipVia": 1, - "Freight": 38.06, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, + "Freight": 3.01, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10878, - "EmployeeID": 4, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 1, - "Freight": 46.69, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10650, + "EmployeeID": 5, + "OrderDate": "1997-08-29T00:00:00", + "RequiredDate": "1997-09-26T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 176.81, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, + "Discount": 0 + } + ] + }, { - "OrderID": 10879, - "EmployeeID": 3, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderID": 10725, + "EmployeeID": 4, + "OrderDate": "1997-10-31T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 3, - "Freight": 8.5, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 10.83, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 12, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] @@ -29000,1554 +19386,1463 @@ ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 41000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "LAMAI", + "Company": "La maison d'Asie", + "ContactName": "Annette Roulet", + "ContactTitle": "Sales Manager", + "Address": "1 rue Alsace-Lorraine", + "City": "Toulouse", + "PostalCode": 31000, + "Country": "France", + "Phone": "61.77.61.10", + "Fax": "61.77.61.11", "Orders": [ { - "OrderID": 10880, - "EmployeeID": 7, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", + "OrderID": 10350, + "EmployeeID": 6, + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 64.19, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 18, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10358, + "EmployeeID": 5, + "OrderDate": "1996-11-20T00:00:00", + "RequiredDate": "1996-12-18T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", "ShipVia": 1, - "Freight": 88.01, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 26000, - "ShipCountry": "Sweden", + "Freight": 19.64, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10881, - "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", + "OrderID": 10371, + "EmployeeID": 1, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", "ShipVia": 1, - "Freight": 2.84, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 0.45, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 10, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 6, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10413, + "EmployeeID": 3, + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 2, + "Freight": 95.66, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, + { + "OrderID": 10425, + "EmployeeID": 6, + "OrderDate": "1997-01-24T00:00:00", + "RequiredDate": "1997-02-21T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 2, + "Freight": 7.93, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 10, + "Discount": 0.25 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 + } + ] + }, { - "OrderID": 10882, + "OrderID": 10454, "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-25T00:00:00", "ShipVia": 3, - "Freight": 23.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 2.74, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 25, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 49, - "UnitPrice": 20, + "ProductID": 33, + "UnitPrice": 2, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 32, - "Discount": 0.16 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10883, - "EmployeeID": 8, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", + "OrderID": 10493, + "EmployeeID": 4, + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", "ShipVia": 3, - "Freight": 0.53, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 10.64, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 8, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10884, - "EmployeeID": 4, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", - "ShipVia": 2, - "Freight": 90.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10500, + "EmployeeID": 6, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-17T00:00:00", + "ShipVia": 1, + "Freight": 42.68, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 12, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 21, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, "Discount": 0.06 - }, + } + ] + }, + { + "OrderID": 10610, + "EmployeeID": 8, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 1, + "Freight": 26.78, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10885, - "EmployeeID": 6, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 3, - "Freight": 5.64, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10631, + "EmployeeID": 8, + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-15T00:00:00", + "ShipVia": 1, + "Freight": 0.87, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 8, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10787, + "EmployeeID": 2, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 249.93, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10832, + "EmployeeID": 2, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 43.26, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 25, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10886, - "EmployeeID": 1, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 1, - "Freight": 4.99, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10923, + "EmployeeID": 7, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 68.26, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 40, - "Discount": 0 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10887, - "EmployeeID": 8, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", + "OrderID": 11051, + "EmployeeID": 7, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", "ShipVia": 3, - "Freight": 1.25, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "Freight": 2.79, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", + "CustomerID": "PICCO", + "Company": "Piccolo und mehr", + "ContactName": "Georg Pipps", "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "Address": "Geislweg 14", + "City": "Salzburg", + "PostalCode": 5020, + "Country": "Austria", + "Phone": "6562-9722", + "Fax": "6562-9723", "Orders": [ { - "OrderID": 10888, - "EmployeeID": 1, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 2, - "Freight": 51.87, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10353, + "EmployeeID": 7, + "OrderDate": "1996-11-13T00:00:00", + "RequiredDate": "1996-12-11T00:00:00", + "ShippedDate": "1996-11-25T00:00:00", + "ShipVia": 3, + "Freight": 360.63, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10392, + "EmployeeID": 2, + "OrderDate": "1996-12-24T00:00:00", + "RequiredDate": "1997-01-21T00:00:00", + "ShippedDate": "1997-01-01T00:00:00", + "ShipVia": 3, + "Freight": 122.46, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 50, + "Discount": 0 + } + ] + }, + { + "OrderID": 10427, + "EmployeeID": 4, + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 2, + "Freight": 31.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10889, - "EmployeeID": 9, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 3, - "Freight": 280.61, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10489, + "EmployeeID": 6, + "OrderDate": "1997-03-28T00:00:00", + "RequiredDate": "1997-04-25T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", + "ShipVia": 2, + "Freight": 5.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10890, - "EmployeeID": 7, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 32.76, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10530, + "EmployeeID": 3, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", + "ShipVia": 2, + "Freight": 339.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 17, "UnitPrice": 39, - "Quantity": 15, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10891, + "OrderID": 10597, "EmployeeID": 7, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 20.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", + "ShipVia": 3, + "Freight": 35.12, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 46000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10892, - "EmployeeID": 4, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 120.27, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 30000, - "ShipCountry": "Belgium", + "OrderID": 10686, + "EmployeeID": 2, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-08T00:00:00", + "ShipVia": 1, + "Freight": 96.5, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10893, - "EmployeeID": 9, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 2, - "Freight": 77.78, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10747, + "EmployeeID": 6, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-26T00:00:00", + "ShipVia": 1, + "Freight": 117.33, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 24, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 35, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10844, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", + "ShipVia": 2, + "Freight": 25.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10894, - "EmployeeID": 1, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 1, - "Freight": 116.13, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11053, + "EmployeeID": 2, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 28, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 120, - "Discount": 0.06 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 25, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "AROUT", + "Company": "Around the Horn", + "ContactName": "Thomas Hardy", + "ContactTitle": "Sales Representative", + "Address": "120 Hanover Sq.", + "City": "London", + "PostalCode": 19000, + "Country": "UK", + "Phone": "(171) 555-7788", + "Fax": "(171) 555-6750", "Orders": [ { - "OrderID": 10895, - "EmployeeID": 3, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", + "OrderID": 10355, + "EmployeeID": 6, + "OrderDate": "1996-11-15T00:00:00", + "RequiredDate": "1996-12-13T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", "ShipVia": 1, - "Freight": 162.75, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 41.95, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 110, + "UnitPrice": 3.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 45, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10383, + "EmployeeID": 8, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-18T00:00:00", + "ShipVia": 3, + "Freight": 34.24, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 36000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 91, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 100, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 29000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10896, - "EmployeeID": 7, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 32.45, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 15000, - "ShipCountry": "Belgium", + "OrderID": 10453, + "EmployeeID": 1, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", + "ShipVia": 2, + "Freight": 25.36, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 46000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 48, + "UnitPrice": 10.2, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 16, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10897, - "EmployeeID": 3, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-25T00:00:00", + "OrderID": 10558, + "EmployeeID": 1, + "OrderDate": "1997-06-04T00:00:00", + "RequiredDate": "1997-07-02T00:00:00", + "ShippedDate": "1997-06-10T00:00:00", "ShipVia": 2, - "Freight": 603.54, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 72.97, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 27000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 80, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 36, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10898, + "OrderID": 10707, "EmployeeID": 4, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 1.27, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 3, + "Freight": 21.74, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10899, - "EmployeeID": 5, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", + "OrderID": 10741, + "EmployeeID": 4, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 1.21, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 10.96, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 13000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10900, + "OrderID": 10743, "EmployeeID": 1, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", "ShipVia": 2, - "Freight": 1.66, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 48000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 28, + "Discount": 0.06 + } + ] + }, { - "OrderID": 10901, - "EmployeeID": 4, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", - "ShipVia": 1, - "Freight": 62.09, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10768, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 2, + "Freight": 146.32, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 }, { "ProductID": 71, "UnitPrice": 21.5, - "Quantity": 30, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 25000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10902, - "EmployeeID": 1, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 1, - "Freight": 44.15, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 33000, - "ShipCountry": "Sweden", + "OrderID": 10793, + "EmployeeID": 3, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", + "ShipVia": 3, + "Freight": 4.52, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10903, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 36.71, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10864, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 2, + "Freight": 3.04, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10904, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 162.95, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10920, + "EmployeeID": 4, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", + "ShipVia": 2, + "Freight": 29.61, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 35, + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10905, + "OrderID": 10953, "EmployeeID": 9, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-25T00:00:00", "ShipVia": 2, - "Freight": 13.72, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 35000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10906, - "EmployeeID": 4, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 3, - "Freight": 26.29, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 11016, + "EmployeeID": 9, + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 2, + "Freight": 33.8, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 16, + "Discount": 0 } ] } ] }, { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", + "CustomerID": "SEVES", + "Company": "Seven Seas Imports", + "ContactName": "Hari Kumar", + "ContactTitle": "Sales Manager", + "Address": "90 Wadhurst Rd.", + "City": "London", + "PostalCode": 32000, + "Country": "UK", + "Phone": "(171) 555-1717", + "Fax": "(171) 555-5646", "Orders": [ { - "OrderID": 10907, - "EmployeeID": 6, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-25T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", + "OrderID": 10359, + "EmployeeID": 5, + "OrderDate": "1996-11-21T00:00:00", + "RequiredDate": "1996-12-19T00:00:00", + "ShippedDate": "1996-11-26T00:00:00", "ShipVia": 3, - "Freight": 9.19, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 288.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 14, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 56, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 70, + "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10908, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 32.96, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10377, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 22.21, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 41000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 20, - "Discount": 0.06 + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 14, - "Discount": 0.06 + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10909, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-10T00:00:00", - "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10388, + "EmployeeID": 2, + "OrderDate": "1996-12-19T00:00:00", + "RequiredDate": "1997-01-16T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", + "ShipVia": 1, + "Freight": 34.86, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 45000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 12, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 7.6, + "Quantity": 15, + "Discount": 0.2 + }, + { + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10472, + "EmployeeID": 8, + "OrderDate": "1997-03-12T00:00:00", + "RequiredDate": "1997-04-09T00:00:00", + "ShippedDate": "1997-03-19T00:00:00", + "ShipVia": 1, + "Freight": 4.2, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 33000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 80, + "Discount": 0.06 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 5, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10910, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 38.11, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10523, + "EmployeeID": 7, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 2, + "Freight": 77.63, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 42000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 10, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 6, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10911, + "OrderID": 10547, "EmployeeID": 3, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", - "ShipVia": 1, - "Freight": 38.19, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", + "ShipVia": 2, + "Freight": 178.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 48000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 12, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10912, - "EmployeeID": 2, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 2, - "Freight": 580.91, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10800, + "EmployeeID": 1, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 3, + "Freight": 137.44, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 50000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 11, "UnitPrice": 21, - "Quantity": 40, - "Discount": 0.25 + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 7, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10913, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 1, - "Freight": 33.05, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10804, + "EmployeeID": 6, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", + "ShipVia": 2, + "Freight": 27.33, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 20000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 4, + "Discount": 0.16 } ] }, { - "OrderID": 10914, - "EmployeeID": 6, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", + "OrderID": 10869, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", "ShipVia": 1, - "Freight": 21.19, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 143.28, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 25, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ - { - "OrderID": 10915, - "EmployeeID": 2, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 2, - "Freight": 3.51, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 17, - "UnitPrice": 39, + "ProductID": 11, + "UnitPrice": 21, "Quantity": 10, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 } ] @@ -30555,183 +20850,169 @@ ] }, { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", + "CustomerID": "DRACD", + "Company": "Drachenblut Delikatessen", + "ContactName": "Sven Ottlieb", + "ContactTitle": "Order Administrator", + "Address": "Walserweg 21", + "City": "Aachen", + "PostalCode": 52066, + "Country": "Germany", + "Phone": "0241-039123", + "Fax": "0241-059428", "Orders": [ { - "OrderID": 10916, - "EmployeeID": 1, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 2, - "Freight": 63.77, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10363, + "EmployeeID": 4, + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1996-12-24T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", + "ShipVia": 3, + "Freight": 30.54, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 6, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 6, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10917, - "EmployeeID": 4, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 2, - "Freight": 8.29, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10391, + "EmployeeID": 3, + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-31T00:00:00", + "ShipVia": 3, + "Freight": 5.45, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 1, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10797, + "EmployeeID": 7, + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 2, + "Freight": 33.35, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 42000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10918, - "EmployeeID": 3, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 3, - "Freight": 48.83, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10825, + "EmployeeID": 1, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 1, + "Freight": 79.25, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10919, - "EmployeeID": 2, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 2, - "Freight": 19.8, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 11036, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 3, + "Freight": 149.47, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 24, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 24, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11067, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 7.98, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 20, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, "Discount": 0 } ] @@ -30739,316 +21020,267 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", + "CustomerID": "EASTC", + "Company": "Eastern Connection", + "ContactName": "Ann Devon", + "ContactTitle": "Sales Agent", + "Address": "35 King George", "City": "London", - "PostalCode": 34000, + "PostalCode": 20000, "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Phone": "(171) 555-0297", + "Fax": "(171) 555-3373", "Orders": [ { - "OrderID": 10920, - "EmployeeID": 4, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 2, - "Freight": 29.61, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 28000, + "OrderID": 10364, + "EmployeeID": 1, + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", + "ShipVia": 1, + "Freight": 71.97, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 20000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 24, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10921, + "OrderID": 10400, "EmployeeID": 1, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 1, - "Freight": 176.48, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 3, + "Freight": 83.93, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 21, + "Discount": 0 + }, { "ProductID": 35, - "UnitPrice": 18, - "Quantity": 10, + "UnitPrice": 14.4, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 40, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10922, - "EmployeeID": 5, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", + "OrderID": 10532, + "EmployeeID": 7, + "OrderDate": "1997-05-09T00:00:00", + "RequiredDate": "1997-06-06T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", "ShipVia": 3, - "Freight": 62.74, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 74.46, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 45000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10726, + "EmployeeID": 4, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 16.56, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 21000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 15, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10923, - "EmployeeID": 7, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 3, - "Freight": 68.26, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10987, + "EmployeeID": 8, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", + "ShipVia": 1, + "Freight": 185.48, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 30000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, + "Discount": 0 }, { "ProductID": 43, "UnitPrice": 46, - "Quantity": 10, - "Discount": 0.2 + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0.2 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 11000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10924, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 2, - "Freight": 151.52, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", + "OrderID": 11024, + "EmployeeID": 4, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 74.36, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 33, + "UnitPrice": 2.5, "Quantity": 30, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 6, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10925, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 1, - "Freight": 2.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 11047, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 46.62, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 42000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 25, - "Discount": 0.16 + "Discount": 0.25 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10926, - "EmployeeID": 4, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 3, - "Freight": 39.92, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "OrderID": 11056, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 2, + "Freight": 278.96, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 39000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 } ] @@ -31056,329 +21288,226 @@ ] }, { - "CustomerID": "LACOR", - "Company": "La corne d'abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de l'Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", + "CustomerID": "ANTON", + "Company": "Antonio Moreno Taquería", + "ContactName": "Antonio Moreno", + "ContactTitle": "Owner", + "Address": "Mataderos 2312", + "City": "México D.F.", + "PostalCode": 5023, + "Country": "Mexico", + "Phone": "(5) 555-3932", "Orders": [ { - "OrderID": 10927, - "EmployeeID": 4, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 19.79, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "OrderID": 10365, + "EmployeeID": 3, + "OrderDate": "1996-11-27T00:00:00", + "RequiredDate": "1996-12-25T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 22, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10928, - "EmployeeID": 1, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10507, + "EmployeeID": 7, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-04-22T00:00:00", "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "Freight": 47.45, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0 + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10929, - "EmployeeID": 6, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", + "OrderID": 10535, + "EmployeeID": 4, + "OrderDate": "1997-05-13T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-21T00:00:00", "ShipVia": 1, - "Freight": 33.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 15.64, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 49, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 59, + "UnitPrice": 55, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10930, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10573, + "EmployeeID": 7, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-20T00:00:00", "ShipVia": 3, - "Freight": 15.55, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 84.84, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 36, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 25, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10931, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 2, - "Freight": 13.6, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10677, + "EmployeeID": 1, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 3, + "Freight": 4.03, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 42, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 30, "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10932, - "EmployeeID": 8, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", - "ShipVia": 1, - "Freight": 134.64, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10682, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 2, + "Freight": 36.13, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, + "ProductID": 33, + "UnitPrice": 2.5, "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 14, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 16, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 4, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.1 + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 22000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10933, - "EmployeeID": 6, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 3, - "Freight": 54.15, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40216, - "ShipPostalCode": 24000, - "ShipCountry": "UK", + "OrderID": 10856, + "EmployeeID": 3, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 58.43, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 2, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] @@ -31386,163 +21515,141 @@ ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "CustomerID": "GALED", + "Company": "Galería del gastrónomo", + "ContactName": "Eduardo Saavedra", + "ContactTitle": "Marketing Manager", + "Address": "Rambla de Cataluña, 23", + "City": "Barcelona", + "PostalCode": 8022, + "Country": "Spain", + "Phone": "(93) 203 4560", + "Fax": "(93) 203 4561", "Orders": [ { - "OrderID": 10934, - "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", - "ShipVia": 3, - "Freight": 32.01, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10366, + "EmployeeID": 8, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-30T00:00:00", + "ShipVia": 2, + "Freight": 10.14, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10935, + "OrderID": 10426, "EmployeeID": 4, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 47.59, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-02-06T00:00:00", + "ShipVia": 1, + "Freight": 18.69, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 8, - "Discount": 0.25 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10936, + "OrderID": 10568, "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 2, - "Freight": 33.68, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1997-06-13T00:00:00", + "RequiredDate": "1997-07-11T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 3, + "Freight": 6.54, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10937, - "EmployeeID": 7, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderID": 10887, + "EmployeeID": 8, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", "ShipVia": 3, - "Freight": 31.51, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 1.25, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10928, + "EmployeeID": 1, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 1.36, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 5, "Discount": 0 } ] @@ -31550,383 +21657,323 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", + "CustomerID": "VAFFE", + "Company": "Vaffeljernet", + "ContactName": "Palle Ibsen", + "ContactTitle": "Sales Manager", + "Address": "Smagsloget 45", + "City": "Århus", + "PostalCode": 8200, + "Country": "Denmark", + "Phone": "86 21 32 43", + "Fax": "86 22 33 44", "Orders": [ { - "OrderID": 10938, - "EmployeeID": 3, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 31.89, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10367, + "EmployeeID": 7, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1996-12-26T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 13.55, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 18, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 49, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10939, - "EmployeeID": 2, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 2, - "Freight": 76.33, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10399, + "EmployeeID": 8, + "OrderDate": "1996-12-31T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", + "ShipVia": 3, + "Freight": 27.36, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 14, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10940, - "EmployeeID": 8, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10465, + "EmployeeID": 1, + "OrderDate": "1997-03-05T00:00:00", + "RequiredDate": "1997-04-02T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 3, - "Freight": 19.77, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 145.04, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 8, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 45, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10941, - "EmployeeID": 7, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 400.81, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10591, + "EmployeeID": 1, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-07-21T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 55.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 44, - "Discount": 0.25 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 80, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10942, - "EmployeeID": 9, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 17.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10602, + "EmployeeID": 8, + "OrderDate": "1997-07-17T00:00:00", + "RequiredDate": "1997-08-14T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", + "ShipVia": 2, + "Freight": 2.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 28, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 5, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10943, + "OrderID": 10688, "EmployeeID": 4, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", "ShipVia": 2, - "Freight": 2.17, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "Freight": 299.09, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 15, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 21, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 15, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 45000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10944, + "OrderID": 10744, "EmployeeID": 6, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 3, - "Freight": 52.92, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 69.19, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10769, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 1, + "Freight": 65.06, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10945, - "EmployeeID": 4, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-04-09T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10921, + "EmployeeID": 1, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 1, - "Freight": 10.22, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 176.48, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { "OrderID": 10946, "EmployeeID": 1, @@ -31960,645 +22007,417 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 35000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10947, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 13000, - "ShipCountry": "UK", + "OrderID": 10994, + "EmployeeID": 2, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-04-09T00:00:00", + "ShipVia": 3, + "Freight": 65.53, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { "ProductID": 59, "UnitPrice": 55, - "Quantity": 4, - "Discount": 0 + "Quantity": 18, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "CustomerID": "QUEEN", + "Company": "Queen Cozinha", + "ContactName": "Lúcia Carvalho", + "ContactTitle": "Marketing Assistant", + "Address": "Alameda dos Canàrios, 891", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5487, + "Country": "Brazil", + "Phone": "(11) 555-1189", "Orders": [ { - "OrderID": 10948, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 3, - "Freight": 23.39, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10372, + "EmployeeID": 5, + "OrderDate": "1996-12-04T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 890.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 9, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 40, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 70, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 42, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 44000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10949, - "EmployeeID": 2, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-17T00:00:00", - "ShipVia": 3, - "Freight": 74.44, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderID": 10406, + "EmployeeID": 7, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-13T00:00:00", + "ShipVia": 1, + "Freight": 108.04, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 12, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 21, + "UnitPrice": 8, "Quantity": 30, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 42, + "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 60, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10950, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-13T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10487, + "EmployeeID": 2, + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-03-28T00:00:00", "ShipVia": 2, - "Freight": 2.5, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 71.07, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 5, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ - { - "OrderID": 10951, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 2, - "Freight": 30.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, - "Discount": 0.06 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10952, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "OrderID": 10637, + "EmployeeID": 6, + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", "ShipVia": 1, - "Freight": 40.42, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 201.29, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 2, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 21000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10953, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-25T00:00:00", + "OrderID": 10659, + "EmployeeID": 7, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 35000, - "ShipCountry": "UK", + "Freight": 105.81, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 50, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0.06 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 24, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10954, - "EmployeeID": 5, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 10704, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", "ShipVia": 1, - "Freight": 27.91, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 4.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 28, - "Discount": 0.16 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 48, + "UnitPrice": 12.75, "Quantity": 24, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 25000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10955, - "EmployeeID": 8, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 10728, + "EmployeeID": 4, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-11-11T00:00:00", "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 47000, - "ShipCountry": "Sweden", + "Freight": 58.33, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 12, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10956, - "EmployeeID": 6, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 44.65, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 14, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 8, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10957, + "OrderID": 10786, "EmployeeID": 8, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 3, - "Freight": 105.36, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-16T00:00:00", + "ShippedDate": "1997-12-23T00:00:00", + "ShipVia": 1, + "Freight": 110.87, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 8, + "UnitPrice": 40, "Quantity": 30, - "Discount": 0 + "Discount": 0.2 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 8, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10958, + "OrderID": 10868, "EmployeeID": 7, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 2, - "Freight": 49.56, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 191.27, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, + "ProductID": 26, + "UnitPrice": 31.23, "Quantity": 20, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 6, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 5, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 42, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10959, - "EmployeeID": 6, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", - "ShipVia": 2, - "Freight": 4.98, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", + "OrderID": 10913, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 1, + "Freight": 33.05, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", "ShipRegion": "SP", - "ShipPostalCode": 4876, + "ShipPostalCode": 5487, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10960, - "EmployeeID": 3, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 2.08, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 30, + "Discount": 0.25 + }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 40, "Discount": 0.25 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 24, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { "OrderID": 10961, "EmployeeID": 8, @@ -32615,158 +22434,271 @@ "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 + } + ] + }, + { + "OrderID": 11068, + "EmployeeID": 8, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShipVia": 2, + "Freight": 81.75, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.16 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 36, + "Discount": 0.16 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 28, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "WOLZA", + "Company": "Wolski Zajazd", + "ContactName": "Zbyszek Piestrzeniewicz", + "ContactTitle": "Owner", + "Address": "ul. Filtrowa 68", + "City": "Warszawa", + "PostalCode": 12000, + "Country": "Poland", + "Phone": "(26) 642-7012", + "Fax": "(26) 642-7012", + "Orders": [ + { + "OrderID": 10374, + "EmployeeID": 1, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 3, + "Freight": 3.94, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 60, + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10962, - "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10611, + "EmployeeID": 6, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 275.79, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 80.65, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 77, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10792, + "EmployeeID": 1, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 3, + "Freight": 23.79, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 9, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 44, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10963, - "EmployeeID": 9, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", + "OrderID": 10870, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", "ShipVia": 3, - "Freight": 2.7, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 12.04, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, "Quantity": 2, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 10964, - "EmployeeID": 3, - "OrderDate": "1998-03-20T00:00:00", + "OrderID": 10906, + "EmployeeID": 4, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", + "ShipVia": 3, + "Freight": 26.29, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10998, + "EmployeeID": 8, + "OrderDate": "1998-04-03T00:00:00", "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", "ShipVia": 2, - "Freight": 87.38, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 20.31, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 6, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 11044, + "EmployeeID": 4, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 8.72, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, "Discount": 0 } ] @@ -32774,174 +22706,153 @@ ] }, { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", + "CustomerID": "HUNGC", + "Company": "Hungry Coyote Import Store", + "ContactName": "Yoshi Latimer", "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, + "Address": "City Center Plaza 516 Main St.", + "City": "Elgin", + "Region": "OR", + "PostalCode": 97827, "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", + "Phone": "(503) 555-6874", + "Fax": "(503) 555-2376", "Orders": [ { - "OrderID": 10965, - "EmployeeID": 6, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", - "ShipVia": 3, - "Freight": 144.38, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "OrderID": 10375, + "EmployeeID": 3, + "OrderDate": "1996-12-06T00:00:00", + "RequiredDate": "1997-01-03T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 20.12, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 16, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10966, - "EmployeeID": 4, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 27.19, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10394, + "EmployeeID": 1, + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 3, + "Freight": 30.34, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 8, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, "Discount": 0 }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 - }, { "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0.16 + "UnitPrice": 39.4, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10967, - "EmployeeID": 2, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 62.22, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "OrderID": 10415, + "EmployeeID": 3, + "OrderDate": "1997-01-15T00:00:00", + "RequiredDate": "1997-02-12T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "ShipVia": 1, + "Freight": 0.2, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 40, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10968, - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-01T00:00:00", - "ShipVia": 3, - "Freight": 74.6, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10600, + "EmployeeID": 4, + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-13T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", + "ShipVia": 1, + "Freight": 45.13, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 73, + "UnitPrice": 15, "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10660, + "EmployeeID": 8, + "OrderDate": "1997-09-08T00:00:00", + "RequiredDate": "1997-10-06T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 1, + "Freight": 111.29, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 4, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 21, "Discount": 0 } ] @@ -32949,222 +22860,205 @@ ] }, { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", + "CustomerID": "SANTG", + "Company": "Santé Gourmet", + "ContactName": "Jonas Bergulfsen", + "ContactTitle": "Owner", + "Address": "Erling Skakkes gate 78", + "City": "Stavern", + "PostalCode": 4110, + "Country": "Norway", + "Phone": "07-98 92 35", + "Fax": "07-98 92 47", "Orders": [ { - "OrderID": 10969, + "OrderID": 10387, "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-15T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", "ShipVia": 2, - "Freight": 0.21, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 93.63, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 9, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ + }, { - "OrderID": 10970, - "EmployeeID": 9, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10520, + "EmployeeID": 7, + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", "ShipVia": 1, - "Freight": 16.16, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", + "Freight": 13.37, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10971, - "EmployeeID": 2, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 121.82, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10639, + "EmployeeID": 7, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-08-27T00:00:00", + "ShipVia": 3, + "Freight": 38.64, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne d'abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de l'Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ + }, { - "OrderID": 10972, - "EmployeeID": 4, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", + "OrderID": 10831, + "EmployeeID": 3, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 2, - "Freight": 0.02, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "Freight": 72.19, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 7, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 9, "Discount": 0 } ] }, { - "OrderID": 10973, - "EmployeeID": 6, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "OrderID": 10909, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-10T00:00:00", "ShipVia": 2, - "Freight": 15.17, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "Freight": 53.05, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10974, - "EmployeeID": 3, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 12.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 11015, + "EmployeeID": 2, + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 2, + "Freight": 4.62, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] @@ -33179,339 +23073,314 @@ "Address": "23 Tsawassen Blvd.", "City": "Tsawassen", "Region": "BC", - "PostalCode": 13000, + "PostalCode": 26000, "Country": "Canada", "Phone": "(604) 555-4729", "Fax": "(604) 555-3745", "Orders": [ { - "OrderID": 10975, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-22T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 3, - "Freight": 32.27, + "OrderID": 10389, + "EmployeeID": 4, + "OrderDate": "1996-12-20T00:00:00", + "RequiredDate": "1997-01-17T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", + "ShipVia": 2, + "Freight": 47.42, "ShipName": "Bottom-Dollar Markets", "ShipAddress": "23 Tsawassen Blvd.", "ShipCity": "Tsawassen", "ShipRegion": "BC", - "ShipPostalCode": 40000, + "ShipPostalCode": 41000, "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, + "ProductID": 10, + "UnitPrice": 24.8, "Quantity": 16, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10976, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderID": 10410, + "EmployeeID": 3, + "OrderDate": "1997-01-10T00:00:00", + "RequiredDate": "1997-02-07T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", + "ShipVia": 3, + "Freight": 2.4, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 30000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 16, + "Discount": 0 + } + ] + }, + { + "OrderID": 10431, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 44.17, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 16000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10492, + "EmployeeID": 3, + "OrderDate": "1997-04-01T00:00:00", + "RequiredDate": "1997-04-29T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 1, - "Freight": 37.97, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 62.89, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 16000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 11000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10977, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10742, + "EmployeeID": 3, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-12-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 208.5, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", + "Freight": 243.73, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 25000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 27000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10978, - "EmployeeID": 9, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", - "ShipVia": 2, - "Freight": 32.82, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 31000, - "ShipCountry": "Belgium", + "OrderID": 10918, + "EmployeeID": 3, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 48.83, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 41000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 25, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10979, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-03-31T00:00:00", - "ShipVia": 2, - "Freight": 353.07, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10944, + "EmployeeID": 6, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 52.92, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 36000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, + "Discount": 0.25 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, "Quantity": 18, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 12, + "ProductID": 56, "UnitPrice": 38, - "Quantity": 20, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10949, + "EmployeeID": 2, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-17T00:00:00", + "ShipVia": 3, + "Freight": 74.44, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 80, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 30, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 24, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 35, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 50000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10980, - "EmployeeID": 4, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 1, - "Freight": 1.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10981, + "OrderID": 10975, "EmployeeID": 1, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 193.37, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-22T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 32.27, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 27000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { "OrderID": 10982, "EmployeeID": 2, @@ -33540,81 +23409,83 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10983, - "EmployeeID": 2, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 2, - "Freight": 657.54, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11027, + "EmployeeID": 1, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 52.52, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 14000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 84, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 21, + "Discount": 0.25 } ] }, { - "OrderID": 10984, - "EmployeeID": 1, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 211.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11045, + "EmployeeID": 6, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShipVia": 2, + "Freight": 70.58, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 46000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 55, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 24, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11048, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", + "ShipVia": 3, + "Freight": 24.12, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 41000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 42, "Discount": 0 } ] @@ -33622,535 +23493,427 @@ ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "LINOD", + "Company": "LINO-Delicateses", + "ContactName": "Felipe Izquierdo", + "ContactTitle": "Owner", + "Address": "Ave. 5 de Mayo Porlamar", + "City": "Sao Paulo", + "Region": "Nueva Esparta", + "PostalCode": 4980, + "Country": "Venezuela", + "Phone": "(8) 34-56-12", + "Fax": "(8) 34-93-93", "Orders": [ { - "OrderID": 10985, - "EmployeeID": 2, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10405, + "EmployeeID": 1, + "OrderDate": "1997-01-06T00:00:00", + "RequiredDate": "1997-02-03T00:00:00", + "ShippedDate": "1997-01-22T00:00:00", "ShipVia": 1, - "Freight": 91.51, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 34.82, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 36, - "Discount": 0.1 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 35, - "Discount": 0.1 + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10986, - "EmployeeID": 8, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", + "OrderID": 10485, + "EmployeeID": 4, + "OrderDate": "1997-03-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-31T00:00:00", "ShipVia": 2, - "Freight": 217.86, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 64.45, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 30, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0 + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 60, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10987, - "EmployeeID": 8, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", + "OrderID": 10638, + "EmployeeID": 3, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", "ShipVia": 1, - "Freight": 185.48, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 30000, - "ShipCountry": "UK", + "Freight": 158.44, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, "Discount": 0 }, { "ProductID": 72, "UnitPrice": 34.8, - "Quantity": 20, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10988, + "OrderID": 10697, "EmployeeID": 3, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 61.14, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-05T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", + "ShipVia": 1, + "Freight": 45.52, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 9, + "Discount": 0.25 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10989, - "EmployeeID": 2, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 1, - "Freight": 34.76, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "OrderID": 10729, + "EmployeeID": 8, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 3, + "Freight": 141.06, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 40, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10990, - "EmployeeID": 2, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 3, - "Freight": 117.61, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10811, + "EmployeeID": 8, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", + "ShipVia": 1, + "Freight": 31.22, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 65, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 18, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 66, - "Discount": 0.16 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10991, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 1, - "Freight": 38.51, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10838, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 59.28, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0.25 + }, + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 36, "UnitPrice": 19, "Quantity": 50, - "Discount": 0.2 - }, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10840, + "EmployeeID": 4, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", + "ShipVia": 2, + "Freight": 2.71, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 76, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 90, + "Quantity": 10, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10992, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 4.27, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "OrderID": 10919, + "EmployeeID": 2, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 2, + "Freight": 19.8, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 2, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 36000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10993, - "EmployeeID": 7, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 3, - "Freight": 8.81, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 15000, - "ShipCountry": "Sweden", + "OrderID": 10954, + "EmployeeID": 5, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 1, + "Freight": 27.91, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 28, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 25, + "Discount": 0.16 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10994, + "OrderID": 11014, "EmployeeID": 2, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-04-09T00:00:00", + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", "ShipVia": 3, - "Freight": 65.53, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 23.6, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 28, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10995, + "OrderID": 11039, "EmployeeID": 1, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 3, - "Freight": 46, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShipVia": 2, + "Freight": 65, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 24, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10996, - "EmployeeID": 4, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 1.12, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ + }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 28, "Discount": 0 } ] @@ -34158,580 +23921,519 @@ ] }, { - "CustomerID": "LILAS", - "Company": "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": "FOLIG", + "Company": "Folies gourmandes", + "ContactName": "Martine Rancé", + "ContactTitle": "Sales Associate", + "Address": "184, chaussée de Tournai", + "City": "Lille", + "PostalCode": 59000, + "Country": "France", + "Phone": "20.16.10.16", + "Fax": "20.16.10.17", "Orders": [ { - "OrderID": 10997, + "OrderID": 10408, "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 2, - "Freight": 73.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderDate": "1997-01-08T00:00:00", + "RequiredDate": "1997-02-05T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 11.26, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 15000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10998, - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", + "OrderID": 10480, + "EmployeeID": 6, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", "ShipVia": 2, - "Freight": 20.31, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 1.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, "Quantity": 12, "Discount": 0 + } + ] + }, + { + "OrderID": 10634, + "EmployeeID": 4, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 487.38, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 7, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 30, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10999, - "EmployeeID": 6, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-01T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 96.35, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "OrderID": 10763, + "EmployeeID": 3, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 3, + "Freight": 37.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 21, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 11000, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", - "ShipVia": 3, - "Freight": 55.12, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10789, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 2, + "Freight": 100.6, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, + "Discount": 0 } ] } ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 45000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "OCEAN", + "Company": "Océano Atlántico Ltda.", + "ContactName": "Yvonne Moncada", + "ContactTitle": "Sales Agent", + "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5333", + "Fax": "(1) 135-5535", "Orders": [ { - "OrderID": 11001, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", - "ShipVia": 2, - "Freight": 197.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 14000, - "ShipCountry": "Sweden", + "OrderID": 10409, + "EmployeeID": 3, + "OrderDate": "1997-01-09T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 29.83, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 25, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11002, - "EmployeeID": 4, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10531, + "EmployeeID": 7, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", "ShipVia": 1, - "Freight": 141.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 8.12, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 10898, + "EmployeeID": 4, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 1.27, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { "ProductID": 13, "UnitPrice": 6, - "Quantity": 56, + "Quantity": 5, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10958, + "EmployeeID": 7, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 2, + "Freight": 49.56, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 40, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11003, - "EmployeeID": 3, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 3, - "Freight": 14.91, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "OrderID": 10986, + "EmployeeID": 8, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 217.86, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0 } ] } ] }, { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 20000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", + "CustomerID": "FRANS", + "Company": "Franchi S.p.A.", + "ContactName": "Paolo Accorti", + "ContactTitle": "Sales Representative", + "Address": "Via Monte Bianco 34", + "City": "Torino", + "PostalCode": 10100, + "Country": "Italy", + "Phone": "011-4988260", + "Fax": "011-4988261", "Orders": [ { - "OrderID": 11004, - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10422, + "EmployeeID": 2, + "OrderDate": "1997-01-22T00:00:00", + "RequiredDate": "1997-02-19T00:00:00", + "ShippedDate": "1997-01-31T00:00:00", "ShipVia": 1, - "Freight": 44.84, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", + "Freight": 3.02, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 6, + "UnitPrice": 24.9, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 11005, - "EmployeeID": 2, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10710, + "EmployeeID": 1, + "OrderDate": "1997-10-20T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", "ShipVia": 1, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 4.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 2, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 10, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ - { - "OrderID": 11006, - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", - "ShipVia": 2, - "Freight": 25.19, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + }, + { + "OrderID": 10753, + "EmployeeID": 3, + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 1, + "Freight": 7.7, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 11007, - "EmployeeID": 8, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 2, - "Freight": 202.24, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10807, + "EmployeeID": 4, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 1.36, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 1, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11026, + "EmployeeID": 4, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", + "ShipVia": 1, + "Freight": 47.09, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 14, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11008, - "EmployeeID": 7, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShipVia": 3, - "Freight": 79.46, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 11060, + "EmployeeID": 2, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 2, + "Freight": 10.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 70, - "Discount": 0.06 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 90, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 21, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, "Discount": 0 } ] @@ -34739,453 +24441,384 @@ ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "CustomerID": "GOURL", + "Company": "Gourmet Lanchonetes", + "ContactName": "André Fonseca", + "ContactTitle": "Sales Associate", + "Address": "Av. Brasil, 442", + "City": "Campinas", + "Region": "SP", + "PostalCode": 4876, + "Country": "Brazil", + "Phone": "(11) 555-9482", "Orders": [ { - "OrderID": 11009, - "EmployeeID": 2, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 59.11, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10423, + "EmployeeID": 6, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", + "ShipVia": 3, + "Freight": 24.5, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 18, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 9, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11010, - "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 2, - "Freight": 28.71, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10652, + "EmployeeID": 4, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 2, + "Freight": 7.14, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 2, + "Discount": 0.25 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 11011, - "EmployeeID": 3, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 1, - "Freight": 1.21, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "OrderID": 10685, + "EmployeeID": 4, + "OrderDate": "1997-09-29T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 33.75, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 20, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 11012, + "OrderID": 10709, "EmployeeID": 1, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-11-20T00:00:00", "ShipVia": 3, - "Freight": 242.95, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 210.8, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 36, - "Discount": 0.06 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 11013, + "OrderID": 10734, "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 32.99, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-12T00:00:00", + "ShipVia": 3, + "Freight": 1.63, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 10, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 4, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 2, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 11014, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", - "ShipVia": 3, - "Freight": 23.6, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10777, + "EmployeeID": 7, + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 2, + "Freight": 3.01, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10790, + "EmployeeID": 6, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 28.23, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 3, + "Discount": 0.16 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 11015, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10959, + "EmployeeID": 6, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", "ShipVia": 2, - "Freight": 4.62, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 4.98, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 11049, + "EmployeeID": 3, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 8.34, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", + "CustomerID": "CONSH", + "Company": "Consolidated Holdings", + "ContactName": "Elizabeth Brown", "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", + "Address": "Berkeley Gardens 12 Brewery", "City": "London", - "PostalCode": 49000, + "PostalCode": 23000, "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Phone": "(171) 555-2282", + "Fax": "(171) 555-9199", "Orders": [ { - "OrderID": 11016, - "EmployeeID": 9, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10435, + "EmployeeID": 8, + "OrderDate": "1997-02-04T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", "ShipVia": 2, - "Freight": 33.8, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, + "Freight": 9.21, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 38000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 16, + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11017, - "EmployeeID": 9, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 2, - "Freight": 754.26, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10462, + "EmployeeID": 2, + "OrderDate": "1997-03-03T00:00:00", + "RequiredDate": "1997-03-31T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 1, + "Freight": 6.17, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 110, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11018, - "EmployeeID": 4, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10848, + "EmployeeID": 7, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 2, - "Freight": 11.65, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 38.24, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 39000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 3, "Discount": 0 } ] @@ -35205,12 +24838,13 @@ "Fax": "(1) 123-5556", "Orders": [ { - "OrderID": 11019, - "EmployeeID": 6, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShipVia": 3, - "Freight": 3.17, + "OrderID": 10448, + "EmployeeID": 4, + "OrderDate": "1997-02-17T00:00:00", + "RequiredDate": "1997-03-17T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", + "ShipVia": 2, + "Freight": 38.82, "ShipName": "Rancho grande", "ShipAddress": "Av. del Libertador 900", "ShipCity": "Buenos Aires", @@ -35218,195 +24852,138 @@ "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 3, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 2, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 11020, - "EmployeeID": 2, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10716, + "EmployeeID": 4, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-27T00:00:00", "ShipVia": 2, - "Freight": 43.3, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 22.57, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 11021, - "EmployeeID": 3, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", + "OrderID": 10828, + "EmployeeID": 9, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", "ShipVia": 1, - "Freight": 297.18, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 90.85, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 11, - "Discount": 0.25 - }, { "ProductID": 20, "UnitPrice": 81, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 63, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 44, - "Discount": 0.25 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 11022, - "EmployeeID": 9, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10916, + "EmployeeID": 1, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 63.77, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 15000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 11023, - "EmployeeID": 1, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 123.83, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", + "OrderID": 11019, + "EmployeeID": 6, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShipVia": 3, + "Freight": 3.17, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 4, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 2, "Discount": 0 } ] @@ -35414,53 +24991,60 @@ ] }, { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 21000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", + "CustomerID": "LAZYK", + "Company": "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", "Orders": [ { - "OrderID": 11024, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 1, - "Freight": 74.36, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 28000, - "ShipCountry": "UK", + "OrderID": 10482, + "EmployeeID": 1, + "OrderDate": "1997-03-21T00:00:00", + "RequiredDate": "1997-04-18T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 7.48, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10545, + "EmployeeID": 8, + "OrderDate": "1997-05-22T00:00:00", + "RequiredDate": "1997-06-19T00:00:00", + "ShippedDate": "1997-06-26T00:00:00", + "ShipVia": 2, + "Freight": 11.92, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 50, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 } ] @@ -35468,311 +25052,322 @@ ] }, { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", + "CustomerID": "LAUGB", + "Company": "Laughing Bacchus Wine Cellars", + "ContactName": "Yoshi Tannamuri", + "ContactTitle": "Marketing Assistant", + "Address": "1900 Oak St.", + "City": "Vancouver", + "Region": "BC", + "PostalCode": 24000, + "Country": "Canada", + "Phone": "(604) 555-3392", + "Fax": "(604) 555-7293", "Orders": [ { - "OrderID": 11025, - "EmployeeID": 6, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10495, + "EmployeeID": 3, + "OrderDate": "1997-04-03T00:00:00", + "RequiredDate": "1997-05-01T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 3, - "Freight": 29.17, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 4.65, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 33000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, + "ProductID": 23, + "UnitPrice": 7.2, "Quantity": 10, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 20, - "Discount": 0.1 + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 11026, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", - "ShipVia": 1, - "Freight": 47.09, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10620, + "EmployeeID": 2, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", + "ShipVia": 3, + "Freight": 0.94, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 15000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 27000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11027, - "EmployeeID": 1, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 1, - "Freight": 52.52, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", + "OrderID": 10810, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", + "ShipVia": 3, + "Freight": 4.33, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", "ShipRegion": "BC", - "ShipPostalCode": 14000, + "ShipPostalCode": 41000, "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 7, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, + "CustomerID": "BLAUS", + "Company": "Blauer See Delikatessen", + "ContactName": "Hanna Moos", + "ContactTitle": "Sales Representative", + "Address": "Forsterstr. 57", + "City": "Mannheim", + "PostalCode": 68306, "Country": "Germany", - "Phone": "0555-09876", + "Phone": "0621-08460", + "Fax": "0621-08924", "Orders": [ { - "OrderID": 11028, - "EmployeeID": 2, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", - "ShipVia": 1, - "Freight": 29.59, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10501, + "EmployeeID": 9, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 3, + "Freight": 8.85, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 24, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 11029, + "OrderID": 10509, "EmployeeID": 4, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", + "OrderDate": "1997-04-17T00:00:00", + "RequiredDate": "1997-05-15T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 1, - "Freight": 47.84, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 0.15, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10582, + "EmployeeID": 3, + "OrderDate": "1997-06-27T00:00:00", + "RequiredDate": "1997-07-25T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 27.71, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 12, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11030, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 2, - "Freight": 830.75, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10614, + "EmployeeID": 8, + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 3, + "Freight": 1.93, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 100, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 70, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 60, - "Discount": 0.25 - }, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10853, + "EmployeeID": 9, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", + "ShipVia": 2, + "Freight": 53.83, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 100, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, + "Discount": 0 } ] }, { - "OrderID": 11031, + "OrderID": 10956, "EmployeeID": 6, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 227.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 44.65, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 45, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 80, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 21, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 11058, + "EmployeeID": 9, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShipVia": 3, + "Freight": 31.14, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, "Discount": 0 } ] @@ -35780,140 +25375,97 @@ ] }, { - "CustomerID": "WHITC", - "Company": "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": "NORTS", + "Company": "North/South", + "ContactName": "Simon Crowther", + "ContactTitle": "Sales Associate", + "Address": "South House 300 Queensbridge", + "City": "London", + "PostalCode": 17000, + "Country": "UK", + "Phone": "(171) 555-7733", + "Fax": "(171) 555-2530", "Orders": [ { - "OrderID": 11032, - "EmployeeID": 2, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 10517, + "EmployeeID": 3, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 3, - "Freight": 606.19, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 32.07, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 16000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 35, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 25, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 11033, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 10752, + "EmployeeID": 2, + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", "ShipVia": 3, - "Freight": 84.74, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 1.39, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 70, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0 }, { "ProductID": 69, "UnitPrice": 36, - "Quantity": 36, - "Discount": 0.1 + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11034, - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 40.32, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 11057, + "EmployeeID": 3, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 4.13, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 6, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] @@ -35921,233 +25473,174 @@ ] }, { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", + "CustomerID": "CACTU", + "Company": "Cactus Comidas para llevar", + "ContactName": "Patricio Simpson", + "ContactTitle": "Sales Agent", + "Address": "Cerrito 333", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5555", + "Fax": "(1) 135-4892", "Orders": [ { - "OrderID": 11035, - "EmployeeID": 2, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10521, + "EmployeeID": 8, + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", "ShipVia": 2, - "Freight": 0.17, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 17.22, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 35, "UnitPrice": 18, - "Quantity": 10, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 60, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10782, + "EmployeeID": 9, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 1.1, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 1, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 11036, - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", + "OrderID": 10819, + "EmployeeID": 2, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", "ShipVia": 3, - "Freight": 149.47, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 19.76, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 43, + "UnitPrice": 46, "Quantity": 7, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 11037, - "EmployeeID": 7, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", + "OrderID": 10881, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 1, - "Freight": 3.2, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 2.84, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 70, + "ProductID": 73, "UnitPrice": 15, - "Quantity": 4, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 11038, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", - "ShipVia": 2, - "Freight": 29.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10937, + "EmployeeID": 7, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 31.51, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, - "Discount": 0.2 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 2, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 11039, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShipVia": 2, - "Freight": 65, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 11054, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShipVia": 1, + "Freight": 0.33, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 60, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 10, "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 28, + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] @@ -36167,12 +25660,13 @@ "Phone": "(503) 555-7555", "Orders": [ { - "OrderID": 11040, - "EmployeeID": 4, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShipVia": 3, - "Freight": 18.84, + "OrderID": 10528, + "EmployeeID": 6, + "OrderDate": "1997-05-06T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 3.35, "ShipName": "Great Lakes Food Market", "ShipAddress": "2732 Baker Blvd.", "ShipCity": "Eugene", @@ -36181,582 +25675,508 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 3, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ - { - "OrderID": 11041, - "EmployeeID": 3, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", - "ShipVia": 2, - "Freight": 48.22, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", - "OrderDetails": [ + }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, "Discount": 0.2 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 11042, - "EmployeeID": 2, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 1, - "Freight": 29.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderID": 10589, + "EmployeeID": 8, + "OrderDate": "1997-07-04T00:00:00", + "RequiredDate": "1997-08-01T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 4.42, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 35, + "UnitPrice": 18, "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 11043, - "EmployeeID": 5, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", + "OrderID": 10616, + "EmployeeID": 1, + "OrderDate": "1997-07-31T00:00:00", + "RequiredDate": "1997-08-28T00:00:00", + "ShippedDate": "1997-08-05T00:00:00", "ShipVia": 2, - "Freight": 8.8, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 116.53, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 15000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 11044, - "EmployeeID": 4, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10656, + "EmployeeID": 6, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 1, - "Freight": 8.72, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 57.15, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 26000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, + "Discount": 0.1 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 28, + "Discount": 0.1 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.1 + } + ] + }, { - "OrderID": 11045, - "EmployeeID": 6, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShipVia": 2, - "Freight": 70.58, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 46000, - "ShipCountry": "Canada", + "OrderID": 10681, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 76.13, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 24, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 11046, - "EmployeeID": 8, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10816, + "EmployeeID": 4, + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-02-03T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", "ShipVia": 2, - "Freight": 71.64, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 719.78, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, "Discount": 0.06 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, "Discount": 0.06 - }, + } + ] + }, + { + "OrderID": 10936, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 33.68, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 45000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11047, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 3, - "Freight": 46.62, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 42000, - "ShipCountry": "UK", + "OrderID": 11006, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", + "ShipVia": 2, + "Freight": 25.19, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 1, "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.25 + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 2, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 24000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11048, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", + "OrderID": 11040, + "EmployeeID": 4, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", "ShipVia": 3, - "Freight": 24.12, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "Freight": 18.84, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 42, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 11049, - "EmployeeID": 3, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 1, - "Freight": 8.34, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + } + ] + }, + { + "OrderID": 11061, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-06-11T00:00:00", + "ShipVia": 3, + "Freight": 14.01, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, + "Discount": 0 } ] } ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 46000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "MAISD", + "Company": "Maison Dewey", + "ContactName": "Catherine Dewey", + "ContactTitle": "Sales Agent", + "Address": "Rue Joseph-Bens 532", + "City": "Bruxelles", + "PostalCode": 45000, + "Country": "Belgium", + "Phone": "(02) 201 24 67", + "Fax": "(02) 201 24 68", "Orders": [ { - "OrderID": 11050, - "EmployeeID": 8, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10529, + "EmployeeID": 5, + "OrderDate": "1997-05-07T00:00:00", + "RequiredDate": "1997-06-04T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", "ShipVia": 2, - "Freight": 59.41, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "Freight": 66.69, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.1 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 11051, - "EmployeeID": 7, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", + "OrderID": 10649, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-09-25T00:00:00", + "ShippedDate": "1997-08-29T00:00:00", "ShipVia": 3, - "Freight": 2.79, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 6.2, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 21000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 11052, - "EmployeeID": 3, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10760, + "EmployeeID": 4, + "OrderDate": "1997-12-01T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1997-12-10T00:00:00", "ShipVia": 1, - "Freight": 67.26, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 155.64, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 12000, + "ShipCountry": "Belgium", "OrderDetails": [ + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.25 + }, + { + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 40, + "Discount": 0 + }, { "ProductID": 43, "UnitPrice": 46, "Quantity": 30, - "Discount": 0.2 - }, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10892, + "EmployeeID": 4, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 2, + "Freight": 120.27, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 30000, + "ShipCountry": "Belgium", + "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, + { + "OrderID": 10896, + "EmployeeID": 7, + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 32.45, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 15000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 16, + "Discount": 0 + } + ] + }, { - "OrderID": 11053, - "EmployeeID": 2, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", + "OrderID": 10978, + "EmployeeID": 9, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 32.82, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 31000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 11054, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", + "OrderID": 11004, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 1, - "Freight": 0.33, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 44.84, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 10, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 } ] @@ -36764,139 +26184,119 @@ ] }, { - "CustomerID": "HILAA", - "Company": "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": "TRAIH", + "Company": "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", "Orders": [ { - "OrderID": 11055, - "EmployeeID": 7, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10574, + "EmployeeID": 4, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 120.92, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 37.6, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 11000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11056, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10577, + "EmployeeID": 9, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 278.96, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 39000, - "ShipCountry": "UK", + "Freight": 25.41, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 40, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 16000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ + }, { - "OrderID": 11057, - "EmployeeID": 3, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10822, + "EmployeeID": 6, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", "ShipVia": 3, - "Freight": 4.13, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "Freight": 7, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, + "Discount": 0 + }, { "ProductID": 70, "UnitPrice": 15, - "Quantity": 3, + "Quantity": 6, "Discount": 0 } ] @@ -36904,451 +26304,483 @@ ] }, { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", + "CustomerID": "LETSS", + "Company": "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", "Orders": [ { - "OrderID": 11058, - "EmployeeID": 9, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShipVia": 3, - "Freight": 31.14, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10579, + "EmployeeID": 1, + "OrderDate": "1997-06-25T00:00:00", + "RequiredDate": "1997-07-23T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 2, + "Freight": 13.73, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 3, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 21, "Discount": 0 + } + ] + }, + { + "OrderID": 10719, + "EmployeeID": 8, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 2, + "Freight": 51.44, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 12, + "Discount": 0.25 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 3, + "Discount": 0.25 }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 40, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10735, + "EmployeeID": 6, + "OrderDate": "1997-11-10T00:00:00", + "RequiredDate": "1997-12-08T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 45.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", + "OrderDetails": [ { "ProductID": 61, "UnitPrice": 28.5, - "Quantity": 4, - "Discount": 0 + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 11059, - "EmployeeID": 2, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-06-10T00:00:00", + "OrderID": 10884, + "EmployeeID": 4, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", "ShipVia": 2, - "Freight": 85.8, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 90.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 30, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 12, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 21, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", + "CustomerID": "WILMK", + "Company": "Wilman Kala", + "ContactName": "Matti Karttunen", + "ContactTitle": "Owner/Marketing Assistant", + "Address": "Keskuskatu 45", + "City": "Helsinki", + "PostalCode": 21240, + "Country": "Finland", + "Phone": "90-224 8858", + "Fax": "90-224 8858", "Orders": [ { - "OrderID": 11060, + "OrderID": 10615, "EmployeeID": 2, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 2, - "Freight": 10.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderDate": "1997-07-30T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 3, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10673, + "EmployeeID": 2, + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 22.76, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11061, - "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-06-11T00:00:00", - "ShipVia": 3, - "Freight": 14.01, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderID": 10695, + "EmployeeID": 7, + "OrderDate": "1997-10-07T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", + "ShipVia": 1, + "Freight": 16.72, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11062, + "OrderID": 10873, "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShipVia": 2, - "Freight": 29.93, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 0.82, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 11063, + "OrderID": 10879, "EmployeeID": 3, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 81.73, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 8.5, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11064, + "OrderID": 10910, "EmployeeID": 1, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 1, - "Freight": 30.09, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 3, + "Freight": 38.11, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 77, - "Discount": 0.1 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 55, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11065, - "EmployeeID": 8, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", + "OrderID": 11005, + "EmployeeID": 2, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 1, - "Freight": 12.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, + "Discount": 0 } ] } ] }, { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, + "CustomerID": "THECR", + "Company": "The Cracker Box", + "ContactName": "Liu Wong", + "ContactTitle": "Marketing Assistant", + "Address": "55 Grizzly Peak Rd.", + "City": "Butte", + "Region": "MT", + "PostalCode": 59801, "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", + "Phone": "(406) 555-5834", + "Fax": "(406) 555-8083", "Orders": [ { - "OrderID": 11066, - "EmployeeID": 7, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10624, + "EmployeeID": 4, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", "ShipVia": 2, - "Freight": 44.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, + "Freight": 94.8, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 42, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 34, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10775, + "EmployeeID": 7, + "OrderDate": "1997-12-12T00:00:00", + "RequiredDate": "1998-01-09T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 20.25, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, "UnitPrice": 14, - "Quantity": 35, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 11067, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 7.98, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderID": 11003, + "EmployeeID": 3, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 3, + "Freight": 14.91, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 10, "Discount": 0 } ] @@ -37356,272 +26788,279 @@ ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", + "CustomerID": "ALFKI", + "Company": "Alfreds Futterkiste", + "ContactName": "Maria Anders", + "ContactTitle": "Sales Representative", + "Address": "Obere Str. 57", + "City": "Berlin", + "PostalCode": 12209, + "Country": "Germany", + "Phone": "030-0074321", + "Fax": "030-0076545", "Orders": [ { - "OrderID": 11068, - "EmployeeID": 8, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShipVia": 2, - "Freight": 81.75, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10643, + "EmployeeID": 6, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", + "ShipVia": 1, + "Freight": 29.46, + "ShipName": "Alfreds Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 28, "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.16 + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 2, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 11069, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", + "OrderID": 10692, + "EmployeeID": 4, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-10-31T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", "ShipVia": 2, - "Freight": 15.67, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 61.02, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 11070, - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", + "OrderID": 10702, + "EmployeeID": 4, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", "ShipVia": 1, - "Freight": 136, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "Freight": 23.94, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.16 - }, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10835, + "EmployeeID": 1, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 3, + "Freight": 69.53, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11071, + "OrderID": 10952, "EmployeeID": 1, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 1, - "Freight": 0.93, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 40.42, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 15, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 16, "Discount": 0.06 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 11011, + "EmployeeID": 3, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 1, + "Freight": 1.21, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 40, "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 11072, - "EmployeeID": 4, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShipVia": 2, - "Freight": 258.64, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "CustomerID": "FRANR", + "Company": "France restauration", + "ContactName": "Carine Schmitt", + "ContactTitle": "Marketing Manager", + "Address": "54, rue Royale", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.32.21.21", + "Fax": "40.32.21.20", + "Orders": [ + { + "OrderID": 10671, + "EmployeeID": 1, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-09-24T00:00:00", + "ShipVia": 1, + "Freight": 30.34, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 8, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 40, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 22, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10860, + "EmployeeID": 3, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 3, + "Freight": 19.26, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 130, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 11073, + "OrderID": 10971, "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", "ShipVia": 2, - "Freight": 24.95, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 121.82, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 14, "Discount": 0 } ] @@ -37629,308 +27068,223 @@ ] }, { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", + "CustomerID": "SPECD", + "Company": "Spécialités du monde", + "ContactName": "Dominique Perrier", + "ContactTitle": "Marketing Manager", + "Address": "25, rue Lauriston", + "City": "Paris", + "PostalCode": 75016, + "Country": "France", + "Phone": "(1) 47.55.60.10", + "Fax": "(1) 47.55.60.20", "Orders": [ { - "OrderID": 11074, - "EmployeeID": 7, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShipVia": 2, - "Freight": 18.44, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10738, + "EmployeeID": 2, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 1, + "Freight": 2.91, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 16, "UnitPrice": 17.45, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10907, + "EmployeeID": 6, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-25T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 9.19, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 14, - "Discount": 0.06 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 11075, - "EmployeeID": 8, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", + "OrderID": 10964, + "EmployeeID": 3, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 2, - "Freight": 6.19, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 87.38, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 11076, - "EmployeeID": 4, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", + "OrderID": 11043, + "EmployeeID": 5, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", "ShipVia": 2, - "Freight": 38.28, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, + "Freight": 8.8, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 11, + "UnitPrice": 21, "Quantity": 10, - "Discount": 0.25 + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "LACOR", + "Company": "La corne d'abondance", + "ContactName": "Daniel Tonini", + "ContactTitle": "Sales Representative", + "Address": "67, avenue de l'Europe", + "City": "Versailles", + "PostalCode": 78000, + "Country": "France", + "Phone": "30.59.84.10", + "Fax": "30.59.85.11", "Orders": [ { - "OrderID": 11077, - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10858, + "EmployeeID": 2, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", + "ShipVia": 1, + "Freight": 52.51, + "ShipName": "La corne d'abondance", + "ShipAddress": "67, avenue de l'Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 24, - "Discount": 0.2 - }, - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 1, - "Discount": 0.02 - }, { "ProductID": 7, "UnitPrice": 30, - "Quantity": 1, - "Discount": 0.06 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 2, - "Discount": 0.1 - }, - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 1, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 2, - "Discount": 0.06 + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 4, "Discount": 0 - }, - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 2, - "Discount": 0.04 - }, + } + ] + }, + { + "OrderID": 10927, + "EmployeeID": 4, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 19.79, + "ShipName": "La corne d'abondance", + "ShipAddress": "67, avenue de l'Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { "ProductID": 20, "UnitPrice": 81, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 3, + "Quantity": 5, "Discount": 0 }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 3, - "Discount": 0.02 - }, { "ProductID": 52, "UnitPrice": 7, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 2, - "Discount": 0.04 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 1, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 2, - "Discount": 0.0099999998 - }, + } + ] + }, + { + "OrderID": 10972, + "EmployeeID": 4, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 2, + "Freight": 0.02, + "ShipName": "La corne d'abondance", + "ShipAddress": "67, avenue de l'Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 4, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 7, "Discount": 0 } ] diff --git a/samples/grids/hierarchical-grid/column-pinning/src/HierarchicalCustomersData.json b/samples/grids/hierarchical-grid/column-pinning/src/HierarchicalCustomersData.json index 8c1cb2c4ac..956627e3f6 100644 --- a/samples/grids/hierarchical-grid/column-pinning/src/HierarchicalCustomersData.json +++ b/samples/grids/hierarchical-grid/column-pinning/src/HierarchicalCustomersData.json @@ -53,6 +53,112 @@ "TotalPrice": 220.25 } ] + }, + { + "OrderID": 10274, + "EmployeeID": 6, + "OrderDate": "1996-08-06T00:00:00", + "RequiredDate": "1996-09-03T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 1, + "Freight": 6.01, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 7, + "Discount": 0 + } + ] + }, + { + "OrderID": 10295, + "EmployeeID": 2, + "OrderDate": "1996-09-02T00:00:00", + "RequiredDate": "1996-09-30T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", + "ShipVia": 2, + "Freight": 1.15, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 10737, + "EmployeeID": 2, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 7.79, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10739, + "EmployeeID": 3, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-17T00:00:00", + "ShipVia": 3, + "Freight": 11.08, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 18, + "Discount": 0 + } + ] } ] }, @@ -101,267 +207,155 @@ "TotalPrice": 225.75 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Madrid", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10250, - "EmployeeID": 4, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-12T00:00:00", + "OrderID": 10438, + "EmployeeID": 3, + "OrderDate": "1997-02-06T00:00:00", + "RequiredDate": "1997-03-06T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", "ShipVia": 2, - "Freight": 65.83, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 8.24, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0, - "Weight": 2.9, - "Length": 26.9, - "TotalPrice": 233.5 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 35, - "Discount": 0.16, - "Weight": 3.5, - "Length": 27.4, - "TotalPrice": 261.25 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 15, - "Discount": 0.16, - "Weight": 2.2, - "Length": 30.2, - "TotalPrice": 249.75 + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10251, - "EmployeeID": 3, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", + "OrderID": 10446, + "EmployeeID": 6, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-02-19T00:00:00", "ShipVia": 1, - "Freight": 41.34, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 14.68, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.06, - "Weight": 2.6, - "Length": 26.8, - "TotalPrice": 226.5 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.06, - "Weight": 3.1, - "Length": 24.3, - "TotalPrice": 219.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0, - "Weight": 2.4, - "Length": 23.7, - "TotalPrice": 207 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 + }, + { + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10252, - "EmployeeID": 4, - "OrderDate": "1996-07-09T00:00:00", - "RequiredDate": "1996-08-06T00:00:00", - "ShippedDate": "1996-07-11T00:00:00", + "OrderID": 10548, + "EmployeeID": 3, + "OrderDate": "1997-05-26T00:00:00", + "RequiredDate": "1997-06-23T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", "ShipVia": 2, - "Freight": 51.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 1.43, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 40, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10254, - "EmployeeID": 5, - "OrderDate": "1996-07-11T00:00:00", - "RequiredDate": "1996-08-08T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderID": 10608, + "EmployeeID": 4, + "OrderDate": "1997-07-23T00:00:00", + "RequiredDate": "1997-08-20T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 22.98, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 27.79, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 21, - "Discount": 0.16 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10255, - "EmployeeID": 9, - "OrderDate": "1996-07-12T00:00:00", - "RequiredDate": "1996-08-09T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", - "ShipVia": 3, - "Freight": 148.33, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10967, + "EmployeeID": 2, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 62.22, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 25, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 40, "Discount": 0 } ] @@ -369,1393 +363,1191 @@ ] }, { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, + "CustomerID": "HANAR", + "Company": "Hanari Carnes", + "ContactName": "Mario Pontes", + "ContactTitle": "Accounting Manager", + "Address": "Rua do Paço, 67", + "City": "Madrid", + "Region": "RJ", + "PostalCode": 5454, "Country": "Brazil", - "Phone": "(14) 555-8122", + "Phone": "(21) 555-0091", + "Fax": "(21) 555-8765", "Orders": [ { - "OrderID": 10256, - "EmployeeID": 3, - "OrderDate": "1996-07-15T00:00:00", - "RequiredDate": "1996-08-12T00:00:00", - "ShippedDate": "1996-07-17T00:00:00", + "OrderID": 10250, + "EmployeeID": 4, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-12T00:00:00", "ShipVia": 2, - "Freight": 13.97, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, + "Freight": 65.83, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, + "Discount": 0, + "Weight": 2.9, + "Length": 26.9, + "TotalPrice": 233.5 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 35, + "Discount": 0.16, + "Weight": 3.5, + "Length": 27.4, + "TotalPrice": 261.25 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.16, + "Weight": 2.2, + "Length": 30.2, + "TotalPrice": 249.75 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10257, - "EmployeeID": 4, - "OrderDate": "1996-07-16T00:00:00", - "RequiredDate": "1996-08-13T00:00:00", - "ShippedDate": "1996-07-22T00:00:00", - "ShipVia": 3, - "Freight": 81.91, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10541, + "EmployeeID": 2, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-05-29T00:00:00", + "ShipVia": 1, + "Freight": 68.65, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 25, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.1 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 9, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10645, + "EmployeeID": 4, + "OrderDate": "1997-08-26T00:00:00", + "RequiredDate": "1997-09-23T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", + "ShipVia": 1, + "Freight": 12.41, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10258, + "OrderID": 10690, "EmployeeID": 1, - "OrderDate": "1996-07-17T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderDate": "1997-10-02T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", "ShipVia": 1, - "Freight": 140.51, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 15.8, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 65, - "Discount": 0.2 - }, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10770, + "EmployeeID": 8, + "OrderDate": "1997-12-09T00:00:00", + "RequiredDate": "1998-01-06T00:00:00", + "ShippedDate": "1997-12-17T00:00:00", + "ShipVia": 3, + "Freight": 5.32, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "CENTC", - "Company": "Centro comercial Moctezuma", - "ContactName": "Francisco Chang", - "ContactTitle": "Marketing Manager", - "Address": "Sierras de Granada 9993", - "City": "México D.F.", - "PostalCode": 5022, - "Country": "Mexico", - "Phone": "(5) 555-3392", - "Fax": "(5) 555-7293", - "Orders": [ + }, { - "OrderID": 10259, + "OrderID": 10783, "EmployeeID": 4, - "OrderDate": "1996-07-18T00:00:00", - "RequiredDate": "1996-08-15T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", - "ShipVia": 3, - "Freight": 3.25, - "ShipName": "Centro comercial Moctezuma", - "ShipAddress": "Sierras de Granada 9993", - "ShipCity": "México D.F.", - "ShipPostalCode": 5022, - "ShipCountry": "Mexico", + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 124.98, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 10, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 1, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10260, - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-29T00:00:00", + "OrderID": 10886, + "EmployeeID": 1, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", "ShipVia": 1, - "Freight": 55.09, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 4.99, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 16, - "Discount": 0.25 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 50, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10261, - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-30T00:00:00", - "ShipVia": 2, - "Freight": 3.05, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "OrderID": 10903, + "EmployeeID": 3, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 3, + "Freight": 36.71, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", "ShipCity": "Lyon", "ShipRegion": "RJ", - "ShipPostalCode": 2389, + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 20, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10262, - "EmployeeID": 8, - "OrderDate": "1996-07-22T00:00:00", - "RequiredDate": "1996-08-19T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", + "OrderID": 10922, + "EmployeeID": 5, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", "ShipVia": 3, - "Freight": 48.29, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 62.74, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 12, - "Discount": 0.2 - }, - { - "ProductID": 7, - "UnitPrice": 24, + "ProductID": 17, + "UnitPrice": 39, "Quantity": 15, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 2, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10263, - "EmployeeID": 9, - "OrderDate": "1996-07-23T00:00:00", - "RequiredDate": "1996-08-20T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", - "ShipVia": 3, - "Freight": 146.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10925, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 1, + "Freight": 2.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0.16 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 36000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10264, - "EmployeeID": 6, - "OrderDate": "1996-07-24T00:00:00", - "RequiredDate": "1996-08-21T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", - "ShipVia": 3, - "Freight": 3.67, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 15000, - "ShipCountry": "Sweden", + "OrderID": 10981, + "EmployeeID": 1, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 193.37, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 35, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 25, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10265, - "EmployeeID": 2, - "OrderDate": "1996-07-25T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", - "ShipVia": 1, - "Freight": 55.28, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 11022, + "EmployeeID": 9, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 30, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10266, + "OrderID": 11052, "EmployeeID": 3, - "OrderDate": "1996-07-26T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", - "ShipVia": 3, - "Freight": 25.73, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 67.26, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", + "CustomerID": "VICTE", + "Company": "Victuailles en stock", + "ContactName": "Mary Saveley", + "ContactTitle": "Sales Agent", + "Address": "2, rue du Commerce", + "City": "Lyon", + "PostalCode": 69004, + "Country": "France", + "Phone": "78.32.54.86", + "Fax": "78.32.54.87", "Orders": [ { - "OrderID": 10267, - "EmployeeID": 4, - "OrderDate": "1996-07-29T00:00:00", - "RequiredDate": "1996-08-26T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", + "OrderID": 10251, + "EmployeeID": 3, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", "ShipVia": 1, - "Freight": 208.58, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 41.34, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, - "Discount": 0 + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 6, + "Discount": 0.06, + "Weight": 2.6, + "Length": 26.8, + "TotalPrice": 226.5 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 15, + "Discount": 0.06, + "Weight": 3.1, + "Length": 24.3, + "TotalPrice": 219.25 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0, + "Weight": 2.4, + "Length": 23.7, + "TotalPrice": 207 } ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10268, + "OrderID": 10334, "EmployeeID": 8, - "OrderDate": "1996-07-30T00:00:00", - "RequiredDate": "1996-08-27T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 3, - "Freight": 66.29, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", + "OrderDate": "1996-10-21T00:00:00", + "RequiredDate": "1996-11-18T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", + "ShipVia": 2, + "Freight": 8.56, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 10, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 4, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10269, - "EmployeeID": 5, - "OrderDate": "1996-07-31T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", - "ShipVia": 1, - "Freight": 4.56, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10450, + "EmployeeID": 8, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-19T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", + "ShipVia": 2, + "Freight": 7.23, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 6, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10270, - "EmployeeID": 1, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 1, - "Freight": 136.54, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10459, + "EmployeeID": 4, + "OrderDate": "1997-02-27T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 25.09, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 25, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10271, - "EmployeeID": 6, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", - "ShipVia": 2, - "Freight": 4.54, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 10478, + "EmployeeID": 2, + "OrderDate": "1997-03-18T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-26T00:00:00", + "ShipVia": 3, + "Freight": 4.81, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 24, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10272, - "EmployeeID": 6, - "OrderDate": "1996-08-02T00:00:00", - "RequiredDate": "1996-08-30T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", - "ShipVia": 2, - "Freight": 98.03, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10546, + "EmployeeID": 1, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-05-27T00:00:00", + "ShipVia": 3, + "Freight": 194.72, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 6, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 24, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10273, + "OrderID": 10806, "EmployeeID": 3, - "OrderDate": "1996-08-05T00:00:00", - "RequiredDate": "1996-09-02T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", - "ShipVia": 3, - "Freight": 76.07, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 2, + "Freight": 22.11, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 24, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.06 - }, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 2, + "Discount": 0 + }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10814, + "EmployeeID": 3, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 3, + "Freight": 130.94, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 33, - "Discount": 0.06 + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 8, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10274, - "EmployeeID": 6, - "OrderDate": "1996-08-06T00:00:00", - "RequiredDate": "1996-09-03T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", + "OrderID": 10843, + "EmployeeID": 4, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", + "ShipVia": 2, + "Freight": 9.26, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 4, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10850, + "EmployeeID": 1, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 6.01, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, + "Freight": 49.19, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, + "ProductID": 25, + "UnitPrice": 14, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 4, + "Discount": 0.16 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "SUPRD", + "Company": "Suprêmes délices", + "ContactName": "Pascale Cartrain", + "ContactTitle": "Accounting Manager", + "Address": "Boulevard Tirou, 255", + "City": "Charleroi", + "PostalCode": 6000, + "Country": "Belgium", + "Phone": "(071) 23 67 22 20", + "Fax": "(071) 23 67 22 21", "Orders": [ { - "OrderID": 10275, - "EmployeeID": 1, - "OrderDate": "1996-08-07T00:00:00", - "RequiredDate": "1996-09-04T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", - "ShipVia": 1, - "Freight": 26.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10252, + "EmployeeID": 4, + "OrderDate": "1996-07-09T00:00:00", + "RequiredDate": "1996-08-06T00:00:00", + "ShippedDate": "1996-07-11T00:00:00", + "ShipVia": 2, + "Freight": 51.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 40, "Discount": 0.06 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 6, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 25, "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10276, - "EmployeeID": 8, - "OrderDate": "1996-08-08T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-14T00:00:00", - "ShipVia": 3, - "Freight": 13.84, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10302, + "EmployeeID": 4, + "OrderDate": "1996-09-10T00:00:00", + "RequiredDate": "1996-10-08T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 15, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10277, - "EmployeeID": 2, - "OrderDate": "1996-08-09T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-08-13T00:00:00", + "OrderID": 10458, + "EmployeeID": 7, + "OrderDate": "1997-02-26T00:00:00", + "RequiredDate": "1997-03-26T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", "ShipVia": 3, - "Freight": 125.77, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 147.06, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, + "Discount": 0 + }, { "ProductID": 28, "UnitPrice": 36.4, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 12, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10278, - "EmployeeID": 8, - "OrderDate": "1996-08-12T00:00:00", - "RequiredDate": "1996-09-09T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 2, - "Freight": 92.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 26000, - "ShipCountry": "Sweden", + "OrderID": 10463, + "EmployeeID": 5, + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-06T00:00:00", + "ShipVia": 3, + "Freight": 14.78, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 16, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 50, "Discount": 0 + } + ] + }, + { + "OrderID": 10475, + "EmployeeID": 9, + "OrderDate": "1997-03-14T00:00:00", + "RequiredDate": "1997-04-11T00:00:00", + "ShippedDate": "1997-04-04T00:00:00", + "ShipVia": 1, + "Freight": 68.52, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 8, - "Discount": 0 + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, + "Discount": 0.16 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 42, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10279, - "EmployeeID": 8, - "OrderDate": "1996-08-13T00:00:00", - "RequiredDate": "1996-09-10T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 2, - "Freight": 25.83, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10767, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 3, + "Freight": 1.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 2, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 34000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10280, - "EmployeeID": 2, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-09-11T00:00:00", - "ShippedDate": "1996-09-12T00:00:00", - "ShipVia": 1, - "Freight": 8.98, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 50000, - "ShipCountry": "Sweden", + "OrderID": 10841, + "EmployeeID": 5, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", + "ShipVia": 2, + "Freight": 424.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 20, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10281, - "EmployeeID": 4, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-08-28T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 2.94, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10846, + "EmployeeID": 2, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 56.46, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 1, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 6, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 } ] }, { - "OrderID": 10282, - "EmployeeID": 4, - "OrderDate": "1996-08-15T00:00:00", - "RequiredDate": "1996-09-12T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10283, - "EmployeeID": 3, - "OrderDate": "1996-08-16T00:00:00", - "RequiredDate": "1996-09-13T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", + "OrderID": 10885, + "EmployeeID": 6, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 3, - "Freight": 84.81, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 5.64, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 12.4, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 20, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 35, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 3, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10284, + "OrderID": 10930, "EmployeeID": 4, - "OrderDate": "1996-08-19T00:00:00", - "RequiredDate": "1996-09-16T00:00:00", - "ShippedDate": "1996-08-27T00:00:00", - "ShipVia": 1, - "Freight": 76.56, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 3, + "Freight": 15.55, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 21, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 67, - "UnitPrice": 11.2, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10285, - "EmployeeID": 1, - "OrderDate": "1996-08-20T00:00:00", - "RequiredDate": "1996-09-17T00:00:00", - "ShippedDate": "1996-08-26T00:00:00", + "OrderID": 11035, + "EmployeeID": 2, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", "ShipVia": 2, - "Freight": 76.83, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 0.17, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 45, - "Discount": 0.2 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.2 + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 36, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, + "Discount": 0 } ] }, { - "OrderID": 10286, - "EmployeeID": 8, - "OrderDate": "1996-08-21T00:00:00", - "RequiredDate": "1996-09-18T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", - "ShipVia": 3, - "Freight": 229.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 11038, + "EmployeeID": 1, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", + "ShipVia": 2, + "Freight": 29.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 100, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, + "Discount": 0.2 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] @@ -1763,327 +1555,272 @@ ] }, { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", + "CustomerID": "CHOPS", + "Company": "Chop-suey Chinese", + "ContactName": "Yang Wang", + "ContactTitle": "Owner", + "Address": "Hauptstr. 29", + "City": "Bern", + "PostalCode": 3012, + "Country": "Switzerland", + "Phone": "0452-076545", "Orders": [ { - "OrderID": 10287, - "EmployeeID": 8, - "OrderDate": "1996-08-22T00:00:00", - "RequiredDate": "1996-09-19T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", - "ShipVia": 3, - "Freight": 12.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10254, + "EmployeeID": 5, + "OrderDate": "1996-07-11T00:00:00", + "RequiredDate": "1996-08-08T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 2, + "Freight": 22.98, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, "Discount": 0.16 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 21, + "Discount": 0.16 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10288, - "EmployeeID": 4, - "OrderDate": "1996-08-23T00:00:00", - "RequiredDate": "1996-09-20T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", - "ShipVia": 1, - "Freight": 7.45, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10370, + "EmployeeID": 6, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-27T00:00:00", + "ShipVia": 2, + "Freight": 1.17, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10289, - "EmployeeID": 7, - "OrderDate": "1996-08-26T00:00:00", - "RequiredDate": "1996-09-23T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", + "OrderID": 10519, + "EmployeeID": 6, + "OrderDate": "1997-04-28T00:00:00", + "RequiredDate": "1997-05-26T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", "ShipVia": 3, - "Freight": 22.77, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 18000, - "ShipCountry": "UK", + "Freight": 91.76, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 9, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10290, - "EmployeeID": 8, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", + "OrderID": 10731, + "EmployeeID": 7, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", "ShipVia": 1, - "Freight": 79.7, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 96.65, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10746, + "EmployeeID": 1, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 3, + "Freight": 31.43, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10291, - "EmployeeID": 6, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-04T00:00:00", - "ShipVia": 2, - "Freight": 6.4, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10966, + "EmployeeID": 4, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 27.19, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10292, - "EmployeeID": 1, - "OrderDate": "1996-08-28T00:00:00", - "RequiredDate": "1996-09-25T00:00:00", - "ShippedDate": "1996-09-02T00:00:00", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "OrderID": 11029, + "EmployeeID": 4, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 47.84, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10293, - "EmployeeID": 1, - "OrderDate": "1996-08-29T00:00:00", - "RequiredDate": "1996-09-26T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 3, - "Freight": 21.18, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 11041, + "EmployeeID": 3, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", + "ShipVia": 2, + "Freight": 48.22, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 }, { "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, + "UnitPrice": 43.9, + "Quantity": 30, "Discount": 0 } ] @@ -2091,1519 +1828,1223 @@ ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "RICSU", + "Company": "Richter Supermarkt", + "ContactName": "Michael Holz", + "ContactTitle": "Sales Manager", + "Address": "Grenzacherweg 237", + "City": "Genève", + "PostalCode": 1203, + "Country": "Switzerland", + "Phone": "0897-034214", "Orders": [ { - "OrderID": 10294, - "EmployeeID": 4, - "OrderDate": "1996-08-30T00:00:00", - "RequiredDate": "1996-09-27T00:00:00", - "ShippedDate": "1996-09-05T00:00:00", - "ShipVia": 2, - "Freight": 147.26, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10255, + "EmployeeID": 9, + "OrderDate": "1996-07-12T00:00:00", + "RequiredDate": "1996-08-09T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", + "ShipVia": 3, + "Freight": 148.33, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 15, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 21, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10295, - "EmployeeID": 2, - "OrderDate": "1996-09-02T00:00:00", - "RequiredDate": "1996-09-30T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", + "OrderID": 10419, + "EmployeeID": 4, + "OrderDate": "1997-01-20T00:00:00", + "RequiredDate": "1997-02-17T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", "ShipVia": 2, - "Freight": 1.15, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 137.35, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 4, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10296, - "EmployeeID": 6, - "OrderDate": "1996-09-03T00:00:00", - "RequiredDate": "1996-10-01T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", + "OrderID": 10537, + "EmployeeID": 1, + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", "ShipVia": 1, - "Freight": 0.12, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 78.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 12, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 30, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10297, - "EmployeeID": 5, - "OrderDate": "1996-09-04T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", + "OrderID": 10666, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", "ShipVia": 2, - "Freight": 5.74, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 232.42, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 60, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, - "Discount": 0 - } + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0 + } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10298, - "EmployeeID": 6, - "OrderDate": "1996-09-05T00:00:00", - "RequiredDate": "1996-10-03T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 2, - "Freight": 168.22, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10751, + "EmployeeID": 3, + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-12-03T00:00:00", + "ShipVia": 3, + "Freight": 130.79, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 39.4, + "ProductID": 73, + "UnitPrice": 15, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10299, - "EmployeeID": 4, - "OrderDate": "1996-09-06T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-13T00:00:00", - "ShipVia": 2, - "Freight": 29.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10758, + "EmployeeID": 3, + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-04T00:00:00", + "ShipVia": 3, + "Freight": 138.17, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 60, "Discount": 0 }, { "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, + "UnitPrice": 15, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10300, - "EmployeeID": 2, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", + "OrderID": 10931, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 17.68, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 13.6, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 30, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 42, + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10301, - "EmployeeID": 8, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", + "OrderID": 10951, + "EmployeeID": 9, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", "ShipVia": 2, - "Freight": 45.08, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 30.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10302, - "EmployeeID": 4, - "OrderDate": "1996-09-10T00:00:00", - "RequiredDate": "1996-10-08T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 11033, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 84.74, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 28, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 36, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10303, - "EmployeeID": 7, - "OrderDate": "1996-09-11T00:00:00", - "RequiredDate": "1996-10-09T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", + "OrderID": 11075, + "EmployeeID": 8, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", "ShipVia": 2, - "Freight": 107.83, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 6.19, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 46, + "UnitPrice": 12, "Quantity": 30, - "Discount": 0.1 + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", + "CustomerID": "WELLI", + "Company": "Wellington Importadora", + "ContactName": "Paula Parente", + "ContactTitle": "Sales Manager", + "Address": "Rua do Mercado, 12", + "City": "Resende", + "Region": "SP", + "PostalCode": 8737, + "Country": "Brazil", + "Phone": "(14) 555-8122", "Orders": [ { - "OrderID": 10304, - "EmployeeID": 1, - "OrderDate": "1996-09-12T00:00:00", - "RequiredDate": "1996-10-10T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", + "OrderID": 10256, + "EmployeeID": 3, + "OrderDate": "1996-07-15T00:00:00", + "RequiredDate": "1996-08-12T00:00:00", + "ShippedDate": "1996-07-17T00:00:00", "ShipVia": 2, - "Freight": 63.79, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 13.97, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 10, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10305, - "EmployeeID": 8, - "OrderDate": "1996-09-13T00:00:00", - "RequiredDate": "1996-10-11T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 3, - "Freight": 257.62, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10420, + "EmployeeID": 3, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 1, + "Freight": 44.12, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 25, + "ProductID": 9, + "UnitPrice": 77.6, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 25, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 2, "Discount": 0.1 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 30, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10306, - "EmployeeID": 1, - "OrderDate": "1996-09-16T00:00:00", - "RequiredDate": "1996-10-14T00:00:00", - "ShippedDate": "1996-09-23T00:00:00", - "ShipVia": 3, - "Freight": 7.56, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10585, + "EmployeeID": 7, + "OrderDate": "1997-07-01T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", + "ShipVia": 1, + "Freight": 13.41, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 5, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10307, - "EmployeeID": 2, - "OrderDate": "1996-09-17T00:00:00", - "RequiredDate": "1996-10-15T00:00:00", - "ShippedDate": "1996-09-25T00:00:00", + "OrderID": 10644, + "EmployeeID": 3, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 0.14, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ - { - "OrderID": 10308, - "EmployeeID": 7, - "OrderDate": "1996-09-18T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-24T00:00:00", - "ShipVia": 3, - "Freight": 1.61, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 1, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 70, + "ProductID": 46, "UnitPrice": 12, - "Quantity": 5, - "Discount": 0 + "Quantity": 21, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10309, - "EmployeeID": 3, - "OrderDate": "1996-09-19T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", + "OrderID": 10803, + "EmployeeID": 4, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-06T00:00:00", "ShipVia": 1, - "Freight": 47.3, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 55.23, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 24, + "Discount": 0.06 }, { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 30, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 2, - "Discount": 0 - }, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 15, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10809, + "EmployeeID": 7, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", + "ShipVia": 1, + "Freight": 4.87, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 43, - "UnitPrice": 36.8, + "ProductID": 52, + "UnitPrice": 7, "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 3, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10310, - "EmployeeID": 8, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-18T00:00:00", - "ShippedDate": "1996-09-27T00:00:00", + "OrderID": 10900, + "EmployeeID": 1, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 2, - "Freight": 17.52, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "Freight": 1.66, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 10, - "Discount": 0 - }, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10905, + "EmployeeID": 9, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 13.72, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 5, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10311, - "EmployeeID": 1, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-26T00:00:00", + "OrderID": 10935, + "EmployeeID": 4, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 3, - "Freight": 24.69, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 47.59, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 6, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.25 + }, + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 8, + "Discount": 0.25 } ] } ] }, { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", + "CustomerID": "HILAA", + "Company": "HILARION-Abastos", + "ContactName": "Carlos Hernández", "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", + "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", "Orders": [ { - "OrderID": 10312, - "EmployeeID": 2, - "OrderDate": "1996-09-23T00:00:00", - "RequiredDate": "1996-10-21T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", - "ShipVia": 2, - "Freight": 40.26, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10257, + "EmployeeID": 4, + "OrderDate": "1996-07-16T00:00:00", + "RequiredDate": "1996-08-13T00:00:00", + "ShippedDate": "1996-07-22T00:00:00", + "ShipVia": 3, + "Freight": 81.91, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 4, + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 24, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10395, + "EmployeeID": 6, + "OrderDate": "1996-12-26T00:00:00", + "RequiredDate": "1997-01-23T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 1, + "Freight": 184.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 28, + "Discount": 0.1 }, { "ProductID": 53, "UnitPrice": 26.2, - "Quantity": 20, - "Discount": 0 + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10313, - "EmployeeID": 2, - "OrderDate": "1996-09-24T00:00:00", - "RequiredDate": "1996-10-22T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", - "ShipVia": 2, - "Freight": 1.96, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10476, + "EmployeeID": 8, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", + "ShipVia": 3, + "Freight": 4.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 12, "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10314, + "OrderID": 10486, "EmployeeID": 1, - "OrderDate": "1996-09-25T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", "ShipVia": 2, - "Freight": 74.16, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 30.53, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 10.6, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 16, + "Discount": 0 + } + ] + }, + { + "OrderID": 10490, + "EmployeeID": 7, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-03T00:00:00", + "ShipVia": 2, + "Freight": 210.19, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, "Quantity": 30, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 36, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 42000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10315, - "EmployeeID": 4, - "OrderDate": "1996-09-26T00:00:00", - "RequiredDate": "1996-10-24T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", + "OrderID": 10498, + "EmployeeID": 8, + "OrderDate": "1997-04-07T00:00:00", + "RequiredDate": "1997-05-05T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 2, - "Freight": 41.76, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40301, - "ShipPostalCode": 32000, - "ShipCountry": "UK", + "Freight": 29.75, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 14, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10316, - "EmployeeID": 1, - "OrderDate": "1996-09-27T00:00:00", - "RequiredDate": "1996-10-25T00:00:00", - "ShippedDate": "1996-10-08T00:00:00", - "ShipVia": 3, - "Freight": 150.15, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10552, + "EmployeeID": 2, + "OrderDate": "1997-05-29T00:00:00", + "RequiredDate": "1997-06-26T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 1, + "Freight": 83.22, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 70, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10317, - "EmployeeID": 6, - "OrderDate": "1996-09-30T00:00:00", - "RequiredDate": "1996-10-28T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", + "OrderID": 10601, + "EmployeeID": 7, + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 58.3, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 20, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10318, - "EmployeeID": 8, - "OrderDate": "1996-10-01T00:00:00", - "RequiredDate": "1996-10-29T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderID": 10613, + "EmployeeID": 4, + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 4.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 30575, - "ShipPostalCode": 43000, - "ShipCountry": "UK", + "Freight": 8.11, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 6, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10319, - "EmployeeID": 7, - "OrderDate": "1996-10-02T00:00:00", - "RequiredDate": "1996-10-30T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", - "ShipVia": 3, - "Freight": 64.5, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10641, + "EmployeeID": 4, + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 2, + "Freight": 179.61, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 14, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10320, - "EmployeeID": 5, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-18T00:00:00", - "ShipVia": 3, - "Freight": 34.57, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10705, + "EmployeeID": 9, + "OrderDate": "1997-10-15T00:00:00", + "RequiredDate": "1997-11-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 3.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10321, + "OrderID": 10796, "EmployeeID": 3, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-31T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", - "ShipVia": 2, - "Freight": 3.43, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 80331, - "ShipPostalCode": 24000, - "ShipCountry": "UK", + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 1, + "Freight": 26.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 21, + "Discount": 0.2 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10322, - "EmployeeID": 7, - "OrderDate": "1996-10-04T00:00:00", - "RequiredDate": "1996-11-01T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", - "ShipVia": 3, - "Freight": 0.4, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 24, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10323, + "OrderID": 10863, "EmployeeID": 4, - "OrderDate": "1996-10-07T00:00:00", - "RequiredDate": "1996-11-04T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 1, - "Freight": 4.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 30.26, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 12.4, - "Quantity": 5, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 4, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 12, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10901, + "EmployeeID": 4, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", + "ShipVia": 1, + "Freight": 62.09, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10324, - "EmployeeID": 9, - "OrderDate": "1996-10-08T00:00:00", - "RequiredDate": "1996-11-05T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", - "ShipVia": 1, - "Freight": 214.27, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10957, + "EmployeeID": 8, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 105.36, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.16 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 70, - "Discount": 0.16 + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 30, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 8, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10960, + "EmployeeID": 3, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 2.08, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 80, - "Discount": 0.16 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10325, + "OrderID": 10976, "EmployeeID": 1, - "OrderDate": "1996-10-09T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 3, - "Freight": 64.86, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 1, + "Freight": 37.97, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 6, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 11055, + "EmployeeID": 7, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", + "ShipVia": 2, + "Freight": 120.92, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 12, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 9, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ - { - "OrderID": 10326, - "EmployeeID": 4, - "OrderDate": "1996-10-10T00:00:00", - "RequiredDate": "1996-11-07T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 2, - "Freight": 77.92, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 24, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 16, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 50, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] @@ -3611,1149 +3052,787 @@ ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 31000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", "Orders": [ { - "OrderID": 10327, - "EmployeeID": 2, - "OrderDate": "1996-10-11T00:00:00", - "RequiredDate": "1996-11-08T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", + "OrderID": 10258, + "EmployeeID": 1, + "OrderDate": "1996-07-17T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", "ShipVia": 1, - "Freight": 63.36, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", + "Freight": 140.51, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 11, - "UnitPrice": 16.8, "Quantity": 50, "Discount": 0.2 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 35, + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 65, "Discount": 0.2 }, { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10328, - "EmployeeID": 4, - "OrderDate": "1996-10-14T00:00:00", - "RequiredDate": "1996-11-11T00:00:00", - "ShippedDate": "1996-10-17T00:00:00", + "OrderID": 10263, + "EmployeeID": 9, + "OrderDate": "1996-07-23T00:00:00", + "RequiredDate": "1996-08-20T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", "ShipVia": 3, - "Freight": 87.03, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 146.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 36, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10329, - "EmployeeID": 4, - "OrderDate": "1996-10-15T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", - "ShipVia": 2, - "Freight": 191.67, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 10351, + "EmployeeID": 1, + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 162.33, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 10, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 20, "Discount": 0.06 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 13, + "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 20, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 77, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 12, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 10, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10330, - "EmployeeID": 3, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", - "ShipVia": 1, - "Freight": 12.75, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10368, + "EmployeeID": 2, + "OrderDate": "1996-11-29T00:00:00", + "RequiredDate": "1996-12-27T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 101.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 5, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 13, + "Discount": 0.1 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 25, - "Discount": 0.16 + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10331, - "EmployeeID": 9, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-27T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", + "OrderID": 10382, + "EmployeeID": 4, + "OrderDate": "1996-12-13T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1996-12-16T00:00:00", "ShipVia": 1, - "Freight": 10.19, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 94.77, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 32, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 49000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10332, - "EmployeeID": 3, - "OrderDate": "1996-10-17T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", - "ShipVia": 2, - "Freight": 52.84, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { "ProductID": 18, "UnitPrice": 50, - "Quantity": 40, - "Discount": 0.2 + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 16, - "Discount": 0.2 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10333, - "EmployeeID": 5, - "OrderDate": "1996-10-18T00:00:00", - "RequiredDate": "1996-11-15T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", - "ShipVia": 3, - "Freight": 0.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10390, + "EmployeeID": 6, + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-26T00:00:00", + "ShipVia": 1, + "Freight": 126.38, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 40, "Discount": 0.1 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 40, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10334, + "OrderID": 10402, "EmployeeID": 8, - "OrderDate": "1996-10-21T00:00:00", - "RequiredDate": "1996-11-18T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", + "OrderDate": "1997-01-02T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", "ShipVia": 2, - "Freight": 8.56, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 67.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 8, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 65, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10335, - "EmployeeID": 7, - "OrderDate": "1996-10-22T00:00:00", - "RequiredDate": "1996-11-19T00:00:00", - "ShippedDate": "1996-10-24T00:00:00", - "ShipVia": 2, - "Freight": 42.11, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10430, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-03T00:00:00", + "ShipVia": 1, + "Freight": 458.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 7, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 45, "Discount": 0.2 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 48, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10336, - "EmployeeID": 7, - "OrderDate": "1996-10-23T00:00:00", - "RequiredDate": "1996-11-20T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", + "OrderID": 10442, + "EmployeeID": 3, + "OrderDate": "1997-02-11T00:00:00", + "RequiredDate": "1997-03-11T00:00:00", + "ShippedDate": "1997-02-18T00:00:00", "ShipVia": 2, - "Freight": 15.51, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "Freight": 47.94, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 80, + "Discount": 0 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10337, - "EmployeeID": 4, - "OrderDate": "1996-10-24T00:00:00", - "RequiredDate": "1996-11-21T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", - "ShipVia": 3, - "Freight": 108.26, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10514, + "EmployeeID": 3, + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 2, + "Freight": 789.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 39, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 24, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 20, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 28, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 39, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10338, - "EmployeeID": 4, - "OrderDate": "1996-10-25T00:00:00", - "RequiredDate": "1996-11-22T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", + "OrderID": 10571, + "EmployeeID": 8, + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 3, - "Freight": 84.21, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 20, - "Discount": 0 + "Freight": 26.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 11, + "Discount": 0.16 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 15, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 46000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10339, + "OrderID": 10595, "EmployeeID": 2, - "OrderDate": "1996-10-28T00:00:00", - "RequiredDate": "1996-11-25T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 15.66, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 40000, - "ShipCountry": "Canada", + "OrderDate": "1997-07-10T00:00:00", + "RequiredDate": "1997-08-07T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 1, + "Freight": 96.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 120, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 28, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 65, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10340, - "EmployeeID": 1, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", + "OrderID": 10633, + "EmployeeID": 7, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-18T00:00:00", "ShipVia": 3, - "Freight": 166.31, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 477.9, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 13, + "Discount": 0.16 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 80, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10341, + "OrderID": 10667, "EmployeeID": 7, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", - "ShipVia": 3, - "Freight": 26.78, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 78.09, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 8, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 14, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10342, + "OrderID": 10698, "EmployeeID": 4, - "OrderDate": "1996-10-30T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 54.83, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-17T00:00:00", + "ShipVia": 1, + "Freight": 272.47, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 24, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 56, - "Discount": 0.2 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.06 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 65, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 8, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10343, - "EmployeeID": 4, - "OrderDate": "1996-10-31T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-11-06T00:00:00", - "ShipVia": 1, - "Freight": 110.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10764, + "EmployeeID": 6, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 3, + "Freight": 145.45, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 68, + "ProductID": 3, "UnitPrice": 10, - "Quantity": 4, - "Discount": 0.06 + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 130, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10344, - "EmployeeID": 4, - "OrderDate": "1996-11-01T00:00:00", - "RequiredDate": "1996-11-29T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", + "OrderID": 10771, + "EmployeeID": 9, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", "ShipVia": 2, - "Freight": 23.29, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 11.19, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 35, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 16, "Discount": 0 - }, - { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10345, - "EmployeeID": 2, - "OrderDate": "1996-11-04T00:00:00", - "RequiredDate": "1996-12-02T00:00:00", - "ShippedDate": "1996-11-11T00:00:00", - "ShipVia": 2, - "Freight": 249.06, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10773, + "EmployeeID": 1, + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1998-01-08T00:00:00", + "ShippedDate": "1997-12-16T00:00:00", + "ShipVia": 3, + "Freight": 96.43, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 33, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 80, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 70, + "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 9, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 7, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10346, - "EmployeeID": 3, - "OrderDate": "1996-11-05T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", + "OrderID": 10776, + "EmployeeID": 1, + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1998-01-12T00:00:00", + "ShippedDate": "1997-12-18T00:00:00", "ShipVia": 3, - "Freight": 142.08, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 351.53, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 36, - "Discount": 0.1 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10347, - "EmployeeID": 4, - "OrderDate": "1996-11-06T00:00:00", - "RequiredDate": "1996-12-04T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 3.1, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 4, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 27, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 120, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10348, - "EmployeeID": 4, - "OrderDate": "1996-11-07T00:00:00", - "RequiredDate": "1996-12-05T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", + "OrderID": 10795, + "EmployeeID": 8, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-20T00:00:00", "ShipVia": 2, - "Freight": 0.78, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 126.66, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 65, + "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 25, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10349, + "OrderID": 10836, "EmployeeID": 7, - "OrderDate": "1996-11-08T00:00:00", - "RequiredDate": "1996-12-06T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", "ShipVia": 1, - "Freight": 8.63, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 411.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 52, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, "Quantity": 24, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10350, - "EmployeeID": 6, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", - "ShipVia": 2, - "Freight": 64.19, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ + }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10351, - "EmployeeID": 1, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 162.33, + "OrderID": 10854, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-05T00:00:00", + "ShipVia": 2, + "Freight": 100.22, "ShipName": "Ernst Handel", "ShipAddress": "Kirchgasse 6", "ShipCity": "Graz", @@ -4761,450 +3840,329 @@ "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 100, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 13, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 77, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 65, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10352, + "OrderID": 10895, "EmployeeID": 3, - "OrderDate": "1996-11-12T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-18T00:00:00", - "ShipVia": 3, - "Freight": 1.3, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", + "ShipVia": 1, + "Freight": 162.75, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, + "UnitPrice": 4.5, + "Quantity": 110, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 91, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 100, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10353, - "EmployeeID": 7, - "OrderDate": "1996-11-13T00:00:00", - "RequiredDate": "1996-12-11T00:00:00", - "ShippedDate": "1996-11-25T00:00:00", + "OrderID": 10968, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-01T00:00:00", "ShipVia": 3, - "Freight": 360.63, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, + "Freight": 74.6, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10354, + "OrderID": 10979, "EmployeeID": 8, - "OrderDate": "1996-11-14T00:00:00", - "RequiredDate": "1996-12-12T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 3, - "Freight": 53.8, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-03-31T00:00:00", + "ShipVia": 2, + "Freight": 353.07, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 12, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 4, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 19000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10355, - "EmployeeID": 6, - "OrderDate": "1996-11-15T00:00:00", - "RequiredDate": "1996-12-13T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 41.95, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 37000, - "ShipCountry": "UK", - "OrderDetails": [ + }, { "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, + "UnitPrice": 4.5, + "Quantity": 80, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10356, - "EmployeeID": 6, - "OrderDate": "1996-11-18T00:00:00", - "RequiredDate": "1996-12-16T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 2, - "Freight": 36.71, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10990, + "EmployeeID": 2, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 3, + "Freight": 117.61, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 31, + "ProductID": 21, "UnitPrice": 10, - "Quantity": 30, + "Quantity": 65, "Discount": 0 }, + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 60, + "Discount": 0.16 + }, { "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 12, - "Discount": 0 + "UnitPrice": 24, + "Quantity": 65, + "Discount": 0.16 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 66, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10357, - "EmployeeID": 1, - "OrderDate": "1996-11-19T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 11008, + "EmployeeID": 7, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", "ShipVia": 3, - "Freight": 34.88, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 79.46, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 16, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 90, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 8, - "Discount": 0.2 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10358, - "EmployeeID": 5, - "OrderDate": "1996-11-20T00:00:00", - "RequiredDate": "1996-12-18T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 1, - "Freight": 19.64, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 11017, + "EmployeeID": 9, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 2, + "Freight": 754.26, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 110, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10359, - "EmployeeID": 5, - "OrderDate": "1996-11-21T00:00:00", - "RequiredDate": "1996-12-19T00:00:00", - "ShippedDate": "1996-11-26T00:00:00", - "ShipVia": 3, - "Freight": 288.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "OrderID": 11072, + "EmployeeID": 4, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShipVia": 2, + "Freight": 258.64, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 56, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 22, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 130, + "Discount": 0 } ] } ] }, { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", + "CustomerID": "CENTC", + "Company": "Centro comercial Moctezuma", + "ContactName": "Francisco Chang", "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", + "Address": "Sierras de Granada 9993", + "City": "México D.F.", + "PostalCode": 5022, + "Country": "Mexico", + "Phone": "(5) 555-3392", + "Fax": "(5) 555-7293", "Orders": [ { - "OrderID": 10360, + "OrderID": 10259, "EmployeeID": 4, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderDate": "1996-07-18T00:00:00", + "RequiredDate": "1996-08-15T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", "ShipVia": 3, - "Freight": 131.7, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 3.25, + "ShipName": "Centro comercial Moctezuma", + "ShipAddress": "Sierras de Granada 9993", + "ShipCity": "México D.F.", + "ShipPostalCode": 5022, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 210.8, + "ProductID": 21, + "UnitPrice": 8, "Quantity": 10, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 28, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 1, "Discount": 0 } ] @@ -5212,815 +4170,636 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, + "CustomerID": "OTTIK", + "Company": "Ottilies Käseladen", + "ContactName": "Henriette Pfalzheim", + "ContactTitle": "Owner", + "Address": "Mehrheimerstr. 369", + "City": "Köln", + "PostalCode": 50739, "Country": "Germany", - "Phone": "0372-035188", + "Phone": "0221-0644327", + "Fax": "0221-0765721", "Orders": [ { - "OrderID": 10361, - "EmployeeID": 1, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", - "ShipVia": 2, - "Freight": 183.17, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, + "OrderID": 10260, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-29T00:00:00", + "ShipVia": 1, + "Freight": 55.09, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 54, - "Discount": 0.1 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 16, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 55, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10362, - "EmployeeID": 3, - "OrderDate": "1996-11-25T00:00:00", - "RequiredDate": "1996-12-23T00:00:00", - "ShippedDate": "1996-11-28T00:00:00", - "ShipVia": 1, - "Freight": 96.04, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 11.2, + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 50, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10363, - "EmployeeID": 4, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1996-12-24T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", - "ShipVia": 3, - "Freight": 30.54, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, + "OrderID": 10407, + "EmployeeID": 2, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-04T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", + "ShipVia": 2, + "Freight": 91.48, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 12, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, "Discount": 0 }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ - { - "OrderID": 10364, - "EmployeeID": 1, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", - "ShipVia": 1, - "Freight": 71.97, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 20000, - "ShipCountry": "UK", - "OrderDetails": [ { "ProductID": 69, "UnitPrice": 28.8, - "Quantity": 30, + "Quantity": 15, "Discount": 0 }, { "ProductID": 71, "UnitPrice": 17.2, - "Quantity": 5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10365, - "EmployeeID": 3, - "OrderDate": "1996-11-27T00:00:00", - "RequiredDate": "1996-12-25T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 10508, + "EmployeeID": 1, + "OrderDate": "1997-04-16T00:00:00", + "RequiredDate": "1997-05-14T00:00:00", + "ShippedDate": "1997-05-13T00:00:00", "ShipVia": 2, - "Freight": 22, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "Freight": 4.99, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 24, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10366, - "EmployeeID": 8, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1996-12-30T00:00:00", - "ShipVia": 2, - "Freight": 10.14, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 10554, + "EmployeeID": 4, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 3, + "Freight": 120.97, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 5, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 }, { "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, - "Discount": 0 + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10367, - "EmployeeID": 7, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1996-12-26T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 10580, + "EmployeeID": 4, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-01T00:00:00", "ShipVia": 3, - "Freight": 13.55, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 75.89, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 36, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 18, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, + "Discount": 0.06 }, { "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0 + "UnitPrice": 21.05, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10368, - "EmployeeID": 2, - "OrderDate": "1996-11-29T00:00:00", - "RequiredDate": "1996-12-27T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 2, - "Freight": 101.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10684, + "EmployeeID": 3, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 1, + "Freight": 145.63, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 13, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10369, - "EmployeeID": 8, - "OrderDate": "1996-12-02T00:00:00", - "RequiredDate": "1996-12-30T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 2, - "Freight": 195.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 10766, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 157.55, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 20, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10370, + "OrderID": 10833, "EmployeeID": 6, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-27T00:00:00", + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 2, - "Freight": 1.17, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 71.49, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 9, + "Discount": 0.1 }, { - "ProductID": 74, - "UnitPrice": 8, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 9, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10999, + "EmployeeID": 6, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-01T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 96.35, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 21, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10371, - "EmployeeID": 1, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", - "ShipVia": 1, - "Freight": 0.45, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 11020, + "EmployeeID": 2, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 2, + "Freight": 43.3, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 24, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", + "CustomerID": "QUEDE", + "Company": "Que Delícia", + "ContactName": "Bernardo Batista", + "ContactTitle": "Accounting Manager", + "Address": "Rua da Panificadora, 12", "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, + "Region": "RJ", + "PostalCode": 2389, "Country": "Brazil", - "Phone": "(11) 555-1189", + "Phone": "(21) 555-4252", + "Fax": "(21) 555-4545", "Orders": [ { - "OrderID": 10372, - "EmployeeID": 5, - "OrderDate": "1996-12-04T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", + "OrderID": 10261, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-30T00:00:00", "ShipVia": 2, - "Freight": 890.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, + "Freight": 3.05, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 12, - "Discount": 0.25 - }, - { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 70, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 42, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10373, - "EmployeeID": 4, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-11T00:00:00", - "ShipVia": 3, - "Freight": 124.12, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10291, + "EmployeeID": 6, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-04T00:00:00", + "ShipVia": 2, + "Freight": 6.4, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 80, - "Discount": 0.2 + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 24, + "Discount": 0.1 + }, + { + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10374, - "EmployeeID": 1, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 3, - "Freight": 3.94, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10379, + "EmployeeID": 2, + "OrderDate": "1996-12-11T00:00:00", + "RequiredDate": "1997-01-08T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 1, + "Freight": 45.03, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 15, - "Discount": 0 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 16, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10375, - "EmployeeID": 3, - "OrderDate": "1996-12-06T00:00:00", - "RequiredDate": "1997-01-03T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 2, - "Freight": 20.12, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "OrderID": 10421, + "EmployeeID": 8, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-03-04T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 1, + "Freight": 99.23, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 15, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 4, + "Discount": 0.16 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0.16 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, "Quantity": 10, - "Discount": 0 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 34000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10376, + "OrderID": 10587, "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 2, - "Freight": 20.39, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 11000, - "ShipCountry": "Canada", + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 1, + "Freight": 62.52, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 42, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 13000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10377, - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 22.21, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 41000, - "ShipCountry": "UK", + "OrderID": 10647, + "EmployeeID": 4, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 2, + "Freight": 45.54, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 39, - "UnitPrice": 14.4, + "UnitPrice": 18, "Quantity": 20, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 27000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10378, - "EmployeeID": 5, - "OrderDate": "1996-12-10T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-19T00:00:00", - "ShipVia": 3, - "Freight": 5.44, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "OrderID": 10720, + "EmployeeID": 8, + "OrderDate": "1997-10-28T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 2, + "Freight": 9.53, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 + }, { "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 6, + "UnitPrice": 21.5, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10379, + "OrderID": 10794, + "EmployeeID": 6, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 1, + "Freight": 21.49, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, + "Discount": 0.2 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10989, "EmployeeID": 2, - "OrderDate": "1996-12-11T00:00:00", - "RequiredDate": "1997-01-08T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", "ShipVia": 1, - "Freight": 45.03, + "Freight": 34.76, "ShipName": "Que Delícia", "ShipAddress": "Rua da Panificadora, 12", "ShipCity": "Lyon", @@ -6029,982 +4808,767 @@ "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 16, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, + "Discount": 0 } ] } ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", "Orders": [ { - "OrderID": 10380, + "OrderID": 10262, "EmployeeID": 8, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderDate": "1996-07-22T00:00:00", + "RequiredDate": "1996-08-19T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", "ShipVia": 3, - "Freight": 35.03, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 48.29, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10381, - "EmployeeID": 3, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 7.99, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10272, + "EmployeeID": 6, + "OrderDate": "1996-08-02T00:00:00", + "RequiredDate": "1996-08-30T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", + "ShipVia": 2, + "Freight": 98.03, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 14, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10382, + "OrderID": 10294, "EmployeeID": 4, - "OrderDate": "1996-12-13T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1996-12-16T00:00:00", - "ShipVia": 1, - "Freight": 94.77, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderDate": "1996-08-30T00:00:00", + "RequiredDate": "1996-09-27T00:00:00", + "ShippedDate": "1996-09-05T00:00:00", + "ShipVia": 2, + "Freight": 147.26, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 32, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 9, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 14, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 50, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 25000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10383, - "EmployeeID": 8, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-18T00:00:00", - "ShipVia": 3, - "Freight": 34.24, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 36000, - "ShipCountry": "UK", + "OrderID": 10314, + "EmployeeID": 1, + "OrderDate": "1996-09-25T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 74.16, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 25, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 13000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10384, - "EmployeeID": 3, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", + "OrderID": 10316, + "EmployeeID": 1, + "OrderDate": "1996-09-27T00:00:00", + "RequiredDate": "1996-10-25T00:00:00", + "ShippedDate": "1996-10-08T00:00:00", "ShipVia": 3, - "Freight": 168.64, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 33000, - "ShipCountry": "Sweden", + "Freight": 150.15, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 28, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 70, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10385, - "EmployeeID": 1, - "OrderDate": "1996-12-17T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1996-12-23T00:00:00", - "ShipVia": 2, - "Freight": 30.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, + "OrderID": 10346, + "EmployeeID": 3, + "OrderDate": "1996-11-05T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 142.08, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 36, + "Discount": 0.1 }, { - "ProductID": 60, - "UnitPrice": 27.2, + "ProductID": 56, + "UnitPrice": 30.4, "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 8, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10386, - "EmployeeID": 9, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-25T00:00:00", - "ShipVia": 3, - "Freight": 13.99, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10401, + "EmployeeID": 1, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", + "ShipVia": 1, + "Freight": 12.51, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10387, - "EmployeeID": 1, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-15T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 2, - "Freight": 93.63, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10479, + "EmployeeID": 3, + "OrderDate": "1997-03-19T00:00:00", + "RequiredDate": "1997-04-16T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", + "ShipVia": 3, + "Freight": 708.95, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 6, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 28, "Discount": 0 }, { "ProductID": 59, "UnitPrice": 44, - "Quantity": 12, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 12000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10388, - "EmployeeID": 2, - "OrderDate": "1996-12-19T00:00:00", - "RequiredDate": "1997-01-16T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 1, - "Freight": 34.86, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 45000, - "ShipCountry": "UK", + "OrderID": 10564, + "EmployeeID": 4, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-08T00:00:00", + "ShippedDate": "1997-06-16T00:00:00", + "ShipVia": 3, + "Freight": 13.75, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 7.6, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10569, + "EmployeeID": 5, + "OrderDate": "1997-06-16T00:00:00", + "RequiredDate": "1997-07-14T00:00:00", + "ShippedDate": "1997-07-11T00:00:00", + "ShipVia": 1, + "Freight": 58.98, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0.2 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 40, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 26000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10389, - "EmployeeID": 4, - "OrderDate": "1996-12-20T00:00:00", - "RequiredDate": "1997-01-17T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", - "ShipVia": 2, - "Freight": 47.42, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10598, + "EmployeeID": 1, + "OrderDate": "1997-07-14T00:00:00", + "RequiredDate": "1997-08-11T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", + "ShipVia": 3, + "Freight": 44.42, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 16, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 15, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 9, "Discount": 0 + } + ] + }, + { + "OrderID": 10761, + "EmployeeID": 5, + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 2, + "Freight": 18.66, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 20, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10820, + "EmployeeID": 3, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 37.52, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 12, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10390, - "EmployeeID": 6, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-26T00:00:00", + "OrderID": 10852, + "EmployeeID": 8, + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 126.38, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 174.05, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 45, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 50, + "Discount": 0 + } + ] + }, + { + "OrderID": 10889, + "EmployeeID": 9, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", + "ShipVia": 3, + "Freight": 280.61, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10391, + "OrderID": 10988, "EmployeeID": 3, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-31T00:00:00", - "ShipVia": 3, - "Freight": 5.45, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 61.14, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 18, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10392, + "OrderID": 11000, "EmployeeID": 2, - "OrderDate": "1996-12-24T00:00:00", - "RequiredDate": "1997-01-21T00:00:00", - "ShippedDate": "1997-01-01T00:00:00", - "ShipVia": 3, - "Freight": 122.46, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10393, - "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", "ShipVia": 3, - "Freight": 126.56, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "Freight": 55.12, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, + "ProductID": 4, + "UnitPrice": 22, "Quantity": 25, "Discount": 0.25 }, { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 42, - "Discount": 0.25 - }, - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 7, - "Discount": 0.25 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 70, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 32, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10394, + "OrderID": 11077, "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 3, - "Freight": 30.34, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShipVia": 2, + "Freight": 8.53, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 24, + "Discount": 0.2 + }, + { + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 1, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10395, - "EmployeeID": 6, - "OrderDate": "1996-12-26T00:00:00", - "RequiredDate": "1997-01-23T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 1, - "Freight": 184.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ + }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 1, + "Discount": 0.02 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 70, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 1, + "Discount": 0.06 + }, + { + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 2, "Discount": 0.1 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 8, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 1, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10396, - "EmployeeID": 1, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1997-01-06T00:00:00", - "ShipVia": 3, - "Freight": 135.35, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ + }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 2, + "Discount": 0.06 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 21, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 1, + "Discount": 0.04 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 2, + "Discount": 0.04 + }, + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 1, + "Discount": 0.04 + }, + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 2, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ - { - "OrderID": 10397, - "EmployeeID": 5, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-24T00:00:00", - "ShippedDate": "1997-01-02T00:00:00", - "ShipVia": 1, - "Freight": 60.26, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", - "OrderDetails": [ + }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 1, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 18, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10398, - "EmployeeID": 2, - "OrderDate": "1996-12-30T00:00:00", - "RequiredDate": "1997-01-27T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 89.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.06 + }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 30, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10399, - "EmployeeID": 8, - "OrderDate": "1996-12-31T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", - "ShipVia": 3, - "Freight": 27.36, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 3, + "Discount": 0.02 + }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 35, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 2, + "Discount": 0.04 + }, + { + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 2, + "Discount": 0.0099999998 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 4, "Discount": 0 }, { "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 14, + "UnitPrice": 13, + "Quantity": 2, "Discount": 0 } ] @@ -7012,1094 +5576,932 @@ ] }, { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 47000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 36000, + "Country": "Sweden", + "Phone": "0695-34 67 21", "Orders": [ { - "OrderID": 10400, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderID": 10264, + "EmployeeID": 6, + "OrderDate": "1996-07-24T00:00:00", + "RequiredDate": "1996-08-21T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", "ShipVia": 3, - "Freight": 83.93, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "Freight": 3.67, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 15000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 35, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10401, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", + "OrderID": 10327, + "EmployeeID": 2, + "OrderDate": "1996-10-11T00:00:00", + "RequiredDate": "1996-11-08T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", "ShipVia": 1, - "Freight": 12.51, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 63.36, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 70, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 50, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 35, + "Discount": 0.2 }, + { + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10378, + "EmployeeID": 5, + "OrderDate": "1996-12-10T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-19T00:00:00", + "ShipVia": 3, + "Freight": 5.44, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", + "OrderDetails": [ { "ProductID": 71, "UnitPrice": 17.2, - "Quantity": 60, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10402, - "EmployeeID": 8, - "OrderDate": "1997-01-02T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", + "OrderID": 10434, + "EmployeeID": 3, + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-02-13T00:00:00", "ShipVia": 2, - "Freight": 67.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 17.92, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 10000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 60, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 65, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 18, + "Discount": 0.16 } ] }, { - "OrderID": 10403, - "EmployeeID": 4, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 73.79, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10460, + "EmployeeID": 8, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 1, + "Freight": 16.27, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 44000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, + "ProductID": 68, + "UnitPrice": 10, "Quantity": 21, - "Discount": 0.16 + "Discount": 0.25 }, { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 4, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10404, - "EmployeeID": 2, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", + "OrderID": 10533, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-22T00:00:00", "ShipVia": 1, - "Freight": 155.97, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 188.04, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, "Discount": 0.06 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 24, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10405, - "EmployeeID": 1, - "OrderDate": "1997-01-06T00:00:00", - "RequiredDate": "1997-02-03T00:00:00", - "ShippedDate": "1997-01-22T00:00:00", - "ShipVia": 1, - "Freight": 34.82, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10406, - "EmployeeID": 7, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-13T00:00:00", - "ShipVia": 1, - "Freight": 108.04, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10561, + "EmployeeID": 2, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 2, + "Freight": 242.21, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 18000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, + "ProductID": 44, + "UnitPrice": 19.45, "Quantity": 10, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 42, - "Discount": 0.1 - }, - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10407, - "EmployeeID": 2, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-04T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", + "OrderID": 10703, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-10-20T00:00:00", "ShipVia": 2, - "Freight": 91.48, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 152.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 22000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10408, - "EmployeeID": 8, - "OrderDate": "1997-01-08T00:00:00", - "RequiredDate": "1997-02-05T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", + "OrderID": 10762, + "EmployeeID": 3, + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", "ShipVia": 1, - "Freight": 11.26, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 328.74, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10409, - "EmployeeID": 3, - "OrderDate": "1997-01-09T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", + "OrderID": 10774, + "EmployeeID": 4, + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", "ShipVia": 1, - "Freight": 29.83, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 48.2, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 20000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 12, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 2, + "Discount": 0.25 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 12, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 28000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10410, - "EmployeeID": 3, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", - "ShipVia": 3, - "Freight": 2.4, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 30000, - "ShipCountry": "Canada", + "OrderID": 10824, + "EmployeeID": 8, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 1.23, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 23000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 49, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 16, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 9, "Discount": 0 } ] }, { - "OrderID": 10411, - "EmployeeID": 9, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-21T00:00:00", - "ShipVia": 3, - "Freight": 23.65, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 10000, - "ShipCountry": "Canada", + "OrderID": 10880, + "EmployeeID": 7, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 88.01, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 26000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 25, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 40, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 50, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10412, + "OrderID": 10902, + "EmployeeID": 1, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", + "ShipVia": 1, + "Freight": 44.15, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 33000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 6, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10955, "EmployeeID": 8, - "OrderDate": "1997-01-13T00:00:00", - "RequiredDate": "1997-02-10T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 3.77, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 3.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 47000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10413, - "EmployeeID": 3, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", - "ShipVia": 2, - "Freight": 95.66, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10977, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 3, + "Freight": 208.5, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 24, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 14, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10414, - "EmployeeID": 2, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-17T00:00:00", - "ShipVia": 3, - "Freight": 21.48, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10980, + "EmployeeID": 4, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 1, + "Freight": 1.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, - "Discount": 0.06 - }, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10993, + "EmployeeID": 7, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 3, + "Freight": 8.81, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 15000, + "ShipCountry": "Sweden", + "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11001, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 2, + "Freight": 197.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 14000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] + }, + { + "OrderID": 11050, + "EmployeeID": 8, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", + "ShipVia": 2, + "Freight": 59.41, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.1 + } + ] } ] }, { - "CustomerID": "HUNGC", - "Company": "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": "BLONP", + "Company": "Blondesddsl père et fils", + "ContactName": "Frédérique Citeaux", + "ContactTitle": "Marketing Manager", + "Address": "24, place Kléber", + "City": "Strasbourg", + "PostalCode": 67000, + "Country": "France", + "Phone": "88.60.15.31", + "Fax": "88.60.15.32", "Orders": [ { - "OrderID": 10415, - "EmployeeID": 3, - "OrderDate": "1997-01-15T00:00:00", - "RequiredDate": "1997-02-12T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", + "OrderID": 10265, + "EmployeeID": 2, + "OrderDate": "1996-07-25T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", "ShipVia": 1, - "Freight": 0.2, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "Freight": 55.28, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 17, "UnitPrice": 31.2, - "Quantity": 2, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 70, + "UnitPrice": 12, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10416, - "EmployeeID": 8, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 3, - "Freight": 22.72, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10297, + "EmployeeID": 5, + "OrderDate": "1996-09-04T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", + "ShipVia": 2, + "Freight": 5.74, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, + "ProductID": 72, + "UnitPrice": 27.8, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10417, + "OrderID": 10360, "EmployeeID": 4, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-28T00:00:00", + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", "ShipVia": 3, - "Freight": 70.29, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 131.7, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, + "ProductID": 49, + "UnitPrice": 16, "Quantity": 35, "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 28, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10418, - "EmployeeID": 4, - "OrderDate": "1997-01-17T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", - "ShipVia": 1, - "Freight": 17.55, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10436, + "EmployeeID": 3, + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-11T00:00:00", + "ShipVia": 2, + "Freight": 156.66, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 60, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 55, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 24, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10449, + "EmployeeID": 3, + "OrderDate": "1997-02-18T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-27T00:00:00", + "ShipVia": 2, + "Freight": 53.3, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 16, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10419, - "EmployeeID": 4, - "OrderDate": "1997-01-20T00:00:00", - "RequiredDate": "1997-02-17T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", - "ShipVia": 2, - "Freight": 137.35, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10559, + "EmployeeID": 6, + "OrderDate": "1997-06-05T00:00:00", + "RequiredDate": "1997-07-03T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 1, + "Freight": 8.05, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 60, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 18, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10420, - "EmployeeID": 3, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10566, + "EmployeeID": 9, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", "ShipVia": 1, - "Freight": 44.12, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 88.4, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 77.6, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 18, + "Discount": 0.16 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10421, - "EmployeeID": 8, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-03-04T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10584, + "EmployeeID": 4, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 1, - "Freight": 99.23, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 59.14, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 4, - "Discount": 0.16 - }, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10628, + "EmployeeID": 4, + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 30.36, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 10, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10422, - "EmployeeID": 2, - "OrderDate": "1997-01-22T00:00:00", - "RequiredDate": "1997-02-19T00:00:00", - "ShippedDate": "1997-01-31T00:00:00", - "ShipVia": 1, - "Freight": 3.02, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10679, + "EmployeeID": 8, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 27.94, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 2, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10423, + "OrderID": 10826, "EmployeeID": 6, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", - "ShipVia": 3, - "Freight": 24.5, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 1, + "Freight": 7.09, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 31, - "UnitPrice": 10, - "Quantity": 14, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 20, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 } ] @@ -8107,599 +6509,459 @@ ] }, { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 11000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", + "CustomerID": "WARTH", + "Company": "Wartian Herkku", + "ContactName": "Pirkko Koskitalo", + "ContactTitle": "Accounting Manager", + "Address": "Torikatu 38", + "City": "Oulu", + "PostalCode": 90110, + "Country": "Finland", + "Phone": "981-443655", + "Fax": "981-443655", "Orders": [ { - "OrderID": 10424, - "EmployeeID": 7, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-20T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 2, - "Freight": 370.61, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "OrderID": 10266, + "EmployeeID": 3, + "OrderDate": "1996-07-26T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 25.73, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0.2 - }, + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 12, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10270, + "EmployeeID": 1, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 1, + "Freight": 136.54, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 49, - "Discount": 0.2 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10425, - "EmployeeID": 6, - "OrderDate": "1997-01-24T00:00:00", - "RequiredDate": "1997-02-21T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 7.93, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10320, + "EmployeeID": 5, + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-18T00:00:00", + "ShipVia": 3, + "Freight": 34.57, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 10, - "Discount": 0.25 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10426, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-02-06T00:00:00", - "ShipVia": 1, - "Freight": 18.69, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 10333, + "EmployeeID": 5, + "OrderDate": "1996-10-18T00:00:00", + "RequiredDate": "1996-11-15T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", + "ShipVia": 3, + "Freight": 0.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 5, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 7, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 40, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10427, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 10412, + "EmployeeID": 8, + "OrderDate": "1997-01-13T00:00:00", + "RequiredDate": "1997-02-10T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", "ShipVia": 2, - "Freight": 31.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 3.77, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { "ProductID": 14, "UnitPrice": 18.6, - "Quantity": 35, - "Discount": 0 + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10428, - "EmployeeID": 7, - "OrderDate": "1997-01-28T00:00:00", - "RequiredDate": "1997-02-25T00:00:00", - "ShippedDate": "1997-02-04T00:00:00", - "ShipVia": 1, - "Freight": 11.09, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10416, + "EmployeeID": 8, + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 3, + "Freight": 22.72, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10429, - "EmployeeID": 3, - "OrderDate": "1997-01-29T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", - "ShipVia": 2, - "Freight": 56.63, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ + }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 40, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10430, - "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-03T00:00:00", + "OrderID": 10437, + "EmployeeID": 8, + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-12T00:00:00", "ShipVia": 1, - "Freight": 458.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 19.97, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10455, + "EmployeeID": 8, + "OrderDate": "1997-02-24T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 2, + "Freight": 180.45, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 53, + "UnitPrice": 26.2, "Quantity": 50, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.2 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 46000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10431, + "OrderID": 10526, "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-15T00:00:00", "ShipVia": 2, - "Freight": 44.17, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 16000, - "ShipCountry": "Canada", + "Freight": 58.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 7.6, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10432, - "EmployeeID": 3, - "OrderDate": "1997-01-31T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderID": 10553, + "EmployeeID": 2, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-03T00:00:00", "ShipVia": 2, - "Freight": 4.34, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 149.49, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 10, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10433, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", - "ShipVia": 3, - "Freight": 73.83, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10583, + "EmployeeID": 2, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 2, + "Freight": 7.28, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 28, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 40000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10434, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-02-13T00:00:00", - "ShipVia": 2, - "Freight": 17.92, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 10000, - "ShipCountry": "Sweden", - "OrderDetails": [ + }, { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 18, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ + }, { - "OrderID": 10435, - "EmployeeID": 8, - "OrderDate": "1997-02-04T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", - "ShipVia": 2, - "Freight": 9.21, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 38000, - "ShipCountry": "UK", + "OrderID": 10636, + "EmployeeID": 4, + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 1.15, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 12, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 10, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10436, - "EmployeeID": 3, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-11T00:00:00", - "ShipVia": 2, - "Freight": 156.66, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10750, + "EmployeeID": 9, + "OrderDate": "1997-11-21T00:00:00", + "RequiredDate": "1997-12-19T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 79.3, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 14, + "UnitPrice": 23.25, "Quantity": 5, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 30.4, + "ProductID": 45, + "UnitPrice": 9.5, "Quantity": 40, - "Discount": 0.1 + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10781, + "EmployeeID": 2, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 3, + "Freight": 73.16, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10437, - "EmployeeID": 8, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-12T00:00:00", - "ShipVia": 1, - "Freight": 19.97, + "OrderID": 11025, + "EmployeeID": 6, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 3, + "Freight": 29.17, "ShipName": "Wartian Herkku", "ShipAddress": "Torikatu 38", "ShipCity": "Oulu", @@ -8707,709 +6969,557 @@ "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", + "CustomerID": "FRANK", + "Company": "Frankenversand", + "ContactName": "Peter Franken", "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, + "Address": "Berliner Platz 43", + "City": "München", + "PostalCode": 80805, "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", + "Phone": "089-0877310", + "Fax": "089-0877451", "Orders": [ { - "OrderID": 10438, - "EmployeeID": 3, - "OrderDate": "1997-02-06T00:00:00", - "RequiredDate": "1997-03-06T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 8.24, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, + "OrderID": 10267, + "EmployeeID": 4, + "OrderDate": "1996-07-29T00:00:00", + "RequiredDate": "1996-08-26T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", + "ShipVia": 1, + "Freight": 208.58, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 15.6, + "ProductID": 76, + "UnitPrice": 14.4, "Quantity": 15, - "Discount": 0.2 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 38000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10439, - "EmployeeID": 6, - "OrderDate": "1997-02-07T00:00:00", - "RequiredDate": "1997-03-07T00:00:00", - "ShippedDate": "1997-02-10T00:00:00", + "OrderID": 10337, + "EmployeeID": 4, + "OrderDate": "1996-10-24T00:00:00", + "RequiredDate": "1996-11-21T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", "ShipVia": 3, - "Freight": 4.07, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "Freight": 108.26, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 15, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 16, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 6, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 30, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10440, + "OrderID": 10342, "EmployeeID": 4, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-10T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", + "OrderDate": "1996-10-30T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", "ShipVia": 2, - "Freight": 86.53, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 54.83, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 15.2, - "Quantity": 45, - "Discount": 0.16 + "Quantity": 24, + "Discount": 0.2 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 49, - "Discount": 0.16 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 56, + "Discount": 0.2 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 90, - "Discount": 0.16 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10441, - "EmployeeID": 3, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-24T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 2, - "Freight": 73.02, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10396, + "EmployeeID": 1, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1997-01-06T00:00:00", + "ShipVia": 3, + "Freight": 135.35, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 50, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10442, - "EmployeeID": 3, - "OrderDate": "1997-02-11T00:00:00", - "RequiredDate": "1997-03-11T00:00:00", - "ShippedDate": "1997-02-18T00:00:00", - "ShipVia": 2, - "Freight": 47.94, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10488, + "EmployeeID": 8, + "OrderDate": "1997-03-27T00:00:00", + "RequiredDate": "1997-04-24T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, + "ProductID": 59, + "UnitPrice": 44, "Quantity": 30, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 80, - "Discount": 0 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 60, - "Discount": 0 + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10443, + "OrderID": 10560, "EmployeeID": 8, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", "ShipVia": 1, - "Freight": 13.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 36.65, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 19000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10444, - "EmployeeID": 3, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-21T00:00:00", - "ShipVia": 3, - "Freight": 3.5, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 21000, - "ShipCountry": "Sweden", + "OrderID": 10623, + "EmployeeID": 8, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", + "ShipVia": 2, + "Freight": 97.18, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 10, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, + "ProductID": 19, + "UnitPrice": 9.2, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 8, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 35, + "UnitPrice": 18, "Quantity": 30, - "Discount": 0 + "Discount": 0.1 } ] }, { - "OrderID": 10445, - "EmployeeID": 3, - "OrderDate": "1997-02-13T00:00:00", - "RequiredDate": "1997-03-13T00:00:00", - "ShippedDate": "1997-02-20T00:00:00", + "OrderID": 10653, + "EmployeeID": 1, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", "ShipVia": 1, - "Freight": 9.3, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 11000, - "ShipCountry": "Sweden", + "Freight": 93.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10446, - "EmployeeID": 6, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-02-19T00:00:00", + "OrderID": 10670, + "EmployeeID": 4, + "OrderDate": "1997-09-16T00:00:00", + "RequiredDate": "1997-10-14T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", "ShipVia": 1, - "Freight": 14.68, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, + "Freight": 203.48, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 12, - "Discount": 0.1 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 32, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 15, - "Discount": 0.1 - } + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 25, + "Discount": 0 + } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10447, - "EmployeeID": 4, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-03-07T00:00:00", + "OrderID": 10675, + "EmployeeID": 5, + "OrderDate": "1997-09-19T00:00:00", + "RequiredDate": "1997-10-17T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", "ShipVia": 2, - "Freight": 68.66, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 31.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 40, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 35, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10448, - "EmployeeID": 4, - "OrderDate": "1997-02-17T00:00:00", - "RequiredDate": "1997-03-17T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", + "OrderID": 10717, + "EmployeeID": 1, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 2, - "Freight": 38.82, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 59.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 6, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 32, + "Discount": 0.06 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10449, - "EmployeeID": 3, - "OrderDate": "1997-02-18T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-27T00:00:00", + "OrderID": 10791, + "EmployeeID": 6, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-01T00:00:00", "ShipVia": 2, - "Freight": 53.3, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 16.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 14, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 52, - "UnitPrice": 5.6, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10450, - "EmployeeID": 8, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-19T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", + "OrderID": 10859, + "EmployeeID": 1, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", "ShipVia": 2, - "Freight": 7.23, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 76.1, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 40, + "Discount": 0.25 }, { "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, - "Discount": 0.2 + "UnitPrice": 7.45, + "Quantity": 35, + "Discount": 0.25 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10451, - "EmployeeID": 4, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", - "ShipVia": 3, - "Freight": 189.09, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, + "OrderID": 10929, + "EmployeeID": 6, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 1, + "Freight": 33.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 49, + "Discount": 0 }, { "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 55, - "Discount": 0.1 + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10452, - "EmployeeID": 8, - "OrderDate": "1997-02-20T00:00:00", - "RequiredDate": "1997-03-20T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", - "ShipVia": 1, - "Freight": 140.26, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11012, + "EmployeeID": 1, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 3, + "Freight": 242.95, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 15, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 100, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 36, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, "Discount": 0.06 } ] @@ -9417,8638 +7527,2449 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 44000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "CustomerID": "GROSR", + "Company": "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", "Orders": [ { - "OrderID": 10453, - "EmployeeID": 1, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", - "ShipVia": 2, - "Freight": 25.36, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 46000, - "ShipCountry": "UK", + "OrderID": 10268, + "EmployeeID": 8, + "OrderDate": "1996-07-30T00:00:00", + "RequiredDate": "1996-08-27T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 3, + "Freight": 66.29, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10454, - "EmployeeID": 4, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-25T00:00:00", + "OrderID": 10785, + "EmployeeID": 1, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", "ShipVia": 3, - "Freight": 2.74, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 1.51, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 10, - "Discount": 0.2 + "Discount": 0 } ] } ] }, { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", + "CustomerID": "WHITC", + "Company": "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", "Orders": [ { - "OrderID": 10455, - "EmployeeID": 8, - "OrderDate": "1997-02-24T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", - "ShipVia": 2, - "Freight": 180.45, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10269, + "EmployeeID": 5, + "OrderDate": "1996-07-31T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", + "ShipVia": 1, + "Freight": 4.56, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 50, - "Discount": 0 - }, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10344, + "EmployeeID": 4, + "OrderDate": "1996-11-01T00:00:00", + "RequiredDate": "1996-11-29T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", + "ShipVia": 2, + "Freight": 23.29, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 25, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10456, - "EmployeeID": 8, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 8.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10469, + "EmployeeID": 1, + "OrderDate": "1997-03-10T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 1, + "Freight": 60.18, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 40, "Discount": 0.16 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 21, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 2, "Discount": 0.16 } ] }, { - "OrderID": 10457, - "EmployeeID": 2, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-03-25T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", - "ShipVia": 1, - "Freight": 11.57, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10483, + "EmployeeID": 7, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-25T00:00:00", + "ShipVia": 2, + "Freight": 15.28, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 36, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 35, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10458, - "EmployeeID": 7, - "OrderDate": "1997-02-26T00:00:00", - "RequiredDate": "1997-03-26T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", + "OrderID": 10504, + "EmployeeID": 4, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-18T00:00:00", "ShipVia": 3, - "Freight": 147.06, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 59.13, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 15, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10459, - "EmployeeID": 4, - "OrderDate": "1997-02-27T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 25.09, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 31000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10460, + "OrderID": 10596, "EmployeeID": 8, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", "ShipVia": 1, - "Freight": 16.27, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 44000, - "ShipCountry": "Sweden", + "Freight": 16.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0.2 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 24, + "Discount": 0.2 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 4, - "Discount": 0.25 + "UnitPrice": 7.75, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10461, - "EmployeeID": 1, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-05T00:00:00", + "OrderID": 10693, + "EmployeeID": 3, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-10-10T00:00:00", "ShipVia": 3, - "Freight": 148.61, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 139.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 28, - "Discount": 0.25 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 60, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 34000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ - { - "OrderID": 10462, - "EmployeeID": 2, - "OrderDate": "1997-03-03T00:00:00", - "RequiredDate": "1997-03-31T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 1, - "Freight": 6.17, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", - "OrderDetails": [ + "Discount": 0.16 + }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 1, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 21, - "Discount": 0 + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10463, - "EmployeeID": 5, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-06T00:00:00", + "OrderID": 10696, + "EmployeeID": 8, + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", "ShipVia": 3, - "Freight": 14.78, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 102.55, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 21, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 50, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10464, - "EmployeeID": 4, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 2, - "Freight": 89, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 16, - "Discount": 0.2 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10465, - "EmployeeID": 1, - "OrderDate": "1997-03-05T00:00:00", - "RequiredDate": "1997-04-02T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 3, - "Freight": 145.04, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 45, - "UnitPrice": 7.6, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ - { - "OrderID": 10466, - "EmployeeID": 4, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-13T00:00:00", - "ShipVia": 1, - "Freight": 11.93, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10467, - "EmployeeID": 8, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10468, + "OrderID": 10723, "EmployeeID": 3, - "OrderDate": "1997-03-07T00:00:00", - "RequiredDate": "1997-04-04T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", - "ShipVia": 3, - "Freight": 44.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ - { - "OrderID": 10469, - "EmployeeID": 1, - "OrderDate": "1997-03-10T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-11-27T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", "ShipVia": 1, - "Freight": 60.18, + "Freight": 21.72, "ShipName": "White Clover Markets", "ShipAddress": "1029 - 12th Ave. S.", "ShipCity": "Seattle", "ShipRegion": "WA", "ShipPostalCode": 98124, "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 2, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10470, - "EmployeeID": 4, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 2, - "Freight": 64.56, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 8, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 26000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10471, - "EmployeeID": 2, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 3, - "Freight": 45.59, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10472, - "EmployeeID": 8, - "OrderDate": "1997-03-12T00:00:00", - "RequiredDate": "1997-04-09T00:00:00", - "ShippedDate": "1997-03-19T00:00:00", - "ShipVia": 1, - "Freight": 4.2, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 33000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 80, - "Discount": 0.06 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 41000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10473, - "EmployeeID": 1, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 3, - "Freight": 16.37, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60471, - "ShipPostalCode": 37000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10474, - "EmployeeID": 5, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-04-10T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 2, - "Freight": 83.49, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10475, - "EmployeeID": 9, - "OrderDate": "1997-03-14T00:00:00", - "RequiredDate": "1997-04-11T00:00:00", - "ShippedDate": "1997-04-04T00:00:00", - "ShipVia": 1, - "Freight": 68.52, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 42, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10476, - "EmployeeID": 8, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", - "ShipVia": 3, - "Freight": 4.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ - { - "OrderID": 10477, - "EmployeeID": 5, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", - "ShipVia": 2, - "Freight": 13.02, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 21, - "Discount": 0.25 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10478, - "EmployeeID": 2, - "OrderDate": "1997-03-18T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-26T00:00:00", - "ShipVia": 3, - "Freight": 4.81, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10479, - "EmployeeID": 3, - "OrderDate": "1997-03-19T00:00:00", - "RequiredDate": "1997-04-16T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 3, - "Freight": 708.95, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ - { - "OrderID": 10480, - "EmployeeID": 6, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ - { - "OrderID": 10481, - "EmployeeID": 8, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", - "ShipVia": 2, - "Freight": 64.33, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "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", - "Orders": [ - { - "OrderID": 10482, - "EmployeeID": 1, - "OrderDate": "1997-03-21T00:00:00", - "RequiredDate": "1997-04-18T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 7.48, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ - { - "OrderID": 10483, - "EmployeeID": 7, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-25T00:00:00", - "ShipVia": 2, - "Freight": 15.28, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 35, - "Discount": 0.06 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 30, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 46000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10484, - "EmployeeID": 3, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-01T00:00:00", - "ShipVia": 3, - "Freight": 6.88, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 31000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10485, - "EmployeeID": 4, - "OrderDate": "1997-03-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-31T00:00:00", - "ShipVia": 2, - "Freight": 64.45, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 60, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10486, - "EmployeeID": 1, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", - "ShipVia": 2, - "Freight": 30.53, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 16, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10487, - "EmployeeID": 2, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-03-28T00:00:00", - "ShipVia": 2, - "Freight": 71.07, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10488, - "EmployeeID": 8, - "OrderDate": "1997-03-27T00:00:00", - "RequiredDate": "1997-04-24T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10489, - "EmployeeID": 6, - "OrderDate": "1997-03-28T00:00:00", - "RequiredDate": "1997-04-25T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 5.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10490, - "EmployeeID": 7, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-03T00:00:00", - "ShipVia": 2, - "Freight": 210.19, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 36, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ - { - "OrderID": 10491, - "EmployeeID": 8, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-08T00:00:00", - "ShipVia": 3, - "Freight": 16.96, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 33000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ - { - "OrderID": 10492, - "EmployeeID": 3, - "OrderDate": "1997-04-01T00:00:00", - "RequiredDate": "1997-04-29T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 1, - "Freight": 62.89, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 16000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 60, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10493, - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 10.64, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 10, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ - { - "OrderID": 10494, - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 65.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 24000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ - { - "OrderID": 10495, - "EmployeeID": 3, - "OrderDate": "1997-04-03T00:00:00", - "RequiredDate": "1997-05-01T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 3, - "Freight": 4.65, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 33000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10496, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 2, - "Freight": 46.77, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10497, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 1, - "Freight": 36.21, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10498, - "EmployeeID": 8, - "OrderDate": "1997-04-07T00:00:00", - "RequiredDate": "1997-05-05T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 2, - "Freight": 29.75, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10499, - "EmployeeID": 4, - "OrderDate": "1997-04-08T00:00:00", - "RequiredDate": "1997-05-06T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 102.02, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10500, - "EmployeeID": 6, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-17T00:00:00", - "ShipVia": 1, - "Freight": 42.68, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10501, - "EmployeeID": 9, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 3, - "Freight": 8.85, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10502, - "EmployeeID": 2, - "OrderDate": "1997-04-10T00:00:00", - "RequiredDate": "1997-05-08T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 69.32, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10503, - "EmployeeID": 6, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 16.74, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ - { - "OrderID": 10504, - "EmployeeID": 4, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-18T00:00:00", - "ShipVia": 3, - "Freight": 59.13, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 47000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10505, - "EmployeeID": 3, - "OrderDate": "1997-04-14T00:00:00", - "RequiredDate": "1997-05-12T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 7.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 11000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10506, - "EmployeeID": 9, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 21.19, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 14, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10507, - "EmployeeID": 7, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-04-22T00:00:00", - "ShipVia": 1, - "Freight": 47.45, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 15, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10508, - "EmployeeID": 1, - "OrderDate": "1997-04-16T00:00:00", - "RequiredDate": "1997-05-14T00:00:00", - "ShippedDate": "1997-05-13T00:00:00", - "ShipVia": 2, - "Freight": 4.99, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10509, - "EmployeeID": 4, - "OrderDate": "1997-04-17T00:00:00", - "RequiredDate": "1997-05-15T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 0.15, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10510, - "EmployeeID": 6, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", - "ShipVia": 3, - "Freight": 367.63, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 36, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10511, - "EmployeeID": 4, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 350.64, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.16 - }, - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 50, - "Discount": 0.16 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10512, - "EmployeeID": 7, - "OrderDate": "1997-04-21T00:00:00", - "RequiredDate": "1997-05-19T00:00:00", - "ShippedDate": "1997-04-24T00:00:00", - "ShipVia": 2, - "Freight": 3.53, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.16 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 9, - "Discount": 0.16 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.16 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 12, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ - { - "OrderID": 10513, - "EmployeeID": 7, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-06-03T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", - "ShipVia": 1, - "Freight": 105.65, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.2 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, - "Discount": 0.2 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 15, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10514, - "EmployeeID": 3, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", - "ShipVia": 2, - "Freight": 789.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 39, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 39, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10515, - "EmployeeID": 2, - "OrderDate": "1997-04-23T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 1, - "Freight": 204.47, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 16, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 120, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0.16 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 84, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10516, - "EmployeeID": 2, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 62.78, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 80, - "Discount": 0.1 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 17000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ - { - "OrderID": 10517, - "EmployeeID": 3, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 3, - "Freight": 32.07, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 16000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ - { - "OrderID": 10518, - "EmployeeID": 4, - "OrderDate": "1997-04-25T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-05-05T00:00:00", - "ShipVia": 2, - "Freight": 218.15, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ - { - "OrderID": 10519, - "EmployeeID": 6, - "OrderDate": "1997-04-28T00:00:00", - "RequiredDate": "1997-05-26T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 91.76, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ - { - "OrderID": 10520, - "EmployeeID": 7, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 1, - "Freight": 13.37, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10521, - "EmployeeID": 8, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 17.22, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10522, - "EmployeeID": 4, - "OrderDate": "1997-04-30T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-06T00:00:00", - "ShipVia": 1, - "Freight": 45.33, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.2 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 12000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10523, - "EmployeeID": 7, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 2, - "Freight": 77.63, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 42000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 37000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10524, - "EmployeeID": 1, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", - "ShipVia": 2, - "Freight": 244.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10525, - "EmployeeID": 1, - "OrderDate": "1997-05-02T00:00:00", - "RequiredDate": "1997-05-30T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 11.06, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10526, - "EmployeeID": 4, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-15T00:00:00", - "ShipVia": 2, - "Freight": 58.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10527, - "EmployeeID": 7, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", - "ShipVia": 1, - "Freight": 41.9, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ - { - "OrderID": 10528, - "EmployeeID": 6, - "OrderDate": "1997-05-06T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", - "ShipVia": 2, - "Freight": 3.35, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.2 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 45000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ - { - "OrderID": 10529, - "EmployeeID": 5, - "OrderDate": "1997-05-07T00:00:00", - "RequiredDate": "1997-06-04T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", - "ShipVia": 2, - "Freight": 66.69, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10530, - "EmployeeID": 3, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", - "ShipVia": 2, - "Freight": 339.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ - { - "OrderID": 10531, - "EmployeeID": 7, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", - "ShipVia": 1, - "Freight": 8.12, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 33000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ - { - "OrderID": 10532, - "EmployeeID": 7, - "OrderDate": "1997-05-09T00:00:00", - "RequiredDate": "1997-06-06T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", - "ShipVia": 3, - "Freight": 74.46, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 45000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 10000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10533, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-22T00:00:00", - "ShipVia": 1, - "Freight": 188.04, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.06 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 24, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10534, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-14T00:00:00", - "ShipVia": 2, - "Freight": 27.94, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10535, - "EmployeeID": 4, - "OrderDate": "1997-05-13T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-21T00:00:00", - "ShipVia": 1, - "Freight": 15.64, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10536, - "EmployeeID": 3, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-06-11T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 2, - "Freight": 58.88, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ - { - "OrderID": 10537, - "EmployeeID": 1, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", - "ShipVia": 1, - "Freight": 78.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10538, - "EmployeeID": 9, - "OrderDate": "1997-05-15T00:00:00", - "RequiredDate": "1997-06-12T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", - "ShipVia": 3, - "Freight": 4.87, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 45000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 1, - "Discount": 0 - } - ] - }, - { - "OrderID": 10539, - "EmployeeID": 6, - "OrderDate": "1997-05-16T00:00:00", - "RequiredDate": "1997-06-13T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 3, - "Freight": 12.36, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 14000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10540, - "EmployeeID": 3, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 3, - "Freight": 1007.64, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10541, - "EmployeeID": 2, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-05-29T00:00:00", - "ShipVia": 1, - "Freight": 68.65, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.1 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 4, - "Discount": 0.1 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 36, - "Discount": 0.1 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10542, - "EmployeeID": 1, - "OrderDate": "1997-05-20T00:00:00", - "RequiredDate": "1997-06-17T00:00:00", - "ShippedDate": "1997-05-26T00:00:00", - "ShipVia": 3, - "Freight": 10.95, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 24, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10543, - "EmployeeID": 8, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 48.17, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ - { - "OrderID": 10544, - "EmployeeID": 4, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 24.91, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 7, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "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", - "Orders": [ - { - "OrderID": 10545, - "EmployeeID": 8, - "OrderDate": "1997-05-22T00:00:00", - "RequiredDate": "1997-06-19T00:00:00", - "ShippedDate": "1997-06-26T00:00:00", - "ShipVia": 2, - "Freight": 11.92, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10546, - "EmployeeID": 1, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-05-27T00:00:00", - "ShipVia": 3, - "Freight": 194.72, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10547, - "EmployeeID": 3, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", - "ShipVia": 2, - "Freight": 178.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 48000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 24, - "Discount": 0.16 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 60, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ - { - "OrderID": 10548, - "EmployeeID": 3, - "OrderDate": "1997-05-26T00:00:00", - "RequiredDate": "1997-06-23T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", - "ShipVia": 2, - "Freight": 1.43, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.25 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10549, - "EmployeeID": 5, - "OrderDate": "1997-05-27T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 171.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 55, - "Discount": 0.16 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 100, - "Discount": 0.16 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 48, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ - { - "OrderID": 10550, - "EmployeeID": 7, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-06-25T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 3, - "Freight": 4.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0.1 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ - { - "OrderID": 10551, - "EmployeeID": 4, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 3, - "Freight": 72.95, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10552, - "EmployeeID": 2, - "OrderDate": "1997-05-29T00:00:00", - "RequiredDate": "1997-06-26T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 1, - "Freight": 83.22, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10553, - "EmployeeID": 2, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-03T00:00:00", - "ShipVia": 2, - "Freight": 149.49, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10554, - "EmployeeID": 4, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 3, - "Freight": 120.97, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10555, - "EmployeeID": 6, - "OrderDate": "1997-06-02T00:00:00", - "RequiredDate": "1997-06-30T00:00:00", - "ShippedDate": "1997-06-04T00:00:00", - "ShipVia": 3, - "Freight": 252.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 18, - "Discount": 0.2 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ - { - "OrderID": 10556, - "EmployeeID": 2, - "OrderDate": "1997-06-03T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 9.8, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10557, - "EmployeeID": 9, - "OrderDate": "1997-06-03T00:00:00", - "RequiredDate": "1997-06-17T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 2, - "Freight": 96.72, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 10000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10558, - "EmployeeID": 1, - "OrderDate": "1997-06-04T00:00:00", - "RequiredDate": "1997-07-02T00:00:00", - "ShippedDate": "1997-06-10T00:00:00", - "ShipVia": 2, - "Freight": 72.97, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 27000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10559, - "EmployeeID": 6, - "OrderDate": "1997-06-05T00:00:00", - "RequiredDate": "1997-07-03T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 8.05, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 18, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10560, - "EmployeeID": 8, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", - "ShipVia": 1, - "Freight": 36.65, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 20000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10561, - "EmployeeID": 2, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", - "ShipVia": 2, - "Freight": 242.21, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 18000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10562, - "EmployeeID": 1, - "OrderDate": "1997-06-09T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-12T00:00:00", - "ShipVia": 1, - "Freight": 22.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ - { - "OrderID": 10563, - "EmployeeID": 2, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-06-24T00:00:00", - "ShipVia": 2, - "Freight": 60.43, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 70, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10564, - "EmployeeID": 4, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-08T00:00:00", - "ShippedDate": "1997-06-16T00:00:00", - "ShipVia": 3, - "Freight": 13.75, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.06 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 25, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 15000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10565, - "EmployeeID": 8, - "OrderDate": "1997-06-11T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", - "ShipVia": 2, - "Freight": 7.15, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 24000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 18, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10566, - "EmployeeID": 9, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", - "ShipVia": 1, - "Freight": 88.4, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 18, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10567, - "EmployeeID": 1, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-17T00:00:00", - "ShipVia": 1, - "Freight": 33.97, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 60, - "Discount": 0.2 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ - { - "OrderID": 10568, - "EmployeeID": 3, - "OrderDate": "1997-06-13T00:00:00", - "RequiredDate": "1997-07-11T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 3, - "Freight": 6.54, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10569, - "EmployeeID": 5, - "OrderDate": "1997-06-16T00:00:00", - "RequiredDate": "1997-07-14T00:00:00", - "ShippedDate": "1997-07-11T00:00:00", - "ShipVia": 1, - "Freight": 58.98, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 34000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10570, - "EmployeeID": 3, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-19T00:00:00", - "ShipVia": 3, - "Freight": 188.99, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 40000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10571, - "EmployeeID": 8, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 3, - "Freight": 26.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 11, - "Discount": 0.16 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 43000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10572, - "EmployeeID": 3, - "OrderDate": "1997-06-18T00:00:00", - "RequiredDate": "1997-07-16T00:00:00", - "ShippedDate": "1997-06-25T00:00:00", - "ShipVia": 2, - "Freight": 116.43, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 25000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10573, - "EmployeeID": 7, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-20T00:00:00", - "ShipVia": 3, - "Freight": 84.84, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "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", - "Orders": [ - { - "OrderID": 10574, - "EmployeeID": 4, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 2, - "Freight": 37.6, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ - { - "OrderID": 10575, - "EmployeeID": 5, - "OrderDate": "1997-06-20T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 1, - "Freight": 127.34, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ - { - "OrderID": 10576, - "EmployeeID": 3, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 3, - "Freight": 18.56, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "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", - "Orders": [ - { - "OrderID": 10577, - "EmployeeID": 9, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 2, - "Freight": 25.41, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 44000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10578, - "EmployeeID": 4, - "OrderDate": "1997-06-24T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", - "ShipVia": 3, - "Freight": 29.6, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 44000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ - { - "OrderID": 10579, - "EmployeeID": 1, - "OrderDate": "1997-06-25T00:00:00", - "RequiredDate": "1997-07-23T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 2, - "Freight": 13.73, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10580, - "EmployeeID": 4, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-01T00:00:00", - "ShipVia": 3, - "Freight": 75.89, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 30, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10581, - "EmployeeID": 3, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-02T00:00:00", - "ShipVia": 1, - "Freight": 3.01, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10582, - "EmployeeID": 3, - "OrderDate": "1997-06-27T00:00:00", - "RequiredDate": "1997-07-25T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 2, - "Freight": 27.71, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 14, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10583, - "EmployeeID": 2, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 2, - "Freight": 7.28, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.16 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10584, - "EmployeeID": 4, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 1, - "Freight": 59.14, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ - { - "OrderID": 10585, - "EmployeeID": 7, - "OrderDate": "1997-07-01T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 1, - "Freight": 13.41, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10586, - "EmployeeID": 9, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 1, - "Freight": 0.48, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ - { - "OrderID": 10587, - "EmployeeID": 1, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 1, - "Freight": 62.52, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10588, - "EmployeeID": 2, - "OrderDate": "1997-07-03T00:00:00", - "RequiredDate": "1997-07-31T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 3, - "Freight": 194.67, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 40, - "Discount": 0.2 - }, + "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 100, - "Discount": 0.2 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10589, - "EmployeeID": 8, - "OrderDate": "1997-07-04T00:00:00", - "RequiredDate": "1997-08-01T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 10740, + "EmployeeID": 4, + "OrderDate": "1997-11-13T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", "ShipVia": 2, - "Freight": 4.42, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, + "Freight": 81.88, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 5, + "Discount": 0.2 + }, { "ProductID": 35, "UnitPrice": 18, - "Quantity": 4, - "Discount": 0 + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 22000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10590, + "OrderID": 10861, "EmployeeID": 4, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 3, - "Freight": 44.77, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 47000, - "ShipCountry": "Canada", + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-02-27T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 14.93, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 42, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 60, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10591, - "EmployeeID": 1, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-07-21T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", - "ShipVia": 1, - "Freight": 55.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 20, + "Discount": 0 + }, { - "ProductID": 3, + "ProductID": 21, "UnitPrice": 10, - "Quantity": 14, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 50, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10592, + "OrderID": 10904, "EmployeeID": 3, - "OrderDate": "1997-07-08T00:00:00", - "RequiredDate": "1997-08-05T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", - "ShipVia": 1, - "Freight": 32.1, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 162.95, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, - "Discount": 0.06 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 35, + "Discount": 0 + } + ] + }, + { + "OrderID": 11032, + "EmployeeID": 2, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 606.19, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 30, + "Discount": 0 } ] }, { - "OrderID": 10593, + "OrderID": 11066, "EmployeeID": 7, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-08-13T00:00:00", + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", "ShipVia": 2, - "Freight": 174.2, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 44.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, - "Discount": 0.2 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 42, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 35, + "Discount": 0 } ] } ] }, { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, + "CustomerID": "SPLIR", + "Company": "Split Rail Beer & Ale", + "ContactName": "Art Braunschweiger", + "ContactTitle": "Sales Manager", + "Address": "P.O. Box 555", + "City": "Lander", + "Region": "WY", + "PostalCode": 82520, "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", + "Phone": "(307) 555-4680", + "Fax": "(307) 555-6525", "Orders": [ { - "OrderID": 10594, - "EmployeeID": 3, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", + "OrderID": 10271, + "EmployeeID": 6, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-30T00:00:00", "ShipVia": 2, - "Freight": 5.24, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "Freight": 4.54, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, + "ProductID": 33, + "UnitPrice": 2, "Quantity": 24, "Discount": 0 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10595, - "EmployeeID": 2, - "OrderDate": "1997-07-10T00:00:00", - "RequiredDate": "1997-08-07T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 1, - "Freight": 96.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10329, + "EmployeeID": 4, + "OrderDate": "1996-10-15T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 2, + "Freight": 191.67, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 120, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 65, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 12, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10596, - "EmployeeID": 8, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", + "OrderID": 10349, + "EmployeeID": 7, + "OrderDate": "1996-11-08T00:00:00", + "RequiredDate": "1996-12-06T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", "ShipVia": 1, - "Freight": 16.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, + "Freight": 8.63, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, - "Discount": 0.2 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 24, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10597, - "EmployeeID": 7, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", - "ShipVia": 3, - "Freight": 35.12, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10369, + "EmployeeID": 8, + "OrderDate": "1996-12-02T00:00:00", + "RequiredDate": "1996-12-30T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 195.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 29, + "UnitPrice": 99, "Quantity": 20, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 18, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10598, + "OrderID": 10385, "EmployeeID": 1, - "OrderDate": "1997-07-14T00:00:00", - "RequiredDate": "1997-08-11T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", - "ShipVia": 3, - "Freight": 44.42, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, + "OrderDate": "1996-12-17T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1996-12-23T00:00:00", + "ShipVia": 2, + "Freight": 30.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 50, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 45000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10599, - "EmployeeID": 6, - "OrderDate": "1997-07-15T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", - "ShipVia": 3, - "Freight": 29.98, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 21000, - "ShipCountry": "UK", + "OrderID": 10432, + "EmployeeID": 3, + "OrderDate": "1997-01-31T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 4.34, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 26, + "UnitPrice": 24.9, "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10600, - "EmployeeID": 4, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-13T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", - "ShipVia": 1, - "Freight": 45.13, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "OrderID": 10756, + "EmployeeID": 8, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-02T00:00:00", + "ShipVia": 2, + "Freight": 73.21, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 4, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 21, + "Discount": 0.2 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.2 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10601, - "EmployeeID": 7, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", + "OrderID": 10821, + "EmployeeID": 1, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-15T00:00:00", "ShipVia": 1, - "Freight": 58.3, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 36.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 60, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10602, - "EmployeeID": 8, - "OrderDate": "1997-07-17T00:00:00", - "RequiredDate": "1997-08-14T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", - "ShipVia": 2, - "Freight": 2.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderID": 10974, + "EmployeeID": 3, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 12.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 10, + "Discount": 0 } ] } ] }, { - "CustomerID": "SAVEA", - "Company": "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", + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", "Orders": [ { - "OrderID": 10603, - "EmployeeID": 8, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", - "ShipVia": 2, - "Freight": 48.77, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10273, + "EmployeeID": 3, + "OrderDate": "1996-08-05T00:00:00", + "RequiredDate": "1996-09-02T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", + "ShipVia": 3, + "Freight": 76.07, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 48, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 24, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 33, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10604, + "OrderID": 10285, "EmployeeID": 1, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", - "ShipVia": 1, - "Freight": 7.46, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderDate": "1996-08-20T00:00:00", + "RequiredDate": "1996-09-17T00:00:00", + "ShippedDate": "1996-08-26T00:00:00", + "ShipVia": 2, + "Freight": 76.83, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 36, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 12000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10605, - "EmployeeID": 1, - "OrderDate": "1997-07-21T00:00:00", - "RequiredDate": "1997-08-18T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", + "OrderID": 10313, + "EmployeeID": 2, + "OrderDate": "1996-09-24T00:00:00", + "RequiredDate": "1996-10-22T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", "ShipVia": 2, - "Freight": 379.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 43000, - "ShipCountry": "Canada", + "Freight": 1.96, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10345, + "EmployeeID": 2, + "OrderDate": "1996-11-04T00:00:00", + "RequiredDate": "1996-12-02T00:00:00", + "ShippedDate": "1996-11-11T00:00:00", + "ShipVia": 2, + "Freight": 249.06, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 80, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10606, - "EmployeeID": 4, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-31T00:00:00", - "ShipVia": 3, - "Freight": 79.4, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "OrderID": 10361, + "EmployeeID": 1, + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 183.17, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 54, + "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 55, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10607, - "EmployeeID": 5, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", + "OrderID": 10418, + "EmployeeID": 4, + "OrderDate": "1997-01-17T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", "ShipVia": 1, - "Freight": 200.24, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 17.55, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 100, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 42, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 12, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10608, + "OrderID": 10451, "EmployeeID": 4, - "OrderDate": "1997-07-23T00:00:00", - "RequiredDate": "1997-08-20T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 27.79, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 189.09, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 120, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, "Quantity": 28, - "Discount": 0 + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 55, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10609, - "EmployeeID": 7, - "OrderDate": "1997-07-24T00:00:00", - "RequiredDate": "1997-08-21T00:00:00", - "ShippedDate": "1997-07-30T00:00:00", - "ShipVia": 2, - "Freight": 1.85, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10515, + "EmployeeID": 2, + "OrderDate": "1997-04-23T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 1, + "Freight": 204.47, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 16, + "Discount": 0.16 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 120, "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, + "Discount": 0.16 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 84, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10610, - "EmployeeID": 8, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", + "OrderID": 10527, + "EmployeeID": 7, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", "ShipVia": 1, - "Freight": 26.78, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 41.9, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, + "Discount": 0.1 + }, { "ProductID": 36, "UnitPrice": 19, - "Quantity": 21, - "Discount": 0.25 + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10611, - "EmployeeID": 6, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 80.65, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10540, + "EmployeeID": 3, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 3, + "Freight": 1007.64, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 6, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10612, - "EmployeeID": 1, - "OrderDate": "1997-07-28T00:00:00", - "RequiredDate": "1997-08-25T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 544.08, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10549, + "EmployeeID": 5, + "OrderDate": "1997-05-27T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 171.24, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 55, + "Discount": 0.16 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 100, + "Discount": 0.16 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 48, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10588, + "EmployeeID": 2, + "OrderDate": "1997-07-03T00:00:00", + "RequiredDate": "1997-07-31T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", + "ShipVia": 3, + "Freight": 194.67, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 100, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10658, + "EmployeeID": 4, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 1, + "Freight": 364.15, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 55, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 18, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 70, + "Discount": 0.06 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 40, - "Discount": 0 + "Quantity": 55, + "Discount": 0.06 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 70, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10613, - "EmployeeID": 4, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderID": 10691, + "EmployeeID": 2, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-10-22T00:00:00", "ShipVia": 2, - "Freight": 8.11, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 810.05, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 48, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10614, + "OrderID": 10694, "EmployeeID": 8, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-11-03T00:00:00", + "ShippedDate": "1997-10-09T00:00:00", "ShipVia": 3, - "Freight": 1.93, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, + "Freight": 398.36, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 14, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 90, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 8, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 5, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10615, - "EmployeeID": 2, - "OrderDate": "1997-07-30T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", + "OrderID": 10721, + "EmployeeID": 5, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-11-26T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", "ShipVia": 3, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 48.92, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 5, - "Discount": 0 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 50, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10616, - "EmployeeID": 1, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-05T00:00:00", - "ShipVia": 2, - "Freight": 116.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderID": 10745, + "EmployeeID": 9, + "OrderDate": "1997-11-18T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 1, + "Freight": 3.52, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 45, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 7, + "Discount": 0 } ] }, { - "OrderID": 10617, - "EmployeeID": 4, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-04T00:00:00", - "ShipVia": 2, - "Freight": 18.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderID": 10765, + "EmployeeID": 3, + "OrderDate": "1997-12-04T00:00:00", + "RequiredDate": "1998-01-01T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 3, + "Freight": 42.74, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 80, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 45000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10618, + "OrderID": 10788, "EmployeeID": 1, - "OrderDate": "1997-08-01T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 42.7, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10845, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 154.68, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 49000, - "ShipCountry": "Canada", + "Freight": 212.98, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, + "ProductID": 23, + "UnitPrice": 9, "Quantity": 70, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 42, + "Discount": 0.1 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 60, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 48, "Discount": 0 } ] }, { - "OrderID": 10619, - "EmployeeID": 3, - "OrderDate": "1997-08-04T00:00:00", - "RequiredDate": "1997-09-01T00:00:00", - "ShippedDate": "1997-08-07T00:00:00", - "ShipVia": 3, - "Freight": 91.05, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 20000, - "ShipCountry": "Canada", + "OrderID": 10865, + "EmployeeID": 2, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 348.14, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 42, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 48000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ + }, { - "OrderID": 10620, - "EmployeeID": 2, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", - "ShipVia": 3, - "Freight": 0.94, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 15000, - "ShipCountry": "Canada", + "OrderID": 10878, + "EmployeeID": 4, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 46.69, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10938, + "EmployeeID": 3, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 31.89, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0.25 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0.25 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 49, + "Discount": 0.25 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10621, - "EmployeeID": 4, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", + "OrderID": 10962, + "EmployeeID": 8, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", "ShipVia": 2, - "Freight": 23.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 90304, - "ShipPostalCode": 28000, - "ShipCountry": "UK", + "Freight": 275.79, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 10, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 77, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 53, + "UnitPrice": 32.8, "Quantity": 20, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 44, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10622, - "EmployeeID": 4, - "OrderDate": "1997-08-06T00:00:00", - "RequiredDate": "1997-09-03T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", - "ShipVia": 3, - "Freight": 50.97, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10991, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 1, + "Freight": 38.51, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.2 + }, + { + "ProductID": 70, + "UnitPrice": 15, "Quantity": 20, - "Discount": 0 + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 90, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10623, - "EmployeeID": 8, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", + "OrderID": 10996, + "EmployeeID": 4, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 2, - "Freight": 97.18, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, + "Freight": 1.12, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 21, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0 + } + ] + }, + { + "OrderID": 11021, + "EmployeeID": 3, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 1, + "Freight": 297.18, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 11, + "Discount": 0.25 }, { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 20, + "UnitPrice": 81, "Quantity": 15, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 63, + "Discount": 0 }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 44, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "MAGAA", + "Company": "Magazzini Alimentari Riuniti", + "ContactName": "Giovanni Rovelli", + "ContactTitle": "Marketing Manager", + "Address": "Via Ludovico il Moro 22", + "City": "Bergamo", + "PostalCode": 24100, + "Country": "Italy", + "Phone": "035-640230", + "Fax": "035-640231", + "Orders": [ + { + "OrderID": 10275, + "EmployeeID": 1, + "OrderDate": "1996-08-07T00:00:00", + "RequiredDate": "1996-09-04T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", + "ShipVia": 1, + "Freight": 26.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 3, - "Discount": 0 + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 6, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10624, - "EmployeeID": 4, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", + "OrderID": 10300, + "EmployeeID": 2, + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", "ShipVia": 2, - "Freight": 94.8, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "Freight": 17.68, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 6, + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10625, - "EmployeeID": 3, - "OrderDate": "1997-08-08T00:00:00", - "RequiredDate": "1997-09-05T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", + "OrderID": 10404, + "EmployeeID": 2, + "OrderDate": "1997-01-03T00:00:00", + "RequiredDate": "1997-01-31T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", "ShipVia": 1, - "Freight": 43.9, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 155.97, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, + "Discount": 0.06 }, { "ProductID": 42, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 + "UnitPrice": 11.2, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 47000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10626, - "EmployeeID": 1, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-08T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", + "OrderID": 10467, + "EmployeeID": 8, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", "ShipVia": 2, - "Freight": 138.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 39000, - "ShipCountry": "Sweden", + "Freight": 4.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 12, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 12, "Discount": 0 + } + ] + }, + { + "OrderID": 10635, + "EmployeeID": 8, + "OrderDate": "1997-08-18T00:00:00", + "RequiredDate": "1997-09-15T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 47.46, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 20, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10627, - "EmployeeID": 8, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10754, + "EmployeeID": 6, + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", "ShipVia": 3, - "Freight": 107.46, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 2.38, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 3, "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10628, + "OrderID": 10784, "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", "ShipVia": 3, - "Freight": 30.36, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 70.09, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10629, - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", + "OrderID": 10818, + "EmployeeID": 7, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", "ShipVia": 3, - "Freight": 85.46, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 65.48, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 32, + "UnitPrice": 32, "Quantity": 20, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 9, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10630, - "EmployeeID": 1, - "OrderDate": "1997-08-13T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", + "OrderID": 10939, + "EmployeeID": 2, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 2, - "Freight": 32.35, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 76.33, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10631, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-15T00:00:00", - "ShipVia": 1, - "Freight": 0.87, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10632, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 1, - "Freight": 41.38, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10950, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-13T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 2.5, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "TORTU", + "Company": "Tortuga Restaurante", + "ContactName": "Miguel Angel Paolino", + "ContactTitle": "Owner", + "Address": "Avda. Azteca 123", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 555-2933", "Orders": [ { - "OrderID": 10633, - "EmployeeID": 7, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-18T00:00:00", + "OrderID": 10276, + "EmployeeID": 8, + "OrderDate": "1996-08-08T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-14T00:00:00", "ShipVia": 3, - "Freight": 477.9, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 13.84, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 15, + "Discount": 0 }, { "ProductID": 13, - "UnitPrice": 6, - "Quantity": 13, - "Discount": 0.16 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 80, - "Discount": 0.16 + "UnitPrice": 4.8, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10634, - "EmployeeID": 4, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10293, + "EmployeeID": 1, + "OrderDate": "1996-08-29T00:00:00", + "RequiredDate": "1996-09-26T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 3, - "Freight": 487.38, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 21.18, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 50, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 15, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 5, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 7.75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0 + } + ] + }, + { + "OrderID": 10304, + "EmployeeID": 1, + "OrderDate": "1996-09-12T00:00:00", + "RequiredDate": "1996-10-10T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", + "ShipVia": 2, + "Freight": 63.79, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10635, - "EmployeeID": 8, - "OrderDate": "1997-08-18T00:00:00", - "RequiredDate": "1997-09-15T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10319, + "EmployeeID": 7, + "OrderDate": "1996-10-02T00:00:00", + "RequiredDate": "1996-10-30T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", "ShipVia": 3, - "Freight": 47.46, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 64.5, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10636, + "OrderID": 10518, "EmployeeID": 4, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 1.15, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderDate": "1997-04-25T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-05-05T00:00:00", + "ShipVia": 2, + "Freight": 218.15, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10637, - "EmployeeID": 6, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 201.29, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10576, + "EmployeeID": 3, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", + "ShipVia": 3, + "Freight": 18.56, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10638, - "EmployeeID": 3, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", - "ShipVia": 1, - "Freight": 158.44, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10676, + "EmployeeID": 2, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-29T00:00:00", + "ShipVia": 2, + "Freight": 2.01, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 60, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10639, - "EmployeeID": 7, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-08-27T00:00:00", + "OrderID": 10842, + "EmployeeID": 1, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 3, - "Freight": 38.64, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 54.42, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10640, - "EmployeeID": 4, - "OrderDate": "1997-08-21T00:00:00", - "RequiredDate": "1997-09-18T00:00:00", - "ShippedDate": "1997-08-28T00:00:00", - "ShipVia": 1, - "Freight": 23.55, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10915, + "EmployeeID": 2, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", + "ShipVia": 2, + "Freight": 3.51, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10641, - "EmployeeID": 4, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", + "OrderID": 11069, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", "ShipVia": 2, - "Freight": 179.61, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 15.67, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] @@ -18056,182 +9977,158 @@ ] }, { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", + "CustomerID": "MORGK", + "Company": "Morgenstern Gesundkost", + "ContactName": "Alexander Feuer", + "ContactTitle": "Marketing Assistant", + "Address": "Heerstr. 22", + "City": "Leipzig", + "PostalCode": 4179, + "Country": "Germany", + "Phone": "0342-023176", "Orders": [ { - "OrderID": 10642, - "EmployeeID": 7, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-09-05T00:00:00", + "OrderID": 10277, + "EmployeeID": 2, + "OrderDate": "1996-08-09T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-08-13T00:00:00", "ShipVia": 3, - "Freight": 41.89, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 125.77, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10643, - "EmployeeID": 6, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", + "OrderID": 10575, + "EmployeeID": 5, + "OrderDate": "1997-06-20T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 1, - "Freight": 29.46, - "ShipName": "Alfreds Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, + "Freight": 127.34, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10644, + "OrderID": 10699, "EmployeeID": 3, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", - "ShipVia": 2, - "Freight": 0.14, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", + "ShipVia": 3, + "Freight": 0.58, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 4, - "Discount": 0.1 - }, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10779, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 2, + "Freight": 58.13, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 43, - "UnitPrice": 46, + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 20, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0.1 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10645, + "OrderID": 10945, "EmployeeID": 4, - "OrderDate": "1997-08-26T00:00:00", - "RequiredDate": "1997-09-23T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-04-09T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 1, - "Freight": 12.41, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 10.22, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, + "ProductID": 13, + "UnitPrice": 6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 15, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 } ] @@ -18239,376 +10136,273 @@ ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 32000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", "Orders": [ { - "OrderID": 10646, - "EmployeeID": 9, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 3, - "Freight": 142.33, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10278, + "EmployeeID": 8, + "OrderDate": "1996-08-12T00:00:00", + "RequiredDate": "1996-09-09T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 92.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 26000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 16, + "Discount": 0 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10647, - "EmployeeID": 4, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 2, - "Freight": 45.54, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10280, + "EmployeeID": 2, + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-09-11T00:00:00", + "ShippedDate": "1996-09-12T00:00:00", + "ShipVia": 1, + "Freight": 8.98, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 50000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, + "ProductID": 55, + "UnitPrice": 19.2, "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ - { - "OrderID": 10648, - "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-09T00:00:00", - "ShipVia": 2, - "Freight": 14.25, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 43000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10649, - "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-09-25T00:00:00", - "ShippedDate": "1997-08-29T00:00:00", - "ShipVia": 3, - "Freight": 6.2, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 21000, - "ShipCountry": "Belgium", + "OrderID": 10384, + "EmployeeID": 3, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", + "ShipVia": 3, + "Freight": 168.64, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 33000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, + "ProductID": 60, + "UnitPrice": 27.2, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10650, - "EmployeeID": 5, - "OrderDate": "1997-08-29T00:00:00", - "RequiredDate": "1997-09-26T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", + "OrderID": 10444, + "EmployeeID": 3, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-21T00:00:00", "ShipVia": 3, - "Freight": 176.81, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "Freight": 3.5, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 21000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10651, - "EmployeeID": 8, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", + "OrderID": 10524, + "EmployeeID": 1, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", "ShipVia": 2, - "Freight": 20.6, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 244.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 2, + "Discount": 0 }, - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 10652, - "EmployeeID": 4, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", - "ShipVia": 2, - "Freight": 7.14, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", - "OrderDetails": [ { "ProductID": 30, "UnitPrice": 25.89, - "Quantity": 2, - "Discount": 0.25 + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10653, - "EmployeeID": 1, - "OrderDate": "1997-09-02T00:00:00", - "RequiredDate": "1997-09-30T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 1, - "Freight": 93.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10572, + "EmployeeID": 3, + "OrderDate": "1997-06-18T00:00:00", + "RequiredDate": "1997-07-16T00:00:00", + "ShippedDate": "1997-06-25T00:00:00", + "ShipVia": 2, + "Freight": 116.43, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 25000, + "ShipCountry": "Sweden", "OrderDetails": [ { "ProductID": 16, "UnitPrice": 17.45, - "Quantity": 30, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 15, "Discount": 0.1 + } + ] + }, + { + "OrderID": 10626, + "EmployeeID": 1, + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-08T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 2, + "Freight": 138.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 39000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 12, + "Discount": 0 }, { "ProductID": 60, "UnitPrice": 34, "Quantity": 20, - "Discount": 0.1 + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 28000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { "OrderID": 10654, "EmployeeID": 5, @@ -18642,838 +10436,738 @@ "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10655, - "EmployeeID": 1, - "OrderDate": "1997-09-03T00:00:00", + "OrderID": 10672, + "EmployeeID": 9, + "OrderDate": "1997-09-17T00:00:00", "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", "ShipVia": 2, - "Freight": 4.41, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ - { - "OrderID": 10656, - "EmployeeID": 6, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", - "ShipVia": 1, - "Freight": 57.15, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 95.75, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 16000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0.1 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 28, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, "Discount": 0.1 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10657, - "EmployeeID": 2, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", + "OrderID": 10689, + "EmployeeID": 1, + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-29T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", "ShipVia": 2, - "Freight": 352.69, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 13.42, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 24000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 45, - "Discount": 0 - }, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10733, + "EmployeeID": 1, + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-10T00:00:00", + "ShipVia": 3, + "Freight": 110.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 27000, + "ShipCountry": "Sweden", + "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 10, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 45, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10658, - "EmployeeID": 4, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", + "OrderID": 10778, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", "ShipVia": 1, - "Freight": 364.15, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 6.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 13000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10837, + "EmployeeID": 9, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 13.32, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 44000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, "Discount": 0 }, { "ProductID": 40, "UnitPrice": 18.4, - "Quantity": 70, - "Discount": 0.06 + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 55, - "Discount": 0.06 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10659, - "EmployeeID": 7, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", + "OrderID": 10857, + "EmployeeID": 8, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", "ShipVia": 2, - "Freight": 105.81, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 188.85, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 43000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 24, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10660, - "EmployeeID": 8, - "OrderDate": "1997-09-08T00:00:00", - "RequiredDate": "1997-10-06T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", + "OrderID": 10866, + "EmployeeID": 5, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-03T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", "ShipVia": 1, - "Freight": 111.29, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "Freight": 109.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10661, - "EmployeeID": 7, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", - "ShipVia": 3, - "Freight": 17.55, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ + "Discount": 0.25 + }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 6, + "Discount": 0.25 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 49, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 40, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10662, - "EmployeeID": 3, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", + "OrderID": 10875, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", "ShipVia": 2, - "Freight": 1.28, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 32.37, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 37000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0.1 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10663, - "EmployeeID": 2, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-09-24T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", + "OrderID": 10924, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", "ShipVia": 2, - "Freight": 113.15, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 151.52, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 42, - "UnitPrice": 14, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 30, - "Discount": 0.06 + "Discount": 0.1 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 6, + "Discount": 0 } ] } ] }, { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", + "CustomerID": "LEHMS", + "Company": "Lehmanns Marktstand", + "ContactName": "Renate Messner", + "ContactTitle": "Sales Representative", + "Address": "Magazinweg 7", + "City": "Frankfurt a.M.", + "PostalCode": 60528, + "Country": "Germany", + "Phone": "069-0245984", + "Fax": "069-0245874", "Orders": [ { - "OrderID": 10664, - "EmployeeID": 1, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 3, - "Freight": 1.27, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10279, + "EmployeeID": 8, + "OrderDate": "1996-08-13T00:00:00", + "RequiredDate": "1996-09-10T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 25.83, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10284, + "EmployeeID": 4, + "OrderDate": "1996-08-19T00:00:00", + "RequiredDate": "1996-09-16T00:00:00", + "ShippedDate": "1996-08-27T00:00:00", + "ShipVia": 1, + "Freight": 76.56, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0.25 + }, + { + "ProductID": 67, + "UnitPrice": 11.2, + "Quantity": 5, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10665, - "EmployeeID": 1, - "OrderDate": "1997-09-11T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-17T00:00:00", - "ShipVia": 2, - "Freight": 26.31, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10343, + "EmployeeID": 4, + "OrderDate": "1996-10-31T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-11-06T00:00:00", + "ShipVia": 1, + "Freight": 110.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 1, - "Discount": 0 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 4, + "Discount": 0.06 }, { "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "UnitPrice": 14.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10666, + "OrderID": 10497, "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", - "ShipVia": 2, - "Freight": 232.42, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", + "ShipVia": 1, + "Freight": 36.21, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10667, - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", + "OrderID": 10522, + "EmployeeID": 4, + "OrderDate": "1997-04-30T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-06T00:00:00", "ShipVia": 1, - "Freight": 78.09, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 45.33, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 45, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 14, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10668, - "EmployeeID": 1, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", + "OrderID": 10534, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-14T00:00:00", "ShipVia": 2, - "Freight": 47.22, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, + "Freight": 27.94, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ - { - "OrderID": 10669, - "EmployeeID": 2, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", - "ShipVia": 1, - "Freight": 24.39, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10670, - "EmployeeID": 4, - "OrderDate": "1997-09-16T00:00:00", - "RequiredDate": "1997-10-14T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", - "ShipVia": 1, - "Freight": 203.48, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, + "OrderID": 10536, + "EmployeeID": 3, + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-06-11T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 2, + "Freight": 58.88, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 32, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 60, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 25, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10557, + "EmployeeID": 9, + "OrderDate": "1997-06-03T00:00:00", + "RequiredDate": "1997-06-17T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 2, + "Freight": 96.72, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 25, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10671, - "EmployeeID": 1, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-09-24T00:00:00", + "OrderID": 10592, + "EmployeeID": 3, + "OrderDate": "1997-07-08T00:00:00", + "RequiredDate": "1997-08-05T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", "ShipVia": 1, - "Freight": 30.34, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 32.1, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 10, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 5, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10772, + "EmployeeID": 3, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 91.28, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10862, + "EmployeeID": 8, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 53.23, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10672, - "EmployeeID": 9, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", + "OrderID": 10891, + "EmployeeID": 7, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", "ShipVia": 2, - "Freight": 95.75, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 16000, - "ShipCountry": "Sweden", + "Freight": 20.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, + "ProductID": 30, + "UnitPrice": 25.89, "Quantity": 15, - "Discount": 0.1 + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10934, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 3, + "Freight": 32.01, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 11070, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShipVia": 1, + "Freight": 136, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.16 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 } ] @@ -19481,275 +11175,177 @@ ] }, { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", + "CustomerID": "ROMEY", + "Company": "Romero y tomillo", + "ContactName": "Alejandra Camino", + "ContactTitle": "Accounting Manager", + "Address": "Gran Vía, 1", + "City": "Madrid", + "PostalCode": 28001, + "Country": "Spain", + "Phone": "(91) 745 6200", + "Fax": "(91) 745 6210", "Orders": [ { - "OrderID": 10673, - "EmployeeID": 2, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 1, - "Freight": 22.76, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10281, + "EmployeeID": 4, + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-08-28T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 2.94, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, + "ProductID": 24, + "UnitPrice": 3.6, "Quantity": 6, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10674, + "OrderID": 10282, "EmployeeID": 4, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 2, - "Freight": 0.9, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60688, - "ShipPostalCode": 25000, - "ShipCountry": "UK", + "OrderDate": "1996-08-15T00:00:00", + "RequiredDate": "1996-09-12T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 5, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10675, - "EmployeeID": 5, - "OrderDate": "1997-09-19T00:00:00", - "RequiredDate": "1997-10-17T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", - "ShipVia": 2, - "Freight": 31.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10306, + "EmployeeID": 1, + "OrderDate": "1996-09-16T00:00:00", + "RequiredDate": "1996-10-14T00:00:00", + "ShippedDate": "1996-09-23T00:00:00", + "ShipVia": 3, + "Freight": 7.56, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 10, "Discount": 0 }, { "ProductID": 53, - "UnitPrice": 32.8, + "UnitPrice": 26.2, "Quantity": 10, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10676, - "EmployeeID": 2, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-29T00:00:00", + "OrderID": 10917, + "EmployeeID": 4, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", "ShipVia": 2, - "Freight": 2.01, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 8.29, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10677, - "EmployeeID": 1, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", - "ShipVia": 3, - "Freight": 4.03, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10678, - "EmployeeID": 7, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", - "ShipVia": 3, - "Freight": 388.98, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11013, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 32.99, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 100, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 120, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 2, "Discount": 0 } ] @@ -19757,1581 +11353,1417 @@ ] }, { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", + "CustomerID": "LILAS", + "Company": "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", "Orders": [ { - "OrderID": 10679, - "EmployeeID": 8, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", + "OrderID": 10283, + "EmployeeID": 3, + "OrderDate": "1996-08-16T00:00:00", + "RequiredDate": "1996-09-13T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", "ShipVia": 3, - "Freight": 27.94, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 84.81, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10680, - "EmployeeID": 1, - "OrderDate": "1997-09-24T00:00:00", - "RequiredDate": "1997-10-22T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", + "OrderID": 10296, + "EmployeeID": 6, + "OrderDate": "1996-09-03T00:00:00", + "RequiredDate": "1996-10-01T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 1, - "Freight": 26.61, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 0.12, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10681, + "OrderID": 10330, "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 3, - "Freight": 76.13, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", + "ShipVia": 1, + "Freight": 12.75, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0.1 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 28, - "Discount": 0 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10682, - "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 2, - "Freight": 36.13, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + }, + { + "OrderID": 10357, + "EmployeeID": 1, + "OrderDate": "1996-11-19T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 34.88, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, + "ProductID": 10, + "UnitPrice": 24.8, "Quantity": 30, - "Discount": 0 + "Discount": 0.2 }, { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 4, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10683, - "EmployeeID": 2, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 1, - "Freight": 4.4, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10381, + "EmployeeID": 3, + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 7.99, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 9, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10684, - "EmployeeID": 3, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 1, - "Freight": 145.63, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "OrderID": 10461, + "EmployeeID": 1, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-05T00:00:00", + "ShipVia": 3, + "Freight": 148.61, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 28, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10685, + "OrderID": 10499, "EmployeeID": 4, - "OrderDate": "1997-09-29T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", + "OrderDate": "1997-04-08T00:00:00", + "RequiredDate": "1997-05-06T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", "ShipVia": 2, - "Freight": 33.75, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 102.02, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 25, "Discount": 0 + } + ] + }, + { + "OrderID": 10543, + "EmployeeID": 8, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 2, + "Freight": 48.17, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10686, + "OrderID": 10780, "EmployeeID": 2, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-08T00:00:00", - "ShipVia": 1, - "Freight": 96.5, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-25T00:00:00", + "ShipVia": 1, + "Freight": 42.13, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, + "ProductID": 77, + "UnitPrice": 13, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10687, - "EmployeeID": 9, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-30T00:00:00", + "OrderID": 10823, + "EmployeeID": 5, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", "ShipVia": 2, - "Freight": 296.43, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 163.97, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10688, - "EmployeeID": 4, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", + "OrderID": 10899, + "EmployeeID": 5, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", + "ShipVia": 3, + "Freight": 1.21, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10997, + "EmployeeID": 8, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 299.09, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 73.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 14, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 21000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10689, - "EmployeeID": 1, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-29T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", - "ShipVia": 2, - "Freight": 13.42, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 24000, - "ShipCountry": "Sweden", + "OrderID": 11065, + "EmployeeID": 8, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShipVia": 1, + "Freight": 12.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 35, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 4, + "Discount": 0.25 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10690, - "EmployeeID": 1, - "OrderDate": "1997-10-02T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", - "ShipVia": 1, - "Freight": 15.8, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + }, + { + "OrderID": 11071, + "EmployeeID": 1, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShipVia": 1, + "Freight": 0.93, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", + "CustomerID": "RICAR", + "Company": "Ricardo Adocicados", + "ContactName": "Janete Limeira", + "ContactTitle": "Sales Associate", + "Address": "Av. Copacabana, 267", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-3412", "Orders": [ { - "OrderID": 10691, - "EmployeeID": 2, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-10-22T00:00:00", - "ShipVia": 2, - "Freight": 810.05, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10287, + "EmployeeID": 8, + "OrderDate": "1996-08-22T00:00:00", + "RequiredDate": "1996-09-19T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", + "ShipVia": 3, + "Freight": 12.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, + "ProductID": 16, + "UnitPrice": 13.9, "Quantity": 40, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 24, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 48, - "Discount": 0 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10692, + "OrderID": 10299, "EmployeeID": 4, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-10-31T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", + "OrderDate": "1996-09-06T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-13T00:00:00", "ShipVia": 2, - "Freight": 61.02, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 29.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10693, - "EmployeeID": 3, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-10-10T00:00:00", - "ShipVia": 3, - "Freight": 139.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10447, + "EmployeeID": 4, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-03-07T00:00:00", + "ShipVia": 2, + "Freight": 68.66, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 6, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10694, + "OrderID": 10481, "EmployeeID": 8, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-11-03T00:00:00", - "ShippedDate": "1997-10-09T00:00:00", - "ShipVia": 3, - "Freight": 398.36, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", + "ShipVia": 2, + "Freight": 64.33, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 90, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10563, + "EmployeeID": 2, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-06-24T00:00:00", + "ShipVia": 2, + "Freight": 60.43, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, "Quantity": 25, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 70, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10695, - "EmployeeID": 7, - "OrderDate": "1997-10-07T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 1, - "Freight": 16.72, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10622, + "EmployeeID": 4, + "OrderDate": "1997-08-06T00:00:00", + "RequiredDate": "1997-09-03T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 3, + "Freight": 50.97, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 4, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10648, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-09T00:00:00", + "ShipVia": 2, + "Freight": 14.25, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 15, "Discount": 0 }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0 + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10696, - "EmployeeID": 8, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 3, - "Freight": 102.55, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10813, + "EmployeeID": 1, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 1, + "Freight": 47.38, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 12, + "Discount": 0.2 }, { "ProductID": 46, "UnitPrice": 12, - "Quantity": 18, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10697, - "EmployeeID": 3, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-05T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", + "OrderID": 10851, + "EmployeeID": 5, + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-23T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", "ShipVia": 1, - "Freight": 45.52, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", + "Freight": 160.55, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, - "Discount": 0.25 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, + "Discount": 0.06 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 9, - "Discount": 0.25 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 58, - "UnitPrice": 13.25, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10877, + "EmployeeID": 1, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 1, + "Freight": 38.06, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 30, "Discount": 0.25 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10698, - "EmployeeID": 4, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-17T00:00:00", - "ShipVia": 1, - "Freight": 272.47, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 11059, + "EmployeeID": 2, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-06-10T00:00:00", + "ShipVia": 2, + "Freight": 85.8, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 30, "Discount": 0 }, { "ProductID": 17, "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 65, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 8, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0 } ] } ] }, { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", + "CustomerID": "REGGC", + "Company": "Reggiani Caseifici", + "ContactName": "Maurizio Moroni", + "ContactTitle": "Sales Associate", + "Address": "Strada Provinciale 124", + "City": "Reggio Emilia", + "PostalCode": 42100, + "Country": "Italy", + "Phone": "0522-556721", + "Fax": "0522-556722", "Orders": [ { - "OrderID": 10699, - "EmployeeID": 3, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", - "ShipVia": 3, - "Freight": 0.58, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "OrderID": 10288, + "EmployeeID": 4, + "OrderDate": "1996-08-23T00:00:00", + "RequiredDate": "1996-09-20T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", + "ShipVia": 1, + "Freight": 7.45, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 12, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10428, + "EmployeeID": 7, + "OrderDate": "1997-01-28T00:00:00", + "RequiredDate": "1997-02-25T00:00:00", + "ShippedDate": "1997-02-04T00:00:00", + "ShipVia": 1, + "Freight": 11.09, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10700, - "EmployeeID": 3, - "OrderDate": "1997-10-10T00:00:00", - "RequiredDate": "1997-11-07T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", + "OrderID": 10443, + "EmployeeID": 8, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", "ShipVia": 1, - "Freight": 65.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 13.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 5, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 34, - "UnitPrice": 14, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 12, - "Discount": 0.2 + "Discount": 0 + } + ] + }, + { + "OrderID": 10562, + "EmployeeID": 1, + "OrderDate": "1997-06-09T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-12T00:00:00", + "ShipVia": 1, + "Freight": 22.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 40, - "Discount": 0.2 - }, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10586, + "EmployeeID": 9, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 1, + "Freight": 0.48, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10655, + "EmployeeID": 1, + "OrderDate": "1997-09-03T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 4.41, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10701, - "EmployeeID": 6, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-10-27T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", - "ShipVia": 3, - "Freight": 220.31, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10727, + "EmployeeID": 2, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-12-01T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 89.9, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10702, - "EmployeeID": 4, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", + "OrderID": 10812, + "EmployeeID": 5, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", "ShipVia": 1, - "Freight": 23.94, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 59.78, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 16, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 47000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10703, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-10-20T00:00:00", + "OrderID": 10908, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", "ShipVia": 2, - "Freight": 152.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 22000, - "ShipCountry": "Sweden", + "Freight": 32.96, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 14, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10704, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", - "ShipVia": 1, - "Freight": 4.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10942, + "EmployeeID": 9, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 3, + "Freight": 17.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 28, + "Discount": 0 + } + ] + }, + { + "OrderID": 11010, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 28.71, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 6, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, "Discount": 0 }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 24, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10705, - "EmployeeID": 9, - "OrderDate": "1997-10-15T00:00:00", - "RequiredDate": "1997-11-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 11062, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", "ShipVia": 2, - "Freight": 3.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 29.93, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 4, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 12, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", + "CustomerID": "BSBEV", + "Company": "B's Beverages", + "ContactName": "Victoria Ashworth", "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", + "Address": "Fauntleroy Circus", + "City": "London", + "PostalCode": 20000, + "Country": "UK", + "Phone": "(171) 555-1212", "Orders": [ { - "OrderID": 10706, - "EmployeeID": 8, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-11-13T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", + "OrderID": 10289, + "EmployeeID": 7, + "OrderDate": "1996-08-26T00:00:00", + "RequiredDate": "1996-09-23T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", "ShipVia": 3, - "Freight": 135.63, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 22.77, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 18000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 10471, + "EmployeeID": 2, + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 3, + "Freight": 45.59, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 8, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 14000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10707, - "EmployeeID": 4, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", + "OrderID": 10484, + "EmployeeID": 3, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-01T00:00:00", "ShipVia": 3, - "Freight": 21.74, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 29000, + "Freight": 6.88, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 31000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 21, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 40, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ - { - "OrderID": 10708, - "EmployeeID": 6, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 2.96, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + }, + { + "OrderID": 10538, + "EmployeeID": 9, + "OrderDate": "1997-05-15T00:00:00", + "RequiredDate": "1997-06-12T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 3, + "Freight": 4.87, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 45000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 4, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 5, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 1, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10709, - "EmployeeID": 1, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-11-20T00:00:00", + "OrderID": 10578, + "EmployeeID": 4, + "OrderDate": "1997-06-24T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", "ShipVia": 3, - "Freight": 210.8, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 29.6, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 44000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 28, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10710, - "EmployeeID": 1, - "OrderDate": "1997-10-20T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", - "ShipVia": 1, - "Freight": 4.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10599, + "EmployeeID": 6, + "OrderDate": "1997-07-15T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", + "ShipVia": 3, + "Freight": 29.98, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 21000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10711, - "EmployeeID": 5, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", + "OrderID": 10943, + "EmployeeID": 4, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 52.41, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 2.17, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 42, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 120, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10712, + "OrderID": 10947, "EmployeeID": 3, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", - "ShipVia": 1, - "Freight": 89.93, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 13000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11023, + "EmployeeID": 1, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 123.83, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 43, + "UnitPrice": 46, "Quantity": 30, "Discount": 0 } @@ -21340,191 +12772,158 @@ ] }, { - "CustomerID": "SAVEA", - "Company": "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", + "CustomerID": "COMMI", + "Company": "Comércio Mineiro", + "ContactName": "Pedro Afonso", + "ContactTitle": "Sales Associate", + "Address": "Av. dos Lusíadas, 23", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5432, + "Country": "Brazil", + "Phone": "(11) 555-7647", "Orders": [ { - "OrderID": 10713, - "EmployeeID": 1, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-24T00:00:00", + "OrderID": 10290, + "EmployeeID": 8, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", "ShipVia": 1, - "Freight": 167.05, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 79.7, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 110, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 24, + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, "Discount": 0 } ] }, { - "OrderID": 10714, - "EmployeeID": 5, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", - "ShipVia": 3, - "Freight": 24.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10466, + "EmployeeID": 4, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-13T00:00:00", + "ShipVia": 1, + "Freight": 11.93, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 27, - "Discount": 0.25 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 50, - "Discount": 0.25 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10715, - "EmployeeID": 3, - "OrderDate": "1997-10-23T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 1, - "Freight": 63.2, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10494, + "EmployeeID": 4, + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", + "ShipVia": 2, + "Freight": 65.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, + "ProductID": 56, + "UnitPrice": 30.4, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10716, - "EmployeeID": 4, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", + "OrderID": 10969, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", "ShipVia": 2, - "Freight": 22.57, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 0.21, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11042, + "EmployeeID": 2, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 29.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 7, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 15, "Discount": 0 }, { "ProductID": 61, "UnitPrice": 28.5, - "Quantity": 10, + "Quantity": 4, "Discount": 0 } ] @@ -21532,900 +12931,820 @@ ] }, { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", + "CustomerID": "TRADH", + "Company": "Tradição Hipermercados", + "ContactName": "Anabela Domingues", + "ContactTitle": "Sales Representative", + "Address": "Av. Inês de Castro, 414", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5634, + "Country": "Brazil", + "Phone": "(11) 555-2167", + "Fax": "(11) 555-2168", "Orders": [ { - "OrderID": 10717, + "OrderID": 10292, "EmployeeID": 1, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", + "OrderDate": "1996-08-28T00:00:00", + "RequiredDate": "1996-09-25T00:00:00", + "ShippedDate": "1996-09-02T00:00:00", "ShipVia": 2, - "Freight": 59.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 1.35, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10496, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", + "ShipVia": 2, + "Freight": 46.77, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 31, "UnitPrice": 10, - "Quantity": 32, + "Quantity": 20, "Discount": 0.06 + } + ] + }, + { + "OrderID": 10606, + "EmployeeID": 4, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-31T00:00:00", + "ShipVia": 3, + "Freight": 79.4, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10718, - "EmployeeID": 1, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 3, - "Freight": 170.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10830, + "EmployeeID": 4, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 2, + "Freight": 81.83, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10719, - "EmployeeID": 8, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 51.44, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10834, + "EmployeeID": 1, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 3, + "Freight": 29.78, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 8, + "Discount": 0.06 }, { "ProductID": 30, "UnitPrice": 25.89, - "Quantity": 3, - "Discount": 0.25 + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10839, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-22T00:00:00", + "ShipVia": 3, + "Freight": 35.43, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", "Orders": [ { - "OrderID": 10720, - "EmployeeID": 8, - "OrderDate": "1997-10-28T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", + "OrderID": 10298, + "EmployeeID": 6, + "OrderDate": "1996-09-05T00:00:00", + "RequiredDate": "1996-10-03T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 2, - "Freight": 9.53, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 168.22, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 8, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.25 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10721, - "EmployeeID": 5, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-11-26T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", - "ShipVia": 3, - "Freight": 48.92, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10309, + "EmployeeID": 3, + "OrderDate": "1996-09-19T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 1, + "Freight": 47.3, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10722, - "EmployeeID": 8, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-04T00:00:00", - "ShipVia": 1, - "Freight": 74.58, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10335, + "EmployeeID": 7, + "OrderDate": "1996-10-22T00:00:00", + "RequiredDate": "1996-11-19T00:00:00", + "ShippedDate": "1996-10-24T00:00:00", + "ShipVia": 2, + "Freight": 42.11, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { "ProductID": 2, - "UnitPrice": 19, - "Quantity": 3, - "Discount": 0 + "UnitPrice": 15.2, + "Quantity": 7, + "Discount": 0.2 }, { "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0 + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 45, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 42, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 48, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10723, - "EmployeeID": 3, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-11-27T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", - "ShipVia": 1, - "Freight": 21.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10373, + "EmployeeID": 4, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-11T00:00:00", + "ShipVia": 3, + "Freight": 124.12, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 15, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 80, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 31000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10724, + "OrderID": 10380, "EmployeeID": 8, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 57.75, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 39000, - "ShipCountry": "Canada", + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 3, + "Freight": 35.03, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 6, + "Discount": 0.1 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10725, - "EmployeeID": 4, - "OrderDate": "1997-10-31T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 3, - "Freight": 10.83, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10429, + "EmployeeID": 3, + "OrderDate": "1997-01-29T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 56.63, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10503, + "EmployeeID": 6, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 2, + "Freight": 16.74, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 18000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10726, - "EmployeeID": 4, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", - "ShipVia": 1, - "Freight": 16.56, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 21000, - "ShipCountry": "UK", + "OrderID": 10516, + "EmployeeID": 2, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 62.78, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 18, + "UnitPrice": 62.5, "Quantity": 25, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 80, + "Discount": 0.1 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10727, - "EmployeeID": 2, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-12-01T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", + "OrderID": 10567, + "EmployeeID": 1, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-17T00:00:00", "ShipVia": 1, - "Freight": 89.9, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0.06 + "Freight": 33.97, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, + "Discount": 0 }, { "ProductID": 59, "UnitPrice": 55, - "Quantity": 10, - "Discount": 0.06 + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10728, - "EmployeeID": 4, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-11-11T00:00:00", - "ShipVia": 2, - "Freight": 58.33, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10646, + "EmployeeID": 9, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 142.33, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 15, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 12, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10729, - "EmployeeID": 8, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", + "OrderID": 10661, + "EmployeeID": 7, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", "ShipVia": 3, - "Freight": 141.06, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 17.55, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 40, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 49, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10730, - "EmployeeID": 5, - "OrderDate": "1997-11-05T00:00:00", - "RequiredDate": "1997-12-03T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", - "ShipVia": 1, - "Freight": 20.12, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10687, + "EmployeeID": 9, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-30T00:00:00", + "ShipVia": 2, + "Freight": 296.43, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 50, + "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 3, - "Discount": 0.06 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10731, - "EmployeeID": 7, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", - "ShipVia": 1, - "Freight": 96.65, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10701, + "EmployeeID": 6, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-10-27T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 3, + "Freight": 220.31, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.16 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10732, + "OrderID": 10712, "EmployeeID": 3, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", "ShipVia": 1, - "Freight": 16.97, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 89.93, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 29000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10733, - "EmployeeID": 1, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-10T00:00:00", - "ShipVia": 3, - "Freight": 110.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 27000, - "ShipCountry": "Sweden", + "OrderID": 10736, + "EmployeeID": 9, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 44.1, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 16, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 25, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10734, - "EmployeeID": 2, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-12T00:00:00", - "ShipVia": 3, - "Freight": 1.63, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 10897, + "EmployeeID": 3, + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-25T00:00:00", + "ShipVia": 2, + "Freight": 603.54, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 80, "Discount": 0 }, { "ProductID": 30, "UnitPrice": 25.89, - "Quantity": 15, + "Quantity": 36, "Discount": 0 + } + ] + }, + { + "OrderID": 10912, + "EmployeeID": 2, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 580.91, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10735, - "EmployeeID": 6, - "OrderDate": "1997-11-10T00:00:00", - "RequiredDate": "1997-12-08T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 2, - "Freight": 45.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10985, + "EmployeeID": 2, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 91.51, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 36, "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 35, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10736, - "EmployeeID": 9, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderID": 11063, + "EmployeeID": 3, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", "ShipVia": 2, - "Freight": 44.1, + "Freight": 81.73, "ShipName": "Hungry Owl All-Night Grocers", "ShipAddress": "8 Johnstown Road", "ShipCity": "Cork", @@ -22433,315 +13752,351 @@ "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 40, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", + "CustomerID": "WANDK", + "Company": "Die Wandernde Kuh", + "ContactName": "Rita Müller", + "ContactTitle": "Sales Representative", + "Address": "Adenauerallee 900", + "City": "Stuttgart", + "PostalCode": 70563, + "Country": "Germany", + "Phone": "0711-020361", + "Fax": "0711-035428", "Orders": [ { - "OrderID": 10737, - "EmployeeID": 2, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10301, + "EmployeeID": 8, + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", "ShipVia": 2, - "Freight": 7.79, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 45.08, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 4, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 10738, + "OrderID": 10312, "EmployeeID": 2, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 1, - "Freight": 2.91, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "OrderDate": "1996-09-23T00:00:00", + "RequiredDate": "1996-10-21T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 40.26, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10739, - "EmployeeID": 3, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-17T00:00:00", - "ShipVia": 3, - "Freight": 11.08, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "OrderID": 10348, + "EmployeeID": 4, + "OrderDate": "1996-11-07T00:00:00", + "RequiredDate": "1996-12-05T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 2, + "Freight": 0.78, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 18, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10740, - "EmployeeID": 4, - "OrderDate": "1997-11-13T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", - "ShipVia": 2, - "Freight": 81.88, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10356, + "EmployeeID": 6, + "OrderDate": "1996-11-18T00:00:00", + "RequiredDate": "1996-12-16T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", + "ShipVia": 2, + "Freight": 36.71, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 5, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10513, + "EmployeeID": 7, + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-06-03T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", + "ShipVia": 1, + "Freight": 105.65, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, "Quantity": 40, "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 15, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10741, - "EmployeeID": 4, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 3, - "Freight": 10.96, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 13000, - "ShipCountry": "UK", + "OrderID": 10632, + "EmployeeID": 8, + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 1, + "Freight": 41.38, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 19, - "Quantity": 15, - "Discount": 0.2 + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 14000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10742, - "EmployeeID": 3, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-12-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 3, - "Freight": 243.73, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 25000, - "ShipCountry": "Canada", + "OrderID": 10640, + "EmployeeID": 4, + "OrderDate": "1997-08-21T00:00:00", + "RequiredDate": "1997-09-18T00:00:00", + "ShippedDate": "1997-08-28T00:00:00", + "ShipVia": 1, + "Freight": 23.55, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, + "ProductID": 69, + "UnitPrice": 36, "Quantity": 20, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10651, + "EmployeeID": 8, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 20.6, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, - "Discount": 0 + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10743, + "OrderID": 10668, "EmployeeID": 1, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 48000, - "ShipCountry": "UK", + "Freight": 47.22, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 15, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11046, + "EmployeeID": 8, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 71.64, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 28, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 18, "Discount": 0.06 } ] @@ -22749,394 +14104,328 @@ ] }, { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", + "CustomerID": "GODOS", + "Company": "Godos Cocina Típica", + "ContactName": "José Pedro Freyre", "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", + "Address": "C/ Romero, 33", + "City": "Sevilla", + "PostalCode": 41101, + "Country": "Spain", + "Phone": "(95) 555 82 82", "Orders": [ { - "OrderID": 10744, - "EmployeeID": 6, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", - "ShipVia": 1, - "Freight": 69.19, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderID": 10303, + "EmployeeID": 7, + "OrderDate": "1996-09-11T00:00:00", + "RequiredDate": "1996-10-09T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 107.83, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0.2 + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10745, - "EmployeeID": 9, - "OrderDate": "1997-11-18T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 1, - "Freight": 3.52, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10550, + "EmployeeID": 7, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-06-25T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 3, + "Freight": 4.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 24, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 45, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10746, - "EmployeeID": 1, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderID": 10629, + "EmployeeID": 4, + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", "ShipVia": 3, - "Freight": 31.43, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 85.46, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 64, + "UnitPrice": 33.25, "Quantity": 9, "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 40, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10747, - "EmployeeID": 6, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-26T00:00:00", - "ShipVia": 1, - "Freight": 117.33, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10872, + "EmployeeID": 5, + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 2, + "Freight": 175.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 9, - "Discount": 0 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10748, - "EmployeeID": 3, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", - "ShipVia": 1, - "Freight": 232.55, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10874, + "EmployeeID": 5, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", + "ShipVia": 2, + "Freight": 19.58, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 44, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 36000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10749, - "EmployeeID": 4, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", + "OrderID": 10888, + "EmployeeID": 1, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 2, - "Freight": 61.53, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40198, - "ShipPostalCode": 33000, - "ShipCountry": "UK", + "Freight": 51.87, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 6, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10750, - "EmployeeID": 9, - "OrderDate": "1997-11-21T00:00:00", - "RequiredDate": "1997-12-19T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", + "OrderID": 10911, + "EmployeeID": 3, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", "ShipVia": 1, - "Freight": 79.3, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 38.19, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 5, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10751, + "OrderID": 10948, "EmployeeID": 3, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-12-03T00:00:00", + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 3, - "Freight": 130.79, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 23.39, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11009, + "EmployeeID": 2, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 59.11, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 18, + "Discount": 0.25 }, { - "ProductID": 73, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 11037, + "EmployeeID": 7, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 3.2, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 70, "UnitPrice": 15, - "Quantity": 15, + "Quantity": 4, "Discount": 0 } ] @@ -23144,721 +14433,563 @@ ] }, { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 15000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", + "CustomerID": "OLDWO", + "Company": "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", "Orders": [ { - "OrderID": 10752, - "EmployeeID": 2, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", + "OrderID": 10305, + "EmployeeID": 8, + "OrderDate": "1996-09-13T00:00:00", + "RequiredDate": "1996-10-11T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", "ShipVia": 3, - "Freight": 1.39, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "Freight": 257.62, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 3, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10753, - "EmployeeID": 3, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 1, - "Freight": 7.7, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10338, + "EmployeeID": 4, + "OrderDate": "1996-10-25T00:00:00", + "RequiredDate": "1996-11-22T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", + "ShipVia": 3, + "Freight": 84.21, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 4, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10754, - "EmployeeID": 6, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 3, - "Freight": 2.38, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10441, + "EmployeeID": 3, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-24T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 2, + "Freight": 73.02, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 3, + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10755, - "EmployeeID": 4, - "OrderDate": "1997-11-26T00:00:00", - "RequiredDate": "1997-12-24T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", + "OrderID": 10594, + "EmployeeID": 3, + "OrderDate": "1997-07-09T00:00:00", + "RequiredDate": "1997-08-06T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", "ShipVia": 2, - "Freight": 16.71, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 5.24, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 58, + "UnitPrice": 13.25, "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10680, + "EmployeeID": 1, + "OrderDate": "1997-09-24T00:00:00", + "RequiredDate": "1997-10-22T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 1, + "Freight": 26.61, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 14, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0.25 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 25, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10756, + "OrderID": 10706, "EmployeeID": 8, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-02T00:00:00", - "ShipVia": 2, - "Freight": 73.21, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-11-13T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 3, + "Freight": 135.63, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10757, - "EmployeeID": 6, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 1, - "Freight": 8.19, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "OrderID": 10808, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 45.53, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 30, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 24, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10758, + "OrderID": 10855, "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-04T00:00:00", - "ShipVia": 3, - "Freight": 138.17, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 170.97, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 60, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 24, "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10759, - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", + "OrderID": 10965, + "EmployeeID": 6, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", "ShipVia": 3, - "Freight": 11.99, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 144.38, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 38000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10760, - "EmployeeID": 4, - "OrderDate": "1997-12-01T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1997-12-10T00:00:00", + "OrderID": 11034, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", "ShipVia": 1, - "Freight": 155.64, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 12000, - "ShipCountry": "Belgium", + "Freight": 40.32, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 40, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 6, + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, + "CustomerID": "LONEP", + "Company": "Lonesome Pine Restaurant", + "ContactName": "Fran Wilson", + "ContactTitle": "Sales Manager", + "Address": "89 Chiaroscuro Rd.", + "City": "Portland", + "Region": "OR", + "PostalCode": 97219, "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "Phone": "(503) 555-9573", + "Fax": "(503) 555-9646", "Orders": [ { - "OrderID": 10761, - "EmployeeID": 5, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", + "OrderID": 10307, + "EmployeeID": 2, + "OrderDate": "1996-09-17T00:00:00", + "RequiredDate": "1996-10-15T00:00:00", + "ShippedDate": "1996-09-25T00:00:00", "ShipVia": 2, - "Freight": 18.66, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, + "Freight": 0.56, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 18, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 34000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10762, - "EmployeeID": 3, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", + "OrderID": 10317, + "EmployeeID": 6, + "OrderDate": "1996-09-30T00:00:00", + "RequiredDate": "1996-10-28T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", "ShipVia": 1, - "Freight": 328.74, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", + "Freight": 12.69, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 16, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10544, + "EmployeeID": 4, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 24.91, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 28, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 7, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10662, + "EmployeeID": 3, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 2, + "Freight": 1.28, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10763, - "EmployeeID": 3, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", - "ShipVia": 3, - "Freight": 37.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "OrderID": 10665, + "EmployeeID": 1, + "OrderDate": "1997-09-11T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-17T00:00:00", + "ShipVia": 2, + "Freight": 26.31, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 6, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10764, + "OrderID": 10867, "EmployeeID": 6, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", - "ShipVia": 3, - "Freight": 145.45, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", + "ShipVia": 1, + "Freight": 1.93, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 130, - "Discount": 0.1 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10765, - "EmployeeID": 3, - "OrderDate": "1997-12-04T00:00:00", - "RequiredDate": "1998-01-01T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", + "OrderID": 10883, + "EmployeeID": 8, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 3, - "Freight": 42.74, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 0.53, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 80, - "Discount": 0.1 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10766, + "OrderID": 11018, "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 1, - "Freight": 157.55, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 2, + "Freight": 11.65, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, "Discount": 0 }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10767, - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 3, - "Freight": 1.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 2, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, "Discount": 0 } ] @@ -23866,108 +14997,137 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 43000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "CustomerID": "ANATR", + "Company": "Ana Trujillo Emparedados y helados", + "ContactName": "Ana Trujillo", + "ContactTitle": "Owner", + "Address": "Avda. de la Constitución 2222", + "City": "México D.F.", + "PostalCode": 5021, + "Country": "Mexico", + "Phone": "(5) 555-4729", + "Fax": "(5) 555-3745", "Orders": [ { - "OrderID": 10768, - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 2, - "Freight": 146.32, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 32000, - "ShipCountry": "UK", + "OrderID": 10308, + "EmployeeID": 7, + "OrderDate": "1996-09-18T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-24T00:00:00", + "ShipVia": 3, + "Freight": 1.61, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 4, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10625, + "EmployeeID": 3, + "OrderDate": "1997-08-08T00:00:00", + "RequiredDate": "1997-09-05T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", + "ShipVia": 1, + "Freight": 43.9, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10769, + "OrderID": 10759, "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 65.06, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "ShipVia": 3, + "Freight": 11.99, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10926, + "EmployeeID": 4, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 39.92, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, "Discount": 0 } ] @@ -23975,115 +15135,123 @@ ] }, { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", + "CustomerID": "THEBI", + "Company": "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", "Orders": [ { - "OrderID": 10770, + "OrderID": 10310, "EmployeeID": 8, - "OrderDate": "1997-12-09T00:00:00", - "RequiredDate": "1998-01-06T00:00:00", - "ShippedDate": "1997-12-17T00:00:00", - "ShipVia": 3, - "Freight": 5.32, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-18T00:00:00", + "ShippedDate": "1996-09-27T00:00:00", + "ShipVia": 2, + "Freight": 17.52, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 5, + "Discount": 0 + } + ] + }, { - "OrderID": 10771, - "EmployeeID": 9, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", + "OrderID": 10708, + "EmployeeID": 6, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 11.19, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 2.96, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10772, - "EmployeeID": 3, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 2, - "Freight": 91.28, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10805, + "EmployeeID": 2, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 237.34, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 18, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10992, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 4.27, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 2, "Discount": 0 } ] @@ -24091,132 +15259,131 @@ ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "DUMON", + "Company": "Du monde entier", + "ContactName": "Janine Labrune", + "ContactTitle": "Owner", + "Address": "67, rue des Cinquante Otages", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.67.88.88", + "Fax": "40.67.89.89", "Orders": [ { - "OrderID": 10773, + "OrderID": 10311, "EmployeeID": 1, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1998-01-08T00:00:00", - "ShippedDate": "1997-12-16T00:00:00", + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-26T00:00:00", "ShipVia": 3, - "Freight": 96.43, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 24.69, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 33, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 70, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 69, + "UnitPrice": 28.8, "Quantity": 7, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 18000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10774, - "EmployeeID": 4, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 48.2, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 20000, - "ShipCountry": "Sweden", + "OrderID": 10609, + "EmployeeID": 7, + "OrderDate": "1997-07-24T00:00:00", + "RequiredDate": "1997-08-21T00:00:00", + "ShippedDate": "1997-07-30T00:00:00", + "ShipVia": 2, + "Freight": 1.85, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 50, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "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", - "Orders": [ + }, + { + "OrderID": 10683, + "EmployeeID": 2, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 1, + "Freight": 4.4, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 9, + "Discount": 0 + } + ] + }, { - "OrderID": 10775, + "OrderID": 10890, "EmployeeID": 7, - "OrderDate": "1997-12-12T00:00:00", - "RequiredDate": "1998-01-09T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 1, - "Freight": 20.25, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "Freight": 32.76, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 6, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 67, + "ProductID": 34, "UnitPrice": 14, - "Quantity": 3, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, "Discount": 0 } ] @@ -24224,1031 +15391,791 @@ ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "ISLAT", + "Company": "Island Trading", + "ContactName": "Helen Bennett", + "ContactTitle": "Marketing Manager", + "Address": "Garden House Crowther Way", + "City": "Cowes", + "Region": "Northeast", + "PostalCode": 42000, + "Country": "UK", + "Phone": "(198) 555-8888", "Orders": [ { - "OrderID": 10776, - "EmployeeID": 1, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1998-01-12T00:00:00", - "ShippedDate": "1997-12-18T00:00:00", - "ShipVia": 3, - "Freight": 351.53, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10315, + "EmployeeID": 4, + "OrderDate": "1996-09-26T00:00:00", + "RequiredDate": "1996-10-24T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 41.76, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40301, + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 27, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 120, - "Discount": 0.06 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10777, - "EmployeeID": 7, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", + "OrderID": 10318, + "EmployeeID": 8, + "OrderDate": "1996-10-01T00:00:00", + "RequiredDate": "1996-10-29T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", "ShipVia": 2, - "Freight": 3.01, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 4.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 30575, + "ShipPostalCode": 43000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 18000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10778, + "OrderID": 10321, "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 1, - "Freight": 6.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 13000, - "ShipCountry": "Sweden", + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-31T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 2, + "Freight": 3.43, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 80331, + "ShipPostalCode": 24000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, + "ProductID": 35, + "UnitPrice": 14.4, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10779, - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 2, - "Freight": 58.13, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "OrderID": 10473, + "EmployeeID": 1, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", + "ShipVia": 3, + "Freight": 16.37, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60471, + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10780, - "EmployeeID": 2, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-25T00:00:00", - "ShipVia": 1, - "Freight": 42.13, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10621, + "EmployeeID": 4, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 2, + "Freight": 23.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 90304, + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 35, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10781, - "EmployeeID": 2, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 3, - "Freight": 73.16, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 35, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10782, - "EmployeeID": 9, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 1.1, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10674, + "EmployeeID": 4, + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 2, + "Freight": 0.9, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60688, + "ShipPostalCode": 25000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 1, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10783, + "OrderID": 10749, "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", "ShippedDate": "1997-12-19T00:00:00", "ShipVia": 2, - "Freight": 124.98, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 61.53, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40198, + "ShipPostalCode": 33000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10784, - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 70.09, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10798, + "EmployeeID": 2, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 1, + "Freight": 2.33, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 50129, + "ShipPostalCode": 12000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 2, - "Discount": 0.16 + "Discount": 0 }, { "ProductID": 72, "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0.16 + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10785, - "EmployeeID": 1, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 3, - "Freight": 1.51, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", + "OrderID": 10829, + "EmployeeID": 9, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-10T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 1, + "Freight": 154.72, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 20759, + "ShipPostalCode": 13000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 10, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10786, - "EmployeeID": 8, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-16T00:00:00", - "ShippedDate": "1997-12-23T00:00:00", - "ShipVia": 1, - "Freight": 110.87, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10933, + "EmployeeID": 6, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 3, + "Freight": 54.15, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40216, + "ShipPostalCode": 24000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 42, - "Discount": 0.2 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0 } ] } ] }, { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", + "CustomerID": "PERIC", + "Company": "Pericles Comidas clásicas", + "ContactName": "Guillermo Fernández", + "ContactTitle": "Sales Representative", + "Address": "Calle Dr. Jorge Cash 321", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 552-3745", + "Fax": "(5) 545-3745", "Orders": [ { - "OrderID": 10787, - "EmployeeID": 2, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 249.93, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10322, + "EmployeeID": 7, + "OrderDate": "1996-10-04T00:00:00", + "RequiredDate": "1996-11-01T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 3, + "Freight": 0.4, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 52, + "UnitPrice": 5.6, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10788, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 42.7, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10354, + "EmployeeID": 8, + "OrderDate": "1996-11-14T00:00:00", + "RequiredDate": "1996-12-12T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 3, + "Freight": 53.8, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10789, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", + "OrderID": 10474, + "EmployeeID": 5, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-04-10T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", "ShipVia": 2, - "Freight": 100.6, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 83.49, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 30, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 15, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10790, - "EmployeeID": 6, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", + "OrderID": 10502, + "EmployeeID": 2, + "OrderDate": "1997-04-10T00:00:00", + "RequiredDate": "1997-05-08T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 1, - "Freight": 28.23, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 69.32, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 3, - "Discount": 0.16 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10995, + "EmployeeID": 1, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", + "ShipVia": 3, + "Freight": 46, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 51, + "UnitPrice": 53, "Quantity": 20, - "Discount": 0.16 + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10791, - "EmployeeID": 6, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-01T00:00:00", + "OrderID": 11073, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", "ShipVia": 2, - "Freight": 16.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 24.95, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, - "Discount": 0.06 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 } ] } ] }, { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", + "CustomerID": "KOENE", + "Company": "Königlich Essen", + "ContactName": "Philip Cramer", + "ContactTitle": "Sales Associate", + "Address": "Maubelstr. 90", + "City": "Brandenburg", + "PostalCode": 14776, + "Country": "Germany", + "Phone": "0555-09876", "Orders": [ { - "OrderID": 10792, - "EmployeeID": 1, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 3, - "Freight": 23.79, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10323, + "EmployeeID": 4, + "OrderDate": "1996-10-07T00:00:00", + "RequiredDate": "1996-11-04T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 4.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 18000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10793, - "EmployeeID": 3, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", + "OrderID": 10325, + "EmployeeID": 1, + "OrderDate": "1996-10-09T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", "ShipVia": 3, - "Freight": 4.52, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "Freight": 64.86, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 12, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ - { - "OrderID": 10794, - "EmployeeID": 6, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 1, - "Freight": 21.49, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ + }, { "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.2 + "UnitPrice": 18.6, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10795, + "OrderID": 10456, "EmployeeID": 8, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-20T00:00:00", + "OrderDate": "1997-02-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", "ShipVia": 2, - "Freight": 126.66, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 8.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 65, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 21, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10796, + "OrderID": 10468, "EmployeeID": 3, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 1, - "Freight": 26.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderDate": "1997-03-07T00:00:00", + "RequiredDate": "1997-04-04T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 44.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 21, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10506, + "EmployeeID": 9, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 21.19, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 14, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10542, + "EmployeeID": 1, + "OrderDate": "1997-05-20T00:00:00", + "RequiredDate": "1997-06-17T00:00:00", + "ShippedDate": "1997-05-26T00:00:00", + "ShipVia": 3, + "Freight": 10.95, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 24, - "Discount": 0.2 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10797, - "EmployeeID": 7, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", + "OrderID": 10630, + "EmployeeID": 1, + "OrderDate": "1997-08-13T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", "ShipVia": 2, - "Freight": 33.35, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, + "Freight": 32.35, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10798, - "EmployeeID": 2, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 1, - "Freight": 2.33, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 50129, - "ShipPostalCode": 12000, - "ShipCountry": "UK", + "OrderID": 10718, + "EmployeeID": 1, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 3, + "Freight": 170.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 2, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { "OrderID": 10799, "EmployeeID": 9, @@ -25282,723 +16209,469 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10800, - "EmployeeID": 1, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 3, - "Freight": 137.44, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 50000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 7, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ - { - "OrderID": 10801, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 2, - "Freight": 97.09, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10802, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", + "OrderID": 10817, + "EmployeeID": 3, + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", "ShipVia": 2, - "Freight": 257.26, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 306.07, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 38, + "UnitPrice": 263.5, "Quantity": 30, - "Discount": 0.25 + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 40, + "UnitPrice": 18.4, "Quantity": 60, - "Discount": 0.25 + "Discount": 0.16 }, { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 5, - "Discount": 0.25 + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10803, - "EmployeeID": 4, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-06T00:00:00", - "ShipVia": 1, - "Freight": 55.23, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderID": 10849, + "EmployeeID": 9, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 2, + "Freight": 0.56, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 24, - "Discount": 0.06 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 49, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 18, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10804, - "EmployeeID": 6, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", + "OrderID": 10893, + "EmployeeID": 9, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 2, - "Freight": 27.33, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 20000, - "ShipCountry": "UK", + "Freight": 77.78, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 36, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 24, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 4, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ - { - "OrderID": 10805, - "EmployeeID": 2, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 3, - "Freight": 237.34, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", - "OrderDetails": [ + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 24, + "Discount": 0 + }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 10, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10806, - "EmployeeID": 3, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 2, - "Freight": 22.11, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 11028, + "EmployeeID": 2, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 1, + "Freight": 29.59, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 2, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 24, + "Discount": 0 } ] } ] }, { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", + "CustomerID": "SAVEA", + "Company": "Save-a-lot Markets", + "ContactName": "Jose Pavarotti", "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", + "Address": "187 Suffolk Ln.", + "City": "Boise", + "Region": "ID", + "PostalCode": 83720, + "Country": "USA", + "Phone": "(208) 555-8097", "Orders": [ { - "OrderID": 10807, - "EmployeeID": 4, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10324, + "EmployeeID": 9, + "OrderDate": "1996-10-08T00:00:00", + "RequiredDate": "1996-11-05T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "Freight": 214.27, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 1, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 21, + "Discount": 0.16 + }, + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 70, + "Discount": 0.16 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 80, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10808, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", + "OrderID": 10393, + "EmployeeID": 1, + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", "ShipVia": 3, - "Freight": 45.53, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "Freight": 126.56, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 42, + "Discount": 0.25 + }, + { + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 7, + "Discount": 0.25 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 70, + "Discount": 0.25 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 32, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10809, - "EmployeeID": 7, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 1, - "Freight": 4.87, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderID": 10398, + "EmployeeID": 2, + "OrderDate": "1996-12-30T00:00:00", + "RequiredDate": "1997-01-27T00:00:00", + "ShippedDate": "1997-01-09T00:00:00", + "ShipVia": 3, + "Freight": 89.16, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 120, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 42000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ + }, { - "OrderID": 10810, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 3, - "Freight": 4.33, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10440, + "EmployeeID": 4, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-10T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 86.53, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 45, + "Discount": 0.16 + }, + { + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 49, + "Discount": 0.16 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 5, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 90, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10811, + "OrderID": 10452, "EmployeeID": 8, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", + "OrderDate": "1997-02-20T00:00:00", + "RequiredDate": "1997-03-20T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", "ShipVia": 1, - "Freight": 31.22, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 140.26, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 15, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 100, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10812, - "EmployeeID": 5, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 1, - "Freight": 59.78, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10510, + "EmployeeID": 6, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", + "ShipVia": 3, + "Freight": 367.63, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.1 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 40, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 36, "Discount": 0.1 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10813, - "EmployeeID": 1, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 1, - "Freight": 47.38, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10555, + "EmployeeID": 6, + "OrderDate": "1997-06-02T00:00:00", + "RequiredDate": "1997-06-30T00:00:00", + "ShippedDate": "1997-06-04T00:00:00", + "ShipVia": 3, + "Freight": 252.49, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 46, - "UnitPrice": 12, + "ProductID": 19, + "UnitPrice": 9.2, "Quantity": 35, - "Discount": 0 + "Discount": 0.2 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 18, + "Discount": 0.2 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10814, - "EmployeeID": 3, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 130.94, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10603, + "EmployeeID": 8, + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 2, + "Freight": 48.77, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 48, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 8, - "Discount": 0.16 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10815, - "EmployeeID": 2, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 14.62, + "OrderID": 10607, + "EmployeeID": 5, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 1, + "Freight": 200.24, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -26006,2194 +16679,1895 @@ "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 100, + "Discount": 0 + }, { "ProductID": 33, "UnitPrice": 2.5, - "Quantity": 16, + "Quantity": 14, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ - { - "OrderID": 10816, - "EmployeeID": 4, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-02-03T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 2, - "Freight": 719.78, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 42, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10817, - "EmployeeID": 3, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", + "OrderID": 10612, + "EmployeeID": 1, + "OrderDate": "1997-07-28T00:00:00", + "RequiredDate": "1997-08-25T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 306.07, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 544.08, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0.16 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 40, + "Discount": 0 }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0 + } + ] + }, + { + "OrderID": 10627, + "EmployeeID": 8, + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 107.46, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 25, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10818, - "EmployeeID": 7, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 3, - "Freight": 65.48, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10657, + "EmployeeID": 2, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", + "ShipVia": 2, + "Freight": 352.69, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 50, "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 20, + "Quantity": 24, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10819, - "EmployeeID": 2, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 19.76, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ + }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 7, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10820, - "EmployeeID": 3, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 37.52, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ + }, { "ProductID": 56, "UnitPrice": 38, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10821, - "EmployeeID": 1, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-15T00:00:00", - "ShipVia": 1, - "Freight": 36.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, + "OrderID": 10678, + "EmployeeID": 7, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", + "ShipVia": 3, + "Freight": 388.98, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 100, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 6, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "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", - "Orders": [ - { - "OrderID": 10822, - "EmployeeID": 6, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 7, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 120, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10823, - "EmployeeID": 5, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 163.97, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10700, + "EmployeeID": 3, + "OrderDate": "1997-10-10T00:00:00", + "RequiredDate": "1997-11-07T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", + "ShipVia": 1, + "Freight": 65.1, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 40, - "Discount": 0.1 + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 46000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10824, - "EmployeeID": 8, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 1.23, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 23000, - "ShipCountry": "Sweden", + "OrderID": 10711, + "EmployeeID": 5, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 2, + "Freight": 52.41, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0 + }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 12, + "Quantity": 42, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 9, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 120, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10825, + "OrderID": 10713, "EmployeeID": 1, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", + "OrderDate": "1997-10-22T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-24T00:00:00", "ShipVia": 1, - "Freight": 79.25, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 167.05, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0 + }, { "ProductID": 26, "UnitPrice": 31.23, - "Quantity": 12, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 20, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 110, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10826, - "EmployeeID": 6, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", + "OrderID": 10722, + "EmployeeID": 8, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-04T00:00:00", "ShipVia": 1, - "Freight": 7.09, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 74.58, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 3, + "Discount": 0 + }, { "ProductID": 31, "UnitPrice": 12.5, - "Quantity": 35, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10827, - "EmployeeID": 1, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", - "ShipVia": 2, - "Freight": 63.54, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10748, + "EmployeeID": 3, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", + "ShipVia": 1, + "Freight": 232.55, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 44, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, + "Discount": 0 + } + ] + }, + { + "OrderID": 10757, + "EmployeeID": 6, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 1, + "Freight": 8.19, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 15, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10828, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 1, - "Freight": 90.85, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10815, + "EmployeeID": 2, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 3, + "Freight": 14.62, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, "Discount": 0 + } + ] + }, + { + "OrderID": 10847, + "EmployeeID": 4, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 3, + "Freight": 487.57, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.2 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 2, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0.2 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 60, + "Discount": 0.2 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 36, + "Discount": 0.2 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 45, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 55, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10829, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-10T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 1, - "Freight": 154.72, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 20759, - "ShipPostalCode": 13000, - "ShipCountry": "UK", + "OrderID": 10882, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 3, + "Freight": 23.1, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 8, - "UnitPrice": 40, + "ProductID": 49, + "UnitPrice": 20, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 32, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10894, + "EmployeeID": 1, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 1, + "Freight": 116.13, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { "ProductID": 13, "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 + "Quantity": 28, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 120, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10830, - "EmployeeID": 4, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", + "OrderID": 10941, + "EmployeeID": 7, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 81.83, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "Freight": 400.81, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 28, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 44, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 30, - "Discount": 0 + "Discount": 0.25 }, { "ProductID": 68, "UnitPrice": 12.5, - "Quantity": 24, + "Quantity": 80, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10831, - "EmployeeID": 3, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderID": 10983, + "EmployeeID": 2, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", "ShipVia": 2, - "Freight": 72.19, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 657.54, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 8, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 84, + "Discount": 0.16 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 9, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10832, - "EmployeeID": 2, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 43.26, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 11002, + "EmployeeID": 4, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 1, + "Freight": 141.16, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 13, "UnitPrice": 6, - "Quantity": 3, - "Discount": 0.2 + "Quantity": 56, + "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0.2 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 3, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10833, - "EmployeeID": 6, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderID": 11030, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", "ShipVia": 2, - "Freight": 71.49, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 830.75, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 9, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 100, + "Discount": 0.25 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 9, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10834, - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 3, - "Freight": 29.78, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 70, + "Discount": 0 + }, { "ProductID": 29, "UnitPrice": 123.79, - "Quantity": 8, - "Discount": 0.06 + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 100, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10835, + "OrderID": 11064, "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 3, - "Freight": 69.53, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 30.09, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 77, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 55, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "BOLID", + "Company": "Bólido Comidas preparadas", + "ContactName": "Martín Sommer", + "ContactTitle": "Owner", + "Address": "C/ Araquil, 67", + "City": "Madrid", + "PostalCode": 28023, + "Country": "Spain", + "Phone": "(91) 555 22 82", + "Fax": "(91) 555 91 99", "Orders": [ { - "OrderID": 10836, - "EmployeeID": 7, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 1, - "Freight": 411.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10326, + "EmployeeID": 4, + "OrderDate": "1996-10-10T00:00:00", + "RequiredDate": "1996-11-07T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 2, + "Freight": 77.92, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 52, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 6, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 24, "Discount": 0 }, { "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 24, + "UnitPrice": 15.6, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 60, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 50, "Discount": 0 + } + ] + }, + { + "OrderID": 10801, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 2, + "Freight": 97.09, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10970, + "EmployeeID": 9, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 1, + "Freight": 16.16, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 40, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "FURIB", + "Company": "Furia Bacalhau e Frutos do Mar", + "ContactName": "Lino Rodriguez", + "ContactTitle": "Sales Manager", + "Address": "Jardim das rosas n. 32", + "City": "Lisboa", + "PostalCode": 1675, + "Country": "Portugal", + "Phone": "(1) 354-2534", + "Fax": "(1) 354-2535", "Orders": [ { - "OrderID": 10837, - "EmployeeID": 9, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderID": 10328, + "EmployeeID": 4, + "OrderDate": "1996-10-14T00:00:00", + "RequiredDate": "1996-11-11T00:00:00", + "ShippedDate": "1996-10-17T00:00:00", "ShipVia": 3, - "Freight": 13.32, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 44000, - "ShipCountry": "Sweden", + "Freight": 87.03, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 65, + "UnitPrice": 16.8, "Quantity": 40, - "Discount": 0.25 + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10838, + "OrderID": 10352, "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderDate": "1996-11-12T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-18T00:00:00", "ShipVia": 3, - "Freight": 59.28, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 1.3, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10839, - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-22T00:00:00", - "ShipVia": 3, - "Freight": 35.43, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "OrderID": 10464, + "EmployeeID": 4, + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 2, + "Freight": 89, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 16, + "Discount": 0.2 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, "Quantity": 30, - "Discount": 0.1 + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10840, - "EmployeeID": 4, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", - "ShipVia": 2, - "Freight": 2.71, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10491, + "EmployeeID": 8, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-08T00:00:00", + "ShipVia": 3, + "Freight": 16.96, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10841, - "EmployeeID": 5, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 2, - "Freight": 424.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10551, + "EmployeeID": 4, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 3, + "Freight": 72.95, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 50, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 40, "Discount": 0 + } + ] + }, + { + "OrderID": 10604, + "EmployeeID": 1, + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", + "ShipVia": 1, + "Freight": 7.46, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 6, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10842, + "OrderID": 10664, "EmployeeID": 1, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", "ShipVia": 3, - "Freight": 54.42, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 1.27, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 5, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 12, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10843, - "EmployeeID": 4, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 9.26, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10963, + "EmployeeID": 9, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 3, + "Freight": 2.7, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", + "CustomerID": "BONAP", + "Company": "Bon app'", + "ContactName": "Laurence Lebihan", + "ContactTitle": "Owner", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", "Orders": [ { - "OrderID": 10844, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 25.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10331, + "EmployeeID": 9, + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-27T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", + "ShipVia": 1, + "Freight": 10.19, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 35, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10845, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 212.98, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10340, + "EmployeeID": 1, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 166.31, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.1 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 42, - "Discount": 0.1 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 48, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 40, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10846, - "EmployeeID": 2, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 56.46, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10362, + "EmployeeID": 3, + "OrderDate": "1996-11-25T00:00:00", + "RequiredDate": "1996-12-23T00:00:00", + "ShippedDate": "1996-11-28T00:00:00", + "ShipVia": 1, + "Freight": 96.04, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 21, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10847, + "OrderID": 10470, "EmployeeID": 4, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 3, - "Freight": 487.57, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 2, + "Freight": 64.56, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.2 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 60, - "Discount": 0.2 - }, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10511, + "EmployeeID": 4, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 350.64, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 36, - "Discount": 0.2 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 55, - "Discount": 0.2 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ + }, { - "OrderID": 10848, - "EmployeeID": 7, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", + "OrderID": 10525, + "EmployeeID": 1, + "OrderDate": "1997-05-02T00:00:00", + "RequiredDate": "1997-05-30T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", "ShipVia": 2, - "Freight": 38.24, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 39000, - "ShipCountry": "UK", + "Freight": 11.06, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 30, "Discount": 0 }, { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 3, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10849, - "EmployeeID": 9, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10663, + "EmployeeID": 2, + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-09-24T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 113.15, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 49, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 18, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10850, - "EmployeeID": 1, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10715, + "EmployeeID": 3, + "OrderDate": "1997-10-23T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 1, - "Freight": 49.19, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, + "Freight": 63.2, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 4, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 71, + "UnitPrice": 21.5, "Quantity": 30, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10851, + "OrderID": 10730, "EmployeeID": 5, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-23T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderDate": "1997-11-05T00:00:00", + "RequiredDate": "1997-12-03T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", "ShipVia": 1, - "Freight": 160.55, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 20.12, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, "Discount": 0.06 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 3, "Discount": 0.06 }, { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 65, + "UnitPrice": 21.05, "Quantity": 10, "Discount": 0.06 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, - "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10852, - "EmployeeID": 8, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10732, + "EmployeeID": 3, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", "ShipVia": 1, - "Freight": 174.05, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 16.97, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 + } + ] + }, + { + "OrderID": 10755, + "EmployeeID": 4, + "OrderDate": "1997-11-26T00:00:00", + "RequiredDate": "1997-12-24T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", + "ShipVia": 2, + "Freight": 16.71, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 14, + "Discount": 0.25 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 25, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10827, + "EmployeeID": 1, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 2, + "Freight": 63.54, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 50, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10853, + "OrderID": 10871, "EmployeeID": 9, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", "ShipVia": 2, - "Freight": 53.83, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "Freight": 112.27, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, - "Discount": 0 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10854, - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-05T00:00:00", - "ShipVia": 2, - "Freight": 100.22, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10876, + "EmployeeID": 7, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 60.42, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 100, - "Discount": 0.16 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10855, - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", + "OrderID": 10932, + "EmployeeID": 8, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 1, - "Freight": 170.97, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 134.64, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 16, "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0 + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 14, + "Discount": 0.1 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 24, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10940, + "EmployeeID": 8, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 3, + "Freight": 19.77, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10856, - "EmployeeID": 3, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", + "OrderID": 11076, + "EmployeeID": 4, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", "ShipVia": 2, - "Freight": 58.43, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "Freight": 38.28, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, + "Discount": 0.25 + }, + { + "ProductID": 14, + "UnitPrice": 23.25, "Quantity": 20, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, + "Discount": 0.25 } ] } ] }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 33000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "MEREP", + "Company": "Mère Paillarde", + "ContactName": "Jean Fresnière", + "ContactTitle": "Marketing Assistant", + "Address": "43 rue St. Laurent", + "City": "Montréal", + "Region": "Québec", + "PostalCode": 49000, + "Country": "Canada", + "Phone": "(514) 555-8054", + "Fax": "(514) 555-8055", "Orders": [ { - "OrderID": 10857, - "EmployeeID": 8, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", + "OrderID": 10332, + "EmployeeID": 3, + "OrderDate": "1996-10-17T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", "ShipVia": 2, - "Freight": 188.85, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 43000, - "ShipCountry": "Sweden", + "Freight": 52.84, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 36000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0.25 + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 16, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne d'abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de l'Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ + }, { - "OrderID": 10858, + "OrderID": 10339, "EmployeeID": 2, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", - "ShipVia": 1, - "Freight": 52.51, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "OrderDate": "1996-10-28T00:00:00", + "RequiredDate": "1996-11-25T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", + "ShipVia": 2, + "Freight": 15.66, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 10, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10859, + "OrderID": 10376, "EmployeeID": 1, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", "ShipVia": 2, - "Freight": 76.1, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 20.39, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 11000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 35, - "Discount": 0.25 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 42, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10860, - "EmployeeID": 3, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 3, - "Freight": 19.26, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10424, + "EmployeeID": 7, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-20T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 2, + "Freight": 370.61, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 49, + "Discount": 0.2 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10861, - "EmployeeID": 4, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-02-27T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", - "ShipVia": 2, - "Freight": 14.93, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10439, + "EmployeeID": 6, + "OrderDate": "1997-02-07T00:00:00", + "RequiredDate": "1997-03-07T00:00:00", + "ShippedDate": "1997-02-10T00:00:00", + "ShipVia": 3, + "Freight": 4.07, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 42, + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 35, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10505, + "EmployeeID": 3, + "OrderDate": "1997-04-14T00:00:00", + "RequiredDate": "1997-05-12T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 7.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 11000, + "ShipCountry": "Canada", + "OrderDetails": [ { "ProductID": 62, "UnitPrice": 49.3, @@ -28201,132 +18575,195 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10862, + "OrderID": 10565, "EmployeeID": 8, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderDate": "1997-06-11T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", "ShipVia": 2, - "Freight": 53.23, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 7.15, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 24000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 18, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10570, + "EmployeeID": 3, + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-19T00:00:00", + "ShipVia": 3, + "Freight": 188.99, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { "ProductID": 11, "UnitPrice": 21, - "Quantity": 25, - "Discount": 0 + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10863, + "OrderID": 10590, "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 3, + "Freight": 44.77, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 47000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 60, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10605, + "EmployeeID": 1, + "OrderDate": "1997-07-21T00:00:00", + "RequiredDate": "1997-08-18T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", "ShipVia": 2, - "Freight": 30.26, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 379.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 43000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 70, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10618, + "EmployeeID": 1, + "OrderDate": "1997-08-01T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 1, + "Freight": 154.68, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 49000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, "Quantity": 20, - "Discount": 0.16 + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10864, - "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", + "OrderID": 10724, + "EmployeeID": 8, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 3.04, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "Freight": 57.75, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 39000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] @@ -28334,372 +18771,367 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", + "CustomerID": "PRINI", + "Company": "Princesa Isabel Vinhos", + "ContactName": "Isabel de Castro", + "ContactTitle": "Sales Representative", + "Address": "Estrada da saúde n. 58", + "City": "Lisboa", + "PostalCode": 1756, + "Country": "Portugal", + "Phone": "(1) 356-5634", "Orders": [ { - "OrderID": 10865, - "EmployeeID": 2, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 1, - "Freight": 348.14, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10336, + "EmployeeID": 7, + "OrderDate": "1996-10-23T00:00:00", + "RequiredDate": "1996-11-20T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", + "ShipVia": 2, + "Freight": 15.51, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, - "Discount": 0.06 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 18, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10866, + "OrderID": 10397, "EmployeeID": 5, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-03T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-24T00:00:00", + "ShippedDate": "1997-01-02T00:00:00", "ShipVia": 1, - "Freight": 109.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "Freight": 60.26, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 6, - "Discount": 0.25 - }, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10433, + "EmployeeID": 3, + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 73.83, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 28, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10867, - "EmployeeID": 6, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 1, - "Freight": 1.93, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10477, + "EmployeeID": 5, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", + "ShipVia": 2, + "Freight": 13.02, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10868, - "EmployeeID": 7, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", + "OrderID": 11007, + "EmployeeID": 8, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 191.27, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 202.24, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 42, - "Discount": 0.1 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 14, + "Discount": 0 } ] } ] }, { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 34000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", + "CustomerID": "SIMOB", + "Company": "Simons bistro", + "ContactName": "Jytte Petersen", + "ContactTitle": "Owner", + "Address": "Vinbæltet 34", + "City": "Kobenhavn", + "PostalCode": 1734, + "Country": "Denmark", + "Phone": "31 12 34 56", + "Fax": "31 13 35 57", "Orders": [ { - "OrderID": 10869, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 1, - "Freight": 143.28, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "OrderID": 10341, + "EmployeeID": 7, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", + "ShipVia": 3, + "Freight": 26.78, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 - }, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10417, + "EmployeeID": 4, + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-28T00:00:00", + "ShipVia": 3, + "Freight": 70.29, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 50, "Discount": 0 }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 2, + "Discount": 0.25 + }, { "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "UnitPrice": 10, + "Quantity": 36, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10870, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", + "OrderID": 10556, + "EmployeeID": 2, + "OrderDate": "1997-06-03T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 1, + "Freight": 9.8, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10642, + "EmployeeID": 7, + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-09-05T00:00:00", "ShipVia": 3, - "Freight": 12.04, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 41.89, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10669, + "EmployeeID": 2, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", + "ShipVia": 1, + "Freight": 24.39, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 2, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10871, - "EmployeeID": 9, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", + "OrderID": 10802, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", "ShipVia": 2, - "Freight": 112.27, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 257.26, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, + "Discount": 0.25 }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ - { - "OrderID": 10872, - "EmployeeID": 5, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 2, - "Freight": 175.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", - "OrderDetails": [ { "ProductID": 55, "UnitPrice": 24, - "Quantity": 10, - "Discount": 0.06 + "Quantity": 60, + "Discount": 0.25 }, { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.06 - }, + "Quantity": 5, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11074, + "EmployeeID": 7, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShipVia": 2, + "Freight": 18.44, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, "Discount": 0.06 } ] @@ -28707,292 +19139,246 @@ ] }, { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", + "CustomerID": "FAMIA", + "Company": "Familia Arquibaldo", + "ContactName": "Aria Cruz", + "ContactTitle": "Marketing Assistant", + "Address": "Rua Orós, 92", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5442, + "Country": "Brazil", + "Phone": "(11) 555-9857", "Orders": [ { - "OrderID": 10873, + "OrderID": 10347, "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 1, - "Freight": 0.82, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderDate": "1996-11-06T00:00:00", + "RequiredDate": "1996-12-04T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 3.1, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 50, + "Discount": 0.16 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 4, "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10874, - "EmployeeID": 5, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 2, - "Freight": 19.58, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10386, + "EmployeeID": 9, + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-25T00:00:00", + "ShipVia": 3, + "Freight": 13.99, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 34, + "UnitPrice": 11.2, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10875, - "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 2, - "Freight": 32.37, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 37000, - "ShipCountry": "Sweden", + "OrderID": 10414, + "EmployeeID": 2, + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-17T00:00:00", + "ShipVia": 3, + "Freight": 21.48, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 21, - "Discount": 0.1 + "UnitPrice": 7.3, + "Quantity": 18, + "Discount": 0.06 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10876, + "OrderID": 10512, "EmployeeID": 7, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 3, - "Freight": 60.42, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderDate": "1997-04-21T00:00:00", + "RequiredDate": "1997-05-19T00:00:00", + "ShippedDate": "1997-04-24T00:00:00", + "ShipVia": 2, + "Freight": 3.53, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.16 + }, { "ProductID": 46, "UnitPrice": 12, - "Quantity": 21, - "Discount": 0 + "Quantity": 9, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, - "Discount": 0 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.16 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10877, - "EmployeeID": 1, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", + "OrderID": 10581, + "EmployeeID": 3, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-02T00:00:00", "ShipVia": 1, - "Freight": 38.06, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, + "Freight": 3.01, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10878, - "EmployeeID": 4, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 1, - "Freight": 46.69, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10650, + "EmployeeID": 5, + "OrderDate": "1997-08-29T00:00:00", + "RequiredDate": "1997-09-26T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 176.81, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, + "Discount": 0 + } + ] + }, { - "OrderID": 10879, - "EmployeeID": 3, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderID": 10725, + "EmployeeID": 4, + "OrderDate": "1997-10-31T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 3, - "Freight": 8.5, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 10.83, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 12, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] @@ -29000,1554 +19386,1463 @@ ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 41000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "LAMAI", + "Company": "La maison d'Asie", + "ContactName": "Annette Roulet", + "ContactTitle": "Sales Manager", + "Address": "1 rue Alsace-Lorraine", + "City": "Toulouse", + "PostalCode": 31000, + "Country": "France", + "Phone": "61.77.61.10", + "Fax": "61.77.61.11", "Orders": [ { - "OrderID": 10880, - "EmployeeID": 7, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", + "OrderID": 10350, + "EmployeeID": 6, + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 64.19, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 18, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10358, + "EmployeeID": 5, + "OrderDate": "1996-11-20T00:00:00", + "RequiredDate": "1996-12-18T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", "ShipVia": 1, - "Freight": 88.01, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 26000, - "ShipCountry": "Sweden", + "Freight": 19.64, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10881, - "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", + "OrderID": 10371, + "EmployeeID": 1, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", "ShipVia": 1, - "Freight": 2.84, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 0.45, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 10, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 6, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10413, + "EmployeeID": 3, + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 2, + "Freight": 95.66, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, + { + "OrderID": 10425, + "EmployeeID": 6, + "OrderDate": "1997-01-24T00:00:00", + "RequiredDate": "1997-02-21T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 2, + "Freight": 7.93, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 10, + "Discount": 0.25 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 + } + ] + }, { - "OrderID": 10882, + "OrderID": 10454, "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-25T00:00:00", "ShipVia": 3, - "Freight": 23.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 2.74, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 25, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 49, - "UnitPrice": 20, + "ProductID": 33, + "UnitPrice": 2, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 32, - "Discount": 0.16 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10883, - "EmployeeID": 8, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", + "OrderID": 10493, + "EmployeeID": 4, + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", "ShipVia": 3, - "Freight": 0.53, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 10.64, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 8, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10884, - "EmployeeID": 4, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", - "ShipVia": 2, - "Freight": 90.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10500, + "EmployeeID": 6, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-17T00:00:00", + "ShipVia": 1, + "Freight": 42.68, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 12, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 21, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, "Discount": 0.06 - }, + } + ] + }, + { + "OrderID": 10610, + "EmployeeID": 8, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 1, + "Freight": 26.78, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10885, - "EmployeeID": 6, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 3, - "Freight": 5.64, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10631, + "EmployeeID": 8, + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-15T00:00:00", + "ShipVia": 1, + "Freight": 0.87, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 8, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10787, + "EmployeeID": 2, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 249.93, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10832, + "EmployeeID": 2, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 43.26, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 25, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10886, - "EmployeeID": 1, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 1, - "Freight": 4.99, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10923, + "EmployeeID": 7, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 68.26, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 40, - "Discount": 0 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10887, - "EmployeeID": 8, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", + "OrderID": 11051, + "EmployeeID": 7, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", "ShipVia": 3, - "Freight": 1.25, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "Freight": 2.79, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", + "CustomerID": "PICCO", + "Company": "Piccolo und mehr", + "ContactName": "Georg Pipps", "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "Address": "Geislweg 14", + "City": "Salzburg", + "PostalCode": 5020, + "Country": "Austria", + "Phone": "6562-9722", + "Fax": "6562-9723", "Orders": [ { - "OrderID": 10888, - "EmployeeID": 1, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 2, - "Freight": 51.87, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10353, + "EmployeeID": 7, + "OrderDate": "1996-11-13T00:00:00", + "RequiredDate": "1996-12-11T00:00:00", + "ShippedDate": "1996-11-25T00:00:00", + "ShipVia": 3, + "Freight": 360.63, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10392, + "EmployeeID": 2, + "OrderDate": "1996-12-24T00:00:00", + "RequiredDate": "1997-01-21T00:00:00", + "ShippedDate": "1997-01-01T00:00:00", + "ShipVia": 3, + "Freight": 122.46, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 50, + "Discount": 0 + } + ] + }, + { + "OrderID": 10427, + "EmployeeID": 4, + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 2, + "Freight": 31.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10889, - "EmployeeID": 9, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 3, - "Freight": 280.61, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10489, + "EmployeeID": 6, + "OrderDate": "1997-03-28T00:00:00", + "RequiredDate": "1997-04-25T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", + "ShipVia": 2, + "Freight": 5.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10890, - "EmployeeID": 7, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 32.76, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10530, + "EmployeeID": 3, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", + "ShipVia": 2, + "Freight": 339.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 17, "UnitPrice": 39, - "Quantity": 15, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10891, + "OrderID": 10597, "EmployeeID": 7, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 20.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", + "ShipVia": 3, + "Freight": 35.12, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 46000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10892, - "EmployeeID": 4, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 120.27, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 30000, - "ShipCountry": "Belgium", + "OrderID": 10686, + "EmployeeID": 2, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-08T00:00:00", + "ShipVia": 1, + "Freight": 96.5, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10893, - "EmployeeID": 9, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 2, - "Freight": 77.78, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10747, + "EmployeeID": 6, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-26T00:00:00", + "ShipVia": 1, + "Freight": 117.33, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 24, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 35, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10844, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", + "ShipVia": 2, + "Freight": 25.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10894, - "EmployeeID": 1, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 1, - "Freight": 116.13, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11053, + "EmployeeID": 2, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 28, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 120, - "Discount": 0.06 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 25, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "AROUT", + "Company": "Around the Horn", + "ContactName": "Thomas Hardy", + "ContactTitle": "Sales Representative", + "Address": "120 Hanover Sq.", + "City": "London", + "PostalCode": 19000, + "Country": "UK", + "Phone": "(171) 555-7788", + "Fax": "(171) 555-6750", "Orders": [ { - "OrderID": 10895, - "EmployeeID": 3, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", + "OrderID": 10355, + "EmployeeID": 6, + "OrderDate": "1996-11-15T00:00:00", + "RequiredDate": "1996-12-13T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", "ShipVia": 1, - "Freight": 162.75, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 41.95, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 110, + "UnitPrice": 3.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 45, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10383, + "EmployeeID": 8, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-18T00:00:00", + "ShipVia": 3, + "Freight": 34.24, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 36000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 91, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 100, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 29000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10896, - "EmployeeID": 7, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 32.45, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 15000, - "ShipCountry": "Belgium", + "OrderID": 10453, + "EmployeeID": 1, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", + "ShipVia": 2, + "Freight": 25.36, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 46000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 48, + "UnitPrice": 10.2, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 16, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10897, - "EmployeeID": 3, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-25T00:00:00", + "OrderID": 10558, + "EmployeeID": 1, + "OrderDate": "1997-06-04T00:00:00", + "RequiredDate": "1997-07-02T00:00:00", + "ShippedDate": "1997-06-10T00:00:00", "ShipVia": 2, - "Freight": 603.54, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 72.97, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 27000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 80, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 36, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10898, + "OrderID": 10707, "EmployeeID": 4, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 1.27, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 3, + "Freight": 21.74, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10899, - "EmployeeID": 5, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", + "OrderID": 10741, + "EmployeeID": 4, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 1.21, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 10.96, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 13000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10900, + "OrderID": 10743, "EmployeeID": 1, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", "ShipVia": 2, - "Freight": 1.66, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 48000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 28, + "Discount": 0.06 + } + ] + }, { - "OrderID": 10901, - "EmployeeID": 4, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", - "ShipVia": 1, - "Freight": 62.09, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10768, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 2, + "Freight": 146.32, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 }, { "ProductID": 71, "UnitPrice": 21.5, - "Quantity": 30, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 25000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10902, - "EmployeeID": 1, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 1, - "Freight": 44.15, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 33000, - "ShipCountry": "Sweden", + "OrderID": 10793, + "EmployeeID": 3, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", + "ShipVia": 3, + "Freight": 4.52, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10903, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 36.71, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10864, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 2, + "Freight": 3.04, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10904, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 162.95, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10920, + "EmployeeID": 4, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", + "ShipVia": 2, + "Freight": 29.61, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 35, + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10905, + "OrderID": 10953, "EmployeeID": 9, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-25T00:00:00", "ShipVia": 2, - "Freight": 13.72, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 35000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10906, - "EmployeeID": 4, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 3, - "Freight": 26.29, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 11016, + "EmployeeID": 9, + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 2, + "Freight": 33.8, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 16, + "Discount": 0 } ] } ] }, { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", + "CustomerID": "SEVES", + "Company": "Seven Seas Imports", + "ContactName": "Hari Kumar", + "ContactTitle": "Sales Manager", + "Address": "90 Wadhurst Rd.", + "City": "London", + "PostalCode": 32000, + "Country": "UK", + "Phone": "(171) 555-1717", + "Fax": "(171) 555-5646", "Orders": [ { - "OrderID": 10907, - "EmployeeID": 6, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-25T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", + "OrderID": 10359, + "EmployeeID": 5, + "OrderDate": "1996-11-21T00:00:00", + "RequiredDate": "1996-12-19T00:00:00", + "ShippedDate": "1996-11-26T00:00:00", "ShipVia": 3, - "Freight": 9.19, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 288.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 14, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 56, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 70, + "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10908, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 32.96, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10377, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 22.21, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 41000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 20, - "Discount": 0.06 + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 14, - "Discount": 0.06 + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10909, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-10T00:00:00", - "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10388, + "EmployeeID": 2, + "OrderDate": "1996-12-19T00:00:00", + "RequiredDate": "1997-01-16T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", + "ShipVia": 1, + "Freight": 34.86, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 45000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 12, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 7.6, + "Quantity": 15, + "Discount": 0.2 + }, + { + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10472, + "EmployeeID": 8, + "OrderDate": "1997-03-12T00:00:00", + "RequiredDate": "1997-04-09T00:00:00", + "ShippedDate": "1997-03-19T00:00:00", + "ShipVia": 1, + "Freight": 4.2, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 33000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 80, + "Discount": 0.06 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 5, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10910, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 38.11, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10523, + "EmployeeID": 7, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 2, + "Freight": 77.63, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 42000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 10, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 6, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10911, + "OrderID": 10547, "EmployeeID": 3, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", - "ShipVia": 1, - "Freight": 38.19, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", + "ShipVia": 2, + "Freight": 178.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 48000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 12, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10912, - "EmployeeID": 2, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 2, - "Freight": 580.91, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10800, + "EmployeeID": 1, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 3, + "Freight": 137.44, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 50000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 11, "UnitPrice": 21, - "Quantity": 40, - "Discount": 0.25 + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 7, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10913, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 1, - "Freight": 33.05, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10804, + "EmployeeID": 6, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", + "ShipVia": 2, + "Freight": 27.33, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 20000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 4, + "Discount": 0.16 } ] }, { - "OrderID": 10914, - "EmployeeID": 6, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", + "OrderID": 10869, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", "ShipVia": 1, - "Freight": 21.19, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 143.28, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 25, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ - { - "OrderID": 10915, - "EmployeeID": 2, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 2, - "Freight": 3.51, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 17, - "UnitPrice": 39, + "ProductID": 11, + "UnitPrice": 21, "Quantity": 10, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 } ] @@ -30555,183 +20850,169 @@ ] }, { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", + "CustomerID": "DRACD", + "Company": "Drachenblut Delikatessen", + "ContactName": "Sven Ottlieb", + "ContactTitle": "Order Administrator", + "Address": "Walserweg 21", + "City": "Aachen", + "PostalCode": 52066, + "Country": "Germany", + "Phone": "0241-039123", + "Fax": "0241-059428", "Orders": [ { - "OrderID": 10916, - "EmployeeID": 1, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 2, - "Freight": 63.77, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10363, + "EmployeeID": 4, + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1996-12-24T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", + "ShipVia": 3, + "Freight": 30.54, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 6, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 6, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10917, - "EmployeeID": 4, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 2, - "Freight": 8.29, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10391, + "EmployeeID": 3, + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-31T00:00:00", + "ShipVia": 3, + "Freight": 5.45, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 1, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10797, + "EmployeeID": 7, + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 2, + "Freight": 33.35, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 42000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10918, - "EmployeeID": 3, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 3, - "Freight": 48.83, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10825, + "EmployeeID": 1, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 1, + "Freight": 79.25, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10919, - "EmployeeID": 2, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 2, - "Freight": 19.8, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 11036, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 3, + "Freight": 149.47, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 24, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 24, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11067, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 7.98, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 20, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, "Discount": 0 } ] @@ -30739,316 +21020,267 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", + "CustomerID": "EASTC", + "Company": "Eastern Connection", + "ContactName": "Ann Devon", + "ContactTitle": "Sales Agent", + "Address": "35 King George", "City": "London", - "PostalCode": 34000, + "PostalCode": 20000, "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Phone": "(171) 555-0297", + "Fax": "(171) 555-3373", "Orders": [ { - "OrderID": 10920, - "EmployeeID": 4, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 2, - "Freight": 29.61, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 28000, + "OrderID": 10364, + "EmployeeID": 1, + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", + "ShipVia": 1, + "Freight": 71.97, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 20000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 24, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10921, + "OrderID": 10400, "EmployeeID": 1, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 1, - "Freight": 176.48, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 3, + "Freight": 83.93, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 21, + "Discount": 0 + }, { "ProductID": 35, - "UnitPrice": 18, - "Quantity": 10, + "UnitPrice": 14.4, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 40, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10922, - "EmployeeID": 5, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", + "OrderID": 10532, + "EmployeeID": 7, + "OrderDate": "1997-05-09T00:00:00", + "RequiredDate": "1997-06-06T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", "ShipVia": 3, - "Freight": 62.74, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 74.46, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 45000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10726, + "EmployeeID": 4, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 16.56, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 21000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 15, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10923, - "EmployeeID": 7, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 3, - "Freight": 68.26, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10987, + "EmployeeID": 8, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", + "ShipVia": 1, + "Freight": 185.48, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 30000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, + "Discount": 0 }, { "ProductID": 43, "UnitPrice": 46, - "Quantity": 10, - "Discount": 0.2 + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0.2 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 11000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10924, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 2, - "Freight": 151.52, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", + "OrderID": 11024, + "EmployeeID": 4, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 74.36, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 33, + "UnitPrice": 2.5, "Quantity": 30, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 6, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10925, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 1, - "Freight": 2.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 11047, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 46.62, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 42000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 25, - "Discount": 0.16 + "Discount": 0.25 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10926, - "EmployeeID": 4, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 3, - "Freight": 39.92, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "OrderID": 11056, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 2, + "Freight": 278.96, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 39000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 } ] @@ -31056,329 +21288,226 @@ ] }, { - "CustomerID": "LACOR", - "Company": "La corne d'abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de l'Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", + "CustomerID": "ANTON", + "Company": "Antonio Moreno Taquería", + "ContactName": "Antonio Moreno", + "ContactTitle": "Owner", + "Address": "Mataderos 2312", + "City": "México D.F.", + "PostalCode": 5023, + "Country": "Mexico", + "Phone": "(5) 555-3932", "Orders": [ { - "OrderID": 10927, - "EmployeeID": 4, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 19.79, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "OrderID": 10365, + "EmployeeID": 3, + "OrderDate": "1996-11-27T00:00:00", + "RequiredDate": "1996-12-25T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 22, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10928, - "EmployeeID": 1, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10507, + "EmployeeID": 7, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-04-22T00:00:00", "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "Freight": 47.45, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0 + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10929, - "EmployeeID": 6, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", + "OrderID": 10535, + "EmployeeID": 4, + "OrderDate": "1997-05-13T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-21T00:00:00", "ShipVia": 1, - "Freight": 33.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 15.64, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 49, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 59, + "UnitPrice": 55, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10930, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10573, + "EmployeeID": 7, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-20T00:00:00", "ShipVia": 3, - "Freight": 15.55, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 84.84, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 36, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 25, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10931, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 2, - "Freight": 13.6, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10677, + "EmployeeID": 1, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 3, + "Freight": 4.03, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 42, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 30, "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10932, - "EmployeeID": 8, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", - "ShipVia": 1, - "Freight": 134.64, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10682, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 2, + "Freight": 36.13, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, + "ProductID": 33, + "UnitPrice": 2.5, "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 14, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 16, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 4, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.1 + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 22000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10933, - "EmployeeID": 6, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 3, - "Freight": 54.15, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40216, - "ShipPostalCode": 24000, - "ShipCountry": "UK", + "OrderID": 10856, + "EmployeeID": 3, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 58.43, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 2, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] @@ -31386,163 +21515,141 @@ ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "CustomerID": "GALED", + "Company": "Galería del gastrónomo", + "ContactName": "Eduardo Saavedra", + "ContactTitle": "Marketing Manager", + "Address": "Rambla de Cataluña, 23", + "City": "Barcelona", + "PostalCode": 8022, + "Country": "Spain", + "Phone": "(93) 203 4560", + "Fax": "(93) 203 4561", "Orders": [ { - "OrderID": 10934, - "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", - "ShipVia": 3, - "Freight": 32.01, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10366, + "EmployeeID": 8, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-30T00:00:00", + "ShipVia": 2, + "Freight": 10.14, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10935, + "OrderID": 10426, "EmployeeID": 4, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 47.59, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-02-06T00:00:00", + "ShipVia": 1, + "Freight": 18.69, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 8, - "Discount": 0.25 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10936, + "OrderID": 10568, "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 2, - "Freight": 33.68, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1997-06-13T00:00:00", + "RequiredDate": "1997-07-11T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 3, + "Freight": 6.54, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10937, - "EmployeeID": 7, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderID": 10887, + "EmployeeID": 8, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", "ShipVia": 3, - "Freight": 31.51, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 1.25, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10928, + "EmployeeID": 1, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 1.36, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 5, "Discount": 0 } ] @@ -31550,383 +21657,323 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", + "CustomerID": "VAFFE", + "Company": "Vaffeljernet", + "ContactName": "Palle Ibsen", + "ContactTitle": "Sales Manager", + "Address": "Smagsloget 45", + "City": "Århus", + "PostalCode": 8200, + "Country": "Denmark", + "Phone": "86 21 32 43", + "Fax": "86 22 33 44", "Orders": [ { - "OrderID": 10938, - "EmployeeID": 3, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 31.89, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10367, + "EmployeeID": 7, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1996-12-26T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 13.55, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 18, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 49, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10939, - "EmployeeID": 2, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 2, - "Freight": 76.33, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10399, + "EmployeeID": 8, + "OrderDate": "1996-12-31T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", + "ShipVia": 3, + "Freight": 27.36, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 14, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10940, - "EmployeeID": 8, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10465, + "EmployeeID": 1, + "OrderDate": "1997-03-05T00:00:00", + "RequiredDate": "1997-04-02T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 3, - "Freight": 19.77, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 145.04, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 8, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 45, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10941, - "EmployeeID": 7, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 400.81, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10591, + "EmployeeID": 1, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-07-21T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 55.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 44, - "Discount": 0.25 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 80, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10942, - "EmployeeID": 9, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 17.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10602, + "EmployeeID": 8, + "OrderDate": "1997-07-17T00:00:00", + "RequiredDate": "1997-08-14T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", + "ShipVia": 2, + "Freight": 2.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 28, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 5, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10943, + "OrderID": 10688, "EmployeeID": 4, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", "ShipVia": 2, - "Freight": 2.17, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "Freight": 299.09, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 15, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 21, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 15, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 45000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10944, + "OrderID": 10744, "EmployeeID": 6, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 3, - "Freight": 52.92, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 69.19, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10769, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 1, + "Freight": 65.06, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10945, - "EmployeeID": 4, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-04-09T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10921, + "EmployeeID": 1, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 1, - "Freight": 10.22, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 176.48, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { "OrderID": 10946, "EmployeeID": 1, @@ -31960,645 +22007,417 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 35000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10947, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 13000, - "ShipCountry": "UK", + "OrderID": 10994, + "EmployeeID": 2, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-04-09T00:00:00", + "ShipVia": 3, + "Freight": 65.53, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { "ProductID": 59, "UnitPrice": 55, - "Quantity": 4, - "Discount": 0 + "Quantity": 18, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "CustomerID": "QUEEN", + "Company": "Queen Cozinha", + "ContactName": "Lúcia Carvalho", + "ContactTitle": "Marketing Assistant", + "Address": "Alameda dos Canàrios, 891", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5487, + "Country": "Brazil", + "Phone": "(11) 555-1189", "Orders": [ { - "OrderID": 10948, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 3, - "Freight": 23.39, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10372, + "EmployeeID": 5, + "OrderDate": "1996-12-04T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 890.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 9, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 40, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 70, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 42, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 44000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10949, - "EmployeeID": 2, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-17T00:00:00", - "ShipVia": 3, - "Freight": 74.44, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderID": 10406, + "EmployeeID": 7, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-13T00:00:00", + "ShipVia": 1, + "Freight": 108.04, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 12, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 21, + "UnitPrice": 8, "Quantity": 30, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 42, + "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 60, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10950, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-13T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10487, + "EmployeeID": 2, + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-03-28T00:00:00", "ShipVia": 2, - "Freight": 2.5, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 71.07, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 5, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ - { - "OrderID": 10951, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 2, - "Freight": 30.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, - "Discount": 0.06 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10952, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "OrderID": 10637, + "EmployeeID": 6, + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", "ShipVia": 1, - "Freight": 40.42, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 201.29, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 2, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 21000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10953, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-25T00:00:00", + "OrderID": 10659, + "EmployeeID": 7, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 35000, - "ShipCountry": "UK", + "Freight": 105.81, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 50, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0.06 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 24, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10954, - "EmployeeID": 5, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 10704, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", "ShipVia": 1, - "Freight": 27.91, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 4.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 28, - "Discount": 0.16 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 48, + "UnitPrice": 12.75, "Quantity": 24, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 25000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10955, - "EmployeeID": 8, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 10728, + "EmployeeID": 4, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-11-11T00:00:00", "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 47000, - "ShipCountry": "Sweden", + "Freight": 58.33, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 12, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10956, - "EmployeeID": 6, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 44.65, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 14, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 8, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10957, + "OrderID": 10786, "EmployeeID": 8, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 3, - "Freight": 105.36, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-16T00:00:00", + "ShippedDate": "1997-12-23T00:00:00", + "ShipVia": 1, + "Freight": 110.87, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 8, + "UnitPrice": 40, "Quantity": 30, - "Discount": 0 + "Discount": 0.2 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 8, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10958, + "OrderID": 10868, "EmployeeID": 7, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 2, - "Freight": 49.56, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 191.27, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, + "ProductID": 26, + "UnitPrice": 31.23, "Quantity": 20, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 6, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 5, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 42, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10959, - "EmployeeID": 6, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", - "ShipVia": 2, - "Freight": 4.98, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", + "OrderID": 10913, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 1, + "Freight": 33.05, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", "ShipRegion": "SP", - "ShipPostalCode": 4876, + "ShipPostalCode": 5487, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10960, - "EmployeeID": 3, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 2.08, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 30, + "Discount": 0.25 + }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 40, "Discount": 0.25 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 24, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { "OrderID": 10961, "EmployeeID": 8, @@ -32615,158 +22434,271 @@ "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 + } + ] + }, + { + "OrderID": 11068, + "EmployeeID": 8, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShipVia": 2, + "Freight": 81.75, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.16 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 36, + "Discount": 0.16 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 28, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "WOLZA", + "Company": "Wolski Zajazd", + "ContactName": "Zbyszek Piestrzeniewicz", + "ContactTitle": "Owner", + "Address": "ul. Filtrowa 68", + "City": "Warszawa", + "PostalCode": 12000, + "Country": "Poland", + "Phone": "(26) 642-7012", + "Fax": "(26) 642-7012", + "Orders": [ + { + "OrderID": 10374, + "EmployeeID": 1, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 3, + "Freight": 3.94, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 60, + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10962, - "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10611, + "EmployeeID": 6, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 275.79, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 80.65, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 77, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10792, + "EmployeeID": 1, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 3, + "Freight": 23.79, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 9, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 44, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10963, - "EmployeeID": 9, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", + "OrderID": 10870, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", "ShipVia": 3, - "Freight": 2.7, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 12.04, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, "Quantity": 2, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 10964, - "EmployeeID": 3, - "OrderDate": "1998-03-20T00:00:00", + "OrderID": 10906, + "EmployeeID": 4, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", + "ShipVia": 3, + "Freight": 26.29, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10998, + "EmployeeID": 8, + "OrderDate": "1998-04-03T00:00:00", "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", "ShipVia": 2, - "Freight": 87.38, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 20.31, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 6, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 11044, + "EmployeeID": 4, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 8.72, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, "Discount": 0 } ] @@ -32774,174 +22706,153 @@ ] }, { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", + "CustomerID": "HUNGC", + "Company": "Hungry Coyote Import Store", + "ContactName": "Yoshi Latimer", "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, + "Address": "City Center Plaza 516 Main St.", + "City": "Elgin", + "Region": "OR", + "PostalCode": 97827, "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", + "Phone": "(503) 555-6874", + "Fax": "(503) 555-2376", "Orders": [ { - "OrderID": 10965, - "EmployeeID": 6, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", - "ShipVia": 3, - "Freight": 144.38, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "OrderID": 10375, + "EmployeeID": 3, + "OrderDate": "1996-12-06T00:00:00", + "RequiredDate": "1997-01-03T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 20.12, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 16, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10966, - "EmployeeID": 4, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 27.19, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10394, + "EmployeeID": 1, + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 3, + "Freight": 30.34, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 8, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, "Discount": 0 }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 - }, { "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0.16 + "UnitPrice": 39.4, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10967, - "EmployeeID": 2, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 62.22, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "OrderID": 10415, + "EmployeeID": 3, + "OrderDate": "1997-01-15T00:00:00", + "RequiredDate": "1997-02-12T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "ShipVia": 1, + "Freight": 0.2, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 40, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10968, - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-01T00:00:00", - "ShipVia": 3, - "Freight": 74.6, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10600, + "EmployeeID": 4, + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-13T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", + "ShipVia": 1, + "Freight": 45.13, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 73, + "UnitPrice": 15, "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10660, + "EmployeeID": 8, + "OrderDate": "1997-09-08T00:00:00", + "RequiredDate": "1997-10-06T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 1, + "Freight": 111.29, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 4, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 21, "Discount": 0 } ] @@ -32949,222 +22860,205 @@ ] }, { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", + "CustomerID": "SANTG", + "Company": "Santé Gourmet", + "ContactName": "Jonas Bergulfsen", + "ContactTitle": "Owner", + "Address": "Erling Skakkes gate 78", + "City": "Stavern", + "PostalCode": 4110, + "Country": "Norway", + "Phone": "07-98 92 35", + "Fax": "07-98 92 47", "Orders": [ { - "OrderID": 10969, + "OrderID": 10387, "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-15T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", "ShipVia": 2, - "Freight": 0.21, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 93.63, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 9, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ + }, { - "OrderID": 10970, - "EmployeeID": 9, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10520, + "EmployeeID": 7, + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", "ShipVia": 1, - "Freight": 16.16, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", + "Freight": 13.37, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10971, - "EmployeeID": 2, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 121.82, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10639, + "EmployeeID": 7, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-08-27T00:00:00", + "ShipVia": 3, + "Freight": 38.64, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne d'abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de l'Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ + }, { - "OrderID": 10972, - "EmployeeID": 4, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", + "OrderID": 10831, + "EmployeeID": 3, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 2, - "Freight": 0.02, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "Freight": 72.19, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 7, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 9, "Discount": 0 } ] }, { - "OrderID": 10973, - "EmployeeID": 6, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "OrderID": 10909, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-10T00:00:00", "ShipVia": 2, - "Freight": 15.17, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "Freight": 53.05, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10974, - "EmployeeID": 3, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 12.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 11015, + "EmployeeID": 2, + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 2, + "Freight": 4.62, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] @@ -33179,339 +23073,314 @@ "Address": "23 Tsawassen Blvd.", "City": "Tsawassen", "Region": "BC", - "PostalCode": 13000, + "PostalCode": 26000, "Country": "Canada", "Phone": "(604) 555-4729", "Fax": "(604) 555-3745", "Orders": [ { - "OrderID": 10975, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-22T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 3, - "Freight": 32.27, + "OrderID": 10389, + "EmployeeID": 4, + "OrderDate": "1996-12-20T00:00:00", + "RequiredDate": "1997-01-17T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", + "ShipVia": 2, + "Freight": 47.42, "ShipName": "Bottom-Dollar Markets", "ShipAddress": "23 Tsawassen Blvd.", "ShipCity": "Tsawassen", "ShipRegion": "BC", - "ShipPostalCode": 40000, + "ShipPostalCode": 41000, "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, + "ProductID": 10, + "UnitPrice": 24.8, "Quantity": 16, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10976, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderID": 10410, + "EmployeeID": 3, + "OrderDate": "1997-01-10T00:00:00", + "RequiredDate": "1997-02-07T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", + "ShipVia": 3, + "Freight": 2.4, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 30000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 16, + "Discount": 0 + } + ] + }, + { + "OrderID": 10431, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 44.17, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 16000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10492, + "EmployeeID": 3, + "OrderDate": "1997-04-01T00:00:00", + "RequiredDate": "1997-04-29T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 1, - "Freight": 37.97, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 62.89, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 16000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 11000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10977, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10742, + "EmployeeID": 3, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-12-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 208.5, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", + "Freight": 243.73, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 25000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 27000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10978, - "EmployeeID": 9, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", - "ShipVia": 2, - "Freight": 32.82, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 31000, - "ShipCountry": "Belgium", + "OrderID": 10918, + "EmployeeID": 3, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 48.83, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 41000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 25, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10979, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-03-31T00:00:00", - "ShipVia": 2, - "Freight": 353.07, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10944, + "EmployeeID": 6, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 52.92, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 36000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, + "Discount": 0.25 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, "Quantity": 18, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 12, + "ProductID": 56, "UnitPrice": 38, - "Quantity": 20, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10949, + "EmployeeID": 2, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-17T00:00:00", + "ShipVia": 3, + "Freight": 74.44, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 80, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 30, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 24, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 35, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 50000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10980, - "EmployeeID": 4, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 1, - "Freight": 1.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10981, + "OrderID": 10975, "EmployeeID": 1, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 193.37, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-22T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 32.27, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 27000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { "OrderID": 10982, "EmployeeID": 2, @@ -33540,81 +23409,83 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10983, - "EmployeeID": 2, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 2, - "Freight": 657.54, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11027, + "EmployeeID": 1, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 52.52, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 14000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 84, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 21, + "Discount": 0.25 } ] }, { - "OrderID": 10984, - "EmployeeID": 1, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 211.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11045, + "EmployeeID": 6, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShipVia": 2, + "Freight": 70.58, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 46000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 55, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 24, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11048, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", + "ShipVia": 3, + "Freight": 24.12, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 41000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 42, "Discount": 0 } ] @@ -33622,535 +23493,427 @@ ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "LINOD", + "Company": "LINO-Delicateses", + "ContactName": "Felipe Izquierdo", + "ContactTitle": "Owner", + "Address": "Ave. 5 de Mayo Porlamar", + "City": "Sao Paulo", + "Region": "Nueva Esparta", + "PostalCode": 4980, + "Country": "Venezuela", + "Phone": "(8) 34-56-12", + "Fax": "(8) 34-93-93", "Orders": [ { - "OrderID": 10985, - "EmployeeID": 2, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10405, + "EmployeeID": 1, + "OrderDate": "1997-01-06T00:00:00", + "RequiredDate": "1997-02-03T00:00:00", + "ShippedDate": "1997-01-22T00:00:00", "ShipVia": 1, - "Freight": 91.51, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 34.82, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 36, - "Discount": 0.1 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 35, - "Discount": 0.1 + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10986, - "EmployeeID": 8, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", + "OrderID": 10485, + "EmployeeID": 4, + "OrderDate": "1997-03-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-31T00:00:00", "ShipVia": 2, - "Freight": 217.86, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 64.45, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 30, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0 + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 60, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10987, - "EmployeeID": 8, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", + "OrderID": 10638, + "EmployeeID": 3, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", "ShipVia": 1, - "Freight": 185.48, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 30000, - "ShipCountry": "UK", + "Freight": 158.44, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, "Discount": 0 }, { "ProductID": 72, "UnitPrice": 34.8, - "Quantity": 20, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10988, + "OrderID": 10697, "EmployeeID": 3, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 61.14, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-05T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", + "ShipVia": 1, + "Freight": 45.52, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 9, + "Discount": 0.25 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10989, - "EmployeeID": 2, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 1, - "Freight": 34.76, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "OrderID": 10729, + "EmployeeID": 8, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 3, + "Freight": 141.06, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 40, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10990, - "EmployeeID": 2, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 3, - "Freight": 117.61, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10811, + "EmployeeID": 8, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", + "ShipVia": 1, + "Freight": 31.22, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 65, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 18, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 66, - "Discount": 0.16 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10991, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 1, - "Freight": 38.51, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10838, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 59.28, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0.25 + }, + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 36, "UnitPrice": 19, "Quantity": 50, - "Discount": 0.2 - }, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10840, + "EmployeeID": 4, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", + "ShipVia": 2, + "Freight": 2.71, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 76, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 90, + "Quantity": 10, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10992, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 4.27, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "OrderID": 10919, + "EmployeeID": 2, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 2, + "Freight": 19.8, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 2, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 36000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10993, - "EmployeeID": 7, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 3, - "Freight": 8.81, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 15000, - "ShipCountry": "Sweden", + "OrderID": 10954, + "EmployeeID": 5, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 1, + "Freight": 27.91, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 28, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 25, + "Discount": 0.16 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10994, + "OrderID": 11014, "EmployeeID": 2, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-04-09T00:00:00", + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", "ShipVia": 3, - "Freight": 65.53, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 23.6, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 28, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10995, + "OrderID": 11039, "EmployeeID": 1, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 3, - "Freight": 46, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShipVia": 2, + "Freight": 65, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 24, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10996, - "EmployeeID": 4, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 1.12, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ + }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 28, "Discount": 0 } ] @@ -34158,580 +23921,519 @@ ] }, { - "CustomerID": "LILAS", - "Company": "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": "FOLIG", + "Company": "Folies gourmandes", + "ContactName": "Martine Rancé", + "ContactTitle": "Sales Associate", + "Address": "184, chaussée de Tournai", + "City": "Lille", + "PostalCode": 59000, + "Country": "France", + "Phone": "20.16.10.16", + "Fax": "20.16.10.17", "Orders": [ { - "OrderID": 10997, + "OrderID": 10408, "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 2, - "Freight": 73.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderDate": "1997-01-08T00:00:00", + "RequiredDate": "1997-02-05T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 11.26, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 15000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10998, - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", + "OrderID": 10480, + "EmployeeID": 6, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", "ShipVia": 2, - "Freight": 20.31, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 1.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, "Quantity": 12, "Discount": 0 + } + ] + }, + { + "OrderID": 10634, + "EmployeeID": 4, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 487.38, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 7, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 30, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10999, - "EmployeeID": 6, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-01T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 96.35, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "OrderID": 10763, + "EmployeeID": 3, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 3, + "Freight": 37.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 21, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 11000, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", - "ShipVia": 3, - "Freight": 55.12, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10789, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 2, + "Freight": 100.6, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, + "Discount": 0 } ] } ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 45000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "OCEAN", + "Company": "Océano Atlántico Ltda.", + "ContactName": "Yvonne Moncada", + "ContactTitle": "Sales Agent", + "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5333", + "Fax": "(1) 135-5535", "Orders": [ { - "OrderID": 11001, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", - "ShipVia": 2, - "Freight": 197.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 14000, - "ShipCountry": "Sweden", + "OrderID": 10409, + "EmployeeID": 3, + "OrderDate": "1997-01-09T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 29.83, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 25, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11002, - "EmployeeID": 4, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10531, + "EmployeeID": 7, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", "ShipVia": 1, - "Freight": 141.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 8.12, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 10898, + "EmployeeID": 4, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 1.27, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { "ProductID": 13, "UnitPrice": 6, - "Quantity": 56, + "Quantity": 5, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10958, + "EmployeeID": 7, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 2, + "Freight": 49.56, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 40, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11003, - "EmployeeID": 3, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 3, - "Freight": 14.91, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "OrderID": 10986, + "EmployeeID": 8, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 217.86, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0 } ] } ] }, { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 20000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", + "CustomerID": "FRANS", + "Company": "Franchi S.p.A.", + "ContactName": "Paolo Accorti", + "ContactTitle": "Sales Representative", + "Address": "Via Monte Bianco 34", + "City": "Torino", + "PostalCode": 10100, + "Country": "Italy", + "Phone": "011-4988260", + "Fax": "011-4988261", "Orders": [ { - "OrderID": 11004, - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10422, + "EmployeeID": 2, + "OrderDate": "1997-01-22T00:00:00", + "RequiredDate": "1997-02-19T00:00:00", + "ShippedDate": "1997-01-31T00:00:00", "ShipVia": 1, - "Freight": 44.84, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", + "Freight": 3.02, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 6, + "UnitPrice": 24.9, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 11005, - "EmployeeID": 2, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10710, + "EmployeeID": 1, + "OrderDate": "1997-10-20T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", "ShipVia": 1, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 4.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 2, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 10, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ - { - "OrderID": 11006, - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", - "ShipVia": 2, - "Freight": 25.19, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + }, + { + "OrderID": 10753, + "EmployeeID": 3, + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 1, + "Freight": 7.7, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 11007, - "EmployeeID": 8, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 2, - "Freight": 202.24, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10807, + "EmployeeID": 4, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 1.36, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 1, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11026, + "EmployeeID": 4, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", + "ShipVia": 1, + "Freight": 47.09, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 14, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11008, - "EmployeeID": 7, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShipVia": 3, - "Freight": 79.46, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 11060, + "EmployeeID": 2, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 2, + "Freight": 10.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 70, - "Discount": 0.06 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 90, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 21, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, "Discount": 0 } ] @@ -34739,453 +24441,384 @@ ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "CustomerID": "GOURL", + "Company": "Gourmet Lanchonetes", + "ContactName": "André Fonseca", + "ContactTitle": "Sales Associate", + "Address": "Av. Brasil, 442", + "City": "Campinas", + "Region": "SP", + "PostalCode": 4876, + "Country": "Brazil", + "Phone": "(11) 555-9482", "Orders": [ { - "OrderID": 11009, - "EmployeeID": 2, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 59.11, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10423, + "EmployeeID": 6, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", + "ShipVia": 3, + "Freight": 24.5, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 18, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 9, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11010, - "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 2, - "Freight": 28.71, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10652, + "EmployeeID": 4, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 2, + "Freight": 7.14, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 2, + "Discount": 0.25 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 11011, - "EmployeeID": 3, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 1, - "Freight": 1.21, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "OrderID": 10685, + "EmployeeID": 4, + "OrderDate": "1997-09-29T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 33.75, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 20, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 11012, + "OrderID": 10709, "EmployeeID": 1, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-11-20T00:00:00", "ShipVia": 3, - "Freight": 242.95, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 210.8, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 36, - "Discount": 0.06 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 11013, + "OrderID": 10734, "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 32.99, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-12T00:00:00", + "ShipVia": 3, + "Freight": 1.63, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 10, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 4, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 2, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 11014, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", - "ShipVia": 3, - "Freight": 23.6, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10777, + "EmployeeID": 7, + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 2, + "Freight": 3.01, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10790, + "EmployeeID": 6, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 28.23, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 3, + "Discount": 0.16 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 11015, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10959, + "EmployeeID": 6, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", "ShipVia": 2, - "Freight": 4.62, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 4.98, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 11049, + "EmployeeID": 3, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 8.34, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", + "CustomerID": "CONSH", + "Company": "Consolidated Holdings", + "ContactName": "Elizabeth Brown", "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", + "Address": "Berkeley Gardens 12 Brewery", "City": "London", - "PostalCode": 49000, + "PostalCode": 23000, "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Phone": "(171) 555-2282", + "Fax": "(171) 555-9199", "Orders": [ { - "OrderID": 11016, - "EmployeeID": 9, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10435, + "EmployeeID": 8, + "OrderDate": "1997-02-04T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", "ShipVia": 2, - "Freight": 33.8, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, + "Freight": 9.21, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 38000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 16, + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11017, - "EmployeeID": 9, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 2, - "Freight": 754.26, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10462, + "EmployeeID": 2, + "OrderDate": "1997-03-03T00:00:00", + "RequiredDate": "1997-03-31T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 1, + "Freight": 6.17, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 110, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11018, - "EmployeeID": 4, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10848, + "EmployeeID": 7, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 2, - "Freight": 11.65, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 38.24, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 39000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 3, "Discount": 0 } ] @@ -35205,12 +24838,13 @@ "Fax": "(1) 123-5556", "Orders": [ { - "OrderID": 11019, - "EmployeeID": 6, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShipVia": 3, - "Freight": 3.17, + "OrderID": 10448, + "EmployeeID": 4, + "OrderDate": "1997-02-17T00:00:00", + "RequiredDate": "1997-03-17T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", + "ShipVia": 2, + "Freight": 38.82, "ShipName": "Rancho grande", "ShipAddress": "Av. del Libertador 900", "ShipCity": "Buenos Aires", @@ -35218,195 +24852,138 @@ "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 3, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 2, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 11020, - "EmployeeID": 2, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10716, + "EmployeeID": 4, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-27T00:00:00", "ShipVia": 2, - "Freight": 43.3, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 22.57, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 11021, - "EmployeeID": 3, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", + "OrderID": 10828, + "EmployeeID": 9, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", "ShipVia": 1, - "Freight": 297.18, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 90.85, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 11, - "Discount": 0.25 - }, { "ProductID": 20, "UnitPrice": 81, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 63, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 44, - "Discount": 0.25 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 11022, - "EmployeeID": 9, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10916, + "EmployeeID": 1, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 63.77, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 15000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 11023, - "EmployeeID": 1, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 123.83, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", + "OrderID": 11019, + "EmployeeID": 6, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShipVia": 3, + "Freight": 3.17, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 4, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 2, "Discount": 0 } ] @@ -35414,53 +24991,60 @@ ] }, { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 21000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", + "CustomerID": "LAZYK", + "Company": "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", "Orders": [ { - "OrderID": 11024, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 1, - "Freight": 74.36, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 28000, - "ShipCountry": "UK", + "OrderID": 10482, + "EmployeeID": 1, + "OrderDate": "1997-03-21T00:00:00", + "RequiredDate": "1997-04-18T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 7.48, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10545, + "EmployeeID": 8, + "OrderDate": "1997-05-22T00:00:00", + "RequiredDate": "1997-06-19T00:00:00", + "ShippedDate": "1997-06-26T00:00:00", + "ShipVia": 2, + "Freight": 11.92, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 50, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 } ] @@ -35468,311 +25052,322 @@ ] }, { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", + "CustomerID": "LAUGB", + "Company": "Laughing Bacchus Wine Cellars", + "ContactName": "Yoshi Tannamuri", + "ContactTitle": "Marketing Assistant", + "Address": "1900 Oak St.", + "City": "Vancouver", + "Region": "BC", + "PostalCode": 24000, + "Country": "Canada", + "Phone": "(604) 555-3392", + "Fax": "(604) 555-7293", "Orders": [ { - "OrderID": 11025, - "EmployeeID": 6, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10495, + "EmployeeID": 3, + "OrderDate": "1997-04-03T00:00:00", + "RequiredDate": "1997-05-01T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 3, - "Freight": 29.17, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 4.65, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 33000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, + "ProductID": 23, + "UnitPrice": 7.2, "Quantity": 10, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 20, - "Discount": 0.1 + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 11026, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", - "ShipVia": 1, - "Freight": 47.09, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10620, + "EmployeeID": 2, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", + "ShipVia": 3, + "Freight": 0.94, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 15000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 27000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11027, - "EmployeeID": 1, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 1, - "Freight": 52.52, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", + "OrderID": 10810, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", + "ShipVia": 3, + "Freight": 4.33, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", "ShipRegion": "BC", - "ShipPostalCode": 14000, + "ShipPostalCode": 41000, "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 7, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, + "CustomerID": "BLAUS", + "Company": "Blauer See Delikatessen", + "ContactName": "Hanna Moos", + "ContactTitle": "Sales Representative", + "Address": "Forsterstr. 57", + "City": "Mannheim", + "PostalCode": 68306, "Country": "Germany", - "Phone": "0555-09876", + "Phone": "0621-08460", + "Fax": "0621-08924", "Orders": [ { - "OrderID": 11028, - "EmployeeID": 2, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", - "ShipVia": 1, - "Freight": 29.59, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10501, + "EmployeeID": 9, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 3, + "Freight": 8.85, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 24, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 11029, + "OrderID": 10509, "EmployeeID": 4, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", + "OrderDate": "1997-04-17T00:00:00", + "RequiredDate": "1997-05-15T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 1, - "Freight": 47.84, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 0.15, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10582, + "EmployeeID": 3, + "OrderDate": "1997-06-27T00:00:00", + "RequiredDate": "1997-07-25T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 27.71, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 12, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11030, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 2, - "Freight": 830.75, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10614, + "EmployeeID": 8, + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 3, + "Freight": 1.93, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 100, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 70, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 60, - "Discount": 0.25 - }, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10853, + "EmployeeID": 9, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", + "ShipVia": 2, + "Freight": 53.83, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 100, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, + "Discount": 0 } ] }, { - "OrderID": 11031, + "OrderID": 10956, "EmployeeID": 6, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 227.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 44.65, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 45, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 80, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 21, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 11058, + "EmployeeID": 9, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShipVia": 3, + "Freight": 31.14, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, "Discount": 0 } ] @@ -35780,140 +25375,97 @@ ] }, { - "CustomerID": "WHITC", - "Company": "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": "NORTS", + "Company": "North/South", + "ContactName": "Simon Crowther", + "ContactTitle": "Sales Associate", + "Address": "South House 300 Queensbridge", + "City": "London", + "PostalCode": 17000, + "Country": "UK", + "Phone": "(171) 555-7733", + "Fax": "(171) 555-2530", "Orders": [ { - "OrderID": 11032, - "EmployeeID": 2, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 10517, + "EmployeeID": 3, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 3, - "Freight": 606.19, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 32.07, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 16000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 35, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 25, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 11033, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 10752, + "EmployeeID": 2, + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", "ShipVia": 3, - "Freight": 84.74, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 1.39, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 70, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0 }, { "ProductID": 69, "UnitPrice": 36, - "Quantity": 36, - "Discount": 0.1 + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11034, - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 40.32, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 11057, + "EmployeeID": 3, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 4.13, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 6, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] @@ -35921,233 +25473,174 @@ ] }, { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", + "CustomerID": "CACTU", + "Company": "Cactus Comidas para llevar", + "ContactName": "Patricio Simpson", + "ContactTitle": "Sales Agent", + "Address": "Cerrito 333", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5555", + "Fax": "(1) 135-4892", "Orders": [ { - "OrderID": 11035, - "EmployeeID": 2, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10521, + "EmployeeID": 8, + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", "ShipVia": 2, - "Freight": 0.17, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 17.22, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 35, "UnitPrice": 18, - "Quantity": 10, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 60, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10782, + "EmployeeID": 9, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 1.1, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 1, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 11036, - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", + "OrderID": 10819, + "EmployeeID": 2, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", "ShipVia": 3, - "Freight": 149.47, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 19.76, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 43, + "UnitPrice": 46, "Quantity": 7, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 11037, - "EmployeeID": 7, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", + "OrderID": 10881, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 1, - "Freight": 3.2, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 2.84, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 70, + "ProductID": 73, "UnitPrice": 15, - "Quantity": 4, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 11038, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", - "ShipVia": 2, - "Freight": 29.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10937, + "EmployeeID": 7, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 31.51, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, - "Discount": 0.2 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 2, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 11039, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShipVia": 2, - "Freight": 65, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 11054, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShipVia": 1, + "Freight": 0.33, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 60, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 10, "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 28, + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] @@ -36167,12 +25660,13 @@ "Phone": "(503) 555-7555", "Orders": [ { - "OrderID": 11040, - "EmployeeID": 4, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShipVia": 3, - "Freight": 18.84, + "OrderID": 10528, + "EmployeeID": 6, + "OrderDate": "1997-05-06T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 3.35, "ShipName": "Great Lakes Food Market", "ShipAddress": "2732 Baker Blvd.", "ShipCity": "Eugene", @@ -36181,582 +25675,508 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 3, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ - { - "OrderID": 11041, - "EmployeeID": 3, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", - "ShipVia": 2, - "Freight": 48.22, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", - "OrderDetails": [ + }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, "Discount": 0.2 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 11042, - "EmployeeID": 2, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 1, - "Freight": 29.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderID": 10589, + "EmployeeID": 8, + "OrderDate": "1997-07-04T00:00:00", + "RequiredDate": "1997-08-01T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 4.42, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 35, + "UnitPrice": 18, "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 11043, - "EmployeeID": 5, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", + "OrderID": 10616, + "EmployeeID": 1, + "OrderDate": "1997-07-31T00:00:00", + "RequiredDate": "1997-08-28T00:00:00", + "ShippedDate": "1997-08-05T00:00:00", "ShipVia": 2, - "Freight": 8.8, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 116.53, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 15000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 11044, - "EmployeeID": 4, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10656, + "EmployeeID": 6, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 1, - "Freight": 8.72, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 57.15, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 26000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, + "Discount": 0.1 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 28, + "Discount": 0.1 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.1 + } + ] + }, { - "OrderID": 11045, - "EmployeeID": 6, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShipVia": 2, - "Freight": 70.58, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 46000, - "ShipCountry": "Canada", + "OrderID": 10681, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 76.13, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 24, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 11046, - "EmployeeID": 8, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10816, + "EmployeeID": 4, + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-02-03T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", "ShipVia": 2, - "Freight": 71.64, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 719.78, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, "Discount": 0.06 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, "Discount": 0.06 - }, + } + ] + }, + { + "OrderID": 10936, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 33.68, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 45000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11047, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 3, - "Freight": 46.62, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 42000, - "ShipCountry": "UK", + "OrderID": 11006, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", + "ShipVia": 2, + "Freight": 25.19, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 1, "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.25 + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 2, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 24000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11048, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", + "OrderID": 11040, + "EmployeeID": 4, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", "ShipVia": 3, - "Freight": 24.12, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "Freight": 18.84, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 42, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 11049, - "EmployeeID": 3, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 1, - "Freight": 8.34, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + } + ] + }, + { + "OrderID": 11061, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-06-11T00:00:00", + "ShipVia": 3, + "Freight": 14.01, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, + "Discount": 0 } ] } ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 46000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "MAISD", + "Company": "Maison Dewey", + "ContactName": "Catherine Dewey", + "ContactTitle": "Sales Agent", + "Address": "Rue Joseph-Bens 532", + "City": "Bruxelles", + "PostalCode": 45000, + "Country": "Belgium", + "Phone": "(02) 201 24 67", + "Fax": "(02) 201 24 68", "Orders": [ { - "OrderID": 11050, - "EmployeeID": 8, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10529, + "EmployeeID": 5, + "OrderDate": "1997-05-07T00:00:00", + "RequiredDate": "1997-06-04T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", "ShipVia": 2, - "Freight": 59.41, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "Freight": 66.69, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.1 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 11051, - "EmployeeID": 7, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", + "OrderID": 10649, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-09-25T00:00:00", + "ShippedDate": "1997-08-29T00:00:00", "ShipVia": 3, - "Freight": 2.79, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 6.2, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 21000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 11052, - "EmployeeID": 3, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10760, + "EmployeeID": 4, + "OrderDate": "1997-12-01T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1997-12-10T00:00:00", "ShipVia": 1, - "Freight": 67.26, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 155.64, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 12000, + "ShipCountry": "Belgium", "OrderDetails": [ + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.25 + }, + { + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 40, + "Discount": 0 + }, { "ProductID": 43, "UnitPrice": 46, "Quantity": 30, - "Discount": 0.2 - }, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10892, + "EmployeeID": 4, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 2, + "Freight": 120.27, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 30000, + "ShipCountry": "Belgium", + "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, + { + "OrderID": 10896, + "EmployeeID": 7, + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 32.45, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 15000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 16, + "Discount": 0 + } + ] + }, { - "OrderID": 11053, - "EmployeeID": 2, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", + "OrderID": 10978, + "EmployeeID": 9, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 32.82, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 31000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 11054, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", + "OrderID": 11004, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 1, - "Freight": 0.33, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 44.84, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 10, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 } ] @@ -36764,139 +26184,119 @@ ] }, { - "CustomerID": "HILAA", - "Company": "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": "TRAIH", + "Company": "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", "Orders": [ { - "OrderID": 11055, - "EmployeeID": 7, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10574, + "EmployeeID": 4, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 120.92, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 37.6, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 11000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11056, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10577, + "EmployeeID": 9, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 278.96, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 39000, - "ShipCountry": "UK", + "Freight": 25.41, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 40, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 16000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ + }, { - "OrderID": 11057, - "EmployeeID": 3, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10822, + "EmployeeID": 6, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", "ShipVia": 3, - "Freight": 4.13, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "Freight": 7, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, + "Discount": 0 + }, { "ProductID": 70, "UnitPrice": 15, - "Quantity": 3, + "Quantity": 6, "Discount": 0 } ] @@ -36904,451 +26304,483 @@ ] }, { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", + "CustomerID": "LETSS", + "Company": "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", "Orders": [ { - "OrderID": 11058, - "EmployeeID": 9, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShipVia": 3, - "Freight": 31.14, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10579, + "EmployeeID": 1, + "OrderDate": "1997-06-25T00:00:00", + "RequiredDate": "1997-07-23T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 2, + "Freight": 13.73, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 3, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 21, "Discount": 0 + } + ] + }, + { + "OrderID": 10719, + "EmployeeID": 8, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 2, + "Freight": 51.44, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 12, + "Discount": 0.25 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 3, + "Discount": 0.25 }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 40, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10735, + "EmployeeID": 6, + "OrderDate": "1997-11-10T00:00:00", + "RequiredDate": "1997-12-08T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 45.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", + "OrderDetails": [ { "ProductID": 61, "UnitPrice": 28.5, - "Quantity": 4, - "Discount": 0 + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 11059, - "EmployeeID": 2, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-06-10T00:00:00", + "OrderID": 10884, + "EmployeeID": 4, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", "ShipVia": 2, - "Freight": 85.8, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 90.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 30, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 12, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 21, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", + "CustomerID": "WILMK", + "Company": "Wilman Kala", + "ContactName": "Matti Karttunen", + "ContactTitle": "Owner/Marketing Assistant", + "Address": "Keskuskatu 45", + "City": "Helsinki", + "PostalCode": 21240, + "Country": "Finland", + "Phone": "90-224 8858", + "Fax": "90-224 8858", "Orders": [ { - "OrderID": 11060, + "OrderID": 10615, "EmployeeID": 2, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 2, - "Freight": 10.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderDate": "1997-07-30T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 3, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10673, + "EmployeeID": 2, + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 22.76, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11061, - "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-06-11T00:00:00", - "ShipVia": 3, - "Freight": 14.01, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderID": 10695, + "EmployeeID": 7, + "OrderDate": "1997-10-07T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", + "ShipVia": 1, + "Freight": 16.72, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11062, + "OrderID": 10873, "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShipVia": 2, - "Freight": 29.93, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 0.82, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 11063, + "OrderID": 10879, "EmployeeID": 3, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 81.73, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 8.5, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11064, + "OrderID": 10910, "EmployeeID": 1, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 1, - "Freight": 30.09, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 3, + "Freight": 38.11, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 77, - "Discount": 0.1 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 55, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11065, - "EmployeeID": 8, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", + "OrderID": 11005, + "EmployeeID": 2, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 1, - "Freight": 12.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, + "Discount": 0 } ] } ] }, { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, + "CustomerID": "THECR", + "Company": "The Cracker Box", + "ContactName": "Liu Wong", + "ContactTitle": "Marketing Assistant", + "Address": "55 Grizzly Peak Rd.", + "City": "Butte", + "Region": "MT", + "PostalCode": 59801, "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", + "Phone": "(406) 555-5834", + "Fax": "(406) 555-8083", "Orders": [ { - "OrderID": 11066, - "EmployeeID": 7, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10624, + "EmployeeID": 4, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", "ShipVia": 2, - "Freight": 44.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, + "Freight": 94.8, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 42, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 34, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10775, + "EmployeeID": 7, + "OrderDate": "1997-12-12T00:00:00", + "RequiredDate": "1998-01-09T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 20.25, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, "UnitPrice": 14, - "Quantity": 35, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 11067, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 7.98, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderID": 11003, + "EmployeeID": 3, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 3, + "Freight": 14.91, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 10, "Discount": 0 } ] @@ -37356,272 +26788,279 @@ ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", + "CustomerID": "ALFKI", + "Company": "Alfreds Futterkiste", + "ContactName": "Maria Anders", + "ContactTitle": "Sales Representative", + "Address": "Obere Str. 57", + "City": "Berlin", + "PostalCode": 12209, + "Country": "Germany", + "Phone": "030-0074321", + "Fax": "030-0076545", "Orders": [ { - "OrderID": 11068, - "EmployeeID": 8, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShipVia": 2, - "Freight": 81.75, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10643, + "EmployeeID": 6, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", + "ShipVia": 1, + "Freight": 29.46, + "ShipName": "Alfreds Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 28, "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.16 + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 2, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 11069, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", + "OrderID": 10692, + "EmployeeID": 4, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-10-31T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", "ShipVia": 2, - "Freight": 15.67, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 61.02, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 11070, - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", + "OrderID": 10702, + "EmployeeID": 4, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", "ShipVia": 1, - "Freight": 136, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "Freight": 23.94, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.16 - }, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10835, + "EmployeeID": 1, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 3, + "Freight": 69.53, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11071, + "OrderID": 10952, "EmployeeID": 1, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 1, - "Freight": 0.93, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 40.42, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 15, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 16, "Discount": 0.06 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 11011, + "EmployeeID": 3, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 1, + "Freight": 1.21, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 40, "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 11072, - "EmployeeID": 4, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShipVia": 2, - "Freight": 258.64, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "CustomerID": "FRANR", + "Company": "France restauration", + "ContactName": "Carine Schmitt", + "ContactTitle": "Marketing Manager", + "Address": "54, rue Royale", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.32.21.21", + "Fax": "40.32.21.20", + "Orders": [ + { + "OrderID": 10671, + "EmployeeID": 1, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-09-24T00:00:00", + "ShipVia": 1, + "Freight": 30.34, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 8, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 40, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 22, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10860, + "EmployeeID": 3, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 3, + "Freight": 19.26, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 130, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 11073, + "OrderID": 10971, "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", "ShipVia": 2, - "Freight": 24.95, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 121.82, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 14, "Discount": 0 } ] @@ -37629,308 +27068,223 @@ ] }, { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", + "CustomerID": "SPECD", + "Company": "Spécialités du monde", + "ContactName": "Dominique Perrier", + "ContactTitle": "Marketing Manager", + "Address": "25, rue Lauriston", + "City": "Paris", + "PostalCode": 75016, + "Country": "France", + "Phone": "(1) 47.55.60.10", + "Fax": "(1) 47.55.60.20", "Orders": [ { - "OrderID": 11074, - "EmployeeID": 7, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShipVia": 2, - "Freight": 18.44, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10738, + "EmployeeID": 2, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 1, + "Freight": 2.91, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 16, "UnitPrice": 17.45, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10907, + "EmployeeID": 6, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-25T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 9.19, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 14, - "Discount": 0.06 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 11075, - "EmployeeID": 8, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", + "OrderID": 10964, + "EmployeeID": 3, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 2, - "Freight": 6.19, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 87.38, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 11076, - "EmployeeID": 4, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", + "OrderID": 11043, + "EmployeeID": 5, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", "ShipVia": 2, - "Freight": 38.28, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, + "Freight": 8.8, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 11, + "UnitPrice": 21, "Quantity": 10, - "Discount": 0.25 + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "LACOR", + "Company": "La corne d'abondance", + "ContactName": "Daniel Tonini", + "ContactTitle": "Sales Representative", + "Address": "67, avenue de l'Europe", + "City": "Versailles", + "PostalCode": 78000, + "Country": "France", + "Phone": "30.59.84.10", + "Fax": "30.59.85.11", "Orders": [ { - "OrderID": 11077, - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10858, + "EmployeeID": 2, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", + "ShipVia": 1, + "Freight": 52.51, + "ShipName": "La corne d'abondance", + "ShipAddress": "67, avenue de l'Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 24, - "Discount": 0.2 - }, - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 1, - "Discount": 0.02 - }, { "ProductID": 7, "UnitPrice": 30, - "Quantity": 1, - "Discount": 0.06 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 2, - "Discount": 0.1 - }, - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 1, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 2, - "Discount": 0.06 + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 4, "Discount": 0 - }, - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 2, - "Discount": 0.04 - }, + } + ] + }, + { + "OrderID": 10927, + "EmployeeID": 4, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 19.79, + "ShipName": "La corne d'abondance", + "ShipAddress": "67, avenue de l'Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { "ProductID": 20, "UnitPrice": 81, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 3, + "Quantity": 5, "Discount": 0 }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 3, - "Discount": 0.02 - }, { "ProductID": 52, "UnitPrice": 7, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 2, - "Discount": 0.04 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 1, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 2, - "Discount": 0.0099999998 - }, + } + ] + }, + { + "OrderID": 10972, + "EmployeeID": 4, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 2, + "Freight": 0.02, + "ShipName": "La corne d'abondance", + "ShipAddress": "67, avenue de l'Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 4, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 7, "Discount": 0 } ] diff --git a/samples/grids/hierarchical-grid/column-selection-group/src/HierarchicalCustomers.json b/samples/grids/hierarchical-grid/column-selection-group/src/HierarchicalCustomers.json index 75c7bc037d..43b2853953 100644 --- a/samples/grids/hierarchical-grid/column-selection-group/src/HierarchicalCustomers.json +++ b/samples/grids/hierarchical-grid/column-selection-group/src/HierarchicalCustomers.json @@ -44,6 +44,112 @@ "Discount": 0 } ] + }, + { + "OrderID": 10274, + "EmployeeID": 6, + "OrderDate": "1996-08-06T00:00:00", + "RequiredDate": "1996-09-03T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 1, + "Freight": 6.01, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 7, + "Discount": 0 + } + ] + }, + { + "OrderID": 10295, + "EmployeeID": 2, + "OrderDate": "1996-09-02T00:00:00", + "RequiredDate": "1996-09-30T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", + "ShipVia": 2, + "Freight": 1.15, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 10737, + "EmployeeID": 2, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 7.79, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10739, + "EmployeeID": 3, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-17T00:00:00", + "ShipVia": 3, + "Freight": 11.08, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 18, + "Discount": 0 + } + ] } ] }, @@ -86,251 +192,155 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10250, - "EmployeeID": 4, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-12T00:00:00", + "OrderID": 10438, + "EmployeeID": 3, + "OrderDate": "1997-02-06T00:00:00", + "RequiredDate": "1997-03-06T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", "ShipVia": 2, - "Freight": 65.83, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 8.24, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 15, - "Discount": 0.16 + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10251, - "EmployeeID": 3, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", + "OrderID": 10446, + "EmployeeID": 6, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-02-19T00:00:00", "ShipVia": 1, - "Freight": 41.34, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 14.68, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 + }, + { + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 44000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10252, - "EmployeeID": 4, - "OrderDate": "1996-07-09T00:00:00", - "RequiredDate": "1996-08-06T00:00:00", - "ShippedDate": "1996-07-11T00:00:00", + "OrderID": 10548, + "EmployeeID": 3, + "OrderDate": "1997-05-26T00:00:00", + "RequiredDate": "1997-06-23T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", "ShipVia": 2, - "Freight": 51.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 22000, - "ShipCountry": "Belgium", + "Freight": 1.43, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 40, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Fax": "0452-076546", - "Orders": [ + }, { - "OrderID": 10254, - "EmployeeID": 5, - "OrderDate": "1996-07-11T00:00:00", - "RequiredDate": "1996-08-08T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderID": 10608, + "EmployeeID": 4, + "OrderDate": "1997-07-23T00:00:00", + "RequiredDate": "1997-08-20T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 22.98, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 27.79, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 21, - "Discount": 0.16 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10255, - "EmployeeID": 9, - "OrderDate": "1996-07-12T00:00:00", - "RequiredDate": "1996-08-09T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", - "ShipVia": 3, - "Freight": 148.33, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10967, + "EmployeeID": 2, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 62.22, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 25, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 40, "Discount": 0 } ] @@ -338,2105 +348,1447 @@ ] }, { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, + "CustomerID": "HANAR", + "Company": "Hanari Carnes", + "ContactName": "Mario Pontes", + "ContactTitle": "Accounting Manager", + "Address": "Rua do Paço, 67", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 5454, "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", + "Phone": "(21) 555-0091", + "Fax": "(21) 555-8765", "Orders": [ { - "OrderID": 10256, - "EmployeeID": 3, - "OrderDate": "1996-07-15T00:00:00", - "RequiredDate": "1996-08-12T00:00:00", - "ShippedDate": "1996-07-17T00:00:00", + "OrderID": 10250, + "EmployeeID": 4, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-12T00:00:00", "ShipVia": 2, - "Freight": 13.97, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, + "Freight": 65.83, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10257, - "EmployeeID": 4, - "OrderDate": "1996-07-16T00:00:00", - "RequiredDate": "1996-08-13T00:00:00", - "ShippedDate": "1996-07-22T00:00:00", - "ShipVia": 3, - "Freight": 81.91, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10258, - "EmployeeID": 1, - "OrderDate": "1996-07-17T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderID": 10541, + "EmployeeID": 2, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-05-29T00:00:00", "ShipVia": 1, - "Freight": 140.51, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 68.65, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.1 }, { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 65, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 4, + "Discount": 0.1 }, { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 9, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "CENTC", - "Company": "Centro comercial Moctezuma", - "ContactName": "Francisco Chang", - "ContactTitle": "Marketing Manager", - "Address": "Sierras de Granada 9993", - "City": "México D.F.", - "PostalCode": 5022, - "Country": "Mexico", - "Phone": "(5) 555-3392", - "Fax": "(5) 555-7293", - "Orders": [ + }, { - "OrderID": 10259, + "OrderID": 10645, "EmployeeID": 4, - "OrderDate": "1996-07-18T00:00:00", - "RequiredDate": "1996-08-15T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", - "ShipVia": 3, - "Freight": 3.25, - "ShipName": "Centro comercial Moctezuma", - "ShipAddress": "Sierras de Granada 9993", - "ShipCity": "México D.F.", - "ShipPostalCode": 5022, - "ShipCountry": "Mexico", + "OrderDate": "1997-08-26T00:00:00", + "RequiredDate": "1997-09-23T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", + "ShipVia": 1, + "Freight": 12.41, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 1, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10260, - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-29T00:00:00", + "OrderID": 10690, + "EmployeeID": 1, + "OrderDate": "1997-10-02T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", "ShipVia": 1, - "Freight": 55.09, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 15.8, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 16, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, "Discount": 0.25 - }, + } + ] + }, + { + "OrderID": 10770, + "EmployeeID": 8, + "OrderDate": "1997-12-09T00:00:00", + "RequiredDate": "1998-01-06T00:00:00", + "ShippedDate": "1997-12-17T00:00:00", + "ShipVia": 3, + "Freight": 5.32, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 21, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10261, + "OrderID": 10783, "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-30T00:00:00", + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", "ShipVia": 2, - "Freight": 3.05, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 124.98, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", "ShipCity": "Sao Paulo", "ShipRegion": "RJ", - "ShipPostalCode": 2389, + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 20, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 20, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10262, - "EmployeeID": 8, - "OrderDate": "1996-07-22T00:00:00", - "RequiredDate": "1996-08-19T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", - "ShipVia": 3, - "Freight": 48.29, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10886, + "EmployeeID": 1, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", + "ShipVia": 1, + "Freight": 4.99, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 15, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 2, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10263, - "EmployeeID": 9, - "OrderDate": "1996-07-23T00:00:00", - "RequiredDate": "1996-08-20T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", + "OrderID": 10903, + "EmployeeID": 3, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 3, - "Freight": 146.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 36.71, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 33000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10264, - "EmployeeID": 6, - "OrderDate": "1996-07-24T00:00:00", - "RequiredDate": "1996-08-21T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", + "OrderID": 10922, + "EmployeeID": 5, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", "ShipVia": 3, - "Freight": 3.67, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 27000, - "ShipCountry": "Sweden", + "Freight": 62.74, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 35, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10265, - "EmployeeID": 2, - "OrderDate": "1996-07-25T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", + "OrderID": 10925, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 1, - "Freight": 55.28, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 2.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10266, - "EmployeeID": 3, - "OrderDate": "1996-07-26T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", - "ShipVia": 3, - "Freight": 25.73, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10981, + "EmployeeID": 1, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 193.37, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10267, - "EmployeeID": 4, - "OrderDate": "1996-07-29T00:00:00", - "RequiredDate": "1996-08-26T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", - "ShipVia": 1, - "Freight": 208.58, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 11022, + "EmployeeID": 9, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10268, - "EmployeeID": 8, - "OrderDate": "1996-07-30T00:00:00", - "RequiredDate": "1996-08-27T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 3, - "Freight": 66.29, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", + "OrderID": 11052, + "EmployeeID": 3, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 67.26, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 10, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 4, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "WHITC", - "Company": "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": "VICTE", + "Company": "Victuailles en stock", + "ContactName": "Mary Saveley", + "ContactTitle": "Sales Agent", + "Address": "2, rue du Commerce", + "City": "Lyon", + "PostalCode": 69004, + "Country": "France", + "Phone": "78.32.54.86", + "Fax": "78.32.54.87", "Orders": [ { - "OrderID": 10269, - "EmployeeID": 5, - "OrderDate": "1996-07-31T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", + "OrderID": 10251, + "EmployeeID": 3, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", "ShipVia": 1, - "Freight": 4.56, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 41.34, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 15, "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10270, - "EmployeeID": 1, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 1, - "Freight": 136.54, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 30, - "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 25, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10271, - "EmployeeID": 6, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", + "OrderID": 10334, + "EmployeeID": 8, + "OrderDate": "1996-10-21T00:00:00", + "RequiredDate": "1996-11-18T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", "ShipVia": 2, - "Freight": 4.54, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 8.56, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 24, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10272, - "EmployeeID": 6, - "OrderDate": "1996-08-02T00:00:00", - "RequiredDate": "1996-08-30T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", + "OrderID": 10450, + "EmployeeID": 8, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-19T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", "ShipVia": 2, - "Freight": 98.03, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 7.23, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, "Quantity": 6, - "Discount": 0 + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10459, + "EmployeeID": 4, + "OrderDate": "1997-02-27T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 25.09, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0.06 }, { "ProductID": 72, "UnitPrice": 27.8, - "Quantity": 24, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10273, - "EmployeeID": 3, - "OrderDate": "1996-08-05T00:00:00", - "RequiredDate": "1996-09-02T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", + "OrderID": 10478, + "EmployeeID": 2, + "OrderDate": "1997-03-18T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-26T00:00:00", "ShipVia": 3, - "Freight": 76.07, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 4.81, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 10, "UnitPrice": 24.8, - "Quantity": 24, - "Discount": 0.06 - }, - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2, "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 60, - "Discount": 0.06 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 33, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10274, - "EmployeeID": 6, - "OrderDate": "1996-08-06T00:00:00", - "RequiredDate": "1996-09-03T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 1, - "Freight": 6.01, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, + "OrderID": 10546, + "EmployeeID": 1, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-05-27T00:00:00", + "ShipVia": 3, + "Freight": 194.72, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 20, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 7, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10275, - "EmployeeID": 1, - "OrderDate": "1996-08-07T00:00:00", - "RequiredDate": "1996-09-04T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", - "ShipVia": 1, - "Freight": 26.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10806, + "EmployeeID": 3, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 2, + "Freight": 22.11, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 6, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10276, - "EmployeeID": 8, - "OrderDate": "1996-08-08T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-14T00:00:00", - "ShipVia": 3, - "Freight": 13.84, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 15, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Fax": "0342-023177", - "Orders": [ + }, { - "OrderID": 10277, - "EmployeeID": 2, - "OrderDate": "1996-08-09T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-08-13T00:00:00", + "OrderID": 10814, + "EmployeeID": 3, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", "ShipVia": 3, - "Freight": 125.77, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 130.94, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, + "Discount": 0.16 + }, + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 8, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 14000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10278, - "EmployeeID": 8, - "OrderDate": "1996-08-12T00:00:00", - "RequiredDate": "1996-09-09T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", + "OrderID": 10843, + "EmployeeID": 4, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", "ShipVia": 2, - "Freight": 92.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "Freight": 9.26, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 16, - "Discount": 0 - }, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 4, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10850, + "EmployeeID": 1, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 49.19, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 15, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 8, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 4, + "Discount": 0.16 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10279, - "EmployeeID": 8, - "OrderDate": "1996-08-13T00:00:00", - "RequiredDate": "1996-09-10T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 2, - "Freight": 25.83, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 27000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "SUPRD", + "Company": "Suprêmes délices", + "ContactName": "Pascale Cartrain", + "ContactTitle": "Accounting Manager", + "Address": "Boulevard Tirou, 255", + "City": "Charleroi", + "PostalCode": 44000, + "Country": "Belgium", + "Phone": "(071) 23 67 22 20", + "Fax": "(071) 23 67 22 21", "Orders": [ { - "OrderID": 10280, - "EmployeeID": 2, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-09-11T00:00:00", - "ShippedDate": "1996-09-12T00:00:00", - "ShipVia": 1, - "Freight": 8.98, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", + "OrderID": 10252, + "EmployeeID": 4, + "OrderDate": "1996-07-09T00:00:00", + "RequiredDate": "1996-08-06T00:00:00", + "ShippedDate": "1996-07-11T00:00:00", + "ShipVia": 2, + "Freight": 51.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 22000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 20, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 25, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10281, + "OrderID": 10302, "EmployeeID": 4, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-08-28T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 2.94, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderDate": "1996-09-10T00:00:00", + "RequiredDate": "1996-10-08T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 20000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 1, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 6, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 12, "Discount": 0 } ] }, { - "OrderID": 10282, - "EmployeeID": 4, - "OrderDate": "1996-08-15T00:00:00", - "RequiredDate": "1996-09-12T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10458, + "EmployeeID": 7, + "OrderDate": "1997-02-26T00:00:00", + "RequiredDate": "1997-03-26T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 147.06, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 16000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 6, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10283, - "EmployeeID": 3, - "OrderDate": "1996-08-16T00:00:00", - "RequiredDate": "1996-09-13T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", - "ShipVia": 3, - "Freight": 84.81, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 15, - "UnitPrice": 12.4, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 35, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 3, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10284, - "EmployeeID": 4, - "OrderDate": "1996-08-19T00:00:00", - "RequiredDate": "1996-09-16T00:00:00", - "ShippedDate": "1996-08-27T00:00:00", - "ShipVia": 1, - "Freight": 76.56, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10463, + "EmployeeID": 5, + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-06T00:00:00", + "ShipVia": 3, + "Freight": 14.78, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 21000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 44, - "UnitPrice": 15.5, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 21, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 67, + "ProductID": 42, "UnitPrice": 11.2, - "Quantity": 5, - "Discount": 0.25 + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10285, - "EmployeeID": 1, - "OrderDate": "1996-08-20T00:00:00", - "RequiredDate": "1996-09-17T00:00:00", - "ShippedDate": "1996-08-26T00:00:00", - "ShipVia": 2, - "Freight": 76.83, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10475, + "EmployeeID": 9, + "OrderDate": "1997-03-14T00:00:00", + "RequiredDate": "1997-04-11T00:00:00", + "ShippedDate": "1997-04-04T00:00:00", + "ShipVia": 1, + "Freight": 68.52, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, + "Discount": 0.16 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 36, - "Discount": 0.2 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 42, + "Discount": 0.16 } ] }, { - "OrderID": 10286, - "EmployeeID": 8, - "OrderDate": "1996-08-21T00:00:00", - "RequiredDate": "1996-09-18T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", + "OrderID": 10767, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", "ShipVia": 3, - "Freight": 229.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 1.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 44000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 100, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10287, - "EmployeeID": 8, - "OrderDate": "1996-08-22T00:00:00", - "RequiredDate": "1996-09-19T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", - "ShipVia": 3, - "Freight": 12.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10841, + "EmployeeID": 5, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", + "ShipVia": 2, + "Freight": 424.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 27000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, "Quantity": 15, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10288, - "EmployeeID": 4, - "OrderDate": "1996-08-23T00:00:00", - "RequiredDate": "1996-09-20T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", - "ShipVia": 1, - "Freight": 7.45, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10846, + "EmployeeID": 2, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 56.46, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 15000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 22000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10289, - "EmployeeID": 7, - "OrderDate": "1996-08-26T00:00:00", - "RequiredDate": "1996-09-23T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", + "OrderID": 10885, + "EmployeeID": 6, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 3, - "Freight": 22.77, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "Freight": 5.64, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 40000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 8, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, "Quantity": 30, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 9, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 25, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10290, - "EmployeeID": 8, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", - "ShipVia": 1, - "Freight": 79.7, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderID": 10930, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 3, + "Freight": 15.55, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 17000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 15, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 15, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.2 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 11035, + "EmployeeID": 2, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 0.17, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 30000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10291, - "EmployeeID": 6, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-04T00:00:00", + "OrderID": 11038, + "EmployeeID": 1, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", "ShipVia": 2, - "Freight": 6.4, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 29.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 44000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, + "Discount": 0 } ] } ] }, { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10292, - "EmployeeID": 1, - "OrderDate": "1996-08-28T00:00:00", - "RequiredDate": "1996-09-25T00:00:00", - "ShippedDate": "1996-09-02T00:00:00", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", + "CustomerID": "CHOPS", + "Company": "Chop-suey Chinese", + "ContactName": "Yang Wang", "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", + "Address": "Hauptstr. 29", + "City": "Bern", + "PostalCode": 3012, + "Country": "Switzerland", + "Phone": "0452-076545", + "Fax": "0452-076546", "Orders": [ { - "OrderID": 10293, - "EmployeeID": 1, - "OrderDate": "1996-08-29T00:00:00", - "RequiredDate": "1996-09-26T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 3, - "Freight": 21.18, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10254, + "EmployeeID": 5, + "OrderDate": "1996-07-11T00:00:00", + "RequiredDate": "1996-08-08T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 2, + "Freight": 22.98, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 12, - "Discount": 0 - }, { "ProductID": 24, "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0 + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 5, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 21, + "Discount": 0.16 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10294, - "EmployeeID": 4, - "OrderDate": "1996-08-30T00:00:00", - "RequiredDate": "1996-09-27T00:00:00", - "ShippedDate": "1996-09-05T00:00:00", + "OrderID": 10370, + "EmployeeID": 6, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-27T00:00:00", "ShipVia": 2, - "Freight": 147.26, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 1.17, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { "ProductID": 1, "UnitPrice": 14.4, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, "Quantity": 15, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 21, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ - { - "OrderID": 10295, - "EmployeeID": 2, - "OrderDate": "1996-09-02T00:00:00", - "RequiredDate": "1996-09-30T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", - "ShipVia": 2, - "Freight": 1.15, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 4, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10296, + "OrderID": 10519, "EmployeeID": 6, - "OrderDate": "1996-09-03T00:00:00", - "RequiredDate": "1996-10-01T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 1, - "Freight": 0.12, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderDate": "1997-04-28T00:00:00", + "RequiredDate": "1997-05-26T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 91.76, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10297, - "EmployeeID": 5, - "OrderDate": "1996-09-04T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", - "ShipVia": 2, - "Freight": 5.74, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10731, + "EmployeeID": 7, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 1, + "Freight": 96.65, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10298, - "EmployeeID": 6, - "OrderDate": "1996-09-05T00:00:00", - "RequiredDate": "1996-10-03T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 2, - "Freight": 168.22, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10746, + "EmployeeID": 1, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 3, + "Freight": 31.43, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10299, + "OrderID": 10966, "EmployeeID": 4, - "OrderDate": "1996-09-06T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-13T00:00:00", - "ShipVia": 2, - "Freight": 29.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 27.19, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10300, - "EmployeeID": 2, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", - "ShipVia": 2, - "Freight": 17.68, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 11029, + "EmployeeID": 4, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 47.84, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10301, - "EmployeeID": 8, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", + "OrderID": 11041, + "EmployeeID": 3, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", "ShipVia": 2, - "Freight": 45.08, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 48.22, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 30, "Discount": 0 } ] @@ -2444,1691 +1796,1226 @@ ] }, { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 27000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", + "CustomerID": "RICSU", + "Company": "Richter Supermarkt", + "ContactName": "Michael Holz", + "ContactTitle": "Sales Manager", + "Address": "Grenzacherweg 237", + "City": "Genève", + "PostalCode": 1203, + "Country": "Switzerland", + "Phone": "0897-034214", + "Fax": "0897-034215", "Orders": [ { - "OrderID": 10302, - "EmployeeID": 4, - "OrderDate": "1996-09-10T00:00:00", - "RequiredDate": "1996-10-08T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 20000, - "ShipCountry": "Belgium", + "OrderID": 10255, + "EmployeeID": 9, + "OrderDate": "1996-07-12T00:00:00", + "RequiredDate": "1996-08-09T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", + "ShipVia": 3, + "Freight": 148.33, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 40, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 28, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 12, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10303, - "EmployeeID": 7, - "OrderDate": "1996-09-11T00:00:00", - "RequiredDate": "1996-10-09T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", + "OrderID": 10419, + "EmployeeID": 4, + "OrderDate": "1997-01-20T00:00:00", + "RequiredDate": "1997-02-17T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", "ShipVia": 2, - "Freight": 107.83, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 137.35, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10304, + "OrderID": 10537, "EmployeeID": 1, - "OrderDate": "1996-09-12T00:00:00", - "RequiredDate": "1996-10-10T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", - "ShipVia": 2, - "Freight": 63.79, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", + "ShipVia": 1, + "Freight": 78.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 10, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ - { - "OrderID": 10305, - "EmployeeID": 8, - "OrderDate": "1996-09-13T00:00:00", - "RequiredDate": "1996-10-11T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 3, - "Freight": 257.62, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10306, - "EmployeeID": 1, - "OrderDate": "1996-09-16T00:00:00", - "RequiredDate": "1996-10-14T00:00:00", - "ShippedDate": "1996-09-23T00:00:00", - "ShipVia": 3, - "Freight": 7.56, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10666, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", + "ShipVia": 2, + "Freight": 232.42, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, + "ProductID": 65, + "UnitPrice": 21.05, "Quantity": 10, "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 5, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10307, - "EmployeeID": 2, - "OrderDate": "1996-09-17T00:00:00", - "RequiredDate": "1996-10-15T00:00:00", - "ShippedDate": "1996-09-25T00:00:00", - "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10751, + "EmployeeID": 3, + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-12-03T00:00:00", + "ShipVia": 3, + "Freight": 130.79, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ - { - "OrderID": 10308, - "EmployeeID": 7, - "OrderDate": "1996-09-18T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-24T00:00:00", - "ShipVia": 3, - "Freight": 1.61, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 1, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 5, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10309, + "OrderID": 10758, "EmployeeID": 3, - "OrderDate": "1996-09-19T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", - "ShipVia": 1, - "Freight": 47.3, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-04T00:00:00", + "ShipVia": 3, + "Freight": 138.17, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, + "ProductID": 26, + "UnitPrice": 31.23, "Quantity": 20, "Discount": 0 }, { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 20, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 3, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10310, - "EmployeeID": 8, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-18T00:00:00", - "ShippedDate": "1996-09-27T00:00:00", + "OrderID": 10931, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 17.52, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "Freight": 13.6, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 10, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 42, + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 5, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10311, - "EmployeeID": 1, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-26T00:00:00", - "ShipVia": 3, - "Freight": 24.69, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10951, + "EmployeeID": 9, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 2, + "Freight": 30.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 11.2, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 6, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10312, - "EmployeeID": 2, - "OrderDate": "1996-09-23T00:00:00", - "RequiredDate": "1996-10-21T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", - "ShipVia": 2, - "Freight": 40.26, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 11033, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 84.74, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 4, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 24, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 36, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11075, + "EmployeeID": 8, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-05-03T00:00:00", + "ShipVia": 2, + "Freight": 6.19, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 20, - "Discount": 0 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "WELLI", + "Company": "Wellington Importadora", + "ContactName": "Paula Parente", + "ContactTitle": "Sales Manager", + "Address": "Rua do Mercado, 12", + "City": "Resende", + "Region": "SP", + "PostalCode": 8737, + "Country": "Brazil", + "Phone": "(14) 555-8122", + "Fax": "(14) 555-8123", "Orders": [ { - "OrderID": 10313, - "EmployeeID": 2, - "OrderDate": "1996-09-24T00:00:00", - "RequiredDate": "1996-10-22T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderID": 10256, + "EmployeeID": 3, + "OrderDate": "1996-07-15T00:00:00", + "RequiredDate": "1996-08-12T00:00:00", + "ShippedDate": "1996-07-17T00:00:00", "ShipVia": 2, - "Freight": 1.96, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 13.97, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10314, - "EmployeeID": 1, - "OrderDate": "1996-09-25T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", - "ShipVia": 2, - "Freight": 74.16, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10420, + "EmployeeID": 3, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 1, + "Freight": 44.12, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 40, + "ProductID": 9, + "UnitPrice": 77.6, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 2, "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 25, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 26000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10315, - "EmployeeID": 4, - "OrderDate": "1996-09-26T00:00:00", - "RequiredDate": "1996-10-24T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", + "OrderID": 10585, + "EmployeeID": 7, + "OrderDate": "1997-07-01T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", + "ShipVia": 1, + "Freight": 13.41, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10644, + "EmployeeID": 3, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", "ShipVia": 2, - "Freight": 41.76, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 80379, - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "Freight": 0.14, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 14, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 70, + "ProductID": 46, "UnitPrice": 12, - "Quantity": 30, - "Discount": 0 + "Quantity": 21, + "Discount": 0.1 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10316, - "EmployeeID": 1, - "OrderDate": "1996-09-27T00:00:00", - "RequiredDate": "1996-10-25T00:00:00", - "ShippedDate": "1996-10-08T00:00:00", - "ShipVia": 3, - "Freight": 150.15, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10803, + "EmployeeID": 4, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-06T00:00:00", + "ShipVia": 1, + "Freight": 55.23, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 24, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 70, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 15, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10317, - "EmployeeID": 6, - "OrderDate": "1996-09-30T00:00:00", - "RequiredDate": "1996-10-28T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", + "OrderID": 10809, + "EmployeeID": 7, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 4.87, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, + "ProductID": 52, + "UnitPrice": 7, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10318, - "EmployeeID": 8, - "OrderDate": "1996-10-01T00:00:00", - "RequiredDate": "1996-10-29T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderID": 10900, + "EmployeeID": 1, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 2, - "Freight": 4.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 30676, - "ShipPostalCode": 36000, - "ShipCountry": "UK", + "Freight": 1.66, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, - "Discount": 0 - }, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10905, + "EmployeeID": 9, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 13.72, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.06 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10319, - "EmployeeID": 7, - "OrderDate": "1996-10-02T00:00:00", - "RequiredDate": "1996-10-30T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", + "OrderID": 10935, + "EmployeeID": 4, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 3, - "Freight": 64.5, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 47.59, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 8, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 14, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 30, - "Discount": 0 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 8, + "Discount": 0.25 } ] } ] }, { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", + "CustomerID": "HILAA", + "Company": "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", "Orders": [ { - "OrderID": 10320, - "EmployeeID": 5, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-18T00:00:00", + "OrderID": 10257, + "EmployeeID": 4, + "OrderDate": "1996-07-16T00:00:00", + "RequiredDate": "1996-08-13T00:00:00", + "ShippedDate": "1996-07-22T00:00:00", "ShipVia": 3, - "Freight": 34.57, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 81.91, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10321, - "EmployeeID": 3, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-31T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", - "ShipVia": 2, - "Freight": 3.43, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 20137, - "ShipPostalCode": 41000, - "ShipCountry": "UK", + "OrderID": 10395, + "EmployeeID": 6, + "OrderDate": "1996-12-26T00:00:00", + "RequiredDate": "1997-01-23T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 1, + "Freight": 184.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 10, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 28, + "Discount": 0.1 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 70, + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10322, - "EmployeeID": 7, - "OrderDate": "1996-10-04T00:00:00", - "RequiredDate": "1996-11-01T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", + "OrderID": 10476, + "EmployeeID": 8, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", "ShipVia": 3, - "Freight": 0.4, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 4.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10323, - "EmployeeID": 4, - "OrderDate": "1996-10-07T00:00:00", - "RequiredDate": "1996-11-04T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 1, - "Freight": 4.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10486, + "EmployeeID": 1, + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "ShipVia": 2, + "Freight": 30.53, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 12.4, + "ProductID": 11, + "UnitPrice": 16.8, "Quantity": 5, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 4, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 16, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10324, - "EmployeeID": 9, - "OrderDate": "1996-10-08T00:00:00", - "RequiredDate": "1996-11-05T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", - "ShipVia": 1, - "Freight": 214.27, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10490, + "EmployeeID": 7, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-03T00:00:00", + "ShipVia": 2, + "Freight": 210.19, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.16 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 68, + "UnitPrice": 10, "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 80, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 36, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10325, - "EmployeeID": 1, - "OrderDate": "1996-10-09T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 3, - "Freight": 64.86, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10498, + "EmployeeID": 8, + "OrderDate": "1997-04-07T00:00:00", + "RequiredDate": "1997-05-05T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", + "ShipVia": 2, + "Freight": 29.75, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 9, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 4, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ + }, { - "OrderID": 10326, - "EmployeeID": 4, - "OrderDate": "1996-10-10T00:00:00", - "RequiredDate": "1996-11-07T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 2, - "Freight": 77.92, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", + "OrderID": 10552, + "EmployeeID": 2, + "OrderDate": "1997-05-29T00:00:00", + "RequiredDate": "1997-06-26T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 1, + "Freight": 83.22, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 16, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 18, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 50, + "UnitPrice": 7.75, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 43000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10327, - "EmployeeID": 2, - "OrderDate": "1996-10-11T00:00:00", - "RequiredDate": "1996-11-08T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", + "OrderID": 10601, + "EmployeeID": 7, + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", "ShipVia": 1, - "Freight": 63.36, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 17000, - "ShipCountry": "Sweden", + "Freight": 58.3, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10328, + "OrderID": 10613, "EmployeeID": 4, - "OrderDate": "1996-10-14T00:00:00", - "RequiredDate": "1996-11-11T00:00:00", - "ShippedDate": "1996-10-17T00:00:00", - "ShipVia": 3, - "Freight": 87.03, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 2, + "Freight": 8.11, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 40, "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10329, + "OrderID": 10641, "EmployeeID": 4, - "OrderDate": "1996-10-15T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", "ShipVia": 2, - "Freight": 191.67, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 179.61, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, - "Discount": 0.06 - }, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, + "Discount": 0 + } + ] + }, + { + "OrderID": 10705, + "EmployeeID": 9, + "OrderDate": "1997-10-15T00:00:00", + "RequiredDate": "1997-11-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 3.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 4, + "Discount": 0 + } + ] + }, { - "OrderID": 10330, + "OrderID": 10796, "EmployeeID": 3, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", "ShipVia": 1, - "Freight": 12.75, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, + "Freight": 26.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, "ShipCountry": "Venezuela", "OrderDetails": [ { "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 50, - "Discount": 0.16 + "UnitPrice": 31.23, + "Quantity": 21, + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10331, - "EmployeeID": 9, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-27T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", - "ShipVia": 1, - "Freight": 10.19, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 20000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10332, - "EmployeeID": 3, - "OrderDate": "1996-10-17T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", - "ShipVia": 2, - "Freight": 52.84, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 28000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 40, - "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 35, "Discount": 0.2 }, { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 16, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 24, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10333, - "EmployeeID": 5, - "OrderDate": "1996-10-18T00:00:00", - "RequiredDate": "1996-11-15T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", - "ShipVia": 3, - "Freight": 0.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10863, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 30.26, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10334, - "EmployeeID": 8, - "OrderDate": "1996-10-21T00:00:00", - "RequiredDate": "1996-11-18T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", - "ShipVia": 2, - "Freight": 8.56, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10901, + "EmployeeID": 4, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", + "ShipVia": 1, + "Freight": 62.09, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 8, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10335, - "EmployeeID": 7, - "OrderDate": "1996-10-22T00:00:00", - "RequiredDate": "1996-11-19T00:00:00", - "ShippedDate": "1996-10-24T00:00:00", - "ShipVia": 2, - "Freight": 42.11, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10957, + "EmployeeID": 8, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 105.36, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 7, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10960, + "EmployeeID": 3, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 2.08, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 48, - "Discount": 0.2 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10336, - "EmployeeID": 7, - "OrderDate": "1996-10-23T00:00:00", - "RequiredDate": "1996-11-20T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", - "ShipVia": 2, - "Freight": 15.51, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10976, + "EmployeeID": 1, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 1, + "Freight": 37.97, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10337, - "EmployeeID": 4, - "OrderDate": "1996-10-24T00:00:00", - "RequiredDate": "1996-11-21T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", - "ShipVia": 3, - "Freight": 108.26, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 11055, + "EmployeeID": 7, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", + "ShipVia": 2, + "Freight": 120.92, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 24, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, + "ProductID": 51, + "UnitPrice": 53, "Quantity": 20, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] @@ -4136,625 +3023,475 @@ ] }, { - "CustomerID": "OLDWO", - "Company": "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": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", "Orders": [ { - "OrderID": 10338, - "EmployeeID": 4, - "OrderDate": "1996-10-25T00:00:00", - "RequiredDate": "1996-11-22T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", - "ShipVia": 3, - "Freight": 84.21, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 20, - "Discount": 0 + "OrderID": 10258, + "EmployeeID": 1, + "OrderDate": "1996-07-17T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 1, + "Freight": 140.51, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 50, + "Discount": 0.2 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 15, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 65, + "Discount": 0.2 + }, + { + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 40000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10339, - "EmployeeID": 2, - "OrderDate": "1996-10-28T00:00:00", - "RequiredDate": "1996-11-25T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 15.66, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "OrderID": 10263, + "EmployeeID": 9, + "OrderDate": "1996-07-23T00:00:00", + "RequiredDate": "1996-08-20T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 146.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 10, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 28, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 36, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10340, + "OrderID": 10351, "EmployeeID": 1, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 166.31, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 162.33, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 20, "Discount": 0.06 }, { "ProductID": 41, "UnitPrice": 7.7, - "Quantity": 12, + "Quantity": 13, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 77, "Discount": 0.06 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 40, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 10, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10341, - "EmployeeID": 7, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", - "ShipVia": 3, - "Freight": 26.78, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10368, + "EmployeeID": 2, + "OrderDate": "1996-11-29T00:00:00", + "RequiredDate": "1996-12-27T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 101.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 8, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 13, + "Discount": 0.1 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10342, + "OrderID": 10382, "EmployeeID": 4, - "OrderDate": "1996-10-30T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 54.83, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 24, - "Discount": 0.2 + "OrderDate": "1996-12-13T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1996-12-16T00:00:00", + "ShipVia": 1, + "Freight": 94.77, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 32, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 56, - "Discount": 0.2 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10343, - "EmployeeID": 4, - "OrderDate": "1996-10-31T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-11-06T00:00:00", + "OrderID": 10390, + "EmployeeID": 6, + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-26T00:00:00", "ShipVia": 1, - "Freight": 110.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 126.38, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 68, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 4, - "Discount": 0.06 + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 76, + "ProductID": 35, "UnitPrice": 14.4, - "Quantity": 15, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 45, "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10344, - "EmployeeID": 4, - "OrderDate": "1996-11-01T00:00:00", - "RequiredDate": "1996-11-29T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", + "OrderID": 10402, + "EmployeeID": 8, + "OrderDate": "1997-01-02T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", "ShipVia": 2, - "Freight": 23.29, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 67.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 35, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 65, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10345, - "EmployeeID": 2, - "OrderDate": "1996-11-04T00:00:00", - "RequiredDate": "1996-12-02T00:00:00", - "ShippedDate": "1996-11-11T00:00:00", - "ShipVia": 2, - "Freight": 249.06, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10430, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-03T00:00:00", + "ShipVia": 1, + "Freight": 458.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 80, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 9, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10346, + "OrderID": 10442, "EmployeeID": 3, - "OrderDate": "1996-11-05T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 142.08, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderDate": "1997-02-11T00:00:00", + "RequiredDate": "1997-03-11T00:00:00", + "ShippedDate": "1997-02-18T00:00:00", + "ShipVia": 2, + "Freight": 47.94, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 36, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 80, + "Discount": 0 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10347, - "EmployeeID": 4, - "OrderDate": "1996-11-06T00:00:00", - "RequiredDate": "1996-12-04T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 3.1, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10514, + "EmployeeID": 3, + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 2, + "Freight": 789.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 39, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 4, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 39, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0.16 + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10348, - "EmployeeID": 4, - "OrderDate": "1996-11-07T00:00:00", - "RequiredDate": "1996-12-05T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", - "ShipVia": 2, - "Freight": 0.78, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10571, + "EmployeeID": 8, + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 3, + "Freight": 26.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 11, "Discount": 0.16 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 25, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10349, - "EmployeeID": 7, - "OrderDate": "1996-11-08T00:00:00", - "RequiredDate": "1996-12-06T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", + "OrderID": 10595, + "EmployeeID": 2, + "OrderDate": "1997-07-10T00:00:00", + "RequiredDate": "1997-08-07T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", "ShipVia": 1, - "Freight": 8.63, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 96.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10350, - "EmployeeID": 6, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", - "ShipVia": 2, - "Freight": 64.19, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.25 + }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 120, + "Discount": 0.25 }, { "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 18, - "Discount": 0.1 + "UnitPrice": 36, + "Quantity": 65, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10351, - "EmployeeID": 1, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 162.33, + "OrderID": 10633, + "EmployeeID": 7, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-18T00:00:00", + "ShipVia": 3, + "Freight": 477.9, "ShipName": "Ernst Handel", "ShipAddress": "Kirchgasse 6", "ShipCity": "Graz", @@ -4762,1247 +3499,992 @@ "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 13, + "UnitPrice": 6, "Quantity": 13, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 77, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 80, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10352, - "EmployeeID": 3, - "OrderDate": "1996-11-12T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-18T00:00:00", - "ShipVia": 3, - "Freight": 1.3, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10667, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 78.09, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 14, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10353, - "EmployeeID": 7, - "OrderDate": "1996-11-13T00:00:00", - "RequiredDate": "1996-12-11T00:00:00", - "ShippedDate": "1996-11-25T00:00:00", - "ShipVia": 3, - "Freight": 360.63, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, + "OrderID": 10698, + "EmployeeID": 4, + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-17T00:00:00", + "ShipVia": 1, + "Freight": 272.47, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 11, - "UnitPrice": 16.8, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.06 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 12, - "Discount": 0.2 + "Discount": 0.06 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 65, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 8, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10354, - "EmployeeID": 8, - "OrderDate": "1996-11-14T00:00:00", - "RequiredDate": "1996-12-12T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", + "OrderID": 10764, + "EmployeeID": 6, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", "ShipVia": 3, - "Freight": 53.8, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 145.45, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 4, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 130, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 12000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10355, - "EmployeeID": 6, - "OrderDate": "1996-11-15T00:00:00", - "RequiredDate": "1996-12-13T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 41.95, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 31000, - "ShipCountry": "UK", + "OrderID": 10771, + "EmployeeID": 9, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 2, + "Freight": 11.19, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10356, - "EmployeeID": 6, - "OrderDate": "1996-11-18T00:00:00", - "RequiredDate": "1996-12-16T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 2, - "Freight": 36.71, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10773, + "EmployeeID": 1, + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1998-01-08T00:00:00", + "ShippedDate": "1997-12-16T00:00:00", + "ShipVia": 3, + "Freight": 96.43, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 33, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 12, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 70, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 7, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10357, + "OrderID": 10776, "EmployeeID": 1, - "OrderDate": "1996-11-19T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1998-01-12T00:00:00", + "ShippedDate": "1997-12-18T00:00:00", "ShipVia": 3, - "Freight": 34.88, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 351.53, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 16, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 8, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10358, - "EmployeeID": 5, - "OrderDate": "1996-11-20T00:00:00", - "RequiredDate": "1996-12-18T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 1, - "Freight": 19.64, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 12, "Discount": 0.06 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 27, "Discount": 0.06 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 120, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10359, - "EmployeeID": 5, - "OrderDate": "1996-11-21T00:00:00", - "RequiredDate": "1996-12-19T00:00:00", - "ShippedDate": "1996-11-26T00:00:00", - "ShipVia": 3, - "Freight": 288.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 43000, - "ShipCountry": "UK", + "OrderID": 10795, + "EmployeeID": 8, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-20T00:00:00", + "ShipVia": 2, + "Freight": 126.66, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 56, - "Discount": 0.06 - }, - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 70, - "Discount": 0.06 + "UnitPrice": 17.45, + "Quantity": 65, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10360, - "EmployeeID": 4, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 3, - "Freight": 131.7, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10836, + "EmployeeID": 7, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 1, + "Freight": 411.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 52, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 35, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 10, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 35, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 28, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10361, - "EmployeeID": 1, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", + "OrderID": 10854, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-05T00:00:00", "ShipVia": 2, - "Freight": 183.17, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 100.22, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 54, - "Discount": 0.1 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 100, + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 55, - "Discount": 0.1 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 65, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10362, + "OrderID": 10895, "EmployeeID": 3, - "OrderDate": "1996-11-25T00:00:00", - "RequiredDate": "1996-12-23T00:00:00", - "ShippedDate": "1996-11-28T00:00:00", + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 1, - "Freight": 96.04, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 162.75, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 50, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 110, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 20, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 91, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 100, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10363, - "EmployeeID": 4, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1996-12-24T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", + "OrderID": 10968, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-01T00:00:00", "ShipVia": 3, - "Freight": 30.54, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 74.6, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 12, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 12, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 46000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10364, - "EmployeeID": 1, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", - "ShipVia": 1, - "Freight": 71.97, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 10000, - "ShipCountry": "UK", + "OrderID": 10979, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-03-31T00:00:00", + "ShipVia": 2, + "Freight": 353.07, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 30, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 5, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10365, - "EmployeeID": 3, - "OrderDate": "1996-11-27T00:00:00", - "RequiredDate": "1996-12-25T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 2, - "Freight": 22, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 24, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 80, "Discount": 0 - } - ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ - { - "OrderID": 10366, - "EmployeeID": 8, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1996-12-30T00:00:00", - "ShipVia": 2, - "Freight": 10.14, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", - "OrderDetails": [ + }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 5, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10367, - "EmployeeID": 7, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1996-12-26T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 10990, + "EmployeeID": 2, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", "ShipVia": 3, - "Freight": 13.55, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 117.61, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 36, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 65, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 18, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 60, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 65, + "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 66, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10368, - "EmployeeID": 2, - "OrderDate": "1996-11-29T00:00:00", - "RequiredDate": "1996-12-27T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 2, - "Freight": 101.95, + "OrderID": 11008, + "EmployeeID": 7, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-05-09T00:00:00", + "ShipVia": 3, + "Freight": 79.46, "ShipName": "Ernst Handel", "ShipAddress": "Kirchgasse 6", "ShipCity": "Graz", "ShipPostalCode": 8010, "ShipCountry": "Austria", "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 5, - "Discount": 0.1 - }, { "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 13, - "Discount": 0.1 + "UnitPrice": 45.6, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 90, + "Discount": 0.06 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 21, + "Discount": 0 + } + ] + }, { - "OrderID": 10369, - "EmployeeID": 8, - "OrderDate": "1996-12-02T00:00:00", - "RequiredDate": "1996-12-30T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", + "OrderID": 11017, + "EmployeeID": 9, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 2, - "Freight": 195.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 754.26, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 20, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 110, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10370, - "EmployeeID": 6, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-27T00:00:00", + "OrderID": 11072, + "EmployeeID": 4, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-08-02T00:00:00", "ShipVia": 2, - "Freight": 1.17, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 258.64, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 22, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 130, + "Discount": 0 } ] } - ], - "Fax": "0452-076545" + ] }, { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", + "CustomerID": "CENTC", + "Company": "Centro comercial Moctezuma", + "ContactName": "Francisco Chang", + "ContactTitle": "Marketing Manager", + "Address": "Sierras de Granada 9993", + "City": "México D.F.", + "PostalCode": 5022, + "Country": "Mexico", + "Phone": "(5) 555-3392", + "Fax": "(5) 555-7293", "Orders": [ { - "OrderID": 10371, - "EmployeeID": 1, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", - "ShipVia": 1, - "Freight": 0.45, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10259, + "EmployeeID": 4, + "OrderDate": "1996-07-18T00:00:00", + "RequiredDate": "1996-08-15T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", + "ShipVia": 3, + "Freight": 3.25, + "ShipName": "Centro comercial Moctezuma", + "ShipAddress": "Sierras de Granada 9993", + "ShipCity": "México D.F.", + "ShipPostalCode": 5022, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 1, + "Discount": 0 } ] } ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", + "CustomerID": "OTTIK", + "Company": "Ottilies Käseladen", + "ContactName": "Henriette Pfalzheim", + "ContactTitle": "Owner", + "Address": "Mehrheimerstr. 369", + "City": "Köln", + "PostalCode": 50739, + "Country": "Germany", + "Phone": "0221-0644327", + "Fax": "0221-0765721", "Orders": [ { - "OrderID": 10372, - "EmployeeID": 5, - "OrderDate": "1996-12-04T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 2, - "Freight": 890.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10260, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-29T00:00:00", + "ShipVia": 1, + "Freight": 55.09, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 12, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 16, "Discount": 0.25 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 70, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, "Discount": 0.25 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 42, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 21, "Discount": 0.25 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10373, - "EmployeeID": 4, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-11T00:00:00", - "ShipVia": 3, - "Freight": 124.12, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10407, + "EmployeeID": 2, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-04T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", + "ShipVia": 2, + "Freight": 91.48, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 80, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10374, - "EmployeeID": 1, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 3, - "Freight": 3.94, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 10.6, + "ProductID": 71, + "UnitPrice": 17.2, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10375, - "EmployeeID": 3, - "OrderDate": "1996-12-06T00:00:00", - "RequiredDate": "1997-01-03T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", + "OrderID": 10508, + "EmployeeID": 1, + "OrderDate": "1997-04-16T00:00:00", + "RequiredDate": "1997-05-14T00:00:00", + "ShippedDate": "1997-05-13T00:00:00", "ShipVia": 2, - "Freight": 20.12, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "Freight": 4.99, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, + "ProductID": 39, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 10000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10376, - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 2, - "Freight": 20.39, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 39000, - "ShipCountry": "Canada", + "OrderID": 10554, + "EmployeeID": 4, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 3, + "Freight": 120.97, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 42, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 11000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10377, - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 22.21, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", - "OrderDetails": [ + }, { - "ProductID": 28, - "UnitPrice": 36.4, + "ProductID": 23, + "UnitPrice": 9, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.06 }, { - "ProductID": 39, - "UnitPrice": 14.4, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 13000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10378, - "EmployeeID": 5, - "OrderDate": "1996-12-10T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-19T00:00:00", + "OrderID": 10580, + "EmployeeID": 4, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-01T00:00:00", "ShipVia": 3, - "Freight": 5.44, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 49000, - "ShipCountry": "Sweden", + "Freight": 75.89, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 6, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 30, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10684, + "EmployeeID": 3, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 1, + "Freight": 145.63, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10766, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 157.55, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10833, + "EmployeeID": 6, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 2, + "Freight": 71.49, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 9, + "Discount": 0.1 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 9, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10999, + "EmployeeID": 6, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-01T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 96.35, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 21, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 11020, + "EmployeeID": 2, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 2, + "Freight": 43.3, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 24, + "Discount": 0.16 } ] } @@ -6022,13 +4504,13 @@ "Fax": "(21) 555-4545", "Orders": [ { - "OrderID": 10379, - "EmployeeID": 2, - "OrderDate": "1996-12-11T00:00:00", - "RequiredDate": "1997-01-08T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 1, - "Freight": 45.03, + "OrderID": 10261, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-30T00:00:00", + "ShipVia": 2, + "Freight": 3.05, "ShipName": "Que Delícia", "ShipAddress": "Rua da Panificadora, 12", "ShipCity": "Sao Paulo", @@ -6037,1063 +4519,811 @@ "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 16, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 35, + "UnitPrice": 14.4, "Quantity": 20, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10380, - "EmployeeID": 8, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", - "ShipVia": 3, - "Freight": 35.03, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10291, + "EmployeeID": 6, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-04T00:00:00", + "ShipVia": 2, + "Freight": 6.4, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, + "ProductID": 13, + "UnitPrice": 4.8, "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 6, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 24, "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10381, - "EmployeeID": 3, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", + "OrderID": 10379, + "EmployeeID": 2, + "OrderDate": "1996-12-11T00:00:00", + "RequiredDate": "1997-01-08T00:00:00", "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 7.99, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "ShipVia": 1, + "Freight": 45.03, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 14, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 16, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10382, - "EmployeeID": 4, - "OrderDate": "1996-12-13T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1996-12-16T00:00:00", + "OrderID": 10421, + "EmployeeID": 8, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-03-04T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", "ShipVia": 1, - "Freight": 94.77, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 99.23, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 32, - "Discount": 0 - }, - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 9, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 4, + "Discount": 0.16 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 14, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 50, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 31000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10383, - "EmployeeID": 8, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-18T00:00:00", - "ShipVia": 3, - "Freight": 34.24, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 19000, - "ShipCountry": "UK", + "OrderID": 10587, + "EmployeeID": 1, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 1, + "Freight": 62.52, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, + "ProductID": 77, + "UnitPrice": 13, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 18000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10384, - "EmployeeID": 3, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 3, - "Freight": 168.64, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "OrderID": 10647, + "EmployeeID": 4, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 2, + "Freight": 45.54, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 28, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 15, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10385, - "EmployeeID": 1, - "OrderDate": "1996-12-17T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1996-12-23T00:00:00", + "OrderID": 10720, + "EmployeeID": 8, + "OrderDate": "1997-10-28T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 30.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 9.53, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10794, + "EmployeeID": 6, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 1, + "Freight": 21.49, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10386, - "EmployeeID": 9, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-25T00:00:00", - "ShipVia": 3, - "Freight": 13.99, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", + "OrderID": 10989, + "EmployeeID": 2, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 34.76, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 11, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, "Discount": 0 } ] } - ], - "Fax": "(11) 555-9857" + ] }, { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", + "ContactTitle": "Sales Associate", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", "Orders": [ { - "OrderID": 10387, - "EmployeeID": 1, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-15T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 2, - "Freight": 93.63, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10262, + "EmployeeID": 8, + "OrderDate": "1996-07-22T00:00:00", + "RequiredDate": "1996-08-19T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", + "ShipVia": 3, + "Freight": 48.29, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 17000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10388, - "EmployeeID": 2, - "OrderDate": "1996-12-19T00:00:00", - "RequiredDate": "1997-01-16T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 1, - "Freight": 34.86, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 43000, - "ShipCountry": "UK", + "OrderID": 10272, + "EmployeeID": 6, + "OrderDate": "1996-08-02T00:00:00", + "RequiredDate": "1996-08-30T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", + "ShipVia": 2, + "Freight": 98.03, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 7.6, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 40, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 14000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10389, + "OrderID": 10294, "EmployeeID": 4, - "OrderDate": "1996-12-20T00:00:00", - "RequiredDate": "1997-01-17T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", + "OrderDate": "1996-08-30T00:00:00", + "RequiredDate": "1996-09-27T00:00:00", + "ShippedDate": "1996-09-05T00:00:00", "ShipVia": 2, - "Freight": 47.42, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 28000, - "ShipCountry": "Canada", + "Freight": 147.26, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 16, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, + "ProductID": 17, + "UnitPrice": 31.2, "Quantity": 15, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 20, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10390, - "EmployeeID": 6, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-26T00:00:00", - "ShipVia": 1, - "Freight": 126.38, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10314, + "EmployeeID": 1, + "OrderDate": "1996-09-25T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 74.16, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0.1 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 32, + "UnitPrice": 25.6, "Quantity": 40, "Discount": 0.1 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 45, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 24, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 25, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10391, - "EmployeeID": 3, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-31T00:00:00", + "OrderID": 10316, + "EmployeeID": 1, + "OrderDate": "1996-09-27T00:00:00", + "RequiredDate": "1996-10-25T00:00:00", + "ShippedDate": "1996-10-08T00:00:00", "ShipVia": 3, - "Freight": 5.45, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 150.15, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 18, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 70, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10392, - "EmployeeID": 2, - "OrderDate": "1996-12-24T00:00:00", - "RequiredDate": "1997-01-21T00:00:00", - "ShippedDate": "1997-01-01T00:00:00", + "OrderID": 10346, + "EmployeeID": 3, + "OrderDate": "1996-11-05T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", "ShipVia": 3, - "Freight": 122.46, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 142.08, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 50, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10393, + "OrderID": 10401, "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 3, - "Freight": 126.56, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", + "ShipVia": 1, + "Freight": 12.51, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 42, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 7, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 70, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 32, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10394, - "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", + "OrderID": 10479, + "EmployeeID": 3, + "OrderDate": "1997-03-19T00:00:00", + "RequiredDate": "1997-04-16T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", "ShipVia": 3, - "Freight": 30.34, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "Freight": 708.95, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10395, - "EmployeeID": 6, - "OrderDate": "1996-12-26T00:00:00", - "RequiredDate": "1997-01-23T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 1, - "Freight": 184.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10564, + "EmployeeID": 4, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-08T00:00:00", + "ShippedDate": "1997-06-16T00:00:00", + "ShipVia": 3, + "Freight": 13.75, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 70, - "Discount": 0.1 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 8, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10396, + "OrderID": 10569, + "EmployeeID": 5, + "OrderDate": "1997-06-16T00:00:00", + "RequiredDate": "1997-07-14T00:00:00", + "ShippedDate": "1997-07-11T00:00:00", + "ShipVia": 1, + "Freight": 58.98, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10598, "EmployeeID": 1, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1997-01-06T00:00:00", + "OrderDate": "1997-07-14T00:00:00", + "RequiredDate": "1997-08-11T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", "ShipVia": 3, - "Freight": 135.35, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 44.42, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 50, "Discount": 0 }, { "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 21, + "UnitPrice": 21.5, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10397, + "OrderID": 10761, "EmployeeID": 5, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-24T00:00:00", - "ShippedDate": "1997-01-02T00:00:00", - "ShipVia": 1, - "Freight": 60.26, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 2, + "Freight": 18.66, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 42.4, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 18, - "Discount": 0.16 + "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10398, - "EmployeeID": 2, - "OrderDate": "1996-12-30T00:00:00", - "RequiredDate": "1997-01-27T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 89.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "OrderID": 10820, + "EmployeeID": 3, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 37.52, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 30, "Discount": 0 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10399, + "OrderID": 10852, "EmployeeID": 8, - "OrderDate": "1996-12-31T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", - "ShipVia": 3, - "Freight": 27.36, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 174.05, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 35, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 14, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10400, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderID": 10889, + "EmployeeID": 9, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 3, - "Freight": 83.93, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 25000, - "ShipCountry": "UK", + "Freight": 280.61, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 35, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10401, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", - "ShipVia": 1, - "Freight": 12.51, + "OrderID": 10988, + "EmployeeID": 3, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 61.14, "ShipName": "Rattlesnake Canyon Grocery", "ShipAddress": "2817 Milton Dr.", "ShipCity": "Albuquerque", @@ -7102,341 +5332,217 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 70, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11000, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 3, + "Freight": 55.12, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10402, - "EmployeeID": 8, - "OrderDate": "1997-01-02T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", + "OrderID": 11077, + "EmployeeID": 1, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-07-03T00:00:00", "ShipVia": 2, - "Freight": 67.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 8.53, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 60, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 24, + "Discount": 0.2 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 65, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 4, "Discount": 0 - } - ] - }, - { - "OrderID": 10403, - "EmployeeID": 4, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 73.79, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ + }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 1, + "Discount": 0 }, { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 70, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10404, - "EmployeeID": 2, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", - "ShipVia": 1, - "Freight": 155.97, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 1, + "Discount": 0.02 + }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 1, "Discount": 0.06 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 2, + "Discount": 0.1 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10405, - "EmployeeID": 1, - "OrderDate": "1997-01-06T00:00:00", - "RequiredDate": "1997-02-03T00:00:00", - "ShippedDate": "1997-01-22T00:00:00", - "ShipVia": 1, - "Freight": 34.82, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 50, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 1, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10406, - "EmployeeID": 7, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-13T00:00:00", - "ShipVia": 1, - "Freight": 108.04, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ + }, { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 10, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 1, + "Discount": 0.04 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 42, - "Discount": 0.1 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 2, + "Discount": 0.04 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 5, - "Discount": 0.1 + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 1, + "Discount": 0.04 }, { - "ProductID": 40, - "UnitPrice": 14.7, + "ProductID": 23, + "UnitPrice": 9, "Quantity": 2, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10407, - "EmployeeID": 2, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-04T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", - "ShipVia": 2, - "Freight": 91.48, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ + "Discount": 0 + }, { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 3, + "Discount": 0.02 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ - { - "OrderID": 10408, - "EmployeeID": 8, - "OrderDate": "1997-01-08T00:00:00", - "RequiredDate": "1997-02-05T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", - "ShipVia": 1, - "Freight": 11.26, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", - "OrderDetails": [ + }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 10, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 2, + "Discount": 0.04 + }, + { + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 2, + "Discount": 0.0099999998 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, "Discount": 0 } ] @@ -7444,1232 +5550,851 @@ ] }, { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ - { - "OrderID": 10409, - "EmployeeID": 3, - "OrderDate": "1997-01-09T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", - "ShipVia": 1, - "Freight": 29.83, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 43000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 33000, + "Country": "Sweden", + "Phone": "0695-34 67 21", + "Fax": "0695-34 67 22", "Orders": [ { - "OrderID": 10410, - "EmployeeID": 3, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", + "OrderID": 10264, + "EmployeeID": 6, + "OrderDate": "1996-07-24T00:00:00", + "RequiredDate": "1996-08-21T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", "ShipVia": 3, - "Freight": 2.4, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "Freight": 3.67, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 27000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 49, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 16, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 25, + "Discount": 0.16 } ] }, { - "OrderID": 10411, - "EmployeeID": 9, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-21T00:00:00", - "ShipVia": 3, - "Freight": 23.65, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10327, + "EmployeeID": 2, + "OrderDate": "1996-10-11T00:00:00", + "RequiredDate": "1996-11-08T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 63.36, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 17000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 25, "Discount": 0.2 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 40, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 50, "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10412, - "EmployeeID": 8, - "OrderDate": "1997-01-13T00:00:00", - "RequiredDate": "1997-02-10T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", - "ShipVia": 2, - "Freight": 3.77, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10378, + "EmployeeID": 5, + "OrderDate": "1996-12-10T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-19T00:00:00", + "ShipVia": 3, + "Freight": 5.44, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 49000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10413, + "OrderID": 10434, "EmployeeID": 3, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-02-13T00:00:00", "ShipVia": 2, - "Freight": 95.66, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 17.92, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 23000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0 }, { "ProductID": 76, "UnitPrice": 14.4, - "Quantity": 14, - "Discount": 0 + "Quantity": 18, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10414, - "EmployeeID": 2, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-17T00:00:00", - "ShipVia": 3, - "Freight": 21.48, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10460, + "EmployeeID": 8, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 1, + "Freight": 16.27, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 40000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 21, + "Discount": 0.25 }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 4, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10533, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-22T00:00:00", + "ShipVia": 1, + "Freight": 188.04, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 45000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 24, + "Discount": 0.06 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10415, - "EmployeeID": 3, - "OrderDate": "1997-01-15T00:00:00", - "RequiredDate": "1997-02-12T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", - "ShipVia": 1, - "Freight": 0.2, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "OrderID": 10561, + "EmployeeID": 2, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 2, + "Freight": 242.21, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 23000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 2, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10416, - "EmployeeID": 8, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 3, - "Freight": 22.72, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10703, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-10-20T00:00:00", + "ShipVia": 2, + "Freight": 152.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 28000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 20, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 10, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 20, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10417, - "EmployeeID": 4, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-28T00:00:00", - "ShipVia": 3, - "Freight": 70.29, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10762, + "EmployeeID": 3, + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 328.74, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 44000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 35, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10418, + "OrderID": 10774, "EmployeeID": 4, - "OrderDate": "1997-01-17T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", "ShipVia": 1, - "Freight": 17.55, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 48.2, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 55, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 16, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 2, + "Discount": 0.25 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 15, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10419, - "EmployeeID": 4, - "OrderDate": "1997-01-20T00:00:00", - "RequiredDate": "1997-02-17T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", - "ShipVia": 2, - "Freight": 137.35, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10824, + "EmployeeID": 8, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 1.23, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 39000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10420, - "EmployeeID": 3, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10880, + "EmployeeID": 7, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 1, - "Freight": 44.12, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 88.01, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 15000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 77.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.2 }, { "ProductID": 70, - "UnitPrice": 12, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.1 + "UnitPrice": 15, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10421, - "EmployeeID": 8, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-03-04T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10902, + "EmployeeID": 1, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", "ShipVia": 1, - "Freight": 99.23, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 44.15, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 11000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 4, - "Discount": 0.16 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 10, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 6, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10422, - "EmployeeID": 2, - "OrderDate": "1997-01-22T00:00:00", - "RequiredDate": "1997-02-19T00:00:00", - "ShippedDate": "1997-01-31T00:00:00", - "ShipVia": 1, - "Freight": 3.02, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10955, + "EmployeeID": 8, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 20000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 2, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10423, - "EmployeeID": 6, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", + "OrderID": 10977, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 3, - "Freight": 24.5, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 208.5, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 14, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 30000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10424, - "EmployeeID": 7, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-20T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 2, - "Freight": 370.61, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 22000, - "ShipCountry": "Canada", + "OrderID": 10980, + "EmployeeID": 4, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 1, + "Freight": 1.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0.2 - }, - { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 49, - "Discount": 0.2 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10425, - "EmployeeID": 6, - "OrderDate": "1997-01-24T00:00:00", - "RequiredDate": "1997-02-21T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 7.93, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10993, + "EmployeeID": 7, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 3, + "Freight": 8.81, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 50, "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 20, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10426, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-02-06T00:00:00", - "ShipVia": 1, - "Freight": 18.69, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 11001, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 2, + "Freight": 197.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 30000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 7, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10427, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 11050, + "EmployeeID": 8, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", "ShipVia": 2, - "Freight": 31.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 59.41, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 11000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 35, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", + "CustomerID": "BLONP", + "Company": "Blondesddsl père et fils", + "ContactName": "Frédérique Citeaux", + "ContactTitle": "Marketing Manager", + "Address": "24, place Kléber", + "City": "Strasbourg", + "PostalCode": 67000, + "Country": "France", + "Phone": "88.60.15.31", + "Fax": "88.60.15.32", "Orders": [ { - "OrderID": 10428, - "EmployeeID": 7, - "OrderDate": "1997-01-28T00:00:00", - "RequiredDate": "1997-02-25T00:00:00", - "ShippedDate": "1997-02-04T00:00:00", + "OrderID": 10265, + "EmployeeID": 2, + "OrderDate": "1996-07-25T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", "ShipVia": 1, - "Freight": 11.09, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 55.28, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10429, - "EmployeeID": 3, - "OrderDate": "1997-01-29T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderID": 10297, + "EmployeeID": 5, + "OrderDate": "1996-09-04T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", "ShipVia": 2, - "Freight": 56.63, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 5.74, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 40, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10430, + "OrderID": 10360, "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-03T00:00:00", - "ShipVia": 1, - "Freight": 458.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 131.7, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 50, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.2 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 28, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 47000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10431, - "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderID": 10436, + "EmployeeID": 3, + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-11T00:00:00", "ShipVia": 2, - "Freight": 44.17, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 49000, - "ShipCountry": "Canada", + "Freight": 156.66, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 47, - "UnitPrice": 7.6, + "ProductID": 64, + "UnitPrice": 26.6, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.1 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 24, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10432, + "OrderID": 10449, "EmployeeID": 3, - "OrderDate": "1997-01-31T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderDate": "1997-02-18T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-27T00:00:00", "ShipVia": 2, - "Freight": 4.34, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 53.3, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 10, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 40, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ - { - "OrderID": 10433, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", - "ShipVia": 3, - "Freight": 73.83, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", - "OrderDetails": [ + }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 28, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 23000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10434, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-02-13T00:00:00", - "ShipVia": 2, - "Freight": 17.92, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 23000, - "ShipCountry": "Sweden", + "OrderID": 10559, + "EmployeeID": 6, + "OrderDate": "1997-06-05T00:00:00", + "RequiredDate": "1997-07-03T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 1, + "Freight": 8.05, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 76, - "UnitPrice": 14.4, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 18, - "Discount": 0.16 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 38000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ + }, { - "OrderID": 10435, - "EmployeeID": 8, - "OrderDate": "1997-02-04T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", - "ShipVia": 2, - "Freight": 9.21, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "OrderID": 10566, + "EmployeeID": 9, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", + "ShipVia": 1, + "Freight": 88.4, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 10, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 18, + "Discount": 0.16 }, { - "ProductID": 72, - "UnitPrice": 27.8, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10436, - "EmployeeID": 3, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-11T00:00:00", - "ShipVia": 2, - "Freight": 156.66, + "OrderID": 10584, + "EmployeeID": 4, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 1, + "Freight": 59.14, "ShipName": "Blondel père et fils", "ShipAddress": "24, place Kléber", "ShipCity": "Strasbourg", @@ -8677,28 +6402,82 @@ "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10628, + "EmployeeID": 4, + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 30.36, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10679, + "EmployeeID": 8, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 27.94, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 40, - "Discount": 0.1 - }, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10826, + "EmployeeID": 6, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 1, + "Freight": 7.09, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, + "Discount": 0 } ] } @@ -8717,13 +6496,13 @@ "Fax": "981-443655", "Orders": [ { - "OrderID": 10437, - "EmployeeID": 8, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-12T00:00:00", - "ShipVia": 1, - "Freight": 19.97, + "OrderID": 10266, + "EmployeeID": 3, + "OrderDate": "1996-07-26T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 25.73, "ShipName": "Wartian Herkku", "ShipAddress": "Torikatu 38", "ShipCity": "Oulu", @@ -8731,669 +6510,449 @@ "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 12, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10438, - "EmployeeID": 3, - "OrderDate": "1997-02-06T00:00:00", - "RequiredDate": "1997-03-06T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 8.24, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "OrderID": 10270, + "EmployeeID": 1, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 1, + "Freight": 136.54, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 37000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10439, - "EmployeeID": 6, - "OrderDate": "1997-02-07T00:00:00", - "RequiredDate": "1997-03-07T00:00:00", - "ShippedDate": "1997-02-10T00:00:00", + "OrderID": 10320, + "EmployeeID": 5, + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-18T00:00:00", "ShipVia": 3, - "Freight": 4.07, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "Freight": 34.57, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 16, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10440, - "EmployeeID": 4, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-10T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 86.53, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10333, + "EmployeeID": 5, + "OrderDate": "1996-10-18T00:00:00", + "RequiredDate": "1996-11-15T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", + "ShipVia": 3, + "Freight": 0.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 45, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 49, - "Discount": 0.16 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 90, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 40, + "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10441, - "EmployeeID": 3, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-24T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10412, + "EmployeeID": 8, + "OrderDate": "1997-01-13T00:00:00", + "RequiredDate": "1997-02-10T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", "ShipVia": 2, - "Freight": 73.02, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 3.77, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 50, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10442, - "EmployeeID": 3, - "OrderDate": "1997-02-11T00:00:00", - "RequiredDate": "1997-03-11T00:00:00", - "ShippedDate": "1997-02-18T00:00:00", - "ShipVia": 2, - "Freight": 47.94, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10416, + "EmployeeID": 8, + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 3, + "Freight": 22.72, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 80, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 60, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10443, + "OrderID": 10437, "EmployeeID": 8, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-12T00:00:00", "ShipVia": 1, - "Freight": 13.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 19.97, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.2 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 12, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 15000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10444, - "EmployeeID": 3, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-21T00:00:00", - "ShipVia": 3, - "Freight": 3.5, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 22000, - "ShipCountry": "Sweden", + "OrderID": 10455, + "EmployeeID": 8, + "OrderDate": "1997-02-24T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 2, + "Freight": 180.45, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 15, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 8, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 71, + "UnitPrice": 17.2, "Quantity": 30, "Discount": 0 } ] }, { - "OrderID": 10445, - "EmployeeID": 3, - "OrderDate": "1997-02-13T00:00:00", - "RequiredDate": "1997-03-13T00:00:00", - "ShippedDate": "1997-02-20T00:00:00", - "ShipVia": 1, - "Freight": 9.3, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 18000, - "ShipCountry": "Sweden", + "OrderID": 10526, + "EmployeeID": 4, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-15T00:00:00", + "ShipVia": 2, + "Freight": 58.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0.16 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10446, - "EmployeeID": 6, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-02-19T00:00:00", - "ShipVia": 1, - "Freight": 14.68, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "OrderID": 10553, + "EmployeeID": 2, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-03T00:00:00", + "ShipVia": 2, + "Freight": 149.49, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 12, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 24, + "Discount": 0 }, { "ProductID": 31, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "UnitPrice": 12.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10447, - "EmployeeID": 4, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-03-07T00:00:00", + "OrderID": 10583, + "EmployeeID": 2, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 2, - "Freight": 68.66, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 7.28, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 40, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 35, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10448, + "OrderID": 10636, "EmployeeID": 4, - "OrderDate": "1997-02-17T00:00:00", - "RequiredDate": "1997-03-17T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", - "ShipVia": 2, - "Freight": 38.82, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 1.15, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 6, - "Discount": 0 - }, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0 + }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10449, - "EmployeeID": 3, - "OrderDate": "1997-02-18T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-27T00:00:00", - "ShipVia": 2, - "Freight": 53.3, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10750, + "EmployeeID": 9, + "OrderDate": "1997-11-21T00:00:00", + "RequiredDate": "1997-12-19T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 79.3, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 14, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 5, + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10450, - "EmployeeID": 8, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-19T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", - "ShipVia": 2, - "Freight": 7.23, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10781, + "EmployeeID": 2, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 3, + "Freight": 73.16, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0.2 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10451, - "EmployeeID": 4, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", + "OrderID": 11025, + "EmployeeID": 6, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", "ShipVia": 3, - "Freight": 189.09, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 29.17, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 - }, - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 28, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 55, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0.1 } ] @@ -9401,783 +6960,619 @@ ] }, { - "CustomerID": "SAVEA", - "Company": "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", + "CustomerID": "FRANK", + "Company": "Frankenversand", + "ContactName": "Peter Franken", + "ContactTitle": "Marketing Manager", + "Address": "Berliner Platz 43", + "City": "München", + "PostalCode": 80805, + "Country": "Germany", + "Phone": "089-0877310", + "Fax": "089-0877451", "Orders": [ { - "OrderID": 10452, - "EmployeeID": 8, - "OrderDate": "1997-02-20T00:00:00", - "RequiredDate": "1997-03-20T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", + "OrderID": 10267, + "EmployeeID": 4, + "OrderDate": "1996-07-29T00:00:00", + "RequiredDate": "1996-08-26T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", "ShipVia": 1, - "Freight": 140.26, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 208.58, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 100, - "Discount": 0.06 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 46000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10453, - "EmployeeID": 1, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", - "ShipVia": 2, - "Freight": 25.36, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 40000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10454, + "OrderID": 10337, "EmployeeID": 4, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-25T00:00:00", + "OrderDate": "1996-10-24T00:00:00", + "RequiredDate": "1996-11-21T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", "ShipVia": 3, - "Freight": 2.74, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 108.26, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10455, - "EmployeeID": 8, - "OrderDate": "1997-02-24T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 10342, + "EmployeeID": 4, + "OrderDate": "1996-10-30T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", "ShipVia": 2, - "Freight": 180.45, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 54.83, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 24, + "Discount": 0.2 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 50, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 56, + "Discount": 0.2 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 25, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10456, - "EmployeeID": 8, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 8.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10396, + "EmployeeID": 1, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1997-01-06T00:00:00", + "ShipVia": 3, + "Freight": 135.35, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 23, + "UnitPrice": 7.2, "Quantity": 40, - "Discount": 0.16 + "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, "Quantity": 21, - "Discount": 0.16 + "Discount": 0 } ] }, { - "OrderID": 10457, - "EmployeeID": 2, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-03-25T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", - "ShipVia": 1, - "Freight": 11.57, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10488, + "EmployeeID": 8, + "OrderDate": "1997-03-27T00:00:00", + "RequiredDate": "1997-04-24T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 59, "UnitPrice": 44, - "Quantity": 36, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0.2 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 45000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10458, - "EmployeeID": 7, - "OrderDate": "1997-02-26T00:00:00", - "RequiredDate": "1997-03-26T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", - "ShipVia": 3, - "Freight": 147.06, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 16000, - "ShipCountry": "Belgium", + "OrderID": 10560, + "EmployeeID": 8, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 1, + "Freight": 36.65, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, + "ProductID": 30, + "UnitPrice": 25.89, "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0 + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10459, - "EmployeeID": 4, - "OrderDate": "1997-02-27T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", + "OrderID": 10623, + "EmployeeID": 8, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", "ShipVia": 2, - "Freight": 25.09, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 97.18, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 3, "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 19000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10460, - "EmployeeID": 8, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 10653, + "EmployeeID": 1, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", "ShipVia": 1, - "Freight": 16.27, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 40000, - "ShipCountry": "Sweden", + "Freight": 93.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10461, - "EmployeeID": 1, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-05T00:00:00", - "ShipVia": 3, - "Freight": 148.61, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10670, + "EmployeeID": 4, + "OrderDate": "1997-09-16T00:00:00", + "RequiredDate": "1997-10-14T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 1, + "Freight": 203.48, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 32, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 28, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 60, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 38000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ - { - "OrderID": 10462, - "EmployeeID": 2, - "OrderDate": "1997-03-03T00:00:00", - "RequiredDate": "1997-03-31T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 1, - "Freight": 6.17, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 50000, - "ShipCountry": "UK", - "OrderDetails": [ + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 25, + "Discount": 0 + }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 1, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 21, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 34000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10463, + "OrderID": 10675, "EmployeeID": 5, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-06T00:00:00", - "ShipVia": 3, - "Freight": 14.78, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 21000, - "ShipCountry": "Belgium", + "OrderDate": "1997-09-19T00:00:00", + "RequiredDate": "1997-10-17T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", + "ShipVia": 2, + "Freight": 31.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 21, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 50, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10464, - "EmployeeID": 4, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10717, + "EmployeeID": 1, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 2, - "Freight": 89, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 59.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 16, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 32, + "Discount": 0.06 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 3, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 25, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10791, + "EmployeeID": 6, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-01T00:00:00", + "ShipVia": 2, + "Freight": 16.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 14, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 27.2, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10465, + "OrderID": 10859, "EmployeeID": 1, - "OrderDate": "1997-03-05T00:00:00", - "RequiredDate": "1997-04-02T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 3, - "Freight": 145.04, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 76.1, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0 + "UnitPrice": 4.5, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 45, - "UnitPrice": 7.6, + "ProductID": 64, + "UnitPrice": 33.25, "Quantity": 30, - "Discount": 0.1 + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10929, + "EmployeeID": 6, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 1, + "Freight": 33.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 50, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 77, "UnitPrice": 13, - "Quantity": 25, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10466, - "EmployeeID": 4, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-13T00:00:00", - "ShipVia": 1, - "Freight": 11.93, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderID": 11012, + "EmployeeID": 1, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 3, + "Freight": 242.95, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 36, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.06 } ] } - ], - "Fax": "(11) 555-7647" + ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "GROSR", + "Company": "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", "Orders": [ { - "OrderID": 10467, + "OrderID": 10268, "EmployeeID": 8, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderDate": "1996-07-30T00:00:00", + "RequiredDate": "1996-08-27T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 3, + "Freight": 66.29, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 12, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10468, - "EmployeeID": 3, - "OrderDate": "1997-03-07T00:00:00", - "RequiredDate": "1997-04-04T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", + "OrderID": 10785, + "EmployeeID": 1, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", "ShipVia": 3, - "Freight": 44.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 1.51, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 15, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 10, "Discount": 0 } ] } - ], - "Fax": "0555-09876" + ] }, { "CustomerID": "WHITC", @@ -10193,13 +7588,13 @@ "Fax": "(206) 555-4115", "Orders": [ { - "OrderID": 10469, - "EmployeeID": 1, - "OrderDate": "1997-03-10T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10269, + "EmployeeID": 5, + "OrderDate": "1996-07-31T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", "ShipVia": 1, - "Freight": 60.18, + "Freight": 4.56, "ShipName": "White Clover Markets", "ShipAddress": "1029 - 12th Ave. S.", "ShipCity": "Seattle", @@ -10208,525 +7603,464 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10470, + "OrderID": 10344, "EmployeeID": 4, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderDate": "1996-11-01T00:00:00", + "RequiredDate": "1996-11-29T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", "ShipVia": 2, - "Freight": 64.56, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 23.29, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 15, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 8, - "Discount": 0 + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10471, - "EmployeeID": 2, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 3, - "Freight": 45.59, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 25000, - "ShipCountry": "UK", + "OrderID": 10469, + "EmployeeID": 1, + "OrderDate": "1997-03-10T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 1, + "Freight": 60.18, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 2, + "Discount": 0.16 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 25000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10472, - "EmployeeID": 8, - "OrderDate": "1997-03-12T00:00:00", - "RequiredDate": "1997-04-09T00:00:00", - "ShippedDate": "1997-03-19T00:00:00", - "ShipVia": 1, - "Freight": 4.2, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 21000, - "ShipCountry": "UK", + "OrderID": 10483, + "EmployeeID": 7, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-25T00:00:00", + "ShipVia": 2, + "Freight": 15.28, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 80, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 35, "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 18, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10473, - "EmployeeID": 1, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", + "OrderID": 10504, + "EmployeeID": 4, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-18T00:00:00", "ShipVia": 3, - "Freight": 16.37, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 90698, - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "Freight": 59.13, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 12, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 12, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10474, - "EmployeeID": 5, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-04-10T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 2, - "Freight": 83.49, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 18.6, + "ProductID": 21, + "UnitPrice": 10, "Quantity": 12, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 18, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 21, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 25, "Discount": 0 + } + ] + }, + { + "OrderID": 10596, + "EmployeeID": 8, + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", + "ShipVia": 1, + "Freight": 16.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0.2 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 24, + "Discount": 0.2 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0 + "UnitPrice": 7.75, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 45000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10475, - "EmployeeID": 9, - "OrderDate": "1997-03-14T00:00:00", - "RequiredDate": "1997-04-11T00:00:00", - "ShippedDate": "1997-04-04T00:00:00", - "ShipVia": 1, - "Freight": 68.52, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", + "OrderID": 10693, + "EmployeeID": 3, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-10-10T00:00:00", + "ShipVia": 3, + "Freight": 139.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 13.6, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 60, "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 42, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10476, + "OrderID": 10696, "EmployeeID": 8, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", "ShipVia": 3, - "Freight": 4.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 102.55, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 2, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 70, + "ProductID": 46, "UnitPrice": 12, - "Quantity": 12, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10477, - "EmployeeID": 5, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", - "ShipVia": 2, - "Freight": 13.02, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10723, + "EmployeeID": 3, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-11-27T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", + "ShipVia": 1, + "Freight": 21.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, + "ProductID": 26, + "UnitPrice": 31.23, "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10740, + "EmployeeID": 4, + "OrderDate": "1997-11-13T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", + "ShipVia": 2, + "Freight": 81.88, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, + "Discount": 0.2 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10478, - "EmployeeID": 2, - "OrderDate": "1997-03-18T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-26T00:00:00", - "ShipVia": 3, - "Freight": 4.81, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10861, + "EmployeeID": 4, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-02-27T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 14.93, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 42, + "Discount": 0 + }, + { + "ProductID": 18, + "UnitPrice": 62.5, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10479, + "OrderID": 10904, "EmployeeID": 3, - "OrderDate": "1997-03-19T00:00:00", - "RequiredDate": "1997-04-16T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", "ShipVia": 3, - "Freight": 708.95, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, + "Freight": 162.95, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 30, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 28, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 35, + "Discount": 0 + } + ] + }, + { + "OrderID": 11032, + "EmployeeID": 2, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 606.19, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10480, - "EmployeeID": 6, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", + "OrderID": 11066, + "EmployeeID": 7, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 44.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 30, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 42, + "Discount": 0 + }, + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 35, "Discount": 0 } ] @@ -10734,413 +8068,287 @@ ] }, { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", + "CustomerID": "SPLIR", + "Company": "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", "Orders": [ { - "OrderID": 10481, - "EmployeeID": 8, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", + "OrderID": 10271, + "EmployeeID": 6, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-30T00:00:00", "ShipVia": 2, - "Freight": 64.33, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 4.54, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 33, + "UnitPrice": 2, "Quantity": 24, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10482, - "EmployeeID": 1, - "OrderDate": "1997-03-21T00:00:00", - "RequiredDate": "1997-04-18T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 7.48, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, + "OrderID": 10329, + "EmployeeID": 4, + "OrderDate": "1996-10-15T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 2, + "Freight": 191.67, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ - { - "OrderID": 10483, - "EmployeeID": 7, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-25T00:00:00", - "ShipVia": 2, - "Freight": 15.28, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", - "OrderDetails": [ + "Discount": 0.06 + }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 35, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, "Discount": 0.06 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 12, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 45000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10484, - "EmployeeID": 3, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-01T00:00:00", - "ShipVia": 3, - "Freight": 6.88, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10349, + "EmployeeID": 7, + "OrderDate": "1996-11-08T00:00:00", + "RequiredDate": "1996-12-06T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 1, + "Freight": 8.63, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 14, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10369, + "EmployeeID": 8, + "OrderDate": "1996-12-02T00:00:00", + "RequiredDate": "1996-12-30T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 195.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 3, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 18, + "Discount": 0.25 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10485, - "EmployeeID": 4, - "OrderDate": "1997-03-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-31T00:00:00", + "OrderID": 10385, + "EmployeeID": 1, + "OrderDate": "1996-12-17T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1996-12-23T00:00:00", "ShipVia": 2, - "Freight": 64.45, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 30.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 3, - "UnitPrice": 8, + "ProductID": 60, + "UnitPrice": 27.2, "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 30, - "Discount": 0.1 + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10486, - "EmployeeID": 1, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", + "OrderID": 10432, + "EmployeeID": 3, + "OrderDate": "1997-01-31T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", "ShipVia": 2, - "Freight": 30.53, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 4.34, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 25, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 16, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10487, - "EmployeeID": 2, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-03-28T00:00:00", + "OrderID": 10756, + "EmployeeID": 8, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-02T00:00:00", "ShipVia": 2, - "Freight": 71.07, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 73.21, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 5, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 21, + "Discount": 0.2 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.2 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.2 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10488, - "EmployeeID": 8, - "OrderDate": "1997-03-27T00:00:00", - "RequiredDate": "1997-04-24T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10821, + "EmployeeID": 1, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-15T00:00:00", + "ShipVia": 1, + "Freight": 36.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10489, - "EmployeeID": 6, - "OrderDate": "1997-03-28T00:00:00", - "RequiredDate": "1997-04-25T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 5.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10974, + "EmployeeID": 3, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 12.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 18, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 10, "Discount": 0 } ] @@ -11148,1159 +8356,813 @@ ] }, { - "CustomerID": "HILAA", - "Company": "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": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Fax": "0372-035189", "Orders": [ { - "OrderID": 10490, - "EmployeeID": 7, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-03T00:00:00", - "ShipVia": 2, - "Freight": 210.19, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10273, + "EmployeeID": 3, + "OrderDate": "1996-08-05T00:00:00", + "RequiredDate": "1996-09-02T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", + "ShipVia": 3, + "Freight": 76.07, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 24, + "Discount": 0.06 }, { - "ProductID": 68, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 36, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 33, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10491, - "EmployeeID": 8, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-08T00:00:00", - "ShipVia": 3, - "Freight": 16.96, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10285, + "EmployeeID": 1, + "OrderDate": "1996-08-20T00:00:00", + "RequiredDate": "1996-09-17T00:00:00", + "ShippedDate": "1996-08-26T00:00:00", + "ShipVia": 2, + "Freight": 76.83, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0.16 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 36, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 10000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10492, - "EmployeeID": 3, - "OrderDate": "1997-04-01T00:00:00", - "RequiredDate": "1997-04-29T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 1, - "Freight": 62.89, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderID": 10313, + "EmployeeID": 2, + "OrderDate": "1996-09-24T00:00:00", + "RequiredDate": "1996-10-22T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 1.96, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10345, + "EmployeeID": 2, + "OrderDate": "1996-11-04T00:00:00", + "RequiredDate": "1996-12-02T00:00:00", + "ShippedDate": "1996-11-11T00:00:00", + "ShipVia": 2, + "Freight": 249.06, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 80, + "Discount": 0 }, { "ProductID": 42, "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.06 + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10493, - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 10.64, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10361, + "EmployeeID": 1, + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 183.17, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 54, "Discount": 0.1 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 55, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10494, + "OrderID": 10418, "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 65.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderDate": "1997-01-17T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "ShipVia": 1, + "Freight": 17.55, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 60, "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 19000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ - { - "OrderID": 10495, - "EmployeeID": 3, - "OrderDate": "1997-04-03T00:00:00", - "RequiredDate": "1997-05-01T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 3, - "Freight": 4.65, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 20000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 10, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10496, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 2, - "Freight": 46.77, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10497, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 1, - "Freight": 36.21, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "OrderID": 10451, + "EmployeeID": 4, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 189.09, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 14, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 120, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 28, + "Discount": 0.1 }, { "ProductID": 77, "UnitPrice": 10.4, - "Quantity": 25, - "Discount": 0 + "Quantity": 55, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10498, - "EmployeeID": 8, - "OrderDate": "1997-04-07T00:00:00", - "RequiredDate": "1997-05-05T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 2, - "Freight": 29.75, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10515, + "EmployeeID": 2, + "OrderDate": "1997-04-23T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 1, + "Freight": 204.47, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 14, + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 16, + "Discount": 0.16 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 120, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10499, - "EmployeeID": 4, - "OrderDate": "1997-04-08T00:00:00", - "RequiredDate": "1997-05-06T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 102.02, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, + "Discount": 0.16 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 84, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10500, - "EmployeeID": 6, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-17T00:00:00", + "OrderID": 10527, + "EmployeeID": 7, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", "ShipVia": 1, - "Freight": 42.68, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 41.9, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10501, - "EmployeeID": 9, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", + "OrderID": 10540, + "EmployeeID": 3, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", "ShipVia": 3, - "Freight": 8.85, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, + "Freight": 1007.64, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10502, - "EmployeeID": 2, - "OrderDate": "1997-04-10T00:00:00", - "RequiredDate": "1997-05-08T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 69.32, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 21, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10503, - "EmployeeID": 6, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 16.74, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10549, + "EmployeeID": 5, + "OrderDate": "1997-05-27T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 171.24, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 70, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 55, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 100, + "Discount": 0.16 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 48, + "Discount": 0.16 + } + ] + }, { - "OrderID": 10504, - "EmployeeID": 4, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-18T00:00:00", + "OrderID": 10588, + "EmployeeID": 2, + "OrderDate": "1997-07-03T00:00:00", + "RequiredDate": "1997-07-31T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", "ShipVia": 3, - "Freight": 59.13, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 194.67, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 40, + "Discount": 0.2 }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 100, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10658, + "EmployeeID": 4, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 1, + "Freight": 364.15, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { "ProductID": 21, "UnitPrice": 10, - "Quantity": 12, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 25, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 55, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 70, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 21000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10505, - "EmployeeID": 3, - "OrderDate": "1997-04-14T00:00:00", - "RequiredDate": "1997-05-12T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 7.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 33000, - "ShipCountry": "Canada", + "OrderID": 10691, + "EmployeeID": 2, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-10-22T00:00:00", + "ShipVia": 2, + "Freight": 810.05, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 24, + "Discount": 0 + }, { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 3, + "Quantity": 48, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10506, - "EmployeeID": 9, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 21.19, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10694, + "EmployeeID": 8, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-11-03T00:00:00", + "ShippedDate": "1997-10-09T00:00:00", + "ShipVia": 3, + "Freight": 398.36, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 90, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 }, { "ProductID": 70, "UnitPrice": 15, - "Quantity": 14, - "Discount": 0.1 + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10507, - "EmployeeID": 7, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-04-22T00:00:00", - "ShipVia": 1, - "Freight": 47.45, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 15, - "Discount": 0.16 - }, + "OrderID": 10721, + "EmployeeID": 5, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-11-26T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", + "ShipVia": 3, + "Freight": 48.92, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 50, + "Discount": 0.06 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10508, - "EmployeeID": 1, - "OrderDate": "1997-04-16T00:00:00", - "RequiredDate": "1997-05-14T00:00:00", - "ShippedDate": "1997-05-13T00:00:00", - "ShipVia": 2, - "Freight": 4.99, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, + "OrderID": 10745, + "EmployeeID": 9, + "OrderDate": "1997-11-18T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 1, + "Freight": 3.52, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 7, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10509, - "EmployeeID": 4, - "OrderDate": "1997-04-17T00:00:00", - "RequiredDate": "1997-05-15T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 0.15, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, + "OrderID": 10765, + "EmployeeID": 3, + "OrderDate": "1997-12-04T00:00:00", + "RequiredDate": "1998-01-01T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 3, + "Freight": 42.74, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 80, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10510, - "EmployeeID": 6, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", - "ShipVia": 3, - "Freight": 367.63, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10788, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 42.7, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 36, - "Discount": 0.1 + "Quantity": 40, + "Discount": 0.06 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10511, - "EmployeeID": 4, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 350.64, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10845, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 212.98, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10512, - "EmployeeID": 7, - "OrderDate": "1997-04-21T00:00:00", - "RequiredDate": "1997-05-19T00:00:00", - "ShippedDate": "1997-04-24T00:00:00", - "ShipVia": 2, - "Freight": 3.53, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.16 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 9, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 42, + "Discount": 0.1 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 48, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10513, - "EmployeeID": 7, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-06-03T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", + "OrderID": 10865, + "EmployeeID": 2, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", "ShipVia": 1, - "Freight": 105.65, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, + "Freight": 348.14, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.2 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10514, - "EmployeeID": 3, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", - "ShipVia": 2, - "Freight": 789.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10878, + "EmployeeID": 4, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 46.69, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 20, "UnitPrice": 81, - "Quantity": 39, - "Discount": 0 - }, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10938, + "EmployeeID": 3, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 31.89, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 35, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 70, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0.25 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 39, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 49, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10515, - "EmployeeID": 2, - "OrderDate": "1997-04-23T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 1, - "Freight": 204.47, + "OrderID": 10962, + "EmployeeID": 8, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 275.79, "ShipName": "QUICK-Stop", "ShipAddress": "Taucherstraße 10", "ShipCity": "Cunewalde", @@ -12308,131 +9170,135 @@ "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 16, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, + "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 77, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 120, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0.16 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 84, - "Discount": 0.16 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 44, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10516, - "EmployeeID": 2, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 62.78, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10991, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 1, + "Freight": 38.51, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.2 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 80, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 20, + "Discount": 0.2 }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 90, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10996, + "EmployeeID": 4, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 1.12, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { "ProductID": 42, "UnitPrice": 14, - "Quantity": 20, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 13000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ + }, { - "OrderID": 10517, + "OrderID": 11021, "EmployeeID": 3, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 3, - "Freight": 32.07, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 19000, - "ShipCountry": "UK", + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 1, + "Freight": 297.18, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 11, + "Discount": 0.25 + }, + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 4, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 63, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 44, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, "Discount": 0 } ] @@ -12440,347 +9306,299 @@ ] }, { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", + "CustomerID": "MAGAA", + "Company": "Magazzini Alimentari Riuniti", + "ContactName": "Giovanni Rovelli", + "ContactTitle": "Marketing Manager", + "Address": "Via Ludovico il Moro 22", + "City": "Bergamo", + "PostalCode": 24100, + "Country": "Italy", + "Phone": "035-640230", + "Fax": "035-640231", "Orders": [ { - "OrderID": 10518, - "EmployeeID": 4, - "OrderDate": "1997-04-25T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-05-05T00:00:00", - "ShipVia": 2, - "Freight": 218.15, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10275, + "EmployeeID": 1, + "OrderDate": "1996-08-07T00:00:00", + "RequiredDate": "1996-09-04T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", + "ShipVia": 1, + "Freight": 26.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 6, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10300, + "EmployeeID": 2, + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 17.68, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 9, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10519, - "EmployeeID": 6, - "OrderDate": "1997-04-28T00:00:00", - "RequiredDate": "1997-05-26T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 91.76, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10404, + "EmployeeID": 2, + "OrderDate": "1997-01-03T00:00:00", + "RequiredDate": "1997-01-31T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", + "ShipVia": 1, + "Freight": 155.97, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 42, + "UnitPrice": 11.2, "Quantity": 40, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10520, - "EmployeeID": 7, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 1, - "Freight": 13.37, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10467, + "EmployeeID": 8, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 8, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 5, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10521, + "OrderID": 10635, "EmployeeID": 8, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 17.22, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-08-18T00:00:00", + "RequiredDate": "1997-09-15T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 47.46, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10522, - "EmployeeID": 4, - "OrderDate": "1997-04-30T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-06T00:00:00", - "ShipVia": 1, - "Freight": 45.33, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10754, + "EmployeeID": 6, + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 3, + "Freight": 2.38, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.2 - }, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10784, + "EmployeeID": 4, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 70.09, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 24, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 10000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10523, + "OrderID": 10818, "EmployeeID": 7, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 2, - "Freight": 77.63, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 16000, - "ShipCountry": "UK", + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", + "ShipVia": 3, + "Freight": 65.48, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0.1 + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 37000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10524, - "EmployeeID": 1, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", + "OrderID": 10939, + "EmployeeID": 2, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 2, - "Freight": 244.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 12000, - "ShipCountry": "Sweden", + "Freight": 76.33, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 10, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 60, - "Discount": 0 - }, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10950, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-13T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 2.5, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 5, "Discount": 0 } ] @@ -12788,1370 +9606,1092 @@ ] }, { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", + "CustomerID": "TORTU", + "Company": "Tortuga Restaurante", + "ContactName": "Miguel Angel Paolino", "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", + "Address": "Avda. Azteca 123", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 555-2933", + "Fax": "(5) 555-2934", "Orders": [ { - "OrderID": 10525, - "EmployeeID": 1, - "OrderDate": "1997-05-02T00:00:00", - "RequiredDate": "1997-05-30T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 11.06, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10276, + "EmployeeID": 8, + "OrderDate": "1996-08-08T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-14T00:00:00", + "ShipVia": 3, + "Freight": 13.84, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10526, - "EmployeeID": 4, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-15T00:00:00", - "ShipVia": 2, - "Freight": 58.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10293, + "EmployeeID": 1, + "OrderDate": "1996-08-29T00:00:00", + "RequiredDate": "1996-09-26T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", + "ShipVia": 3, + "Freight": 21.18, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 24, + "UnitPrice": 3.6, "Quantity": 10, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10527, - "EmployeeID": 7, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", - "ShipVia": 1, - "Freight": 41.9, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.1 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10528, - "EmployeeID": 6, - "OrderDate": "1997-05-06T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", + "OrderID": 10304, + "EmployeeID": 1, + "OrderDate": "1996-09-12T00:00:00", + "RequiredDate": "1996-10-10T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", "ShipVia": 2, - "Freight": 3.35, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 63.79, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 3, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 9, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 11000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10529, - "EmployeeID": 5, - "OrderDate": "1997-05-07T00:00:00", - "RequiredDate": "1997-06-04T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", - "ShipVia": 2, - "Freight": 66.69, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 26000, - "ShipCountry": "Belgium", + "OrderID": 10319, + "EmployeeID": 7, + "OrderDate": "1996-10-02T00:00:00", + "RequiredDate": "1996-10-30T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 3, + "Freight": 64.5, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 14, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10530, - "EmployeeID": 3, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", + "OrderID": 10518, + "EmployeeID": 4, + "OrderDate": "1997-04-25T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-05-05T00:00:00", "ShipVia": 2, - "Freight": 339.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 218.15, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 25, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 10576, + "EmployeeID": 3, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", + "ShipVia": 3, + "Freight": 18.56, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 20, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10531, - "EmployeeID": 7, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", - "ShipVia": 1, - "Freight": 8.12, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10676, + "EmployeeID": 2, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-29T00:00:00", + "ShipVia": 2, + "Freight": 2.01, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 2, "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10532, - "EmployeeID": 7, - "OrderDate": "1997-05-09T00:00:00", - "RequiredDate": "1997-06-06T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", + "OrderID": 10842, + "EmployeeID": 1, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 3, - "Freight": 74.46, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 23000, - "ShipCountry": "UK", + "Freight": 54.42, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 11, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 24, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 5, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 21000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10533, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-22T00:00:00", - "ShipVia": 1, - "Freight": 188.04, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 45000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 73, + "ProductID": 70, "UnitPrice": 15, - "Quantity": 24, - "Discount": 0.06 + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10534, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-14T00:00:00", + "OrderID": 10915, + "EmployeeID": 2, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", "ShipVia": 2, - "Freight": 27.94, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 3.51, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 17, + "UnitPrice": 39, "Quantity": 10, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 54, "UnitPrice": 7.45, "Quantity": 10, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10535, - "EmployeeID": 4, - "OrderDate": "1997-05-13T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-21T00:00:00", - "ShipVia": 1, - "Freight": 15.64, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", + "OrderID": 11069, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 15.67, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", "ShipCity": "México D.F.", - "ShipPostalCode": 5023, + "ShipPostalCode": 5033, "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 } ] } - ], - "Fax": "(5) 555-3932" + ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, + "CustomerID": "MORGK", + "Company": "Morgenstern Gesundkost", + "ContactName": "Alexander Feuer", + "ContactTitle": "Marketing Assistant", + "Address": "Heerstr. 22", + "City": "Leipzig", + "PostalCode": 4179, "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "Phone": "0342-023176", + "Fax": "0342-023177", "Orders": [ { - "OrderID": 10536, - "EmployeeID": 3, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-06-11T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 2, - "Freight": 58.88, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "OrderID": 10277, + "EmployeeID": 2, + "OrderDate": "1996-08-09T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-08-13T00:00:00", + "ShipVia": 3, + "Freight": 125.77, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 20, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 12, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, - "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10537, - "EmployeeID": 1, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", + "OrderID": 10575, + "EmployeeID": 5, + "OrderDate": "1997-06-20T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 1, - "Freight": 78.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 127.34, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 6, "Discount": 0 }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 20, - "Discount": 0 - }, { "ProductID": 72, "UnitPrice": 34.8, - "Quantity": 21, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 9, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 44000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10538, - "EmployeeID": 9, - "OrderDate": "1997-05-15T00:00:00", - "RequiredDate": "1997-06-12T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", + "OrderID": 10699, + "EmployeeID": 3, + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", "ShipVia": 3, - "Freight": 4.87, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 27000, - "ShipCountry": "UK", + "Freight": 0.58, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 1, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 12, "Discount": 0 } ] }, { - "OrderID": 10539, - "EmployeeID": 6, - "OrderDate": "1997-05-16T00:00:00", - "RequiredDate": "1997-06-13T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 3, - "Freight": 12.36, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 39000, - "ShipCountry": "UK", + "OrderID": 10779, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 2, + "Freight": 58.13, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 8, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10945, + "EmployeeID": 4, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-04-09T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 10.22, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 6, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 } ] } - ], - "Fax": "(171) 555-1212" + ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10540, - "EmployeeID": 3, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 3, - "Freight": 1007.64, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 14000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", + "Orders": [ + { + "OrderID": 10278, + "EmployeeID": 8, + "OrderDate": "1996-08-12T00:00:00", + "RequiredDate": "1996-09-09T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 92.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 35, + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10541, + "OrderID": 10280, "EmployeeID": 2, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-05-29T00:00:00", + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-09-11T00:00:00", + "ShippedDate": "1996-09-12T00:00:00", "ShipVia": 1, - "Freight": 68.65, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 8.98, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.1 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 4, - "Discount": 0.1 + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 36, - "Discount": 0.1 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10542, - "EmployeeID": 1, - "OrderDate": "1997-05-20T00:00:00", - "RequiredDate": "1997-06-17T00:00:00", - "ShippedDate": "1997-05-26T00:00:00", + "OrderID": 10384, + "EmployeeID": 3, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", "ShipVia": 3, - "Freight": 10.95, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 168.64, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 24, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10543, - "EmployeeID": 8, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 48.17, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10444, + "EmployeeID": 3, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-21T00:00:00", + "ShipVia": 3, + "Freight": 3.5, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 22000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10544, - "EmployeeID": 4, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 24.91, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10524, + "EmployeeID": 1, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", + "ShipVia": 2, + "Freight": 244.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 12000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 7, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 7, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10545, - "EmployeeID": 8, - "OrderDate": "1997-05-22T00:00:00", - "RequiredDate": "1997-06-19T00:00:00", - "ShippedDate": "1997-06-26T00:00:00", + "OrderID": 10572, + "EmployeeID": 3, + "OrderDate": "1997-06-18T00:00:00", + "RequiredDate": "1997-07-16T00:00:00", + "ShippedDate": "1997-06-25T00:00:00", "ShipVia": 2, - "Freight": 11.92, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, - "ShipCountry": "USA", + "Freight": 116.43, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 40000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 32, + "UnitPrice": 32, "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10546, + "OrderID": 10626, "EmployeeID": 1, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-05-27T00:00:00", - "ShipVia": 3, - "Freight": 194.72, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-08T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 2, + "Freight": 138.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 34000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 10, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 27000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10547, - "EmployeeID": 3, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", - "ShipVia": 2, - "Freight": 178.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10654, + "EmployeeID": 5, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 1, + "Freight": 55.26, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 12000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 60, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10548, - "EmployeeID": 3, - "OrderDate": "1997-05-26T00:00:00", - "RequiredDate": "1997-06-23T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", + "OrderID": 10672, + "EmployeeID": 9, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", "ShipVia": 2, - "Freight": 1.43, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 95.75, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 50000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10549, - "EmployeeID": 5, - "OrderDate": "1997-05-27T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 171.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10689, + "EmployeeID": 1, + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-29T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", + "ShipVia": 2, + "Freight": 13.42, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 16000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 55, - "Discount": 0.16 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 100, - "Discount": 0.16 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 48, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10550, - "EmployeeID": 7, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-06-25T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", + "OrderID": 10733, + "EmployeeID": 1, + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-10T00:00:00", "ShipVia": 3, - "Freight": 4.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 110.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 34000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 16, + "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0.1 - }, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10778, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", + "ShipVia": 1, + "Freight": 6.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 39000, + "ShipCountry": "Sweden", + "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 10, - "Discount": 0.1 + "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10551, - "EmployeeID": 4, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", + "OrderID": 10837, + "EmployeeID": 9, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 3, - "Freight": 72.95, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 13.32, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 17000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, + "ProductID": 47, + "UnitPrice": 9.5, "Quantity": 40, - "Discount": 0 + "Discount": 0.25 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10552, - "EmployeeID": 2, - "OrderDate": "1997-05-29T00:00:00", - "RequiredDate": "1997-06-26T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 1, - "Freight": 83.22, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10857, + "EmployeeID": 8, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 2, + "Freight": 188.85, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 18, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.25 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10553, - "EmployeeID": 2, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-03T00:00:00", + "OrderID": 10866, + "EmployeeID": 5, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-03T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 109.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 37000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 6, + "Discount": 0.25 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 40, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10875, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", "ShipVia": 2, - "Freight": 149.49, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 32.37, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 18000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 14, - "Discount": 0 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0.1 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 24, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10924, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 2, + "Freight": 151.52, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 35000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 30, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 35, - "UnitPrice": 18, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 6, "Discount": 0 } @@ -14160,169 +10700,261 @@ ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, + "CustomerID": "LEHMS", + "Company": "Lehmanns Marktstand", + "ContactName": "Renate Messner", + "ContactTitle": "Sales Representative", + "Address": "Magazinweg 7", + "City": "Frankfurt a.M.", + "PostalCode": 60528, "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", + "Phone": "069-0245984", + "Fax": "069-0245874", "Orders": [ { - "OrderID": 10554, + "OrderID": 10279, + "EmployeeID": 8, + "OrderDate": "1996-08-13T00:00:00", + "RequiredDate": "1996-09-10T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 25.83, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10284, "EmployeeID": 4, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 3, - "Freight": 120.97, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, + "OrderDate": "1996-08-19T00:00:00", + "RequiredDate": "1996-09-16T00:00:00", + "ShippedDate": "1996-08-27T00:00:00", + "ShipVia": 1, + "Freight": 76.56, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 60, + "UnitPrice": 27.2, "Quantity": 20, - "Discount": 0.06 + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, + "ProductID": 67, + "UnitPrice": 11.2, + "Quantity": 5, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10343, + "EmployeeID": 4, + "OrderDate": "1996-10-31T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-11-06T00:00:00", + "ShipVia": 1, + "Freight": 110.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 4, "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10555, - "EmployeeID": 6, - "OrderDate": "1997-06-02T00:00:00", - "RequiredDate": "1997-06-30T00:00:00", - "ShippedDate": "1997-06-04T00:00:00", - "ShipVia": 3, - "Freight": 252.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10497, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", + "ShipVia": 1, + "Freight": 36.21, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10522, + "EmployeeID": 4, + "OrderDate": "1997-04-30T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-06T00:00:00", + "ShipVia": 1, + "Freight": 45.33, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0.2 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 18, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, "Discount": 0.2 + } + ] + }, + { + "OrderID": 10534, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-14T00:00:00", + "ShipVia": 2, + "Freight": 27.94, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 40, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10556, - "EmployeeID": 2, - "OrderDate": "1997-06-03T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 9.8, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10536, + "EmployeeID": 3, + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-06-11T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 2, + "Freight": 58.88, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 15, + "Discount": 0.25 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { "OrderID": 10557, "EmployeeID": 9, @@ -14350,418 +10982,349 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10558, - "EmployeeID": 1, - "OrderDate": "1997-06-04T00:00:00", - "RequiredDate": "1997-07-02T00:00:00", - "ShippedDate": "1997-06-10T00:00:00", - "ShipVia": 2, - "Freight": 72.97, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 35000, - "ShipCountry": "UK", + "OrderID": 10592, + "EmployeeID": 3, + "OrderDate": "1997-07-08T00:00:00", + "RequiredDate": "1997-08-05T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 32.1, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 15, + "UnitPrice": 15.5, "Quantity": 25, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 5, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10772, + "EmployeeID": 3, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 91.28, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10862, + "EmployeeID": 8, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 53.23, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 18, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 3, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10559, - "EmployeeID": 6, - "OrderDate": "1997-06-05T00:00:00", - "RequiredDate": "1997-07-03T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 8.05, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10891, + "EmployeeID": 7, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 2, + "Freight": 20.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, "Discount": 0.06 - }, + } + ] + }, + { + "OrderID": 10934, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 3, + "Freight": 32.01, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10560, - "EmployeeID": 8, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", + "OrderID": 11070, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-02T00:00:00", "ShipVia": 1, - "Freight": 36.65, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, + "Freight": 136, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 2, + "UnitPrice": 19, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10561, - "EmployeeID": 2, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", - "ShipVia": 2, - "Freight": 242.21, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 23000, - "ShipCountry": "Sweden", + "CustomerID": "ROMEY", + "Company": "Romero y tomillo", + "ContactName": "Alejandra Camino", + "ContactTitle": "Accounting Manager", + "Address": "Gran Vía, 1", + "City": "Madrid", + "PostalCode": 28001, + "Country": "Spain", + "Phone": "(91) 745 6200", + "Fax": "(91) 745 6210", + "Orders": [ + { + "OrderID": 10281, + "EmployeeID": 4, + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-08-28T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 2.94, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 50, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 6, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10562, - "EmployeeID": 1, - "OrderDate": "1997-06-09T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-12T00:00:00", - "ShipVia": 1, - "Freight": 22.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 20, - "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10563, - "EmployeeID": 2, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-06-24T00:00:00", - "ShipVia": 2, - "Freight": 60.43, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10282, + "EmployeeID": 4, + "OrderDate": "1996-08-15T00:00:00", + "RequiredDate": "1996-09-12T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 70, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10564, - "EmployeeID": 4, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-08T00:00:00", - "ShippedDate": "1997-06-16T00:00:00", + "OrderID": 10306, + "EmployeeID": 1, + "OrderDate": "1996-09-16T00:00:00", + "RequiredDate": "1996-10-14T00:00:00", + "ShippedDate": "1996-09-23T00:00:00", "ShipVia": 3, - "Freight": 13.75, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 7.56, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 38000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10565, - "EmployeeID": 8, - "OrderDate": "1997-06-11T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", + "OrderID": 10917, + "EmployeeID": 4, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", "ShipVia": 2, - "Freight": 7.15, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 21000, - "ShipCountry": "Canada", + "Freight": 8.29, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 1, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10566, - "EmployeeID": 9, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", + "OrderID": 11013, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 1, - "Freight": 88.4, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 32.99, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 18, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 2, "Discount": 0 } ] @@ -14769,1433 +11332,1162 @@ ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "LILAS", + "Company": "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", "Orders": [ { - "OrderID": 10567, - "EmployeeID": 1, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-17T00:00:00", - "ShipVia": 1, - "Freight": 33.97, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10283, + "EmployeeID": 3, + "OrderDate": "1996-08-16T00:00:00", + "RequiredDate": "1996-09-13T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", + "ShipVia": 3, + "Freight": 84.81, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 60, - "Discount": 0.2 + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ - { - "OrderID": 10568, - "EmployeeID": 3, - "OrderDate": "1997-06-13T00:00:00", - "RequiredDate": "1997-07-11T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 3, - "Freight": 6.54, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", - "OrderDetails": [ + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 35, + "Discount": 0 + }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 5, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10569, - "EmployeeID": 5, - "OrderDate": "1997-06-16T00:00:00", - "RequiredDate": "1997-07-14T00:00:00", - "ShippedDate": "1997-07-11T00:00:00", + "OrderID": 10296, + "EmployeeID": 6, + "OrderDate": "1996-09-03T00:00:00", + "RequiredDate": "1996-10-01T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 1, - "Freight": 58.98, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 0.12, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 16, + "UnitPrice": 13.9, "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 22000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10570, + "OrderID": 10330, "EmployeeID": 3, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-19T00:00:00", - "ShipVia": 3, - "Freight": 188.99, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", + "ShipVia": 1, + "Freight": 12.75, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10571, - "EmployeeID": 8, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", + "OrderID": 10357, + "EmployeeID": 1, + "OrderDate": "1996-11-19T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", "ShipVia": 3, - "Freight": 26.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 34.88, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 11, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10572, + "OrderID": 10381, "EmployeeID": 3, - "OrderDate": "1997-06-18T00:00:00", - "RequiredDate": "1997-07-16T00:00:00", - "ShippedDate": "1997-06-25T00:00:00", - "ShipVia": 2, - "Freight": 116.43, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 40000, - "ShipCountry": "Sweden", + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 7.99, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, - "Discount": 0.1 - }, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 14, + "Discount": 0 + } + ] + }, + { + "OrderID": 10461, + "EmployeeID": 1, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-05T00:00:00", + "ShipVia": 3, + "Freight": 148.61, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 28, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10573, - "EmployeeID": 7, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-20T00:00:00", - "ShipVia": 3, - "Freight": 84.84, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10499, + "EmployeeID": 4, + "OrderDate": "1997-04-08T00:00:00", + "RequiredDate": "1997-05-06T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 2, + "Freight": 102.02, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 40, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 49, + "UnitPrice": 20, "Quantity": 25, "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "TRAIH", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10574, - "EmployeeID": 4, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10543, + "EmployeeID": 8, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", "ShipVia": 2, - "Freight": 37.6, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", + "Freight": 48.17, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 2, - "Discount": 0 - }, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10780, + "EmployeeID": 2, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-25T00:00:00", + "ShipVia": 1, + "Freight": 42.13, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 6, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10575, + "OrderID": 10823, "EmployeeID": 5, - "OrderDate": "1997-06-20T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 1, - "Freight": 127.34, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 163.97, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 6, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10576, - "EmployeeID": 3, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10899, + "EmployeeID": 5, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", "ShipVia": 3, - "Freight": 18.56, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 1.21, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, - "Discount": 0 + "Quantity": 8, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10577, - "EmployeeID": 9, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10997, + "EmployeeID": 8, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 25.41, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", + "Freight": 73.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 46, + "UnitPrice": 12, "Quantity": 20, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10578, - "EmployeeID": 4, - "OrderDate": "1997-06-24T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", - "ShipVia": 3, - "Freight": 29.6, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 31000, - "ShipCountry": "UK", + "OrderID": 11065, + "EmployeeID": 8, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-29T00:00:00", + "ShipVia": 1, + "Freight": 12.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 6, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, + "Discount": 0.25 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10579, + "OrderID": 11071, "EmployeeID": 1, - "OrderDate": "1997-06-25T00:00:00", - "RequiredDate": "1997-07-23T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 2, - "Freight": 13.73, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-10T00:00:00", + "ShipVia": 1, + "Freight": 0.93, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 10, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 21, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0.06 } ] } - ], - "Fax": "(415) 555-5938" + ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", + "CustomerID": "RICAR", + "Company": "Ricardo Adocicados", + "ContactName": "Janete Limeira", + "ContactTitle": "Sales Associate", + "Address": "Av. Copacabana, 267", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-3412", + "Fax": "(21) 555-3413", "Orders": [ { - "OrderID": 10580, - "EmployeeID": 4, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-01T00:00:00", + "OrderID": 10287, + "EmployeeID": 8, + "OrderDate": "1996-08-22T00:00:00", + "RequiredDate": "1996-09-19T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", "ShipVia": 3, - "Freight": 75.89, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 12.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10581, - "EmployeeID": 3, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-02T00:00:00", - "ShipVia": 1, - "Freight": 3.01, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", + "OrderID": 10299, + "EmployeeID": 4, + "OrderDate": "1996-09-06T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-13T00:00:00", + "ShipVia": 2, + "Freight": 29.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10582, - "EmployeeID": 3, - "OrderDate": "1997-06-27T00:00:00", - "RequiredDate": "1997-07-25T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 10447, + "EmployeeID": 4, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-03-07T00:00:00", "ShipVia": 2, - "Freight": 27.71, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "Freight": 68.66, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 4, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 14, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10583, - "EmployeeID": 2, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", + "OrderID": 10481, + "EmployeeID": 8, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", "ShipVia": 2, - "Freight": 7.28, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 64.33, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 24, "Discount": 0 }, { "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.16 + "UnitPrice": 27.2, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10563, + "EmployeeID": 2, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-06-24T00:00:00", + "ShipVia": 2, + "Freight": 60.43, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 70, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10584, + "OrderID": 10622, "EmployeeID": 4, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 1, - "Freight": 59.14, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderDate": "1997-08-06T00:00:00", + "RequiredDate": "1997-09-03T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 3, + "Freight": 50.97, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 31, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 68, "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.06 + "Quantity": 18, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10585, - "EmployeeID": 7, - "OrderDate": "1997-07-01T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 1, - "Freight": 13.41, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, + "OrderID": 10648, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-09T00:00:00", + "ShipVia": 2, + "Freight": 14.25, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 22, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10586, - "EmployeeID": 9, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 1, - "Freight": 0.48, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10813, + "EmployeeID": 1, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 1, + "Freight": 47.38, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 12, + "Discount": 0.2 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10587, - "EmployeeID": 1, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", + "OrderID": 10851, + "EmployeeID": 5, + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-23T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", "ShipVia": 1, - "Freight": 62.52, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 160.55, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", "ShipCity": "Sao Paulo", "ShipRegion": "RJ", "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, + "Discount": 0.06 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10588, - "EmployeeID": 2, - "OrderDate": "1997-07-03T00:00:00", - "RequiredDate": "1997-07-31T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 3, - "Freight": 194.67, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10877, + "EmployeeID": 1, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 1, + "Freight": 38.06, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 100, - "Discount": 0.2 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10589, - "EmployeeID": 8, - "OrderDate": "1997-07-04T00:00:00", - "RequiredDate": "1997-08-01T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 11059, + "EmployeeID": 2, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-06-10T00:00:00", + "ShippedDate": "1998-06-15T00:00:00", "ShipVia": 2, - "Freight": 4.42, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 85.8, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 30, "Discount": 0 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 43000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10590, - "EmployeeID": 4, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 3, - "Freight": 44.77, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 40000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0 } ] } ] }, { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10591, - "EmployeeID": 1, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-07-21T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", + "CustomerID": "REGGC", + "Company": "Reggiani Caseifici", + "ContactName": "Maurizio Moroni", + "ContactTitle": "Sales Associate", + "Address": "Strada Provinciale 124", + "City": "Reggio Emilia", + "PostalCode": 42100, + "Country": "Italy", + "Phone": "0522-556721", + "Fax": "0522-556722", + "Orders": [ + { + "OrderID": 10288, + "EmployeeID": 4, + "OrderDate": "1996-08-23T00:00:00", + "RequiredDate": "1996-09-20T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", "ShipVia": 1, - "Freight": 55.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 7.45, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 54, + "UnitPrice": 5.9, "Quantity": 10, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 50, - "Discount": 0 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10592, - "EmployeeID": 3, - "OrderDate": "1997-07-08T00:00:00", - "RequiredDate": "1997-08-05T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", + "OrderID": 10428, + "EmployeeID": 7, + "OrderDate": "1997-01-28T00:00:00", + "RequiredDate": "1997-02-25T00:00:00", + "ShippedDate": "1997-02-04T00:00:00", "ShipVia": 1, - "Freight": 32.1, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 11.09, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 25, - "Discount": 0.06 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0 } ] }, { - "OrderID": 10593, - "EmployeeID": 7, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-08-13T00:00:00", - "ShipVia": 2, - "Freight": 174.2, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10443, + "EmployeeID": 8, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 1, + "Freight": 13.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10594, - "EmployeeID": 3, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", - "ShipVia": 2, - "Freight": 5.24, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10562, + "EmployeeID": 1, + "OrderDate": "1997-06-09T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-12T00:00:00", + "ShipVia": 1, + "Freight": 22.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 24, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10595, - "EmployeeID": 2, - "OrderDate": "1997-07-10T00:00:00", - "RequiredDate": "1997-08-07T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 10586, + "EmployeeID": 9, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", "ShipVia": 1, - "Freight": 96.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 0.48, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 120, - "Discount": 0.25 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 65, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10596, - "EmployeeID": 8, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", - "ShipVia": 1, - "Freight": 16.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10655, + "EmployeeID": 1, + "OrderDate": "1997-09-03T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 4.41, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, "Discount": 0.2 + } + ] + }, + { + "OrderID": 10727, + "EmployeeID": 2, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-12-01T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 89.9, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 24, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10597, - "EmployeeID": 7, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", - "ShipVia": 3, - "Freight": 35.12, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10812, + "EmployeeID": 5, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", + "ShipVia": 1, + "Freight": 59.78, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 16, + "Discount": 0.1 }, { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, "Quantity": 20, "Discount": 0 + } + ] + }, + { + "OrderID": 10908, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 32.96, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 14, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10598, - "EmployeeID": 1, - "OrderDate": "1997-07-14T00:00:00", - "RequiredDate": "1997-08-11T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", + "OrderID": 10942, + "EmployeeID": 9, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 3, - "Freight": 44.42, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 17.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 50, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 28, + "Discount": 0 + } + ] + }, + { + "OrderID": 11010, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 28.71, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, "Discount": 0 } ] - } + }, + { + "OrderID": 11062, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-06-28T00:00:00", + "ShipVia": 2, + "Freight": 29.93, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 12, + "Discount": 0.2 + } + ] + } ] }, { @@ -16205,1875 +12497,1438 @@ "ContactTitle": "Sales Representative", "Address": "Fauntleroy Circus", "City": "London", - "PostalCode": 20000, + "PostalCode": 22000, "Country": "UK", "Phone": "(171) 555-1212", "Orders": [ { - "OrderID": 10599, - "EmployeeID": 6, - "OrderDate": "1997-07-15T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", + "OrderID": 10289, + "EmployeeID": 7, + "OrderDate": "1996-08-26T00:00:00", + "RequiredDate": "1996-09-23T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", "ShipVia": 3, - "Freight": 29.98, + "Freight": 22.77, "ShipName": "Best Beverages", "ShipAddress": "Fauntleroy Circus", "ShipCity": "London", - "ShipPostalCode": 14000, + "ShipPostalCode": 22000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10600, - "EmployeeID": 4, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-13T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", - "ShipVia": 1, - "Freight": 45.13, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "OrderID": 10471, + "EmployeeID": 2, + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 3, + "Freight": 45.59, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 25000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 4, + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10601, - "EmployeeID": 7, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", - "ShipVia": 1, - "Freight": 58.3, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10484, + "EmployeeID": 3, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-01T00:00:00", + "ShipVia": 3, + "Freight": 6.88, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 60, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10602, - "EmployeeID": 8, - "OrderDate": "1997-07-17T00:00:00", - "RequiredDate": "1997-08-14T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", - "ShipVia": 2, - "Freight": 2.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10603, - "EmployeeID": 8, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", - "ShipVia": 2, - "Freight": 48.77, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10538, + "EmployeeID": 9, + "OrderDate": "1997-05-15T00:00:00", + "RequiredDate": "1997-06-12T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 3, + "Freight": 4.87, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 27000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 48, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 1, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10604, - "EmployeeID": 1, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", - "ShipVia": 1, - "Freight": 7.46, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10578, + "EmployeeID": 4, + "OrderDate": "1997-06-24T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 3, + "Freight": 29.6, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 31000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 6, + "Discount": 0 + } + ] + }, + { + "OrderID": 10599, + "EmployeeID": 6, + "OrderDate": "1997-07-15T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", + "ShipVia": 3, + "Freight": 29.98, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 14000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 10, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 32000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10605, - "EmployeeID": 1, - "OrderDate": "1997-07-21T00:00:00", - "RequiredDate": "1997-08-18T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", + "OrderID": 10943, + "EmployeeID": 4, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 379.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", + "Freight": 2.17, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 21, + "Discount": 0 }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10947, + "EmployeeID": 3, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", + "OrderDetails": [ { "ProductID": 59, "UnitPrice": 55, - "Quantity": 20, - "Discount": 0.06 - }, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11023, + "EmployeeID": 1, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 123.83, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 36000, + "ShipCountry": "UK", + "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0 } ] } - ] + ], + "Fax": "(171) 555-1212" }, { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", + "CustomerID": "COMMI", + "Company": "Comércio Mineiro", + "ContactName": "Pedro Afonso", + "ContactTitle": "Sales Associate", + "Address": "Av. dos Lusíadas, 23", "City": "Sao Paulo", "Region": "SP", - "PostalCode": 5634, + "PostalCode": 5432, "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", + "Phone": "(11) 555-7647", "Orders": [ { - "OrderID": 10606, - "EmployeeID": 4, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-31T00:00:00", - "ShipVia": 3, - "Freight": 79.4, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", + "OrderID": 10290, + "EmployeeID": 8, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", + "ShipVia": 1, + "Freight": 79.7, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", "ShipCity": "Sao Paulo", "ShipRegion": "SP", - "ShipPostalCode": 5634, + "ShipPostalCode": 5432, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 5, + "UnitPrice": 17, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10607, - "EmployeeID": 5, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", - "ShipVia": 1, - "Freight": 200.24, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 100, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10466, + "EmployeeID": 4, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-13T00:00:00", + "ShipVia": 1, + "Freight": 11.93, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 42, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 12, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10608, + "OrderID": 10494, "EmployeeID": 4, - "OrderDate": "1997-07-23T00:00:00", - "RequiredDate": "1997-08-20T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", "ShipVia": 2, - "Freight": 27.79, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 65.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10609, - "EmployeeID": 7, - "OrderDate": "1997-07-24T00:00:00", - "RequiredDate": "1997-08-21T00:00:00", - "ShippedDate": "1997-07-30T00:00:00", + "OrderID": 10969, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", "ShipVia": 2, - "Freight": 1.85, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 0.21, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 3, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11042, + "EmployeeID": 2, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 29.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, "Discount": 0 } ] } - ] + ], + "Fax": "(11) 555-7647" }, { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", + "CustomerID": "TRADH", + "Company": "Tradição Hipermercados", + "ContactName": "Anabela Domingues", + "ContactTitle": "Sales Representative", + "Address": "Av. Inês de Castro, 414", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5634, + "Country": "Brazil", + "Phone": "(11) 555-2167", + "Fax": "(11) 555-2168", "Orders": [ { - "OrderID": 10610, - "EmployeeID": 8, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", - "ShipVia": 1, - "Freight": 26.78, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10292, + "EmployeeID": 1, + "OrderDate": "1996-08-28T00:00:00", + "RequiredDate": "1996-09-25T00:00:00", + "ShippedDate": "1996-09-02T00:00:00", + "ShipVia": 2, + "Freight": 1.35, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10611, - "EmployeeID": 6, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderID": 10496, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", "ShipVia": 2, - "Freight": 80.65, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 46.77, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10606, + "EmployeeID": 4, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-31T00:00:00", + "ShipVia": 3, + "Freight": 79.4, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10612, - "EmployeeID": 1, - "OrderDate": "1997-07-28T00:00:00", - "RequiredDate": "1997-08-25T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderID": 10830, + "EmployeeID": 4, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", "ShipVia": 2, - "Freight": 544.08, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 81.83, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 55, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 18, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 28, "Discount": 0 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 40, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 80, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 24, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10613, - "EmployeeID": 4, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 8.11, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10834, + "EmployeeID": 1, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 3, + "Freight": 29.78, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 8, + "Discount": 0.06 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10839, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-22T00:00:00", + "ShipVia": 3, + "Freight": 35.43, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "PostalCode": 48637, + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", "Orders": [ { - "OrderID": 10614, - "EmployeeID": 8, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 3, - "Freight": 1.93, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10298, + "EmployeeID": 6, + "OrderDate": "1996-09-05T00:00:00", + "RequiredDate": "1996-10-03T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", + "ShipVia": 2, + "Freight": 168.22, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 14, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 8, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 5, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10615, - "EmployeeID": 2, - "OrderDate": "1997-07-30T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", - "ShipVia": 3, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10309, + "EmployeeID": 3, + "OrderDate": "1996-09-19T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 1, + "Freight": 47.3, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ - { - "OrderID": 10616, - "EmployeeID": 1, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-05T00:00:00", - "ShipVia": 2, - "Freight": 116.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, + "Discount": 0 }, { "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "UnitPrice": 17.2, + "Quantity": 3, + "Discount": 0 } ] }, { - "OrderID": 10617, - "EmployeeID": 4, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-04T00:00:00", + "OrderID": 10335, + "EmployeeID": 7, + "OrderDate": "1996-10-22T00:00:00", + "RequiredDate": "1996-11-19T00:00:00", + "ShippedDate": "1996-10-24T00:00:00", "ShipVia": 2, - "Freight": 18.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 42.11, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 28000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10618, - "EmployeeID": 1, - "OrderDate": "1997-08-01T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", - "ShipVia": 1, - "Freight": 154.68, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 30000, - "ShipCountry": "Canada", - "OrderDetails": [ + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 7, + "Discount": 0.2 + }, { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 70, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 48, + "Discount": 0.2 } ] }, { - "OrderID": 10619, - "EmployeeID": 3, - "OrderDate": "1997-08-04T00:00:00", - "RequiredDate": "1997-09-01T00:00:00", - "ShippedDate": "1997-08-07T00:00:00", + "OrderID": 10373, + "EmployeeID": 4, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-11T00:00:00", "ShipVia": 3, - "Freight": 91.05, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 21000, - "ShipCountry": "Canada", + "Freight": 124.12, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 42, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 80, + "Discount": 0.2 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 49000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ + }, { - "OrderID": 10620, - "EmployeeID": 2, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", + "OrderID": 10380, + "EmployeeID": 8, + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", "ShipVia": 3, - "Freight": 0.94, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 31000, - "ShipCountry": "Canada", + "Freight": 35.03, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 21000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10621, - "EmployeeID": 4, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", - "ShipVia": 2, - "Freight": 23.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 50269, - "ShipPostalCode": 39000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 10, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 6, + "Discount": 0.1 }, { "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10622, - "EmployeeID": 4, - "OrderDate": "1997-08-06T00:00:00", - "RequiredDate": "1997-09-03T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", - "ShipVia": 3, - "Freight": 50.97, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10429, + "EmployeeID": 3, + "OrderDate": "1997-01-29T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 56.63, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, - "Discount": 0.2 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10623, - "EmployeeID": 8, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", + "OrderID": 10503, + "EmployeeID": 6, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", "ShipVia": 2, - "Freight": 97.18, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 16.74, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { "ProductID": 14, "UnitPrice": 23.25, - "Quantity": 21, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 3, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10624, - "EmployeeID": 4, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 2, - "Freight": 94.8, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "OrderID": 10516, + "EmployeeID": 2, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 62.78, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 6, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 80, + "Discount": 0.1 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10625, - "EmployeeID": 3, - "OrderDate": "1997-08-08T00:00:00", - "RequiredDate": "1997-09-05T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", + "OrderID": 10567, + "EmployeeID": 1, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-17T00:00:00", "ShipVia": 1, - "Freight": 43.9, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 33.97, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 5, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 19000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10626, - "EmployeeID": 1, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-08T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 2, - "Freight": 138.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 34000, - "ShipCountry": "Sweden", + "OrderID": 10646, + "EmployeeID": 9, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 142.33, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.25 }, { "ProductID": 71, "UnitPrice": 21.5, - "Quantity": 20, - "Discount": 0 + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10627, - "EmployeeID": 8, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10661, + "EmployeeID": 7, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", "ShipVia": 3, - "Freight": 107.46, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 17.55, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 49, + "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10628, - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 3, - "Freight": 30.36, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10687, + "EmployeeID": 9, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-30T00:00:00", + "ShipVia": 2, + "Freight": 296.43, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ - { - "OrderID": 10629, - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 3, - "Freight": 85.46, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", - "OrderDetails": [ + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 50, + "Discount": 0.25 + }, { "ProductID": 29, "UnitPrice": 123.79, - "Quantity": 20, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 9, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0.25 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10630, - "EmployeeID": 1, - "OrderDate": "1997-08-13T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 2, - "Freight": 32.35, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10701, + "EmployeeID": 6, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-10-27T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 3, + "Freight": 220.31, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.16 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0.16 }, { "ProductID": 76, "UnitPrice": 18, "Quantity": 35, - "Discount": 0 + "Discount": 0.16 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10631, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-15T00:00:00", + "OrderID": 10712, + "EmployeeID": 3, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", "ShipVia": 1, - "Freight": 0.87, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 89.93, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10632, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 1, - "Freight": 41.38, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10736, + "EmployeeID": 9, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 44.1, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10633, - "EmployeeID": 7, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-18T00:00:00", - "ShipVia": 3, - "Freight": 477.9, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10897, + "EmployeeID": 3, + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-25T00:00:00", + "ShipVia": 2, + "Freight": 603.54, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 80, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 13, - "Discount": 0.16 - }, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 36, + "Discount": 0 + } + ] + }, + { + "OrderID": 10912, + "EmployeeID": 2, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 580.91, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 80, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10634, - "EmployeeID": 4, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", - "ShipVia": 3, - "Freight": 487.38, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "OrderID": 10985, + "EmployeeID": 2, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 91.51, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 36, + "Discount": 0.1 }, { "ProductID": 18, "UnitPrice": 62.5, - "Quantity": 50, - "Discount": 0 + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 15, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 35, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11063, + "EmployeeID": 3, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 81.73, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 2, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "WANDK", + "Company": "Die Wandernde Kuh", + "ContactName": "Rita Müller", + "ContactTitle": "Sales Representative", + "Address": "Adenauerallee 900", + "City": "Stuttgart", + "PostalCode": 70563, + "Country": "Germany", + "Phone": "0711-020361", + "Fax": "0711-035428", "Orders": [ { - "OrderID": 10635, + "OrderID": 10301, "EmployeeID": 8, - "OrderDate": "1997-08-18T00:00:00", - "RequiredDate": "1997-09-15T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", - "ShipVia": 3, - "Freight": 47.46, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", + "ShipVia": 2, + "Freight": 45.08, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 40, + "UnitPrice": 14.7, "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 15, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10636, - "EmployeeID": 4, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 1.15, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10312, + "EmployeeID": 2, + "OrderDate": "1996-09-23T00:00:00", + "RequiredDate": "1996-10-21T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 40.26, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 6, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10637, - "EmployeeID": 6, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 201.29, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10348, + "EmployeeID": 4, + "OrderDate": "1996-11-07T00:00:00", + "RequiredDate": "1996-12-05T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 2, + "Freight": 0.78, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 50, - "UnitPrice": 16.25, + "ProductID": 23, + "UnitPrice": 7.2, "Quantity": 25, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10638, - "EmployeeID": 3, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", - "ShipVia": 1, - "Freight": 158.44, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10356, + "EmployeeID": 6, + "OrderDate": "1996-11-18T00:00:00", + "RequiredDate": "1996-12-16T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", + "ShipVia": 2, + "Freight": 36.71, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 60, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10639, + "OrderID": 10513, "EmployeeID": 7, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-08-27T00:00:00", - "ShipVia": 3, - "Freight": 38.64, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ - { - "OrderID": 10640, - "EmployeeID": 4, - "OrderDate": "1997-08-21T00:00:00", - "RequiredDate": "1997-09-18T00:00:00", - "ShippedDate": "1997-08-28T00:00:00", + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-06-03T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", "ShipVia": 1, - "Freight": 23.55, + "Freight": 105.65, "ShipName": "Die Wandernde Kuh", "ShipAddress": "Adenauerallee 900", "ShipCity": "Stuttgart", @@ -18081,996 +13936,833 @@ "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, "Quantity": 15, - "Discount": 0.25 + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10641, - "EmployeeID": 4, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 2, - "Freight": 179.61, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10632, + "EmployeeID": 8, + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 1, + "Freight": 41.38, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 19, - "Quantity": 50, - "Discount": 0 + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10642, - "EmployeeID": 7, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-09-05T00:00:00", - "ShipVia": 3, - "Freight": 41.89, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10640, + "EmployeeID": 4, + "OrderDate": "1997-08-21T00:00:00", + "RequiredDate": "1997-09-18T00:00:00", + "ShippedDate": "1997-08-28T00:00:00", + "ShipVia": 1, + "Freight": 23.55, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10643, - "EmployeeID": 6, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", - "ShipVia": 1, - "Freight": 29.46, - "ShipName": "Alfreds Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, + "OrderID": 10651, + "EmployeeID": 8, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 20.6, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0.25 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 2, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 20, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10644, - "EmployeeID": 3, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", + "OrderID": 10668, + "EmployeeID": 1, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", "ShipVia": 2, - "Freight": 0.14, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 47.22, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, "Quantity": 4, "Discount": 0.1 }, { - "ProductID": 43, - "UnitPrice": 46, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 15, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11046, + "EmployeeID": 8, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 71.64, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 12, + "UnitPrice": 38, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0.1 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 18, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", + "CustomerID": "GODOS", + "Company": "Godos Cocina Típica", + "ContactName": "José Pedro Freyre", + "ContactTitle": "Sales Manager", + "Address": "C/ Romero, 33", + "City": "Sevilla", + "PostalCode": 41101, + "Country": "Spain", + "Phone": "(95) 555 82 82", "Orders": [ { - "OrderID": 10645, - "EmployeeID": 4, - "OrderDate": "1997-08-26T00:00:00", - "RequiredDate": "1997-09-23T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", - "ShipVia": 1, - "Freight": 12.41, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10303, + "EmployeeID": 7, + "OrderDate": "1996-09-11T00:00:00", + "RequiredDate": "1996-10-09T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 107.83, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 10, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10646, - "EmployeeID": 9, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", + "OrderID": 10550, + "EmployeeID": 7, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-06-25T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", "ShipVia": 3, - "Freight": 142.33, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 4.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10647, + "OrderID": 10629, "EmployeeID": 4, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 2, - "Freight": 45.54, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 85.46, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10648, + "OrderID": 10872, "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-09T00:00:00", + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", "ShipVia": 2, - "Freight": 14.25, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 175.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, "Quantity": 15, - "Discount": 0.16 + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 28000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10649, + "OrderID": 10874, "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-09-25T00:00:00", - "ShippedDate": "1997-08-29T00:00:00", - "ShipVia": 3, - "Freight": 6.2, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 47000, - "ShipCountry": "Belgium", + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", + "ShipVia": 2, + "Freight": 19.58, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10888, + "EmployeeID": 1, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", + "ShipVia": 2, + "Freight": 51.87, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, "Quantity": 20, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10650, - "EmployeeID": 5, - "OrderDate": "1997-08-29T00:00:00", - "RequiredDate": "1997-09-26T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 3, - "Freight": 176.81, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10911, + "EmployeeID": 3, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", + "ShipVia": 1, + "Freight": 38.19, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10651, - "EmployeeID": 8, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 2, - "Freight": 20.6, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10948, + "EmployeeID": 3, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", + "ShipVia": 3, + "Freight": 23.39, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10652, - "EmployeeID": 4, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", - "ShipVia": 2, - "Freight": 7.14, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 11009, + "EmployeeID": 2, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 59.11, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 2, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 18, "Discount": 0.25 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10653, - "EmployeeID": 1, - "OrderDate": "1997-09-02T00:00:00", - "RequiredDate": "1997-09-30T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", + "OrderID": 11037, + "EmployeeID": 7, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", "ShipVia": 1, - "Freight": 93.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 3.2, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 4, + "Discount": 0 } ] } - ] + ], + "Fax": "(95) 555 82 82" }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 33000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "OLDWO", + "Company": "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", "Orders": [ { - "OrderID": 10654, - "EmployeeID": 5, - "OrderDate": "1997-09-02T00:00:00", - "RequiredDate": "1997-09-30T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 1, - "Freight": 55.26, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 12000, - "ShipCountry": "Sweden", + "OrderID": 10305, + "EmployeeID": 8, + "OrderDate": "1996-09-13T00:00:00", + "RequiredDate": "1996-10-11T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 3, + "Freight": 257.62, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 12, + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 25, "Discount": 0.1 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 25, "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10655, - "EmployeeID": 1, - "OrderDate": "1997-09-03T00:00:00", - "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 2, - "Freight": 4.41, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10656, - "EmployeeID": 6, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", - "ShipVia": 1, - "Freight": 57.15, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, + "OrderID": 10338, + "EmployeeID": 4, + "OrderDate": "1996-10-25T00:00:00", + "RequiredDate": "1996-11-22T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", + "ShipVia": 3, + "Freight": 84.21, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0.1 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10657, - "EmployeeID": 2, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", + "OrderID": 10441, + "EmployeeID": 3, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-24T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 352.69, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "Freight": 73.02, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, + "ProductID": 27, + "UnitPrice": 35.1, "Quantity": 50, "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, + } + ] + }, + { + "OrderID": 10594, + "EmployeeID": 3, + "OrderDate": "1997-07-09T00:00:00", + "RequiredDate": "1997-08-06T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 2, + "Freight": 5.24, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, "Quantity": 24, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 45, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10680, + "EmployeeID": 1, + "OrderDate": "1997-09-24T00:00:00", + "RequiredDate": "1997-10-22T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 1, + "Freight": 26.61, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 10, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, + "Discount": 0.25 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 45, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.25 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10658, - "EmployeeID": 4, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", - "ShipVia": 1, - "Freight": 364.15, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10706, + "EmployeeID": 8, + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-11-13T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 3, + "Freight": 135.63, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 55, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10808, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 45.53, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10659, - "EmployeeID": 7, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", - "ShipVia": 2, - "Freight": 105.81, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10855, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 170.97, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, + "Discount": 0 + }, { "ProductID": 31, "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0.06 + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 24, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10660, - "EmployeeID": 8, - "OrderDate": "1997-09-08T00:00:00", - "RequiredDate": "1997-10-06T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", - "ShipVia": 1, - "Freight": 111.29, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "OrderID": 10965, + "EmployeeID": 6, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", + "ShipVia": 3, + "Freight": 144.38, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10661, - "EmployeeID": 7, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", - "ShipVia": 3, - "Freight": 17.55, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 11034, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 40.32, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 49, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 6, + "Discount": 0 } ] } @@ -19090,13 +14782,13 @@ "Fax": "(503) 555-9646", "Orders": [ { - "OrderID": 10662, - "EmployeeID": 3, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", + "OrderID": 10307, + "EmployeeID": 2, + "OrderDate": "1996-09-17T00:00:00", + "RequiredDate": "1996-10-15T00:00:00", + "ShippedDate": "1996-09-25T00:00:00", "ShipVia": 2, - "Freight": 1.28, + "Freight": 0.56, "ShipName": "Lonesome Pine Restaurant", "ShipAddress": "89 Chiaroscuro Rd.", "ShipCity": "Portland", @@ -19105,132 +14797,50 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10663, - "EmployeeID": 2, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-09-24T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", - "ShipVia": 2, - "Freight": 113.15, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10664, - "EmployeeID": 1, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 3, - "Freight": 1.27, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10317, + "EmployeeID": 6, + "OrderDate": "1996-09-30T00:00:00", + "RequiredDate": "1996-10-28T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10665, - "EmployeeID": 1, - "OrderDate": "1997-09-11T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-17T00:00:00", - "ShipVia": 2, - "Freight": 26.31, + "OrderID": 10544, + "EmployeeID": 4, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 24.91, "ShipName": "Lonesome Pine Restaurant", "ShipAddress": "89 Chiaroscuro Rd.", "ShipCity": "Portland", @@ -19239,249 +14849,292 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 1, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 7, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10662, + "EmployeeID": 3, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 2, + "Freight": 1.28, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10666, - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", + "OrderID": 10665, + "EmployeeID": 1, + "OrderDate": "1997-09-11T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-17T00:00:00", "ShipVia": 2, - "Freight": 232.42, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 26.31, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10667, - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", + "OrderID": 10867, + "EmployeeID": 6, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", "ShipVia": 1, - "Freight": 78.09, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 1.93, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 45, - "Discount": 0.2 - }, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10883, + "EmployeeID": 8, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 3, + "Freight": 0.53, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 14, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10668, - "EmployeeID": 1, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", + "OrderID": 11018, + "EmployeeID": 4, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", "ShipVia": 2, - "Freight": 47.22, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 11.65, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", + "CustomerID": "ANATR", + "Company": "Ana Trujillo Emparedados y helados", + "ContactName": "Ana Trujillo", "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", + "Address": "Avda. de la Constitución 2222", + "City": "México D.F.", + "PostalCode": 5021, + "Country": "Mexico", + "Phone": "(5) 555-4729", + "Fax": "(5) 555-3745", "Orders": [ { - "OrderID": 10669, - "EmployeeID": 2, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", - "ShipVia": 1, - "Freight": 24.39, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - } + "OrderID": 10308, + "EmployeeID": 7, + "OrderDate": "1996-09-18T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-24T00:00:00", + "ShipVia": 3, + "Freight": 1.61, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 5, + "Discount": 0 + } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10670, - "EmployeeID": 4, - "OrderDate": "1997-09-16T00:00:00", - "RequiredDate": "1997-10-14T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", + "OrderID": 10625, + "EmployeeID": 3, + "OrderDate": "1997-08-08T00:00:00", + "RequiredDate": "1997-09-05T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", "ShipVia": 1, - "Freight": 203.48, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 43.9, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 32, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 60, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 25, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10759, + "EmployeeID": 3, + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 3, + "Freight": 11.99, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10926, + "EmployeeID": 4, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 39.92, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 25, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, "Discount": 0 } ] @@ -19489,1902 +15142,1343 @@ ] }, { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", + "CustomerID": "THEBI", + "Company": "The Big Cheese", + "ContactName": "Liz Nixon", "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", + "Address": "89 Jefferson Way Suite 2", + "City": "Portland", + "Region": "OR", + "PostalCode": 97201, + "Country": "USA", + "Phone": "(503) 555-3612", "Orders": [ { - "OrderID": 10671, - "EmployeeID": 1, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-09-24T00:00:00", - "ShipVia": 1, - "Freight": 30.34, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10310, + "EmployeeID": 8, + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-18T00:00:00", + "ShippedDate": "1996-09-27T00:00:00", + "ShipVia": 2, + "Freight": 17.52, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 16, - "UnitPrice": 17.45, + "UnitPrice": 13.9, "Quantity": 10, "Discount": 0 }, { "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, + "UnitPrice": 39.4, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10672, - "EmployeeID": 9, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", + "OrderID": 10708, + "EmployeeID": 6, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 95.75, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 50000, - "ShipCountry": "Sweden", + "Freight": 2.96, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10673, + "OrderID": 10805, "EmployeeID": 2, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 1, - "Freight": 22.76, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 237.34, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 42, + "ProductID": 34, "UnitPrice": 14, - "Quantity": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 35000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10674, - "EmployeeID": 4, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 2, - "Freight": 0.9, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60699, - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10992, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 4.27, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 5, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 2, "Discount": 0 } ] } ], - "Fax": "(198) 555-8888" + "Fax": "(503) 555-3612" }, { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", + "CustomerID": "DUMON", + "Company": "Du monde entier", + "ContactName": "Janine Labrune", + "ContactTitle": "Owner", + "Address": "67, rue des Cinquante Otages", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.67.88.88", + "Fax": "40.67.89.89", "Orders": [ { - "OrderID": 10675, - "EmployeeID": 5, - "OrderDate": "1997-09-19T00:00:00", - "RequiredDate": "1997-10-17T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", - "ShipVia": 2, - "Freight": 31.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10311, + "EmployeeID": 1, + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-26T00:00:00", + "ShipVia": 3, + "Freight": 24.69, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 7, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10676, - "EmployeeID": 2, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-29T00:00:00", + "OrderID": 10609, + "EmployeeID": 7, + "OrderDate": "1997-07-24T00:00:00", + "RequiredDate": "1997-08-21T00:00:00", + "ShippedDate": "1997-07-30T00:00:00", "ShipVia": 2, - "Freight": 2.01, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 1.85, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10677, - "EmployeeID": 1, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", - "ShipVia": 3, - "Freight": 4.03, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10683, + "EmployeeID": 2, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 1, + "Freight": 4.4, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 9, + "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10678, + "OrderID": 10890, "EmployeeID": 7, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", - "ShipVia": 3, - "Freight": 388.98, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 32.76, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 100, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 120, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, + "Quantity": 14, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", + "CustomerID": "ISLAT", + "Company": "Island Trading", + "ContactName": "Helen Bennett", "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", + "Address": "Garden House Crowther Way", + "City": "Cowes", + "Region": "Northeast", + "PostalCode": 26000, + "Country": "UK", + "Phone": "(198) 555-8888", "Orders": [ { - "OrderID": 10679, - "EmployeeID": 8, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 3, - "Freight": 27.94, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10315, + "EmployeeID": 4, + "OrderDate": "1996-09-26T00:00:00", + "RequiredDate": "1996-10-24T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 41.76, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 80379, + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10680, - "EmployeeID": 1, - "OrderDate": "1997-09-24T00:00:00", - "RequiredDate": "1997-10-22T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", - "ShipVia": 1, - "Freight": 26.61, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10318, + "EmployeeID": 8, + "OrderDate": "1996-10-01T00:00:00", + "RequiredDate": "1996-10-29T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 4.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 30676, + "ShipPostalCode": 36000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0.25 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 20, - "Discount": 0.25 + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10681, + "OrderID": 10321, "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 3, - "Freight": 76.13, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-31T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 2, + "Freight": 3.43, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 20137, + "ShipPostalCode": 41000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 28, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10682, - "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 2, - "Freight": 36.13, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10473, + "EmployeeID": 1, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", + "ShipVia": 3, + "Freight": 16.37, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 90698, + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 4, + "UnitPrice": 2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 12, "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10683, - "EmployeeID": 2, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 1, - "Freight": 4.4, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10621, + "EmployeeID": 4, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 2, + "Freight": 23.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 50269, + "ShipPostalCode": 39000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 9, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10684, - "EmployeeID": 3, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 1, - "Freight": 145.63, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ + }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 20, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10685, + "OrderID": 10674, "EmployeeID": 4, - "OrderDate": "1997-09-29T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", "ShipVia": 2, - "Freight": 33.75, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 0.9, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60699, + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10749, + "EmployeeID": 4, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 61.53, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 30222, + "ShipPostalCode": 50000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 15, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10686, + "OrderID": 10798, "EmployeeID": 2, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-08T00:00:00", + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 1, - "Freight": 96.5, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 2.33, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60634, + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10687, + "OrderID": 10829, "EmployeeID": 9, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-30T00:00:00", - "ShipVia": 2, - "Freight": 296.43, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-10T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 1, + "Freight": 154.72, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 50889, + "ShipPostalCode": 16000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, "Quantity": 10, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, - "Discount": 0.25 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10688, - "EmployeeID": 4, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", - "ShipVia": 2, - "Freight": 299.09, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderID": 10933, + "EmployeeID": 6, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 3, + "Freight": 54.15, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40624, + "ShipPostalCode": 44000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 14, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, "Discount": 0 } ] } - ] + ], + "Fax": "(198) 555-8888" }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "PERIC", + "Company": "Pericles Comidas clásicas", + "ContactName": "Guillermo Fernández", + "ContactTitle": "Sales Representative", + "Address": "Calle Dr. Jorge Cash 321", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 552-3745", + "Fax": "(5) 545-3745", "Orders": [ { - "OrderID": 10689, - "EmployeeID": 1, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-29T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", - "ShipVia": 2, - "Freight": 13.42, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 16000, - "ShipCountry": "Sweden", + "OrderID": 10322, + "EmployeeID": 7, + "OrderDate": "1996-10-04T00:00:00", + "RequiredDate": "1996-11-01T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 3, + "Freight": 0.4, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10690, - "EmployeeID": 1, - "OrderDate": "1997-10-02T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", - "ShipVia": 1, - "Freight": 15.8, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10354, + "EmployeeID": 8, + "OrderDate": "1996-11-14T00:00:00", + "RequiredDate": "1996-12-12T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 3, + "Freight": 53.8, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.25 - }, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 12, + "Discount": 0 + }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10691, - "EmployeeID": 2, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-10-22T00:00:00", + "OrderID": 10474, + "EmployeeID": 5, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-04-10T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", "ShipVia": 2, - "Freight": 810.05, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 83.49, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 40, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 40, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 24, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 48, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10692, - "EmployeeID": 4, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-10-31T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", - "ShipVia": 2, - "Freight": 61.02, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "OrderID": 10502, + "EmployeeID": 2, + "OrderDate": "1997-04-10T00:00:00", + "RequiredDate": "1997-05-08T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", + "ShipVia": 1, + "Freight": 69.32, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10693, - "EmployeeID": 3, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-10-10T00:00:00", + "OrderID": 10995, + "EmployeeID": 1, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", "ShipVia": 3, - "Freight": 139.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 46, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 6, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 60, - "Discount": 0.16 - }, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11073, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-15T00:00:00", + "ShipVia": 2, + "Freight": 24.95, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, + "CustomerID": "KOENE", + "Company": "Königlich Essen", + "ContactName": "Philip Cramer", + "ContactTitle": "Sales Associate", + "Address": "Maubelstr. 90", + "City": "Brandenburg", + "PostalCode": 14776, "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "Phone": "0555-09876", "Orders": [ { - "OrderID": 10694, - "EmployeeID": 8, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-11-03T00:00:00", - "ShippedDate": "1997-10-09T00:00:00", - "ShipVia": 3, - "Freight": 398.36, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10323, + "EmployeeID": 4, + "OrderDate": "1996-10-07T00:00:00", + "RequiredDate": "1996-11-04T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 4.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 90, + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10695, - "EmployeeID": 7, - "OrderDate": "1997-10-07T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 1, - "Freight": 16.72, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10325, + "EmployeeID": 1, + "OrderDate": "1996-10-09T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 3, + "Freight": 64.86, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 10, "Quantity": 4, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10696, + "OrderID": 10456, "EmployeeID": 8, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 3, - "Freight": 102.55, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderDate": "1997-02-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 8.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 18, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 21, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10697, + "OrderID": 10468, "EmployeeID": 3, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-05T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 1, - "Freight": 45.52, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderDate": "1997-03-07T00:00:00", + "RequiredDate": "1997-04-04T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 44.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 9, - "Discount": 0.25 - }, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10506, + "EmployeeID": 9, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 21.19, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 18, + "Discount": 0.1 }, { "ProductID": 70, "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.25 + "Quantity": 14, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10698, - "EmployeeID": 4, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-17T00:00:00", - "ShipVia": 1, - "Freight": 272.47, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10542, + "EmployeeID": 1, + "OrderDate": "1997-05-20T00:00:00", + "RequiredDate": "1997-06-17T00:00:00", + "ShippedDate": "1997-05-26T00:00:00", + "ShipVia": 3, + "Freight": 10.95, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 11, "UnitPrice": 21, "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 65, "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 24, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10699, - "EmployeeID": 3, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", - "ShipVia": 3, - "Freight": 0.58, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, + "OrderID": 10630, + "EmployeeID": 1, + "OrderDate": "1997-08-13T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 2, + "Freight": 32.35, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10700, - "EmployeeID": 3, - "OrderDate": "1997-10-10T00:00:00", - "RequiredDate": "1997-11-07T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", - "ShipVia": 1, - "Freight": 65.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10718, + "EmployeeID": 1, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 3, + "Freight": 170.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0.2 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 40, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.2 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10701, - "EmployeeID": 6, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-10-27T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", + "OrderID": 10799, + "EmployeeID": 9, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 3, - "Freight": 220.31, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 30.76, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 20, "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10702, - "EmployeeID": 4, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", - "ShipVia": 1, - "Freight": 23.94, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0 + "OrderID": 10817, + "EmployeeID": 3, + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 306.07, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 15, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10703, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-10-20T00:00:00", + "OrderID": 10849, + "EmployeeID": 9, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 2, - "Freight": 152.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 28000, - "ShipCountry": "Sweden", + "Freight": 0.56, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 49, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 18, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10704, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", - "ShipVia": 1, - "Freight": 4.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10893, + "EmployeeID": 9, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 2, + "Freight": 77.78, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 6, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, "Discount": 0 }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 35, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 48, - "UnitPrice": 12.75, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 24, "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10705, - "EmployeeID": 9, - "OrderDate": "1997-10-15T00:00:00", - "RequiredDate": "1997-11-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 2, - "Freight": 3.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ + }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 4, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10706, - "EmployeeID": 8, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-11-13T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", - "ShipVia": 3, - "Freight": 135.63, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 11028, + "EmployeeID": 2, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 1, + "Freight": 29.59, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { "ProductID": 59, "UnitPrice": 55, - "Quantity": 8, + "Quantity": 24, "Discount": 0 } ] } - ] + ], + "Fax": "0555-09876" }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", + "CustomerID": "SAVEA", + "Company": "Save-a-lot Markets", + "ContactName": "Jose Pavarotti", "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 10000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Address": "187 Suffolk Ln.", + "City": "Boise", + "Region": "ID", + "PostalCode": 83720, + "Country": "USA", + "Phone": "(208) 555-8097", "Orders": [ { - "OrderID": 10707, - "EmployeeID": 4, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", - "ShipVia": 3, - "Freight": 21.74, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 28000, - "ShipCountry": "UK", + "OrderID": 10324, + "EmployeeID": 9, + "OrderDate": "1996-10-08T00:00:00", + "RequiredDate": "1996-11-05T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", + "ShipVia": 1, + "Freight": 214.27, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 16, + "UnitPrice": 13.9, "Quantity": 21, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 40, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 70, + "Discount": 0.16 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 28, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 40, "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ - { - "OrderID": 10708, - "EmployeeID": 6, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 2.96, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 4, - "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 80, + "Discount": 0.16 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10709, + "OrderID": 10393, "EmployeeID": 1, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-11-20T00:00:00", + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", "ShipVia": 3, - "Freight": 210.8, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 126.56, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 40, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 28, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 42, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ - { - "OrderID": 10710, - "EmployeeID": 1, - "OrderDate": "1997-10-20T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", - "ShipVia": 1, - "Freight": 4.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", - "OrderDetails": [ + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 7, + "Discount": 0.25 + }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 70, + "Discount": 0.25 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 32, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10711, - "EmployeeID": 5, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 2, - "Freight": 52.41, + "OrderID": 10398, + "EmployeeID": 2, + "OrderDate": "1996-12-30T00:00:00", + "RequiredDate": "1997-01-27T00:00:00", + "ShippedDate": "1997-01-09T00:00:00", + "ShipVia": 3, + "Freight": 89.16, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21393,92 +16487,68 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 42, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 55, + "UnitPrice": 19.2, "Quantity": 120, - "Discount": 0 + "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10712, - "EmployeeID": 3, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", - "ShipVia": 1, - "Freight": 89.93, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10440, + "EmployeeID": 4, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-10T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 86.53, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 45, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 49, + "Discount": 0.16 + }, + { + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 24, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 90, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10713, - "EmployeeID": 1, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-24T00:00:00", + "OrderID": 10452, + "EmployeeID": 8, + "OrderDate": "1997-02-20T00:00:00", + "RequiredDate": "1997-03-20T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", "ShipVia": 1, - "Freight": 167.05, + "Freight": 140.26, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21487,39 +16557,56 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0 - }, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 100, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10510, + "EmployeeID": 6, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", + "ShipVia": 3, + "Freight": 367.63, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 110, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 24, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 36, + "Discount": 0.1 } ] }, { - "OrderID": 10714, - "EmployeeID": 5, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", + "OrderID": 10555, + "EmployeeID": 6, + "OrderDate": "1997-06-02T00:00:00", + "RequiredDate": "1997-06-30T00:00:00", + "ShippedDate": "1997-06-04T00:00:00", "ShipVia": 3, - "Freight": 24.49, + "Freight": 252.49, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21528,382 +16615,291 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 14, + "UnitPrice": 23.25, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.2 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 27, - "Discount": 0.25 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 18, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, + "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10715, - "EmployeeID": 3, - "OrderDate": "1997-10-23T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 1, - "Freight": 63.2, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10603, + "EmployeeID": 8, + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 2, + "Freight": 48.77, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 21, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 48, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10716, - "EmployeeID": 4, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", - "ShipVia": 2, - "Freight": 22.57, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10607, + "EmployeeID": 5, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 1, + "Freight": 200.24, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 7, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 100, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10717, - "EmployeeID": 1, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 2, - "Freight": 59.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 32, - "Discount": 0.06 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 42, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10718, + "OrderID": 10612, "EmployeeID": 1, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 3, - "Freight": 170.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderDate": "1997-07-28T00:00:00", + "RequiredDate": "1997-08-25T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 2, + "Freight": 544.08, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, "Quantity": 40, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 80, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10719, + "OrderID": 10627, "EmployeeID": 8, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 51.44, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 107.46, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 12, - "Discount": 0.25 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 3, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, + "Discount": 0.16 } ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10720, - "EmployeeID": 8, - "OrderDate": "1997-10-28T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", + "OrderID": 10657, + "EmployeeID": 2, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", "ShipVia": 2, - "Freight": 9.53, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 352.69, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 8, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10721, - "EmployeeID": 5, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-11-26T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", + "OrderID": 10678, + "EmployeeID": 7, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", "ShipVia": 3, - "Freight": 48.92, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 388.98, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 100, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 120, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10722, - "EmployeeID": 8, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-04T00:00:00", + "OrderID": 10700, + "EmployeeID": 3, + "OrderDate": "1997-10-10T00:00:00", + "RequiredDate": "1997-11-07T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", "ShipVia": 1, - "Freight": 74.58, + "Freight": 65.1, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21912,1506 +16908,1248 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 3, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.2 }, { "ProductID": 68, "UnitPrice": 12.5, - "Quantity": 45, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10711, + "EmployeeID": 5, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 2, + "Freight": 52.41, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 42, "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 120, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10723, - "EmployeeID": 3, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-11-27T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", + "OrderID": 10713, + "EmployeeID": 1, + "OrderDate": "1997-10-22T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-24T00:00:00", "ShipVia": 1, - "Freight": 21.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, + "Freight": 167.05, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0 + }, { "ProductID": 26, "UnitPrice": 31.23, - "Quantity": 15, + "Quantity": 30, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 26000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10724, - "EmployeeID": 8, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 57.75, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 20000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 110, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10725, - "EmployeeID": 4, - "OrderDate": "1997-10-31T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 3, - "Freight": 10.83, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10722, + "EmployeeID": 8, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-04T00:00:00", + "ShipVia": 1, + "Freight": 74.58, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 43000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10726, - "EmployeeID": 4, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", + "OrderID": 10748, + "EmployeeID": 3, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", "ShipVia": 1, - "Freight": 16.56, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 24000, - "ShipCountry": "UK", + "Freight": 232.55, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 44, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10727, - "EmployeeID": 2, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-12-01T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", + "OrderID": 10757, + "EmployeeID": 6, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", "ShipVia": 1, - "Freight": 89.9, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 8.19, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 59, "UnitPrice": 55, - "Quantity": 10, - "Discount": 0.06 + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 24, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10728, - "EmployeeID": 4, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-11-11T00:00:00", - "ShipVia": 2, - "Freight": 58.33, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10815, + "EmployeeID": 2, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 3, + "Freight": 14.62, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10847, + "EmployeeID": 4, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 3, + "Freight": 487.57, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.2 }, { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 19, + "UnitPrice": 9.2, "Quantity": 12, - "Discount": 0 + "Discount": 0.2 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 60, + "Discount": 0.2 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 36, + "Discount": 0.2 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "Quantity": 45, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 55, + "Discount": 0.2 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10729, - "EmployeeID": 8, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", + "OrderID": 10882, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 3, - "Freight": 141.06, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 23.1, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 50, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 40, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 32, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10730, - "EmployeeID": 5, - "OrderDate": "1997-11-05T00:00:00", - "RequiredDate": "1997-12-03T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", + "OrderID": 10894, + "EmployeeID": 1, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 1, - "Freight": 20.12, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 116.13, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 28, "Discount": 0.06 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 3, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 50, "Discount": 0.06 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 120, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10731, + "OrderID": 10941, "EmployeeID": 7, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", - "ShipVia": 1, - "Freight": 96.65, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 2, + "Freight": 400.81, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 44, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 30, - "Discount": 0.06 + "Discount": 0.25 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 80, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10732, - "EmployeeID": 3, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", - "ShipVia": 1, - "Freight": 16.97, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10983, + "EmployeeID": 2, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", + "ShipVia": 2, + "Freight": 657.54, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 84, + "Discount": 0.16 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 30000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10733, - "EmployeeID": 1, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-10T00:00:00", - "ShipVia": 3, - "Freight": 110.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 34000, - "ShipCountry": "Sweden", + "OrderID": 11002, + "EmployeeID": 4, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 1, + "Freight": 141.16, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 16, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 56, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 25, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.16 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10734, - "EmployeeID": 2, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-12T00:00:00", - "ShipVia": 3, - "Freight": 1.63, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 11030, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 2, + "Freight": 830.75, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 100, + "Discount": 0.25 + }, + { + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 100, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11064, + "EmployeeID": 1, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 30.09, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 77, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 55, "Discount": 0 } ] } ], - "Fax": "(11) 555-9482" + "Fax": "(208) 555-8097" }, { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", + "CustomerID": "BOLID", + "Company": "Bólido Comidas preparadas", + "ContactName": "Martín Sommer", "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", + "Address": "C/ Araquil, 67", + "City": "Madrid", + "PostalCode": 28023, + "Country": "Spain", + "Phone": "(91) 555 22 82", + "Fax": "(91) 555 91 99", "Orders": [ { - "OrderID": 10735, - "EmployeeID": 6, - "OrderDate": "1997-11-10T00:00:00", - "RequiredDate": "1997-12-08T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderID": 10326, + "EmployeeID": 4, + "OrderDate": "1996-10-10T00:00:00", + "RequiredDate": "1996-11-07T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", "ShipVia": 2, - "Freight": 45.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "Freight": 77.92, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10736, - "EmployeeID": 9, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 2, - "Freight": 44.1, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 40, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 16, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, + "UnitPrice": 6.2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10737, - "EmployeeID": 2, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10801, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", "ShipVia": 2, - "Freight": 7.79, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 97.09, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 4, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 10738, - "EmployeeID": 2, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10970, + "EmployeeID": 9, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", "ShipVia": 1, - "Freight": 2.91, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 16.16, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 40, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", + "CustomerID": "FURIB", + "Company": "Furia Bacalhau e Frutos do Mar", + "ContactName": "Lino Rodriguez", + "ContactTitle": "Sales Manager", + "Address": "Jardim das rosas n. 32", + "City": "Lisboa", + "PostalCode": 1675, + "Country": "Portugal", + "Phone": "(1) 354-2534", + "Fax": "(1) 354-2535", "Orders": [ { - "OrderID": 10739, - "EmployeeID": 3, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-17T00:00:00", + "OrderID": 10328, + "EmployeeID": 4, + "OrderDate": "1996-10-14T00:00:00", + "RequiredDate": "1996-11-11T00:00:00", + "ShippedDate": "1996-10-17T00:00:00", "ShipVia": 3, - "Freight": 11.08, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 87.03, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 18, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 40, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, + "Discount": 0 + } + ] + }, { - "OrderID": 10740, + "OrderID": 10352, + "EmployeeID": 3, + "OrderDate": "1996-11-12T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-18T00:00:00", + "ShipVia": 3, + "Freight": 1.3, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 20, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10464, "EmployeeID": 4, - "OrderDate": "1997-11-13T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 81.88, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 89, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 16, "Discount": 0.2 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, - "Discount": 0.2 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10741, - "EmployeeID": 4, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10491, + "EmployeeID": 8, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-08T00:00:00", "ShipVia": 3, - "Freight": 10.96, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 27000, - "ShipCountry": "UK", + "Freight": 16.96, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 44, + "UnitPrice": 15.5, "Quantity": 15, - "Discount": 0.2 + "Discount": 0.16 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 17000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10742, - "EmployeeID": 3, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-12-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10551, + "EmployeeID": 4, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", "ShipVia": 3, - "Freight": 243.73, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 17000, - "ShipCountry": "Canada", + "Freight": 72.95, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 41000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10743, + "OrderID": 10604, "EmployeeID": 1, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", + "ShipVia": 1, + "Freight": 7.46, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 28, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10744, - "EmployeeID": 6, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", - "ShipVia": 1, - "Freight": 69.19, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 6, + "Discount": 0.1 + }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10745, - "EmployeeID": 9, - "OrderDate": "1997-11-18T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 1, - "Freight": 3.52, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10664, + "EmployeeID": 1, + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 3, + "Freight": 1.27, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 24, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 45, - "Discount": 0 - }, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10963, + "EmployeeID": 9, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 3, + "Freight": 2.7, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", + "CustomerID": "BONAP", + "Company": "Bon app", + "ContactName": "Laurence Lebihan", "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", "Orders": [ { - "OrderID": 10746, - "EmployeeID": 1, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 3, - "Freight": 31.43, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10331, + "EmployeeID": 9, + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-27T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", + "ShipVia": 1, + "Freight": 10.19, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 15, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10340, + "EmployeeID": 1, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 166.31, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 9, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, + "ProductID": 43, + "UnitPrice": 36.8, "Quantity": 40, - "Discount": 0 + "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10747, - "EmployeeID": 6, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-26T00:00:00", + "OrderID": 10362, + "EmployeeID": 3, + "OrderDate": "1996-11-25T00:00:00", + "RequiredDate": "1996-12-23T00:00:00", + "ShippedDate": "1996-11-28T00:00:00", "ShipVia": 1, - "Freight": 117.33, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 96.04, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 9, - "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10748, - "EmployeeID": 3, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", - "ShipVia": 1, - "Freight": 232.55, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 44, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 14000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10749, + "OrderID": 10470, "EmployeeID": 4, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 61.53, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 30222, - "ShipPostalCode": 50000, - "ShipCountry": "UK", + "Freight": 64.56, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 15, + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 6, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10750, - "EmployeeID": 9, - "OrderDate": "1997-11-21T00:00:00", - "RequiredDate": "1997-12-19T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", - "ShipVia": 1, - "Freight": 79.3, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10511, + "EmployeeID": 4, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 350.64, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, "Discount": 0.16 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 50, "Discount": 0.16 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10751, - "EmployeeID": 3, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-12-03T00:00:00", - "ShipVia": 3, - "Freight": 130.79, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10525, + "EmployeeID": 1, + "OrderDate": "1997-05-02T00:00:00", + "RequiredDate": "1997-05-30T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 2, + "Freight": 11.06, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 30, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 73, - "UnitPrice": 15, + "ProductID": 40, + "UnitPrice": 18.4, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 36000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ + }, { - "OrderID": 10752, + "OrderID": 10663, "EmployeeID": 2, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", - "ShipVia": 3, - "Freight": 1.39, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-09-24T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 113.15, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 3, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10753, + "OrderID": 10715, "EmployeeID": 3, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", + "OrderDate": "1997-10-23T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 1, - "Freight": 7.7, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "Freight": 63.2, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 4, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10754, - "EmployeeID": 6, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 3, - "Freight": 2.38, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10730, + "EmployeeID": 5, + "OrderDate": "1997-11-05T00:00:00", + "RequiredDate": "1997-12-03T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 1, + "Freight": 20.12, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10732, + "EmployeeID": 3, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", + "ShipVia": 1, + "Freight": 16.97, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { "OrderID": 10755, "EmployeeID": 4, @@ -23451,247 +18189,195 @@ "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10756, - "EmployeeID": 8, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-02T00:00:00", + "OrderID": 10827, + "EmployeeID": 1, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", "ShipVia": 2, - "Freight": 73.21, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 63.54, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10757, - "EmployeeID": 6, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 1, - "Freight": 8.19, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10871, + "EmployeeID": 9, + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 112.27, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 50, + "Discount": 0.06 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 7, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 30, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10876, + "EmployeeID": 7, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 60.42, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 21, "Discount": 0 }, { "ProductID": 64, "UnitPrice": 33.25, - "Quantity": 24, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10758, - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-04T00:00:00", - "ShipVia": 3, - "Freight": 138.17, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10932, + "EmployeeID": 8, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", + "ShipVia": 1, + "Freight": 134.64, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 60, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 14, + "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 16, "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10759, - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", + "OrderID": 10940, + "EmployeeID": 8, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", "ShipVia": 3, - "Freight": 11.99, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 19.77, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10760, + "OrderID": 11076, "EmployeeID": 4, - "OrderDate": "1997-12-01T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1997-12-10T00:00:00", - "ShipVia": 1, - "Freight": 155.64, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-06-08T00:00:00", + "ShipVia": 2, + "Freight": 38.28, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 12, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, "Discount": 0.25 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 40, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, "Discount": 0.25 } ] @@ -23699,4607 +18385,398 @@ ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "MEREP", + "Company": "Mère Paillarde", + "ContactName": "Jean Fresnière", + "ContactTitle": "Marketing Assistant", + "Address": "43 rue St. Laurent", + "City": "Montréal", + "Region": "Québec", + "PostalCode": 20000, + "Country": "Canada", + "Phone": "(514) 555-8054", + "Fax": "(514) 555-8055", "Orders": [ { - "OrderID": 10761, - "EmployeeID": 5, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", + "OrderID": 10332, + "EmployeeID": 3, + "OrderDate": "1996-10-17T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", "ShipVia": 2, - "Freight": 18.66, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 52.84, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 28000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 18, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 16, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 13000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10762, - "EmployeeID": 3, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 1, - "Freight": 328.74, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 44000, - "ShipCountry": "Sweden", + "OrderID": 10339, + "EmployeeID": 2, + "OrderDate": "1996-10-28T00:00:00", + "RequiredDate": "1996-11-25T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", + "ShipVia": 2, + "Freight": 15.66, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 16, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 28, "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10763, - "EmployeeID": 3, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", - "ShipVia": 3, - "Freight": 37.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "OrderID": 10376, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 2, + "Freight": 20.39, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 39000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 21, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "Quantity": 42, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10424, + "EmployeeID": 7, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-20T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 2, + "Freight": 370.61, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 22000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 6, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 49, + "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10764, + "OrderID": 10439, "EmployeeID": 6, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", + "OrderDate": "1997-02-07T00:00:00", + "RequiredDate": "1997-03-07T00:00:00", + "ShippedDate": "1997-02-10T00:00:00", "ShipVia": 3, - "Freight": 145.45, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 130, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10765, - "EmployeeID": 3, - "OrderDate": "1997-12-04T00:00:00", - "RequiredDate": "1998-01-01T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 3, - "Freight": 42.74, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 80, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10766, - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 1, - "Freight": 157.55, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 28000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10767, - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 3, - "Freight": 1.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 44000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 22000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10768, - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 2, - "Freight": 146.32, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10769, - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 65.06, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10770, - "EmployeeID": 8, - "OrderDate": "1997-12-09T00:00:00", - "RequiredDate": "1998-01-06T00:00:00", - "ShippedDate": "1997-12-17T00:00:00", - "ShipVia": 3, - "Freight": 5.32, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10771, - "EmployeeID": 9, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 2, - "Freight": 11.19, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10772, - "EmployeeID": 3, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 2, - "Freight": 91.28, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10773, - "EmployeeID": 1, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1998-01-08T00:00:00", - "ShippedDate": "1997-12-16T00:00:00", - "ShipVia": 3, - "Freight": 96.43, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 33, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 70, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 7, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10774, - "EmployeeID": 4, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 48.2, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 2, - "Discount": 0.25 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "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", - "Orders": [ - { - "OrderID": 10775, - "EmployeeID": 7, - "OrderDate": "1997-12-12T00:00:00", - "RequiredDate": "1998-01-09T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 20.25, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10776, - "EmployeeID": 1, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1998-01-12T00:00:00", - "ShippedDate": "1997-12-18T00:00:00", - "ShipVia": 3, - "Freight": 351.53, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 27, - "Discount": 0.06 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 120, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 10777, - "EmployeeID": 7, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 2, - "Freight": 3.01, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 11000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10778, - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 1, - "Freight": 6.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 39000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ - { - "OrderID": 10779, - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 2, - "Freight": 58.13, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0 - } - ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10780, - "EmployeeID": 2, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-25T00:00:00", - "ShipVia": 1, - "Freight": 42.13, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10781, - "EmployeeID": 2, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 3, - "Freight": 73.16, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0.2 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10782, - "EmployeeID": 9, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 1.1, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 1, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10783, - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 2, - "Freight": 124.98, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10784, - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 70.09, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.16 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "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", - "Orders": [ - { - "OrderID": 10785, - "EmployeeID": 1, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 3, - "Freight": 1.51, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10786, - "EmployeeID": 8, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-16T00:00:00", - "ShippedDate": "1997-12-23T00:00:00", - "ShipVia": 1, - "Freight": 110.87, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 42, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10787, - "EmployeeID": 2, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 249.93, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10788, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 42.7, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ - { - "OrderID": 10789, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 2, - "Freight": 100.6, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 10790, - "EmployeeID": 6, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 28.23, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 3, - "Discount": 0.16 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.16 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10791, - "EmployeeID": 6, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-01T00:00:00", - "ShipVia": 2, - "Freight": 16.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10792, - "EmployeeID": 1, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 3, - "Freight": 23.79, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 19000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10793, - "EmployeeID": 3, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", - "ShipVia": 3, - "Freight": 4.52, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 32000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ - { - "OrderID": 10794, - "EmployeeID": 6, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 1, - "Freight": 21.49, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10795, - "EmployeeID": 8, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-20T00:00:00", - "ShipVia": 2, - "Freight": 126.66, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 65, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 35, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10796, - "EmployeeID": 3, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 1, - "Freight": 26.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 24, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ - { - "OrderID": 10797, - "EmployeeID": 7, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 2, - "Freight": 33.35, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10798, - "EmployeeID": 2, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 1, - "Freight": 2.33, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60634, - "ShipPostalCode": 40000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10799, - "EmployeeID": 9, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 3, - "Freight": 30.76, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10800, - "EmployeeID": 1, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 3, - "Freight": 137.44, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 41000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 7, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ - { - "OrderID": 10801, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 2, - "Freight": 97.09, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ - { - "OrderID": 10802, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 2, - "Freight": 257.26, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 5, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ - { - "OrderID": 10803, - "EmployeeID": 4, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-06T00:00:00", - "ShipVia": 1, - "Freight": 55.23, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 24, - "Discount": 0.06 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10804, - "EmployeeID": 6, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 2, - "Freight": 27.33, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 38000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 36, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 4, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ - { - "OrderID": 10805, - "EmployeeID": 2, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 3, - "Freight": 237.34, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10806, - "EmployeeID": 3, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 2, - "Freight": 22.11, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ - { - "OrderID": 10807, - "EmployeeID": 4, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 1, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ - { - "OrderID": 10808, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 3, - "Freight": 45.53, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ - { - "OrderID": 10809, - "EmployeeID": 7, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 1, - "Freight": 4.87, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 28000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ - { - "OrderID": 10810, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 3, - "Freight": 4.33, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 48000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10811, - "EmployeeID": 8, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", - "ShipVia": 1, - "Freight": 31.22, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10812, - "EmployeeID": 5, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 1, - "Freight": 59.78, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.1 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ - { - "OrderID": 10813, - "EmployeeID": 1, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 1, - "Freight": 47.38, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0.2 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10814, - "EmployeeID": 3, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 130.94, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 8, - "Discount": 0.16 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10815, - "EmployeeID": 2, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 14.62, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ - { - "OrderID": 10816, - "EmployeeID": 4, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-02-03T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 2, - "Freight": 719.78, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10817, - "EmployeeID": 3, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 306.07, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 25, - "Discount": 0.16 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10818, - "EmployeeID": 7, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 3, - "Freight": 65.48, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10819, - "EmployeeID": 2, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 19.76, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10820, - "EmployeeID": 3, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 37.52, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ - { - "OrderID": 10821, - "EmployeeID": 1, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-15T00:00:00", - "ShipVia": 1, - "Freight": 36.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "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", - "Orders": [ - { - "OrderID": 10822, - "EmployeeID": 6, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 7, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10823, - "EmployeeID": 5, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 163.97, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 29000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10824, - "EmployeeID": 8, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 1.23, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 39000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ - { - "OrderID": 10825, - "EmployeeID": 1, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 1, - "Freight": 79.25, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10826, - "EmployeeID": 6, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", - "ShipVia": 1, - "Freight": 7.09, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10827, - "EmployeeID": 1, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", - "ShipVia": 2, - "Freight": 63.54, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ - { - "OrderID": 10828, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 1, - "Freight": 90.85, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10829, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-10T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 1, - "Freight": 154.72, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 50889, - "ShipPostalCode": 16000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10830, - "EmployeeID": 4, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 2, - "Freight": 81.83, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ - { - "OrderID": 10831, - "EmployeeID": 3, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 2, - "Freight": 72.19, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10832, - "EmployeeID": 2, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 43.26, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 3, - "Discount": 0.2 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0.2 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10833, - "EmployeeID": 6, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 2, - "Freight": 71.49, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 9, - "Discount": 0.1 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 9, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10834, - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 3, - "Freight": 29.78, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 8, - "Discount": 0.06 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ - { - "OrderID": 10835, - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 3, - "Freight": 69.53, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10836, - "EmployeeID": 7, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 1, - "Freight": 411.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 52, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 47000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10837, - "EmployeeID": 9, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 13.32, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 17000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10838, - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 59.28, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10839, - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-22T00:00:00", - "ShipVia": 3, - "Freight": 35.43, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10840, - "EmployeeID": 4, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", - "ShipVia": 2, - "Freight": 2.71, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 6, - "Discount": 0.2 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 22000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10841, - "EmployeeID": 5, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 2, - "Freight": 424.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 27000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10842, - "EmployeeID": 1, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 3, - "Freight": 54.42, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10843, - "EmployeeID": 4, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 9.26, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 4, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10844, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 25.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10845, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 212.98, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.1 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 42, - "Discount": 0.1 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 60, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 48, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 15000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10846, - "EmployeeID": 2, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 56.46, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 15000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10847, - "EmployeeID": 4, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 3, - "Freight": 487.57, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.2 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.2 - }, - { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 60, - "Discount": 0.2 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 36, - "Discount": 0.2 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 45, - "Discount": 0.2 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 55, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 43000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ - { - "OrderID": 10848, - "EmployeeID": 7, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 2, - "Freight": 38.24, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 36000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10849, - "EmployeeID": 9, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 49, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 18, - "Discount": 0.16 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10850, - "EmployeeID": 1, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 49.19, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 4, - "Discount": 0.16 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ - { - "OrderID": 10851, - "EmployeeID": 5, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-23T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", - "ShipVia": 1, - "Freight": 160.55, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 4.07, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0.06 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.06 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10852, - "EmployeeID": 8, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 174.05, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 39, + "ProductID": 64, + "UnitPrice": 26.6, "Quantity": 6, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 50, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10853, - "EmployeeID": 9, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", - "ShipVia": 2, - "Freight": 53.83, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10505, + "EmployeeID": 3, + "OrderDate": "1997-04-14T00:00:00", + "RequiredDate": "1997-05-12T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 7.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 33000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10854, - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-05T00:00:00", + "OrderID": 10565, + "EmployeeID": 8, + "OrderDate": "1997-06-11T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", "ShipVia": 2, - "Freight": 100.22, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 7.15, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 21000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 100, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 18, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10855, + "OrderID": 10570, "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 1, - "Freight": 170.97, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 14, - "Discount": 0 + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-19T00:00:00", + "ShipVia": 3, + "Freight": 188.99, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0.06 }, { "ProductID": 56, "UnitPrice": 38, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "Quantity": 60, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10856, - "EmployeeID": 3, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 2, - "Freight": 58.43, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10590, + "EmployeeID": 4, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 3, + "Freight": 44.77, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 20, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 60, + "Discount": 0.06 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 48000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10857, - "EmployeeID": 8, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", + "OrderID": 10605, + "EmployeeID": 1, + "OrderDate": "1997-07-21T00:00:00", + "RequiredDate": "1997-08-18T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", "ShipVia": 2, - "Freight": 188.85, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", + "Freight": 379.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.25 + "Discount": 0.06 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ - { - "OrderID": 10858, - "EmployeeID": 2, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", - "ShipVia": 1, - "Freight": 52.51, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 5, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 10, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10859, + "OrderID": 10618, "EmployeeID": 1, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", - "ShipVia": 2, - "Freight": 76.1, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderDate": "1997-08-01T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 1, + "Freight": 154.68, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 30000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, { - "OrderID": 10860, - "EmployeeID": 3, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 3, - "Freight": 19.26, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10724, + "EmployeeID": 8, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 2, + "Freight": 57.75, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 20000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] @@ -28307,2480 +18784,2081 @@ ] }, { - "CustomerID": "WHITC", - "Company": "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": "PRINI", + "Company": "Princesa Isabel Vinhos", + "ContactName": "Isabel de Castro", + "ContactTitle": "Sales Representative", + "Address": "Estrada da saúde n. 58", + "City": "Lisboa", + "PostalCode": 1756, + "Country": "Portugal", + "Phone": "(1) 356-5634", "Orders": [ { - "OrderID": 10861, - "EmployeeID": 4, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-02-27T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", + "OrderID": 10336, + "EmployeeID": 7, + "OrderDate": "1996-10-23T00:00:00", + "RequiredDate": "1996-11-20T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", "ShipVia": 2, - "Freight": 14.93, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 15.51, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 42, - "Discount": 0 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, - "Discount": 0 - }, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 18, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10397, + "EmployeeID": 5, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-24T00:00:00", + "ShippedDate": "1997-01-02T00:00:00", + "ShipVia": 1, + "Freight": 60.26, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ { "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 35, - "Discount": 0 - }, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10433, + "EmployeeID": 3, + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 73.83, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10862, - "EmployeeID": 8, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderID": 10477, + "EmployeeID": 5, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", "ShipVia": 2, - "Freight": 53.23, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 13.02, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 25, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10863, - "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", + "OrderID": 11007, + "EmployeeID": 8, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 30.26, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 202.24, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 14, + "Discount": 0 } ] } - ] + ], + "Fax": "(1) 356-5634" }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 31000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "CustomerID": "SIMOB", + "Company": "Simons bistro", + "ContactName": "Jytte Petersen", + "ContactTitle": "Owner", + "Address": "Vinbæltet 34", + "City": "Kobenhavn", + "PostalCode": 1734, + "Country": "Denmark", + "Phone": "31 12 34 56", + "Fax": "31 13 35 57", "Orders": [ { - "OrderID": 10864, + "OrderID": 10341, + "EmployeeID": 7, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", + "ShipVia": 3, + "Freight": 26.78, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10417, "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 2, - "Freight": 3.04, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 37000, - "ShipCountry": "UK", + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-28T00:00:00", + "ShipVia": 3, + "Freight": 70.29, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 2, + "Discount": 0.25 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 36, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10865, + "OrderID": 10556, "EmployeeID": 2, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderDate": "1997-06-03T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", "ShipVia": 1, - "Freight": 348.14, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 9.8, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10642, + "EmployeeID": 7, + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-09-05T00:00:00", + "ShipVia": 3, + "Freight": 41.89, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 48000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10866, - "EmployeeID": 5, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-03T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderID": 10669, + "EmployeeID": 2, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", "ShipVia": 1, - "Freight": 109.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 37000, - "ShipCountry": "Sweden", + "Freight": 24.39, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 2, + "ProductID": 36, "UnitPrice": 19, - "Quantity": 21, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10802, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 2, + "Freight": 257.26, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, "Discount": 0.25 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 6, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 60, "Discount": 0.25 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 40, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 5, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10867, - "EmployeeID": 6, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 1, - "Freight": 1.93, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 11074, + "EmployeeID": 7, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-06-03T00:00:00", + "ShipVia": 2, + "Freight": 18.44, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", + "CustomerID": "FAMIA", + "Company": "Familia Arquibaldo", + "ContactName": "Aria Cruz", "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", + "Address": "Rua Orós, 92", "City": "Sao Paulo", "Region": "SP", - "PostalCode": 5487, + "PostalCode": 5442, "Country": "Brazil", - "Phone": "(11) 555-1189", + "Phone": "(11) 555-9857", "Orders": [ { - "OrderID": 10868, - "EmployeeID": 7, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 2, - "Freight": 191.27, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", + "OrderID": 10347, + "EmployeeID": 4, + "OrderDate": "1996-11-06T00:00:00", + "RequiredDate": "1996-12-04T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 3.1, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", "ShipCity": "Sao Paulo", "ShipRegion": "SP", - "ShipPostalCode": 5487, + "ShipPostalCode": 5442, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 42, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 29000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10869, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 1, - "Freight": 143.28, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 48000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 11, - "UnitPrice": 21, + "ProductID": 25, + "UnitPrice": 11.2, "Quantity": 10, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, + "ProductID": 39, + "UnitPrice": 14.4, "Quantity": 50, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10870, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", - "ShipVia": 3, - "Freight": 12.04, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 2, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10871, + "OrderID": 10386, "EmployeeID": 9, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 2, - "Freight": 112.27, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-25T00:00:00", + "ShipVia": 3, + "Freight": 13.99, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10414, + "EmployeeID": 2, + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-17T00:00:00", + "ShipVia": 3, + "Freight": 21.48, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, "Discount": 0.06 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10872, - "EmployeeID": 5, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", + "OrderID": 10512, + "EmployeeID": 7, + "OrderDate": "1997-04-21T00:00:00", + "RequiredDate": "1997-05-19T00:00:00", + "ShippedDate": "1997-04-24T00:00:00", "ShipVia": 2, - "Freight": 175.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 3.53, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 10, - "Discount": 0.06 + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 12, + "Discount": 0.16 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10873, - "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", + "OrderID": 10581, + "EmployeeID": 3, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-02T00:00:00", "ShipVia": 1, - "Freight": 0.82, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 3.01, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10874, + "OrderID": 10650, "EmployeeID": 5, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 2, - "Freight": 19.58, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderDate": "1997-08-29T00:00:00", + "RequiredDate": "1997-09-26T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 176.81, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 34000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10875, + "OrderID": 10725, "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 2, - "Freight": 32.37, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 18000, - "ShipCountry": "Sweden", + "OrderDate": "1997-10-31T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 3, + "Freight": 10.83, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 25, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 21, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 15, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] } - ] + ], + "Fax": "(11) 555-9857" }, { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, + "CustomerID": "LAMAI", + "Company": "La maison de Asie", + "ContactName": "Annette Roulet", + "ContactTitle": "Sales Manager", + "Address": "1 rue Alsace-Lorraine", + "City": "Toulouse", + "PostalCode": 31000, "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", + "Phone": "61.77.61.10", + "Fax": "61.77.61.11", "Orders": [ { - "OrderID": 10876, - "EmployeeID": 7, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 3, - "Freight": 60.42, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, + "OrderID": 10350, + "EmployeeID": 6, + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 64.19, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 18, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10877, - "EmployeeID": 1, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", + "OrderID": 10358, + "EmployeeID": 5, + "OrderDate": "1996-11-20T00:00:00", + "RequiredDate": "1996-12-18T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", "ShipVia": 1, - "Freight": 38.06, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 19.64, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10878, - "EmployeeID": 4, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderID": 10371, + "EmployeeID": 1, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", "ShipVia": 1, - "Freight": 46.69, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 0.45, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 6, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10879, + "OrderID": 10413, "EmployeeID": 3, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 3, - "Freight": 8.5, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 2, + "Freight": 95.66, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 14, + "Discount": 0 + } + ] + }, + { + "OrderID": 10425, + "EmployeeID": 6, + "OrderDate": "1997-01-24T00:00:00", + "RequiredDate": "1997-02-21T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 2, + "Freight": 7.93, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, + "ProductID": 55, + "UnitPrice": 19.2, "Quantity": 10, - "Discount": 0 + "Discount": 0.25 }, { "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 43000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10880, - "EmployeeID": 7, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 88.01, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 15000, - "ShipCountry": "Sweden", + "OrderID": 10454, + "EmployeeID": 4, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-25T00:00:00", + "ShipVia": 3, + "Freight": 2.74, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 30, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 10, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10881, + "OrderID": 10493, "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 2.84, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 10.64, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 73, - "UnitPrice": 15, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, "Quantity": 10, - "Discount": 0 + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10882, - "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 3, - "Freight": 23.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10500, + "EmployeeID": 6, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-17T00:00:00", + "ShipVia": 1, + "Freight": 42.68, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 25, - "Discount": 0 + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 20, - "Discount": 0.16 - }, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10610, + "EmployeeID": 8, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 1, + "Freight": 26.78, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 32, - "Discount": 0.16 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10883, + "OrderID": 10631, "EmployeeID": 8, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 3, - "Freight": 0.53, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-15T00:00:00", + "ShipVia": 1, + "Freight": 0.87, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 8, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10884, - "EmployeeID": 4, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", - "ShipVia": 2, - "Freight": 90.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10787, + "EmployeeID": 2, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 249.93, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 21, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, "Discount": 0.06 + } + ] + }, + { + "OrderID": 10832, + "EmployeeID": 2, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 43.26, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0.2 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 3, + "Discount": 0 } ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 10000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10885, - "EmployeeID": 6, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", + "OrderID": 10923, + "EmployeeID": 7, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 3, - "Freight": 5.64, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 40000, - "ShipCountry": "Belgium", + "Freight": 68.26, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 - }, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 11051, + "EmployeeID": 7, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-09-25T00:00:00", + "ShipVia": 3, + "Freight": 2.79, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 25, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", + "CustomerID": "PICCO", + "Company": "Piccolo und mehr", + "ContactName": "Georg Pipps", + "ContactTitle": "Sales Manager", + "Address": "Geislweg 14", + "City": "Salzburg", + "PostalCode": 5020, + "Country": "Austria", + "Phone": "6562-9722", + "Fax": "6562-9723", "Orders": [ { - "OrderID": 10886, - "EmployeeID": 1, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 1, - "Freight": 4.99, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10353, + "EmployeeID": 7, + "OrderDate": "1996-11-13T00:00:00", + "RequiredDate": "1996-12-11T00:00:00", + "ShippedDate": "1996-11-25T00:00:00", + "ShipVia": 3, + "Freight": 360.63, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 40, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10887, - "EmployeeID": 8, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", + "OrderID": 10392, + "EmployeeID": 2, + "OrderDate": "1996-12-24T00:00:00", + "RequiredDate": "1997-01-21T00:00:00", + "ShippedDate": "1997-01-01T00:00:00", "ShipVia": 3, - "Freight": 1.25, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "Freight": 122.46, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10888, - "EmployeeID": 1, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", + "OrderID": 10427, + "EmployeeID": 4, + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", "ShipVia": 2, - "Freight": 51.87, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 31.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10889, - "EmployeeID": 9, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 3, - "Freight": 280.61, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10489, + "EmployeeID": 6, + "OrderDate": "1997-03-28T00:00:00", + "RequiredDate": "1997-04-25T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", + "ShipVia": 2, + "Freight": 5.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10890, - "EmployeeID": 7, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 32.76, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10530, + "EmployeeID": 3, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", + "ShipVia": 2, + "Freight": 339.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 17, "UnitPrice": 39, - "Quantity": 15, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10891, + "OrderID": 10597, "EmployeeID": 7, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 20.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", + "ShipVia": 3, + "Freight": 35.12, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10892, - "EmployeeID": 4, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 120.27, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 45000, - "ShipCountry": "Belgium", + "OrderID": 10686, + "EmployeeID": 2, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-08T00:00:00", + "ShipVia": 1, + "Freight": 96.5, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10893, - "EmployeeID": 9, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 2, - "Freight": 77.78, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10747, + "EmployeeID": 6, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-26T00:00:00", + "ShipVia": 1, + "Freight": 117.33, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 24, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 35, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10844, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", + "ShipVia": 2, + "Freight": 25.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10894, - "EmployeeID": 1, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 1, - "Freight": 116.13, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11053, + "EmployeeID": 2, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 28, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 120, - "Discount": 0.06 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 25, + "Discount": 0.2 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "AROUT", + "Company": "Around the Horn", + "ContactName": "Thomas Hardy", + "ContactTitle": "Sales Representative", + "Address": "120 Hanover Sq.", + "City": "London", + "PostalCode": 12000, + "Country": "UK", + "Phone": "(171) 555-7788", + "Fax": "(171) 555-6750", "Orders": [ { - "OrderID": 10895, - "EmployeeID": 3, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 1, - "Freight": 162.75, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10355, + "EmployeeID": 6, + "OrderDate": "1996-11-15T00:00:00", + "RequiredDate": "1996-12-13T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 41.95, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 31000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 110, + "UnitPrice": 3.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 45, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10383, + "EmployeeID": 8, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-18T00:00:00", + "ShipVia": 3, + "Freight": 34.24, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 19000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 91, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 100, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 11000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10896, - "EmployeeID": 7, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 32.45, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 28000, - "ShipCountry": "Belgium", + "OrderID": 10453, + "EmployeeID": 1, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", + "ShipVia": 2, + "Freight": 25.36, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 48, + "UnitPrice": 10.2, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 16, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10897, - "EmployeeID": 3, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-25T00:00:00", + "OrderID": 10558, + "EmployeeID": 1, + "OrderDate": "1997-06-04T00:00:00", + "RequiredDate": "1997-07-02T00:00:00", + "ShippedDate": "1997-06-10T00:00:00", "ShipVia": 2, - "Freight": 603.54, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 72.97, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 35000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 80, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 36, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10898, + "OrderID": 10707, "EmployeeID": 4, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 1.27, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 3, + "Freight": 21.74, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10899, - "EmployeeID": 5, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", + "OrderID": 10741, + "EmployeeID": 4, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 1.21, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 10.96, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 27000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10900, + "OrderID": 10743, "EmployeeID": 1, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", "ShipVia": 2, - "Freight": 1.66, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 28, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10901, - "EmployeeID": 4, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", - "ShipVia": 1, - "Freight": 62.09, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10768, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 2, + "Freight": 146.32, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 }, { "ProductID": 71, "UnitPrice": 21.5, - "Quantity": 30, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 39000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10902, - "EmployeeID": 1, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 1, - "Freight": 44.15, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 11000, - "ShipCountry": "Sweden", + "OrderID": 10793, + "EmployeeID": 3, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", + "ShipVia": 3, + "Freight": 4.52, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10903, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 36.71, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10864, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 2, + "Freight": 3.04, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10904, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 162.95, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10920, + "EmployeeID": 4, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", + "ShipVia": 2, + "Freight": 29.61, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 35000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 35, + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10905, + "OrderID": 10953, "EmployeeID": 9, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-25T00:00:00", "ShipVia": 2, - "Freight": 13.72, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10906, - "EmployeeID": 4, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 3, - "Freight": 26.29, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 11016, + "EmployeeID": 9, + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 2, + "Freight": 33.8, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 20000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 16, + "Discount": 0 } ] } ] }, { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", + "CustomerID": "SEVES", + "Company": "Seven Seas Imports", + "ContactName": "Hari Kumar", + "ContactTitle": "Sales Manager", + "Address": "90 Wadhurst Rd.", + "City": "London", + "PostalCode": 23000, + "Country": "UK", + "Phone": "(171) 555-1717", + "Fax": "(171) 555-5646", "Orders": [ { - "OrderID": 10907, - "EmployeeID": 6, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-25T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", + "OrderID": 10359, + "EmployeeID": 5, + "OrderDate": "1996-11-21T00:00:00", + "RequiredDate": "1996-12-19T00:00:00", + "ShippedDate": "1996-11-26T00:00:00", "ShipVia": 3, - "Freight": 9.19, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 288.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 43000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 14, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 56, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 70, + "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10908, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 32.96, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10377, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 22.21, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 20, - "Discount": 0.06 + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 14, - "Discount": 0.06 + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10909, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-10T00:00:00", - "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10388, + "EmployeeID": 2, + "OrderDate": "1996-12-19T00:00:00", + "RequiredDate": "1997-01-16T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", + "ShipVia": 1, + "Freight": 34.86, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 43000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 12, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 7.6, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 5, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10910, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 38.11, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10472, + "EmployeeID": 8, + "OrderDate": "1997-03-12T00:00:00", + "RequiredDate": "1997-04-09T00:00:00", + "ShippedDate": "1997-03-19T00:00:00", + "ShipVia": 1, + "Freight": 4.2, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 21000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 10, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 80, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10911, - "EmployeeID": 3, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", - "ShipVia": 1, - "Freight": 38.19, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10523, + "EmployeeID": 7, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 2, + "Freight": 77.63, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 16000, + "ShipCountry": "UK", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, { "ProductID": 17, "UnitPrice": 39, - "Quantity": 12, - "Discount": 0 + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 67, - "UnitPrice": 14, + "ProductID": 20, + "UnitPrice": 81, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 6, + "Discount": 0.1 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10912, - "EmployeeID": 2, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10547, + "EmployeeID": 3, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", "ShipVia": 2, - "Freight": 580.91, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 178.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 60, - "Discount": 0.25 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10913, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 1, - "Freight": 33.05, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10800, + "EmployeeID": 1, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 3, + "Freight": 137.44, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 41000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 7, + "Discount": 0.1 } ] }, { - "OrderID": 10914, + "OrderID": 10804, "EmployeeID": 6, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 1, - "Freight": 21.19, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 25, - "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10915, - "EmployeeID": 2, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 2, - "Freight": 3.51, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 27.33, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 38000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 10, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 4, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10916, - "EmployeeID": 1, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 2, - "Freight": 63.77, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10869, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 143.28, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 48000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 6, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 6, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 20, "Discount": 0 } @@ -30789,172 +20867,169 @@ ] }, { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", + "CustomerID": "DRACD", + "Company": "Drachenblut Delikatessen", + "ContactName": "Sven Ottlieb", + "ContactTitle": "Order Administrator", + "Address": "Walserweg 21", + "City": "Aachen", + "PostalCode": 52066, + "Country": "Germany", + "Phone": "0241-039123", + "Fax": "0241-059428", "Orders": [ { - "OrderID": 10917, + "OrderID": 10363, "EmployeeID": 4, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 2, - "Freight": 8.29, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1996-12-24T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", + "ShipVia": 3, + "Freight": 30.54, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 1, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 32000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10918, + "OrderID": 10391, "EmployeeID": 3, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-31T00:00:00", "ShipVia": 3, - "Freight": 48.83, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 45000, - "ShipCountry": "Canada", + "Freight": 5.45, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 18, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10919, - "EmployeeID": 2, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", + "OrderID": 10797, + "EmployeeID": 7, + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 2, - "Freight": 19.8, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 33.35, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 24, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10825, + "EmployeeID": 1, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 1, + "Freight": 79.25, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 24, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 53, + "UnitPrice": 32.8, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 41000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10920, - "EmployeeID": 4, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", + "OrderID": 11036, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 3, + "Freight": 149.47, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 11067, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", "ShipVia": 2, - "Freight": 29.61, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 35000, - "ShipCountry": "UK", + "Freight": 7.98, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 24, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, "Discount": 0 } ] @@ -30962,327 +21037,267 @@ ] }, { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", + "CustomerID": "EASTC", + "Company": "Eastern Connection", + "ContactName": "Ann Devon", + "ContactTitle": "Sales Agent", + "Address": "35 King George", + "City": "London", + "PostalCode": 46000, + "Country": "UK", + "Phone": "(171) 555-0297", + "Fax": "(171) 555-3373", "Orders": [ { - "OrderID": 10921, + "OrderID": 10364, "EmployeeID": 1, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", "ShipVia": 1, - "Freight": 176.48, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 71.97, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 10000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10922, - "EmployeeID": 5, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", + "OrderID": 10400, + "EmployeeID": 1, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", "ShipVia": 3, - "Freight": 62.74, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 83.93, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 25000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 15, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 35, + "UnitPrice": 14.4, "Quantity": 35, "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10923, + "OrderID": 10532, "EmployeeID": 7, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderDate": "1997-05-09T00:00:00", + "RequiredDate": "1997-06-06T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", "ShipVia": 3, - "Freight": 68.26, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 74.46, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 23000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, + "ProductID": 66, + "UnitPrice": 17, "Quantity": 24, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 28000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10924, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 2, - "Freight": 151.52, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 35000, - "ShipCountry": "Sweden", + "OrderID": 10726, + "EmployeeID": 4, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 16.56, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 24000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 6, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10925, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderID": 10987, + "EmployeeID": 8, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", "ShipVia": 1, - "Freight": 2.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 185.48, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 12, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 20, + "Discount": 0 + } + ] + }, { - "OrderID": 10926, + "OrderID": 11024, "EmployeeID": 4, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 3, - "Freight": 39.92, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 74.36, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 23000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 2, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ + }, { - "OrderID": 10927, - "EmployeeID": 4, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 19.79, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "OrderID": 11047, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 46.62, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 14000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11056, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 2, + "Freight": 278.96, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 17000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 } ] @@ -31290,837 +21305,693 @@ ] }, { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", + "CustomerID": "ANTON", + "Company": "Antonio Moreno Taquería", + "ContactName": "Antonio Moreno", + "ContactTitle": "Owner", + "Address": "Mataderos 2312", + "City": "México D.F.", + "PostalCode": 5023, + "Country": "Mexico", + "Phone": "(5) 555-3932", "Orders": [ { - "OrderID": 10928, - "EmployeeID": 1, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 10365, + "EmployeeID": 3, + "OrderDate": "1996-11-27T00:00:00", + "RequiredDate": "1996-12-25T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 22, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 24, "Discount": 0 + } + ] + }, + { + "OrderID": 10507, + "EmployeeID": 7, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-04-22T00:00:00", + "ShipVia": 1, + "Freight": 47.45, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0 + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10929, - "EmployeeID": 6, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", + "OrderID": 10535, + "EmployeeID": 4, + "OrderDate": "1997-05-13T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-21T00:00:00", "ShipVia": 1, - "Freight": 33.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 15.64, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 49, - "Discount": 0 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 5, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 14000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10930, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10573, + "EmployeeID": 7, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-20T00:00:00", "ShipVia": 3, - "Freight": 15.55, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 17000, - "ShipCountry": "Belgium", + "Freight": 84.84, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 36, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 25, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 53, + "UnitPrice": 32.8, "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10931, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 2, - "Freight": 13.6, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10677, + "EmployeeID": 1, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 3, + "Freight": 4.03, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 42, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 30, "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10932, - "EmployeeID": 8, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", - "ShipVia": 1, - "Freight": 134.64, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10682, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 2, + "Freight": 36.13, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, + "ProductID": 33, + "UnitPrice": 2.5, "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 14, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 16, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 4, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.1 + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 27000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10933, - "EmployeeID": 6, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 3, - "Freight": 54.15, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40624, - "ShipPostalCode": 44000, - "ShipCountry": "UK", + "OrderID": 10856, + "EmployeeID": 3, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 58.43, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 2, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] } ], - "Fax": "(198) 555-8888" + "Fax": "(5) 555-3932" }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "CustomerID": "GALED", + "Company": "Galería del gastrónomo", + "ContactName": "Eduardo Saavedra", + "ContactTitle": "Marketing Manager", + "Address": "Rambla de Cataluña, 23", + "City": "Barcelona", + "PostalCode": 8022, + "Country": "Spain", + "Phone": "(93) 203 4560", + "Fax": "(93) 203 4561", "Orders": [ { - "OrderID": 10934, - "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", - "ShipVia": 3, - "Freight": 32.01, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10366, + "EmployeeID": 8, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-30T00:00:00", + "ShipVia": 2, + "Freight": 10.14, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10935, + "OrderID": 10426, "EmployeeID": 4, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 47.59, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-02-06T00:00:00", + "ShipVia": 1, + "Freight": 18.69, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 8, - "Discount": 0.25 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10936, + "OrderID": 10568, "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 2, - "Freight": 33.68, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1997-06-13T00:00:00", + "RequiredDate": "1997-07-11T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 3, + "Freight": 6.54, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 5, + "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10937, - "EmployeeID": 7, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderID": 10887, + "EmployeeID": 8, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", "ShipVia": 3, - "Freight": 31.51, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 1.25, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 34, + "ProductID": 25, "UnitPrice": 14, - "Quantity": 20, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10938, - "EmployeeID": 3, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 31.89, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10928, + "EmployeeID": 1, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 1.36, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 49, - "Discount": 0.25 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "VAFFE", + "Company": "Vaffeljernet", + "ContactName": "Palle Ibsen", + "ContactTitle": "Sales Manager", + "Address": "Smagsloget 45", + "City": "Århus", + "PostalCode": 8200, + "Country": "Denmark", + "Phone": "86 21 32 43", + "Fax": "86 22 33 44", "Orders": [ { - "OrderID": 10939, - "EmployeeID": 2, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 2, - "Freight": 76.33, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10367, + "EmployeeID": 7, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1996-12-26T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 13.55, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10940, + "OrderID": 10399, "EmployeeID": 8, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderDate": "1996-12-31T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", "ShipVia": 3, - "Freight": 19.77, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 27.36, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 8, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10941, - "EmployeeID": 7, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 400.81, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10465, + "EmployeeID": 1, + "OrderDate": "1997-03-05T00:00:00", + "RequiredDate": "1997-04-02T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 3, + "Freight": 145.04, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 44, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 45, + "UnitPrice": 7.6, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.1 + }, + { + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10591, + "EmployeeID": 1, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-07-21T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 55.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 80, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 50, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10942, - "EmployeeID": 9, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 17.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10602, + "EmployeeID": 8, + "OrderDate": "1997-07-17T00:00:00", + "RequiredDate": "1997-08-14T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", + "ShipVia": 2, + "Freight": 2.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 28, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 5, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 15000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10943, + "OrderID": 10688, "EmployeeID": 4, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", "ShipVia": 2, - "Freight": 2.17, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", + "Freight": 299.09, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 15, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 21, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 15, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 14, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 44000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10944, + "OrderID": 10744, "EmployeeID": 6, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 3, - "Freight": 52.92, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 69.19, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10769, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 1, + "Freight": 65.06, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10945, - "EmployeeID": 4, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-04-09T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10921, + "EmployeeID": 1, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 1, - "Freight": 10.22, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 176.48, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 40, "Discount": 0 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { "OrderID": 10946, "EmployeeID": 1, @@ -32154,1106 +22025,1060 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 39000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10947, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "OrderID": 10994, + "EmployeeID": 2, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-04-09T00:00:00", + "ShipVia": 3, + "Freight": 65.53, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { "ProductID": 59, "UnitPrice": 55, - "Quantity": 4, - "Discount": 0 + "Quantity": 18, + "Discount": 0.06 } ] } - ], - "Fax": "(171) 555-1212" + ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "CustomerID": "QUEEN", + "Company": "Queen Cozinha", + "ContactName": "Lúcia Carvalho", + "ContactTitle": "Marketing Assistant", + "Address": "Alameda dos Canàrios, 891", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5487, + "Country": "Brazil", + "Phone": "(11) 555-1189", "Orders": [ { - "OrderID": 10948, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 3, - "Freight": 23.39, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10372, + "EmployeeID": 5, + "OrderDate": "1996-12-04T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 890.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 9, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 40, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 70, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 42, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10406, + "EmployeeID": 7, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-13T00:00:00", + "ShipVia": 1, + "Freight": 108.04, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 42, + "Discount": 0.1 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 2, + "Discount": 0.1 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 17000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10949, + "OrderID": 10487, "EmployeeID": 2, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-17T00:00:00", - "ShipVia": 3, - "Freight": 74.44, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 34000, - "ShipCountry": "Canada", + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-03-28T00:00:00", + "ShipVia": 2, + "Freight": 71.07, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 12, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 30, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10637, + "EmployeeID": 6, + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 201.29, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 25, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 60, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10950, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-13T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10659, + "EmployeeID": 7, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 2, - "Freight": 2.5, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 105.81, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 24, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10704, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", + "ShipVia": 1, + "Freight": 4.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { "ProductID": 4, "UnitPrice": 22, - "Quantity": 5, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10951, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", + "OrderID": 10728, + "EmployeeID": 4, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-11-11T00:00:00", "ShipVia": 2, - "Freight": 30.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 58.33, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, + "ProductID": 30, + "UnitPrice": 25.89, "Quantity": 15, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, + "ProductID": 40, + "UnitPrice": 18.4, "Quantity": 6, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10952, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "OrderID": 10786, + "EmployeeID": 8, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-16T00:00:00", + "ShippedDate": "1997-12-23T00:00:00", "ShipVia": 1, - "Freight": 40.42, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 110.87, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 2, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0.2 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, + "Discount": 0.2 } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 36000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10953, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-25T00:00:00", + ] + }, + { + "OrderID": 10868, + "EmployeeID": 7, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 37000, - "ShipCountry": "UK", + "Freight": 191.27, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 42, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10954, - "EmployeeID": 5, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 10913, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 1, - "Freight": 27.91, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", + "Freight": 33.05, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 17000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10955, + "OrderID": 10961, "EmployeeID": 8, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 20000, - "ShipCountry": "Sweden", + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", + "ShipVia": 1, + "Freight": 104.47, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10956, - "EmployeeID": 6, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 11068, + "EmployeeID": 8, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-11-01T00:00:00", "ShipVia": 2, - "Freight": 44.65, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "Freight": 81.75, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.16 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 14, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 36, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 8, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 28, + "Discount": 0.16 } ] } - ] + ], + "Fax": "(11) 555-1189" }, { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10957, - "EmployeeID": 8, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "CustomerID": "WOLZA", + "Company": "Wolski Zajazd", + "ContactName": "Zbyszek Piestrzeniewicz", + "ContactTitle": "Owner", + "Address": "ul. Filtrowa 68", + "City": "Warszawa", + "PostalCode": 12000, + "Country": "Poland", + "Phone": "(26) 642-7012", + "Fax": "(26) 642-7012", + "Orders": [ + { + "OrderID": 10374, + "EmployeeID": 1, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", "ShipVia": 3, - "Freight": 105.36, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 3.94, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 31, + "UnitPrice": 10, "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 8, + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10958, - "EmployeeID": 7, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "OrderID": 10611, + "EmployeeID": 6, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 49.56, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 80.65, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 20, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 6, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 5, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10959, - "EmployeeID": 6, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", - "ShipVia": 2, - "Freight": 4.98, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 10792, + "EmployeeID": 1, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 3, + "Freight": 23.79, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10960, - "EmployeeID": 3, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 2.08, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10870, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", + "ShipVia": 3, + "Freight": 12.04, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 24, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10961, - "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", - "ShipVia": 1, - "Freight": 104.47, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, - "Discount": 0.06 - }, + "OrderID": 10906, + "EmployeeID": 4, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", + "ShipVia": 3, + "Freight": 26.29, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 60, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 15, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10962, + "OrderID": 10998, "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", "ShipVia": 2, - "Freight": 275.79, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 20.31, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 77, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 74, + "UnitPrice": 10, "Quantity": 20, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 9, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 44, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10963, - "EmployeeID": 9, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", - "ShipVia": 3, - "Freight": 2.7, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 11044, + "EmployeeID": 4, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 8.72, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0 } ] } ] }, { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", + "CustomerID": "HUNGC", + "Company": "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", "Orders": [ { - "OrderID": 10964, + "OrderID": 10375, "EmployeeID": 3, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "OrderDate": "1996-12-06T00:00:00", + "RequiredDate": "1997-01-03T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", "ShipVia": 2, - "Freight": 87.38, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 20.12, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 6, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10394, + "EmployeeID": 1, + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 3, + "Freight": 30.34, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10965, - "EmployeeID": 6, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", - "ShipVia": 3, - "Freight": 144.38, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "OrderID": 10415, + "EmployeeID": 3, + "OrderDate": "1997-01-15T00:00:00", + "RequiredDate": "1997-02-12T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "ShipVia": 1, + "Freight": 0.2, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 16, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10966, + "OrderID": 10600, "EmployeeID": 4, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-13T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", "ShipVia": 1, - "Freight": 27.19, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 45.13, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 - }, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10660, + "EmployeeID": 8, + "OrderDate": "1997-09-08T00:00:00", + "RequiredDate": "1997-10-06T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 1, + "Freight": 111.29, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 21, + "Discount": 0 } ] } - ], - "Fax": "0452-076545" + ] }, { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", + "CustomerID": "SANTG", + "Company": "Santé Gourmet", + "ContactName": "Jonas Bergulfsen", + "ContactTitle": "Owner", + "Address": "Erling Skakkes gate 78", + "City": "Stavern", + "PostalCode": 4110, + "Country": "Norway", + "Phone": "07-98 92 35", + "Fax": "07-98 92 47", "Orders": [ { - "OrderID": 10967, - "EmployeeID": 2, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10387, + "EmployeeID": 1, + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-15T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", "ShipVia": 2, - "Freight": 62.22, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 93.63, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, "Quantity": 12, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10968, - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-01T00:00:00", - "ShipVia": 3, - "Freight": 74.6, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10520, + "EmployeeID": 7, + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 1, + "Freight": 13.37, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 30, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 4, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10969, - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", + "OrderID": 10639, + "EmployeeID": 7, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-08-27T00:00:00", + "ShipVia": 3, + "Freight": 38.64, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10831, + "EmployeeID": 3, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 2, - "Freight": 0.21, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 72.19, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ + }, { - "OrderID": 10970, - "EmployeeID": 9, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 1, - "Freight": 16.16, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", + "OrderID": 10909, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-10T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10971, + "OrderID": 11015, "EmployeeID": 2, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 2, - "Freight": 121.82, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 4.62, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] @@ -33261,462 +23086,321 @@ ] }, { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", + "CustomerID": "BOTTM", + "Company": "Bottom-Dollar Markets", + "ContactName": "Elizabeth Lincoln", + "ContactTitle": "Accounting Manager", + "Address": "23 Tsawassen Blvd.", + "City": "Tsawassen", + "Region": "BC", + "PostalCode": 14000, + "Country": "Canada", + "Phone": "(604) 555-4729", + "Fax": "(604) 555-3745", "Orders": [ { - "OrderID": 10972, + "OrderID": 10389, "EmployeeID": 4, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", + "OrderDate": "1996-12-20T00:00:00", + "RequiredDate": "1997-01-17T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", "ShipVia": 2, - "Freight": 0.02, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "Freight": 47.42, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 28000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 7, - "Discount": 0 - } - ] - }, - { - "OrderID": 10973, - "EmployeeID": 6, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 2, - "Freight": 15.17, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10974, + "OrderID": 10410, "EmployeeID": 3, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderDate": "1997-01-10T00:00:00", + "RequiredDate": "1997-02-07T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", "ShipVia": 3, - "Freight": 12.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 2.4, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 19000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10975, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-22T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 3, - "Freight": 32.27, + "OrderID": 10431, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 44.17, "ShipName": "Bottom-Dollar Markets", "ShipAddress": "23 Tsawassen Blvd.", "ShipCity": "Tsawassen", "ShipRegion": "BC", - "ShipPostalCode": 45000, + "ShipPostalCode": 49000, "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 16, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 50, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10976, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderID": 10492, + "EmployeeID": 3, + "OrderDate": "1997-04-01T00:00:00", + "RequiredDate": "1997-04-29T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 1, - "Freight": 37.97, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 62.89, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 41000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10977, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10742, + "EmployeeID": 3, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-12-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 208.5, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", + "Freight": 243.73, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 17000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 46000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10978, - "EmployeeID": 9, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", - "ShipVia": 2, - "Freight": 32.82, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", + "OrderID": 10918, + "EmployeeID": 3, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 48.83, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", "ShipPostalCode": 45000, - "ShipCountry": "Belgium", + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.16 - }, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 25, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10944, + "EmployeeID": 6, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 52.92, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, + "Discount": 0.25 }, { "ProductID": 44, "UnitPrice": 19.45, - "Quantity": 6, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10979, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-03-31T00:00:00", - "ShipVia": 2, - "Freight": 353.07, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, "Quantity": 18, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 12, + "ProductID": 56, "UnitPrice": 38, - "Quantity": 20, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10949, + "EmployeeID": 2, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-17T00:00:00", + "ShipVia": 3, + "Freight": 74.44, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 34000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 80, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 30, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 24, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 35, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 21000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10980, - "EmployeeID": 4, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 1, - "Freight": 1.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "OrderID": 10975, + "EmployeeID": 1, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-22T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 32.27, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 45000, + "ShipCountry": "Canada", "OrderDetails": [ + { + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 16, + "Discount": 0 + }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10981, - "EmployeeID": 1, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 193.37, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 16000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { "OrderID": 10982, "EmployeeID": 2, @@ -33745,588 +23429,513 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10983, - "EmployeeID": 2, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 2, - "Freight": 657.54, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11027, + "EmployeeID": 1, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 52.52, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 11000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 21, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11045, + "EmployeeID": 6, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-05-23T00:00:00", + "ShipVia": 2, + "Freight": 70.58, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 36000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 84, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 24, "Discount": 0 } ] }, { - "OrderID": 10984, - "EmployeeID": 1, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderID": 11048, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", "ShipVia": 3, - "Freight": 211.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 24.12, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 15000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 55, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 42, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "LINOD", + "Company": "LINO-Delicateses", + "ContactName": "Felipe Izquierdo", + "ContactTitle": "Owner", + "Address": "Ave. 5 de Mayo Porlamar", + "City": "Sao Paulo", + "Region": "Nueva Esparta", + "PostalCode": 4980, + "Country": "Venezuela", + "Phone": "(8) 34-56-12", + "Fax": "(8) 34-93-93", "Orders": [ { - "OrderID": 10985, - "EmployeeID": 2, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10405, + "EmployeeID": 1, + "OrderDate": "1997-01-06T00:00:00", + "RequiredDate": "1997-02-03T00:00:00", + "ShippedDate": "1997-01-22T00:00:00", "ShipVia": 1, - "Freight": 91.51, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 34.82, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 36, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 + } + ] + }, + { + "OrderID": 10485, + "EmployeeID": 4, + "OrderDate": "1997-03-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-31T00:00:00", + "ShipVia": 2, + "Freight": 64.45, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 35, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 60, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10986, - "EmployeeID": 8, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 2, - "Freight": 217.86, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10638, + "EmployeeID": 3, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", + "ShipVia": 1, + "Freight": 158.44, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 16000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10987, - "EmployeeID": 8, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 1, - "Freight": 185.48, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 32000, - "ShipCountry": "UK", + "OrderID": 10697, + "EmployeeID": 3, + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-05T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", + "ShipVia": 1, + "Freight": 45.52, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0.25 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 9, + "Discount": 0.25 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10988, - "EmployeeID": 3, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 61.14, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10729, + "EmployeeID": 8, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 3, + "Freight": 141.06, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 50, + "UnitPrice": 16.25, "Quantity": 40, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10989, - "EmployeeID": 2, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10811, + "EmployeeID": 8, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", "ShipVia": 1, - "Freight": 34.76, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 31.22, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 40, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10990, - "EmployeeID": 2, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", + "OrderID": 10838, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 3, - "Freight": 117.61, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 59.28, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 65, - "Discount": 0 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 60, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 66, - "Discount": 0.16 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10991, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 1, - "Freight": 38.51, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10840, + "EmployeeID": 4, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", + "ShipVia": 2, + "Freight": 2.71, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.2 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 76, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 90, + "Quantity": 10, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10992, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 4.27, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "OrderID": 10919, + "EmployeeID": 2, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 2, + "Freight": 19.8, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 2, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 50000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10993, - "EmployeeID": 7, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 3, - "Freight": 8.81, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "OrderID": 10954, + "EmployeeID": 5, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 1, + "Freight": 27.91, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 28, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 25, + "Discount": 0.16 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10994, + "OrderID": 11014, "EmployeeID": 2, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-04-09T00:00:00", + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", "ShipVia": 3, - "Freight": 65.53, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 23.6, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 28, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10995, + "OrderID": 11039, "EmployeeID": 1, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 3, - "Freight": 46, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-05-25T00:00:00", + "ShipVia": 2, + "Freight": 65, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 28, "Discount": 0 } ] @@ -34334,935 +23943,905 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "FOLIG", + "Company": "Folies gourmandes", + "ContactName": "Martine Rancé", + "ContactTitle": "Sales Associate", + "Address": "184, chaussée de Tournai", + "City": "Lille", + "PostalCode": 59000, + "Country": "France", + "Phone": "20.16.10.16", + "Fax": "20.16.10.17", "Orders": [ { - "OrderID": 10996, - "EmployeeID": 4, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 1.12, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10408, + "EmployeeID": 8, + "OrderDate": "1997-01-08T00:00:00", + "RequiredDate": "1997-02-05T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 11.26, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10997, - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10480, + "EmployeeID": 6, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", "ShipVia": 2, - "Freight": 73.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 1.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10998, - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 2, - "Freight": 20.31, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10634, + "EmployeeID": 4, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 487.38, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 7, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 30, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10999, - "EmployeeID": 6, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-01T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10763, + "EmployeeID": 3, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 3, + "Freight": 37.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10789, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", "ShipVia": 2, - "Freight": 96.35, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 100.6, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 35, + "UnitPrice": 18, "Quantity": 15, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 21, - "Discount": 0.06 + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "OCEAN", + "Company": "Océano Atlántico Ltda.", + "ContactName": "Yvonne Moncada", + "ContactTitle": "Sales Agent", + "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5333", + "Fax": "(1) 135-5535", "Orders": [ { - "OrderID": 11000, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", - "ShipVia": 3, - "Freight": 55.12, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10409, + "EmployeeID": 3, + "OrderDate": "1997-01-09T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 29.83, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 - }, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10531, + "EmployeeID": 7, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", + "ShipVia": 1, + "Freight": 8.12, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 30000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 11001, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", + "OrderID": 10898, + "EmployeeID": 4, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", "ShipVia": 2, - "Freight": 197.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 30000, - "ShipCountry": "Sweden", + "Freight": 1.27, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 5, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10958, + "EmployeeID": 7, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 2, + "Freight": 49.56, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 25, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 25, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11002, - "EmployeeID": 4, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", - "ShipVia": 1, - "Freight": 141.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10986, + "EmployeeID": 8, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 217.86, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 56, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, + "ProductID": 20, + "UnitPrice": 81, "Quantity": 15, - "Discount": 0.16 + "Discount": 0 }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0.16 + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 40, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "THECR", - "Company": "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": "FRANS", + "Company": "Franchi S.p.A.", + "ContactName": "Paolo Accorti", + "ContactTitle": "Sales Representative", + "Address": "Via Monte Bianco 34", + "City": "Torino", + "PostalCode": 10100, + "Country": "Italy", + "Phone": "011-4988260", + "Fax": "011-4988261", "Orders": [ { - "OrderID": 11003, - "EmployeeID": 3, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 3, - "Freight": 14.91, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "OrderID": 10422, + "EmployeeID": 2, + "OrderDate": "1997-01-22T00:00:00", + "RequiredDate": "1997-02-19T00:00:00", + "ShippedDate": "1997-01-31T00:00:00", + "ShipVia": 1, + "Freight": 3.02, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 2, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10710, + "EmployeeID": 1, + "OrderDate": "1997-10-20T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 1, + "Freight": 4.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 10, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 37000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 11004, + "OrderID": 10753, "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", "ShipVia": 1, - "Freight": 44.84, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 33000, - "ShipCountry": "Belgium", + "Freight": 7.7, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 6, + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 11005, - "EmployeeID": 2, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10807, + "EmployeeID": 4, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 1.36, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 2, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 1, + "Discount": 0 + } + ] + }, + { + "OrderID": 11026, + "EmployeeID": 4, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", + "ShipVia": 1, + "Freight": 47.09, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 51, + "UnitPrice": 53, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11006, - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", + "OrderID": 11060, + "EmployeeID": 2, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", "ShipVia": 2, - "Freight": 25.19, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 10.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0 } ] } - ], - "Fax": "(503) 555-7555" + ] }, { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", + "CustomerID": "GOURL", + "Company": "Gourmet Lanchonetes", + "ContactName": "André Fonseca", + "ContactTitle": "Sales Associate", + "Address": "Av. Brasil, 442", + "City": "Campinas", + "Region": "SP", + "PostalCode": 4876, + "Country": "Brazil", + "Phone": "(11) 555-9482", "Orders": [ { - "OrderID": 11007, - "EmployeeID": 8, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 2, - "Freight": 202.24, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10423, + "EmployeeID": 6, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", + "ShipVia": 3, + "Freight": 24.5, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 20, "Discount": 0 + } + ] + }, + { + "OrderID": 10652, + "EmployeeID": 4, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 2, + "Freight": 7.14, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 2, + "Discount": 0.25 }, { "ProductID": 42, "UnitPrice": 14, - "Quantity": 14, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11008, - "EmployeeID": 7, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-05-09T00:00:00", - "ShipVia": 3, - "Freight": 79.46, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10685, + "EmployeeID": 4, + "OrderDate": "1997-09-29T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 33.75, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 90, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 21, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 11009, - "EmployeeID": 2, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 59.11, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10709, + "EmployeeID": 1, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-11-20T00:00:00", + "ShipVia": 3, + "Freight": 210.8, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 9, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11010, + "OrderID": 10734, "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 2, - "Freight": 28.71, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-12T00:00:00", + "ShipVia": 3, + "Freight": 1.63, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 11011, - "EmployeeID": 3, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10777, + "EmployeeID": 7, + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 2, + "Freight": 3.01, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10790, + "EmployeeID": 6, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", "ShipVia": 1, - "Freight": 1.21, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 28.23, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 3, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 11012, - "EmployeeID": 1, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 3, - "Freight": 242.95, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10959, + "EmployeeID": 6, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 4.98, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 - }, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 11049, + "EmployeeID": 3, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 8.34, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 36, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, + "Discount": 0.2 } ] } - ] + ], + "Fax": "(11) 555-9482" }, { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", + "CustomerID": "CONSH", + "Company": "Consolidated Holdings", + "ContactName": "Elizabeth Brown", + "ContactTitle": "Sales Representative", + "Address": "Berkeley Gardens 12 Brewery", + "City": "London", + "PostalCode": 38000, + "Country": "UK", + "Phone": "(171) 555-2282", + "Fax": "(171) 555-9199", "Orders": [ { - "OrderID": 11013, - "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 32.99, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10435, + "EmployeeID": 8, + "OrderDate": "1997-02-04T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 9.21, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 10, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 4, + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10462, + "EmployeeID": 2, + "OrderDate": "1997-03-03T00:00:00", + "RequiredDate": "1997-03-31T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 1, + "Freight": 6.17, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 50000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 2, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 11014, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", - "ShipVia": 3, - "Freight": 23.6, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 28, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 11015, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10848, + "EmployeeID": 7, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 2, - "Freight": 4.62, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 38.24, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 36000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 3, "Discount": 0 } ] @@ -35270,158 +24849,141 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", + "CustomerID": "RANCH", + "Company": "Rancho grande", + "ContactName": "Sergio Gutiérrez", "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 42000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Address": "Av. del Libertador 900", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 123-5555", + "Fax": "(1) 123-5556", "Orders": [ { - "OrderID": 11016, - "EmployeeID": 9, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10448, + "EmployeeID": 4, + "OrderDate": "1997-02-17T00:00:00", + "RequiredDate": "1997-03-17T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", "ShipVia": 2, - "Freight": 33.8, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 20000, - "ShipCountry": "UK", + "Freight": 38.82, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 16, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11017, - "EmployeeID": 9, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10716, + "EmployeeID": 4, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-27T00:00:00", "ShipVia": 2, - "Freight": 754.26, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 22.57, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 3, + "ProductID": 21, "UnitPrice": 10, - "Quantity": 25, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 110, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11018, - "EmployeeID": 4, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10828, + "EmployeeID": 9, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 90.85, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 10916, + "EmployeeID": 1, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 2, - "Freight": 11.65, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 63.77, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { "OrderID": 11019, "EmployeeID": 6, @@ -35453,139 +25015,60 @@ ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 11020, - "EmployeeID": 2, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", - "ShipVia": 2, - "Freight": 43.3, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "LAZYK", + "Company": "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", "Orders": [ { - "OrderID": 11021, - "EmployeeID": 3, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 1, - "Freight": 297.18, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10482, + "EmployeeID": 1, + "OrderDate": "1997-03-21T00:00:00", + "RequiredDate": "1997-04-18T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 7.48, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 11, - "Discount": 0.25 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 63, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 44, - "Discount": 0.25 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 11022, - "EmployeeID": 9, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10545, + "EmployeeID": 8, + "OrderDate": "1997-05-22T00:00:00", + "RequiredDate": "1997-06-19T00:00:00", + "ShippedDate": "1997-06-26T00:00:00", "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 11.92, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 } ] @@ -35593,460 +25076,323 @@ ] }, { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", + "CustomerID": "LAUGB", + "Company": "Laughing Bacchus Wine Cellars", + "ContactName": "Yoshi Tannamuri", + "ContactTitle": "Marketing Assistant", + "Address": "1900 Oak St.", + "City": "Vancouver", + "Region": "BC", "PostalCode": 19000, - "Country": "UK", - "Phone": "(171) 555-1212", + "Country": "Canada", + "Phone": "(604) 555-3392", + "Fax": "(604) 555-7293", "Orders": [ { - "OrderID": 11023, - "EmployeeID": 1, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 123.83, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 36000, - "ShipCountry": "UK", + "OrderID": 10495, + "EmployeeID": 3, + "OrderDate": "1997-04-03T00:00:00", + "RequiredDate": "1997-05-01T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", + "ShipVia": 3, + "Freight": 4.65, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 20000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 4, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 16000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11024, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 1, - "Freight": 74.36, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 23000, - "ShipCountry": "UK", + "OrderID": 10620, + "EmployeeID": 2, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", + "ShipVia": 3, + "Freight": 0.94, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 31000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 50, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 11025, - "EmployeeID": 6, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10810, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 3, - "Freight": 29.17, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 4.33, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 48000, + "ShipCountry": "Canada", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.1 - }, { "ProductID": 13, "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.1 + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", + "CustomerID": "BLAUS", + "Company": "Blauer See Delikatessen", + "ContactName": "Hanna Moos", "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", + "Address": "Forsterstr. 57", + "City": "Mannheim", + "PostalCode": 68306, + "Country": "Germany", + "Phone": "0621-08460", + "Fax": "0621-08924", "Orders": [ { - "OrderID": 11026, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", - "ShipVia": 1, - "Freight": 47.09, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10501, + "EmployeeID": 9, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 3, + "Freight": 8.85, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 49000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11027, - "EmployeeID": 1, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10509, + "EmployeeID": 4, + "OrderDate": "1997-04-17T00:00:00", + "RequiredDate": "1997-05-15T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 1, - "Freight": 52.52, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 11000, - "ShipCountry": "Canada", + "Freight": 0.15, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 11028, - "EmployeeID": 2, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", - "ShipVia": 1, - "Freight": 29.59, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10582, + "EmployeeID": 3, + "OrderDate": "1997-06-27T00:00:00", + "RequiredDate": "1997-07-25T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 27.71, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 24, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 14, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 11029, - "EmployeeID": 4, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 47.84, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10614, + "EmployeeID": 8, + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 3, + "Freight": 1.93, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 12, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11030, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", + "OrderID": 10853, + "EmployeeID": 9, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", "ShipVia": 2, - "Freight": 830.75, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 53.83, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 100, - "Discount": 0.25 - }, - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 70, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 100, - "Discount": 0.25 } ] }, { - "OrderID": 11031, + "OrderID": 10956, "EmployeeID": 6, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 227.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 44.65, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 45, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 80, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 21, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11032, - "EmployeeID": 2, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 11058, + "EmployeeID": 9, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShippedDate": "1998-08-27T00:00:00", "ShipVia": 3, - "Freight": 606.19, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 31.14, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 35, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 25, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, "Discount": 0 } ] @@ -36054,145 +25400,97 @@ ] }, { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", + "CustomerID": "NORTS", + "Company": "North/South", + "ContactName": "Simon Crowther", + "ContactTitle": "Sales Associate", + "Address": "South House 300 Queensbridge", + "City": "London", + "PostalCode": 13000, + "Country": "UK", + "Phone": "(171) 555-7733", + "Fax": "(171) 555-2530", "Orders": [ { - "OrderID": 11033, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 10517, + "EmployeeID": 3, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 3, - "Freight": 84.74, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 70, - "Discount": 0.1 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 36, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ - { - "OrderID": 11034, - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 40.32, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 32.07, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 19000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 12, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 23000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 11035, + "OrderID": 10752, "EmployeeID": 2, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 0.17, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 30000, - "ShipCountry": "Belgium", + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", + "ShipVia": 3, + "Freight": 1.39, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 1, "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 60, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 3, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11057, + "EmployeeID": 3, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 4.13, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 47000, + "ShipCountry": "UK", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] @@ -36200,181 +25498,175 @@ ] }, { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", + "CustomerID": "CACTU", + "Company": "Cactus Comidas para llevar", + "ContactName": "Patricio Simpson", + "ContactTitle": "Sales Agent", + "Address": "Cerrito 333", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5555", + "Fax": "(1) 135-4892", "Orders": [ { - "OrderID": 11036, + "OrderID": 10521, "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", - "ShipVia": 3, - "Freight": 149.47, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 17.22, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 11037, - "EmployeeID": 7, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 3.2, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10782, + "EmployeeID": 9, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 1.1, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 1, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 11038, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", - "ShipVia": 2, - "Freight": 29.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 44000, - "ShipCountry": "Belgium", + "OrderID": 10819, + "EmployeeID": 2, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", + "ShipVia": 3, + "Freight": 19.76, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 7, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 2, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10881, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 2.84, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 11039, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-05-25T00:00:00", - "ShipVia": 2, - "Freight": 65, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10937, + "EmployeeID": 7, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 31.51, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { "ProductID": 28, "UnitPrice": 45.6, - "Quantity": 20, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 24, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11054, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShippedDate": "1998-05-26T00:00:00", + "ShipVia": 1, + "Freight": 0.33, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 60, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 28, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] @@ -36394,13 +25686,48 @@ "Phone": "(503) 555-7555", "Orders": [ { - "OrderID": 11040, - "EmployeeID": 4, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-05-20T00:00:00", - "ShipVia": 3, - "Freight": 18.84, + "OrderID": 10528, + "EmployeeID": 6, + "OrderDate": "1997-05-06T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 3.35, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.2 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 10589, + "EmployeeID": 8, + "OrderDate": "1997-07-04T00:00:00", + "RequiredDate": "1997-08-01T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 4.42, "ShipName": "Great Lakes Food Market", "ShipAddress": "2732 Baker Blvd.", "ShipCity": "Eugene", @@ -36409,590 +25736,476 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 11041, - "EmployeeID": 3, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", + "OrderID": 10616, + "EmployeeID": 1, + "OrderDate": "1997-07-31T00:00:00", + "RequiredDate": "1997-08-28T00:00:00", + "ShippedDate": "1997-08-05T00:00:00", "ShipVia": 2, - "Freight": 48.22, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 116.53, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 11042, - "EmployeeID": 2, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10656, + "EmployeeID": 6, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 1, - "Freight": 29.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 57.15, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, + "Discount": 0.1 + }, { "ProductID": 44, "UnitPrice": 19.45, - "Quantity": 15, - "Discount": 0 + "Quantity": 28, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 4, - "Discount": 0 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.1 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 11043, - "EmployeeID": 5, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", - "ShipVia": 2, - "Freight": 8.8, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "OrderID": 10681, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 76.13, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 11044, + "OrderID": 10816, "EmployeeID": 4, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 1, - "Freight": 8.72, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-02-03T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 2, + "Freight": 719.78, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10936, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 33.68, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 31000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11045, - "EmployeeID": 6, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-05-23T00:00:00", + "OrderID": 11006, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", "ShipVia": 2, - "Freight": 70.58, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", + "Freight": 25.19, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 24, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 2, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 11046, - "EmployeeID": 8, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 71.64, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 11040, + "EmployeeID": 4, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-05-20T00:00:00", + "ShipVia": 3, + "Freight": 18.84, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, + "ProductID": 21, + "UnitPrice": 10, "Quantity": 20, - "Discount": 0.06 - }, + "Discount": 0 + } + ] + }, + { + "OrderID": 11061, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-06-11T00:00:00", + "ShippedDate": "1998-06-11T00:00:00", + "ShipVia": 3, + "Freight": 14.01, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, + "ProductID": 60, + "UnitPrice": 34, "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 18, - "Discount": 0.06 + "Discount": 0 } ] } - ] + ], + "Fax": "(503) 555-7555" }, { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", + "CustomerID": "MAISD", + "Company": "Maison Dewey", + "ContactName": "Catherine Dewey", "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", + "Address": "Rue Joseph-Bens 532", + "City": "Bruxelles", + "PostalCode": 11000, + "Country": "Belgium", + "Phone": "(02) 201 24 67", + "Fax": "(02) 201 24 68", "Orders": [ { - "OrderID": 11047, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 3, - "Freight": 46.62, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 14000, - "ShipCountry": "UK", + "OrderID": 10529, + "EmployeeID": 5, + "OrderDate": "1997-05-07T00:00:00", + "RequiredDate": "1997-06-04T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 66.69, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 26000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 48000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11048, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", + "OrderID": 10649, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-09-25T00:00:00", + "ShippedDate": "1997-08-29T00:00:00", "ShipVia": 3, - "Freight": 24.12, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 15000, - "ShipCountry": "Canada", + "Freight": 6.2, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 47000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 42, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 11049, - "EmployeeID": 3, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10760, + "EmployeeID": 4, + "OrderDate": "1997-12-01T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1997-12-10T00:00:00", "ShipVia": 1, - "Freight": 8.34, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 155.64, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.25 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 35000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 11050, - "EmployeeID": 8, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10892, + "EmployeeID": 4, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", "ShipVia": 2, - "Freight": 59.41, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 11000, - "ShipCountry": "Sweden", + "Freight": 120.27, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 45000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 11051, + "OrderID": 10896, "EmployeeID": 7, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-09-25T00:00:00", + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", "ShipVia": 3, - "Freight": 2.79, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 11052, - "EmployeeID": 3, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 1, - "Freight": 67.26, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 32.45, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 28000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 16, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 11053, - "EmployeeID": 2, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", + "OrderID": 10978, + "EmployeeID": 9, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 32.82, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 45000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 11054, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", - "ShippedDate": "1998-05-26T00:00:00", + "OrderID": 11004, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 1, - "Freight": 0.33, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 44.84, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 33000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 10, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 } ] @@ -37000,187 +26213,119 @@ ] }, { - "CustomerID": "HILAA", - "Company": "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": "TRAIH", + "Company": "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", "Orders": [ { - "OrderID": 11055, - "EmployeeID": 7, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10574, + "EmployeeID": 4, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 120.92, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 37.6, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 35000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11056, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10577, + "EmployeeID": 9, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 278.96, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 17000, - "ShipCountry": "UK", + "Freight": 25.41, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 40, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 14000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ - { - "OrderID": 11057, - "EmployeeID": 3, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 3, - "Freight": 4.13, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 47000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 11058, - "EmployeeID": 9, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShippedDate": "1998-08-27T00:00:00", - "ShipVia": 3, - "Freight": 31.14, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10822, + "EmployeeID": 6, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", + "ShipVia": 3, + "Freight": 7, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 3, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 4, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 6, "Discount": 0 } ] @@ -37188,413 +26333,370 @@ ] }, { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", + "CustomerID": "LETSS", + "Company": "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", "Orders": [ { - "OrderID": 11059, - "EmployeeID": 2, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-06-10T00:00:00", - "ShippedDate": "1998-06-15T00:00:00", + "OrderID": 10579, + "EmployeeID": 1, + "OrderDate": "1997-06-25T00:00:00", + "RequiredDate": "1997-07-23T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 2, - "Freight": 85.8, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 13.73, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 12, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 11060, - "EmployeeID": 2, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10719, + "EmployeeID": 8, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 10.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "Freight": 51.44, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 3, + "Discount": 0.25 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 40, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11061, - "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-06-11T00:00:00", - "ShippedDate": "1998-06-11T00:00:00", - "ShipVia": 3, - "Freight": 14.01, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, + "OrderID": 10735, + "EmployeeID": 6, + "OrderDate": "1997-11-10T00:00:00", + "RequiredDate": "1997-12-08T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 45.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.1 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11062, + "OrderID": 10884, "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-06-28T00:00:00", + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", "ShipVia": 2, - "Freight": 29.93, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 90.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 21, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, "Quantity": 12, - "Discount": 0.2 + "Discount": 0.06 } ] } - ] + ], + "Fax": "(415) 555-5938" }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "WILMK", + "Company": "Wilman Kala", + "ContactName": "Matti Karttunen", + "ContactTitle": "Owner/Marketing Assistant", + "Address": "Keskuskatu 45", + "City": "Helsinki", + "PostalCode": 21240, + "Country": "Finland", + "Phone": "90-224 8858", + "Fax": "90-224 8858", "Orders": [ { - "OrderID": 11063, - "EmployeeID": 3, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 81.73, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10615, + "EmployeeID": 2, + "OrderDate": "1997-07-30T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 3, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10673, + "EmployeeID": 2, + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 22.76, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11064, - "EmployeeID": 1, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10695, + "EmployeeID": 7, + "OrderDate": "1997-10-07T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", "ShipVia": 1, - "Freight": 30.09, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 16.72, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 77, - "Discount": 0.1 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.1 - }, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10873, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 0.82, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 55, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11065, - "EmployeeID": 8, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-29T00:00:00", - "ShipVia": 1, - "Freight": 12.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10879, + "EmployeeID": 3, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 8.5, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11066, - "EmployeeID": 7, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 2, - "Freight": 44.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10910, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 3, + "Freight": 38.11, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 42, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 35, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 11067, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 7.98, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderID": 11005, + "EmployeeID": 2, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, "Discount": 0 } ] @@ -37602,85 +26704,113 @@ ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", + "CustomerID": "THECR", + "Company": "The Cracker Box", + "ContactName": "Liu Wong", "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", + "Address": "55 Grizzly Peak Rd.", + "City": "Butte", + "Region": "MT", + "PostalCode": 59801, + "Country": "USA", + "Phone": "(406) 555-5834", + "Fax": "(406) 555-8083", "Orders": [ { - "OrderID": 11068, - "EmployeeID": 8, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-11-01T00:00:00", + "OrderID": 10624, + "EmployeeID": 4, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", "ShipVia": 2, - "Freight": 81.75, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 94.8, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 28, "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.16 + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 11069, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 15.67, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10775, + "EmployeeID": 7, + "OrderDate": "1997-12-12T00:00:00", + "RequiredDate": "1998-01-09T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 20.25, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 11003, + "EmployeeID": 3, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 3, + "Freight": 14.91, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 10, "Discount": 0 } ] @@ -37688,507 +26818,503 @@ ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", + "CustomerID": "ALFKI", + "Company": "Alfreds Futterkiste", + "ContactName": "Maria Anders", "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, + "Address": "Obere Str. 57", + "City": "Berlin", + "PostalCode": 12209, "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "Phone": "030-0074321", + "Fax": "030-0076545", "Orders": [ { - "OrderID": 11070, - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-02T00:00:00", + "OrderID": 10643, + "EmployeeID": 6, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", "ShipVia": 1, - "Freight": 136, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "Freight": 29.46, + "ShipName": "Alfreds Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 15, + "Discount": 0.25 + }, + { + "ProductID": 39, "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.16 + "Quantity": 21, + "Discount": 0.25 }, { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 2, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10692, + "EmployeeID": 4, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-10-31T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", + "ShipVia": 2, + "Freight": 61.02, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 20, - "Discount": 0.16 - }, + "Discount": 0 + } + ] + }, + { + "OrderID": 10702, + "EmployeeID": 4, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 1, + "Freight": 23.94, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11071, + "OrderID": 10835, "EmployeeID": 1, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-10T00:00:00", - "ShipVia": 1, - "Freight": 0.93, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 3, + "Freight": 69.53, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10952, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", + "ShipVia": 1, + "Freight": 40.42, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 16, "Discount": 0.06 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 11011, + "EmployeeID": 3, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 1, + "Freight": 1.21, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 40, "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "FRANR", + "Company": "France restauration", + "ContactName": "Carine Schmitt", + "ContactTitle": "Marketing Manager", + "Address": "54, rue Royale", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.32.21.21", + "Fax": "40.32.21.20", "Orders": [ { - "OrderID": 11072, - "EmployeeID": 4, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-08-02T00:00:00", - "ShipVia": 2, - "Freight": 258.64, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10671, + "EmployeeID": 1, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-09-24T00:00:00", + "ShipVia": 1, + "Freight": 30.34, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 22, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 130, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 11073, - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-15T00:00:00", - "ShipVia": 2, - "Freight": 24.95, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10860, + "EmployeeID": 3, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 3, + "Freight": 19.26, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 11074, - "EmployeeID": 7, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-06-03T00:00:00", + "OrderID": 10971, + "EmployeeID": 2, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", "ShipVia": 2, - "Freight": 18.44, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 121.82, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 14, - "Discount": 0.06 + "Discount": 0 } ] } ] }, { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", + "CustomerID": "SPECD", + "Company": "Spécialités du monde", + "ContactName": "Dominique Perrier", + "ContactTitle": "Marketing Manager", + "Address": "25, rue Lauriston", + "City": "Paris", + "PostalCode": 75016, + "Country": "France", + "Phone": "(1) 47.55.60.10", + "Fax": "(1) 47.55.60.20", "Orders": [ { - "OrderID": 11075, - "EmployeeID": 8, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-05-03T00:00:00", - "ShipVia": 2, - "Freight": 6.19, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10738, + "EmployeeID": 2, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 1, + "Freight": 2.91, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0.16 - }, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10907, + "EmployeeID": 6, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-25T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 9.19, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 14, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 11076, - "EmployeeID": 4, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-06-08T00:00:00", + "OrderID": 10964, + "EmployeeID": 3, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 2, - "Freight": 38.28, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, + "Freight": 87.38, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 69, + "UnitPrice": 36, "Quantity": 10, - "Discount": 0.25 + "Discount": 0 + } + ] + }, + { + "OrderID": 11043, + "EmployeeID": 5, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 8.8, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "LACOR", + "Company": "La corne de abondance", + "ContactName": "Daniel Tonini", + "ContactTitle": "Sales Representative", + "Address": "67, avenue de Europe", + "City": "Versailles", + "PostalCode": 78000, + "Country": "France", + "Phone": "30.59.84.10", + "Fax": "30.59.85.11", "Orders": [ { - "OrderID": 11077, - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-07-03T00:00:00", - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10858, + "EmployeeID": 2, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", + "ShipVia": 1, + "Freight": 52.51, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 24, - "Discount": 0.2 - }, - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 1, - "Discount": 0.02 - }, { "ProductID": 7, "UnitPrice": 30, - "Quantity": 1, - "Discount": 0.06 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 2, - "Discount": 0.1 - }, - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 1, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 2, - "Discount": 0.06 + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 4, "Discount": 0 - }, - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 2, - "Discount": 0.04 - }, + } + ] + }, + { + "OrderID": 10927, + "EmployeeID": 4, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 19.79, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { "ProductID": 20, "UnitPrice": 81, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 3, + "Quantity": 5, "Discount": 0 }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 3, - "Discount": 0.02 - }, { "ProductID": 52, "UnitPrice": 7, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 2, - "Discount": 0.04 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 1, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 2, - "Discount": 0.0099999998 - }, + } + ] + }, + { + "OrderID": 10972, + "EmployeeID": 4, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 2, + "Freight": 0.02, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 4, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 7, "Discount": 0 } ] diff --git a/samples/grids/hierarchical-grid/layout-display-density/src/HierarchicalCustomers.json b/samples/grids/hierarchical-grid/layout-display-density/src/HierarchicalCustomers.json index 75c7bc037d..43b2853953 100644 --- a/samples/grids/hierarchical-grid/layout-display-density/src/HierarchicalCustomers.json +++ b/samples/grids/hierarchical-grid/layout-display-density/src/HierarchicalCustomers.json @@ -44,6 +44,112 @@ "Discount": 0 } ] + }, + { + "OrderID": 10274, + "EmployeeID": 6, + "OrderDate": "1996-08-06T00:00:00", + "RequiredDate": "1996-09-03T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 1, + "Freight": 6.01, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 7, + "Discount": 0 + } + ] + }, + { + "OrderID": 10295, + "EmployeeID": 2, + "OrderDate": "1996-09-02T00:00:00", + "RequiredDate": "1996-09-30T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", + "ShipVia": 2, + "Freight": 1.15, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 10737, + "EmployeeID": 2, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 7.79, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10739, + "EmployeeID": 3, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-17T00:00:00", + "ShipVia": 3, + "Freight": 11.08, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 18, + "Discount": 0 + } + ] } ] }, @@ -86,251 +192,155 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10250, - "EmployeeID": 4, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-12T00:00:00", + "OrderID": 10438, + "EmployeeID": 3, + "OrderDate": "1997-02-06T00:00:00", + "RequiredDate": "1997-03-06T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", "ShipVia": 2, - "Freight": 65.83, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 8.24, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 15, - "Discount": 0.16 + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10251, - "EmployeeID": 3, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", + "OrderID": 10446, + "EmployeeID": 6, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-02-19T00:00:00", "ShipVia": 1, - "Freight": 41.34, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 14.68, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 + }, + { + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 44000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10252, - "EmployeeID": 4, - "OrderDate": "1996-07-09T00:00:00", - "RequiredDate": "1996-08-06T00:00:00", - "ShippedDate": "1996-07-11T00:00:00", + "OrderID": 10548, + "EmployeeID": 3, + "OrderDate": "1997-05-26T00:00:00", + "RequiredDate": "1997-06-23T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", "ShipVia": 2, - "Freight": 51.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 22000, - "ShipCountry": "Belgium", + "Freight": 1.43, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 40, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Fax": "0452-076546", - "Orders": [ + }, { - "OrderID": 10254, - "EmployeeID": 5, - "OrderDate": "1996-07-11T00:00:00", - "RequiredDate": "1996-08-08T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderID": 10608, + "EmployeeID": 4, + "OrderDate": "1997-07-23T00:00:00", + "RequiredDate": "1997-08-20T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 22.98, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 27.79, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 21, - "Discount": 0.16 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10255, - "EmployeeID": 9, - "OrderDate": "1996-07-12T00:00:00", - "RequiredDate": "1996-08-09T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", - "ShipVia": 3, - "Freight": 148.33, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10967, + "EmployeeID": 2, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 62.22, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 25, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 40, "Discount": 0 } ] @@ -338,2105 +348,1447 @@ ] }, { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, + "CustomerID": "HANAR", + "Company": "Hanari Carnes", + "ContactName": "Mario Pontes", + "ContactTitle": "Accounting Manager", + "Address": "Rua do Paço, 67", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 5454, "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", + "Phone": "(21) 555-0091", + "Fax": "(21) 555-8765", "Orders": [ { - "OrderID": 10256, - "EmployeeID": 3, - "OrderDate": "1996-07-15T00:00:00", - "RequiredDate": "1996-08-12T00:00:00", - "ShippedDate": "1996-07-17T00:00:00", + "OrderID": 10250, + "EmployeeID": 4, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-12T00:00:00", "ShipVia": 2, - "Freight": 13.97, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, + "Freight": 65.83, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10257, - "EmployeeID": 4, - "OrderDate": "1996-07-16T00:00:00", - "RequiredDate": "1996-08-13T00:00:00", - "ShippedDate": "1996-07-22T00:00:00", - "ShipVia": 3, - "Freight": 81.91, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10258, - "EmployeeID": 1, - "OrderDate": "1996-07-17T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderID": 10541, + "EmployeeID": 2, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-05-29T00:00:00", "ShipVia": 1, - "Freight": 140.51, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 68.65, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.1 }, { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 65, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 4, + "Discount": 0.1 }, { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 9, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "CENTC", - "Company": "Centro comercial Moctezuma", - "ContactName": "Francisco Chang", - "ContactTitle": "Marketing Manager", - "Address": "Sierras de Granada 9993", - "City": "México D.F.", - "PostalCode": 5022, - "Country": "Mexico", - "Phone": "(5) 555-3392", - "Fax": "(5) 555-7293", - "Orders": [ + }, { - "OrderID": 10259, + "OrderID": 10645, "EmployeeID": 4, - "OrderDate": "1996-07-18T00:00:00", - "RequiredDate": "1996-08-15T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", - "ShipVia": 3, - "Freight": 3.25, - "ShipName": "Centro comercial Moctezuma", - "ShipAddress": "Sierras de Granada 9993", - "ShipCity": "México D.F.", - "ShipPostalCode": 5022, - "ShipCountry": "Mexico", + "OrderDate": "1997-08-26T00:00:00", + "RequiredDate": "1997-09-23T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", + "ShipVia": 1, + "Freight": 12.41, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 1, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10260, - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-29T00:00:00", + "OrderID": 10690, + "EmployeeID": 1, + "OrderDate": "1997-10-02T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", "ShipVia": 1, - "Freight": 55.09, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 15.8, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 16, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, "Discount": 0.25 - }, + } + ] + }, + { + "OrderID": 10770, + "EmployeeID": 8, + "OrderDate": "1997-12-09T00:00:00", + "RequiredDate": "1998-01-06T00:00:00", + "ShippedDate": "1997-12-17T00:00:00", + "ShipVia": 3, + "Freight": 5.32, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 21, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10261, + "OrderID": 10783, "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-30T00:00:00", + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", "ShipVia": 2, - "Freight": 3.05, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 124.98, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", "ShipCity": "Sao Paulo", "ShipRegion": "RJ", - "ShipPostalCode": 2389, + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 20, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 20, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10262, - "EmployeeID": 8, - "OrderDate": "1996-07-22T00:00:00", - "RequiredDate": "1996-08-19T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", - "ShipVia": 3, - "Freight": 48.29, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10886, + "EmployeeID": 1, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", + "ShipVia": 1, + "Freight": 4.99, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 15, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 2, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10263, - "EmployeeID": 9, - "OrderDate": "1996-07-23T00:00:00", - "RequiredDate": "1996-08-20T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", + "OrderID": 10903, + "EmployeeID": 3, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 3, - "Freight": 146.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 36.71, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 33000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10264, - "EmployeeID": 6, - "OrderDate": "1996-07-24T00:00:00", - "RequiredDate": "1996-08-21T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", + "OrderID": 10922, + "EmployeeID": 5, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", "ShipVia": 3, - "Freight": 3.67, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 27000, - "ShipCountry": "Sweden", + "Freight": 62.74, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 35, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10265, - "EmployeeID": 2, - "OrderDate": "1996-07-25T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", + "OrderID": 10925, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 1, - "Freight": 55.28, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 2.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10266, - "EmployeeID": 3, - "OrderDate": "1996-07-26T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", - "ShipVia": 3, - "Freight": 25.73, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10981, + "EmployeeID": 1, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 193.37, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10267, - "EmployeeID": 4, - "OrderDate": "1996-07-29T00:00:00", - "RequiredDate": "1996-08-26T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", - "ShipVia": 1, - "Freight": 208.58, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 11022, + "EmployeeID": 9, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10268, - "EmployeeID": 8, - "OrderDate": "1996-07-30T00:00:00", - "RequiredDate": "1996-08-27T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 3, - "Freight": 66.29, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", + "OrderID": 11052, + "EmployeeID": 3, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 67.26, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 10, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 4, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "WHITC", - "Company": "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": "VICTE", + "Company": "Victuailles en stock", + "ContactName": "Mary Saveley", + "ContactTitle": "Sales Agent", + "Address": "2, rue du Commerce", + "City": "Lyon", + "PostalCode": 69004, + "Country": "France", + "Phone": "78.32.54.86", + "Fax": "78.32.54.87", "Orders": [ { - "OrderID": 10269, - "EmployeeID": 5, - "OrderDate": "1996-07-31T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", + "OrderID": 10251, + "EmployeeID": 3, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", "ShipVia": 1, - "Freight": 4.56, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 41.34, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 15, "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10270, - "EmployeeID": 1, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 1, - "Freight": 136.54, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 30, - "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 25, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10271, - "EmployeeID": 6, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", + "OrderID": 10334, + "EmployeeID": 8, + "OrderDate": "1996-10-21T00:00:00", + "RequiredDate": "1996-11-18T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", "ShipVia": 2, - "Freight": 4.54, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 8.56, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 24, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10272, - "EmployeeID": 6, - "OrderDate": "1996-08-02T00:00:00", - "RequiredDate": "1996-08-30T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", + "OrderID": 10450, + "EmployeeID": 8, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-19T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", "ShipVia": 2, - "Freight": 98.03, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 7.23, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, "Quantity": 6, - "Discount": 0 + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10459, + "EmployeeID": 4, + "OrderDate": "1997-02-27T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 25.09, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0.06 }, { "ProductID": 72, "UnitPrice": 27.8, - "Quantity": 24, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10273, - "EmployeeID": 3, - "OrderDate": "1996-08-05T00:00:00", - "RequiredDate": "1996-09-02T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", + "OrderID": 10478, + "EmployeeID": 2, + "OrderDate": "1997-03-18T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-26T00:00:00", "ShipVia": 3, - "Freight": 76.07, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 4.81, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 10, "UnitPrice": 24.8, - "Quantity": 24, - "Discount": 0.06 - }, - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2, "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 60, - "Discount": 0.06 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 33, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10274, - "EmployeeID": 6, - "OrderDate": "1996-08-06T00:00:00", - "RequiredDate": "1996-09-03T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 1, - "Freight": 6.01, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, + "OrderID": 10546, + "EmployeeID": 1, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-05-27T00:00:00", + "ShipVia": 3, + "Freight": 194.72, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 20, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 7, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10275, - "EmployeeID": 1, - "OrderDate": "1996-08-07T00:00:00", - "RequiredDate": "1996-09-04T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", - "ShipVia": 1, - "Freight": 26.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10806, + "EmployeeID": 3, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 2, + "Freight": 22.11, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 6, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10276, - "EmployeeID": 8, - "OrderDate": "1996-08-08T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-14T00:00:00", - "ShipVia": 3, - "Freight": 13.84, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 15, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Fax": "0342-023177", - "Orders": [ + }, { - "OrderID": 10277, - "EmployeeID": 2, - "OrderDate": "1996-08-09T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-08-13T00:00:00", + "OrderID": 10814, + "EmployeeID": 3, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", "ShipVia": 3, - "Freight": 125.77, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 130.94, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, + "Discount": 0.16 + }, + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 8, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 14000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10278, - "EmployeeID": 8, - "OrderDate": "1996-08-12T00:00:00", - "RequiredDate": "1996-09-09T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", + "OrderID": 10843, + "EmployeeID": 4, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", "ShipVia": 2, - "Freight": 92.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "Freight": 9.26, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 16, - "Discount": 0 - }, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 4, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10850, + "EmployeeID": 1, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 49.19, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 15, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 8, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 4, + "Discount": 0.16 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10279, - "EmployeeID": 8, - "OrderDate": "1996-08-13T00:00:00", - "RequiredDate": "1996-09-10T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 2, - "Freight": 25.83, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 27000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "SUPRD", + "Company": "Suprêmes délices", + "ContactName": "Pascale Cartrain", + "ContactTitle": "Accounting Manager", + "Address": "Boulevard Tirou, 255", + "City": "Charleroi", + "PostalCode": 44000, + "Country": "Belgium", + "Phone": "(071) 23 67 22 20", + "Fax": "(071) 23 67 22 21", "Orders": [ { - "OrderID": 10280, - "EmployeeID": 2, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-09-11T00:00:00", - "ShippedDate": "1996-09-12T00:00:00", - "ShipVia": 1, - "Freight": 8.98, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", + "OrderID": 10252, + "EmployeeID": 4, + "OrderDate": "1996-07-09T00:00:00", + "RequiredDate": "1996-08-06T00:00:00", + "ShippedDate": "1996-07-11T00:00:00", + "ShipVia": 2, + "Freight": 51.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 22000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 20, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 25, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10281, + "OrderID": 10302, "EmployeeID": 4, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-08-28T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 2.94, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderDate": "1996-09-10T00:00:00", + "RequiredDate": "1996-10-08T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 20000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 1, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 6, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 12, "Discount": 0 } ] }, { - "OrderID": 10282, - "EmployeeID": 4, - "OrderDate": "1996-08-15T00:00:00", - "RequiredDate": "1996-09-12T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10458, + "EmployeeID": 7, + "OrderDate": "1997-02-26T00:00:00", + "RequiredDate": "1997-03-26T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 147.06, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 16000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 6, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10283, - "EmployeeID": 3, - "OrderDate": "1996-08-16T00:00:00", - "RequiredDate": "1996-09-13T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", - "ShipVia": 3, - "Freight": 84.81, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 15, - "UnitPrice": 12.4, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 35, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 3, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10284, - "EmployeeID": 4, - "OrderDate": "1996-08-19T00:00:00", - "RequiredDate": "1996-09-16T00:00:00", - "ShippedDate": "1996-08-27T00:00:00", - "ShipVia": 1, - "Freight": 76.56, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10463, + "EmployeeID": 5, + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-06T00:00:00", + "ShipVia": 3, + "Freight": 14.78, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 21000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 44, - "UnitPrice": 15.5, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 21, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 67, + "ProductID": 42, "UnitPrice": 11.2, - "Quantity": 5, - "Discount": 0.25 + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10285, - "EmployeeID": 1, - "OrderDate": "1996-08-20T00:00:00", - "RequiredDate": "1996-09-17T00:00:00", - "ShippedDate": "1996-08-26T00:00:00", - "ShipVia": 2, - "Freight": 76.83, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10475, + "EmployeeID": 9, + "OrderDate": "1997-03-14T00:00:00", + "RequiredDate": "1997-04-11T00:00:00", + "ShippedDate": "1997-04-04T00:00:00", + "ShipVia": 1, + "Freight": 68.52, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, + "Discount": 0.16 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 36, - "Discount": 0.2 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 42, + "Discount": 0.16 } ] }, { - "OrderID": 10286, - "EmployeeID": 8, - "OrderDate": "1996-08-21T00:00:00", - "RequiredDate": "1996-09-18T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", + "OrderID": 10767, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", "ShipVia": 3, - "Freight": 229.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 1.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 44000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 100, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10287, - "EmployeeID": 8, - "OrderDate": "1996-08-22T00:00:00", - "RequiredDate": "1996-09-19T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", - "ShipVia": 3, - "Freight": 12.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10841, + "EmployeeID": 5, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", + "ShipVia": 2, + "Freight": 424.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 27000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, "Quantity": 15, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10288, - "EmployeeID": 4, - "OrderDate": "1996-08-23T00:00:00", - "RequiredDate": "1996-09-20T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", - "ShipVia": 1, - "Freight": 7.45, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10846, + "EmployeeID": 2, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 56.46, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 15000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 22000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10289, - "EmployeeID": 7, - "OrderDate": "1996-08-26T00:00:00", - "RequiredDate": "1996-09-23T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", + "OrderID": 10885, + "EmployeeID": 6, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 3, - "Freight": 22.77, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "Freight": 5.64, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 40000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 8, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, "Quantity": 30, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 9, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 25, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10290, - "EmployeeID": 8, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", - "ShipVia": 1, - "Freight": 79.7, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderID": 10930, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 3, + "Freight": 15.55, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 17000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 15, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 15, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.2 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 11035, + "EmployeeID": 2, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 0.17, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 30000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10291, - "EmployeeID": 6, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-04T00:00:00", + "OrderID": 11038, + "EmployeeID": 1, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", "ShipVia": 2, - "Freight": 6.4, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 29.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 44000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, + "Discount": 0 } ] } ] }, { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10292, - "EmployeeID": 1, - "OrderDate": "1996-08-28T00:00:00", - "RequiredDate": "1996-09-25T00:00:00", - "ShippedDate": "1996-09-02T00:00:00", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", + "CustomerID": "CHOPS", + "Company": "Chop-suey Chinese", + "ContactName": "Yang Wang", "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", + "Address": "Hauptstr. 29", + "City": "Bern", + "PostalCode": 3012, + "Country": "Switzerland", + "Phone": "0452-076545", + "Fax": "0452-076546", "Orders": [ { - "OrderID": 10293, - "EmployeeID": 1, - "OrderDate": "1996-08-29T00:00:00", - "RequiredDate": "1996-09-26T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 3, - "Freight": 21.18, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10254, + "EmployeeID": 5, + "OrderDate": "1996-07-11T00:00:00", + "RequiredDate": "1996-08-08T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 2, + "Freight": 22.98, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 12, - "Discount": 0 - }, { "ProductID": 24, "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0 + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 5, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 21, + "Discount": 0.16 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10294, - "EmployeeID": 4, - "OrderDate": "1996-08-30T00:00:00", - "RequiredDate": "1996-09-27T00:00:00", - "ShippedDate": "1996-09-05T00:00:00", + "OrderID": 10370, + "EmployeeID": 6, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-27T00:00:00", "ShipVia": 2, - "Freight": 147.26, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 1.17, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { "ProductID": 1, "UnitPrice": 14.4, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, "Quantity": 15, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 21, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ - { - "OrderID": 10295, - "EmployeeID": 2, - "OrderDate": "1996-09-02T00:00:00", - "RequiredDate": "1996-09-30T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", - "ShipVia": 2, - "Freight": 1.15, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 4, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10296, + "OrderID": 10519, "EmployeeID": 6, - "OrderDate": "1996-09-03T00:00:00", - "RequiredDate": "1996-10-01T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 1, - "Freight": 0.12, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderDate": "1997-04-28T00:00:00", + "RequiredDate": "1997-05-26T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 91.76, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10297, - "EmployeeID": 5, - "OrderDate": "1996-09-04T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", - "ShipVia": 2, - "Freight": 5.74, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10731, + "EmployeeID": 7, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 1, + "Freight": 96.65, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10298, - "EmployeeID": 6, - "OrderDate": "1996-09-05T00:00:00", - "RequiredDate": "1996-10-03T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 2, - "Freight": 168.22, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10746, + "EmployeeID": 1, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 3, + "Freight": 31.43, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10299, + "OrderID": 10966, "EmployeeID": 4, - "OrderDate": "1996-09-06T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-13T00:00:00", - "ShipVia": 2, - "Freight": 29.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 27.19, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10300, - "EmployeeID": 2, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", - "ShipVia": 2, - "Freight": 17.68, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 11029, + "EmployeeID": 4, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 47.84, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10301, - "EmployeeID": 8, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", + "OrderID": 11041, + "EmployeeID": 3, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", "ShipVia": 2, - "Freight": 45.08, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 48.22, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 30, "Discount": 0 } ] @@ -2444,1691 +1796,1226 @@ ] }, { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 27000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", + "CustomerID": "RICSU", + "Company": "Richter Supermarkt", + "ContactName": "Michael Holz", + "ContactTitle": "Sales Manager", + "Address": "Grenzacherweg 237", + "City": "Genève", + "PostalCode": 1203, + "Country": "Switzerland", + "Phone": "0897-034214", + "Fax": "0897-034215", "Orders": [ { - "OrderID": 10302, - "EmployeeID": 4, - "OrderDate": "1996-09-10T00:00:00", - "RequiredDate": "1996-10-08T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 20000, - "ShipCountry": "Belgium", + "OrderID": 10255, + "EmployeeID": 9, + "OrderDate": "1996-07-12T00:00:00", + "RequiredDate": "1996-08-09T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", + "ShipVia": 3, + "Freight": 148.33, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 40, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 28, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 12, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10303, - "EmployeeID": 7, - "OrderDate": "1996-09-11T00:00:00", - "RequiredDate": "1996-10-09T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", + "OrderID": 10419, + "EmployeeID": 4, + "OrderDate": "1997-01-20T00:00:00", + "RequiredDate": "1997-02-17T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", "ShipVia": 2, - "Freight": 107.83, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 137.35, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10304, + "OrderID": 10537, "EmployeeID": 1, - "OrderDate": "1996-09-12T00:00:00", - "RequiredDate": "1996-10-10T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", - "ShipVia": 2, - "Freight": 63.79, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", + "ShipVia": 1, + "Freight": 78.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 10, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ - { - "OrderID": 10305, - "EmployeeID": 8, - "OrderDate": "1996-09-13T00:00:00", - "RequiredDate": "1996-10-11T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 3, - "Freight": 257.62, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10306, - "EmployeeID": 1, - "OrderDate": "1996-09-16T00:00:00", - "RequiredDate": "1996-10-14T00:00:00", - "ShippedDate": "1996-09-23T00:00:00", - "ShipVia": 3, - "Freight": 7.56, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10666, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", + "ShipVia": 2, + "Freight": 232.42, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, + "ProductID": 65, + "UnitPrice": 21.05, "Quantity": 10, "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 5, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10307, - "EmployeeID": 2, - "OrderDate": "1996-09-17T00:00:00", - "RequiredDate": "1996-10-15T00:00:00", - "ShippedDate": "1996-09-25T00:00:00", - "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10751, + "EmployeeID": 3, + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-12-03T00:00:00", + "ShipVia": 3, + "Freight": 130.79, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ - { - "OrderID": 10308, - "EmployeeID": 7, - "OrderDate": "1996-09-18T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-24T00:00:00", - "ShipVia": 3, - "Freight": 1.61, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 1, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 5, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10309, + "OrderID": 10758, "EmployeeID": 3, - "OrderDate": "1996-09-19T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", - "ShipVia": 1, - "Freight": 47.3, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-04T00:00:00", + "ShipVia": 3, + "Freight": 138.17, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, + "ProductID": 26, + "UnitPrice": 31.23, "Quantity": 20, "Discount": 0 }, { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 20, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 3, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10310, - "EmployeeID": 8, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-18T00:00:00", - "ShippedDate": "1996-09-27T00:00:00", + "OrderID": 10931, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 17.52, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "Freight": 13.6, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 10, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 42, + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 5, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10311, - "EmployeeID": 1, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-26T00:00:00", - "ShipVia": 3, - "Freight": 24.69, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10951, + "EmployeeID": 9, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 2, + "Freight": 30.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 11.2, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 6, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10312, - "EmployeeID": 2, - "OrderDate": "1996-09-23T00:00:00", - "RequiredDate": "1996-10-21T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", - "ShipVia": 2, - "Freight": 40.26, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 11033, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 84.74, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 4, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 24, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 36, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11075, + "EmployeeID": 8, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-05-03T00:00:00", + "ShipVia": 2, + "Freight": 6.19, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 20, - "Discount": 0 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "WELLI", + "Company": "Wellington Importadora", + "ContactName": "Paula Parente", + "ContactTitle": "Sales Manager", + "Address": "Rua do Mercado, 12", + "City": "Resende", + "Region": "SP", + "PostalCode": 8737, + "Country": "Brazil", + "Phone": "(14) 555-8122", + "Fax": "(14) 555-8123", "Orders": [ { - "OrderID": 10313, - "EmployeeID": 2, - "OrderDate": "1996-09-24T00:00:00", - "RequiredDate": "1996-10-22T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderID": 10256, + "EmployeeID": 3, + "OrderDate": "1996-07-15T00:00:00", + "RequiredDate": "1996-08-12T00:00:00", + "ShippedDate": "1996-07-17T00:00:00", "ShipVia": 2, - "Freight": 1.96, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 13.97, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10314, - "EmployeeID": 1, - "OrderDate": "1996-09-25T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", - "ShipVia": 2, - "Freight": 74.16, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10420, + "EmployeeID": 3, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 1, + "Freight": 44.12, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 40, + "ProductID": 9, + "UnitPrice": 77.6, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 2, "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 25, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 26000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10315, - "EmployeeID": 4, - "OrderDate": "1996-09-26T00:00:00", - "RequiredDate": "1996-10-24T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", + "OrderID": 10585, + "EmployeeID": 7, + "OrderDate": "1997-07-01T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", + "ShipVia": 1, + "Freight": 13.41, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10644, + "EmployeeID": 3, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", "ShipVia": 2, - "Freight": 41.76, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 80379, - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "Freight": 0.14, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 14, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 70, + "ProductID": 46, "UnitPrice": 12, - "Quantity": 30, - "Discount": 0 + "Quantity": 21, + "Discount": 0.1 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10316, - "EmployeeID": 1, - "OrderDate": "1996-09-27T00:00:00", - "RequiredDate": "1996-10-25T00:00:00", - "ShippedDate": "1996-10-08T00:00:00", - "ShipVia": 3, - "Freight": 150.15, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10803, + "EmployeeID": 4, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-06T00:00:00", + "ShipVia": 1, + "Freight": 55.23, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 24, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 70, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 15, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10317, - "EmployeeID": 6, - "OrderDate": "1996-09-30T00:00:00", - "RequiredDate": "1996-10-28T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", + "OrderID": 10809, + "EmployeeID": 7, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 4.87, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, + "ProductID": 52, + "UnitPrice": 7, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10318, - "EmployeeID": 8, - "OrderDate": "1996-10-01T00:00:00", - "RequiredDate": "1996-10-29T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderID": 10900, + "EmployeeID": 1, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 2, - "Freight": 4.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 30676, - "ShipPostalCode": 36000, - "ShipCountry": "UK", + "Freight": 1.66, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, - "Discount": 0 - }, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10905, + "EmployeeID": 9, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 13.72, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.06 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10319, - "EmployeeID": 7, - "OrderDate": "1996-10-02T00:00:00", - "RequiredDate": "1996-10-30T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", + "OrderID": 10935, + "EmployeeID": 4, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 3, - "Freight": 64.5, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 47.59, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 8, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 14, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 30, - "Discount": 0 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 8, + "Discount": 0.25 } ] } ] }, { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", + "CustomerID": "HILAA", + "Company": "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", "Orders": [ { - "OrderID": 10320, - "EmployeeID": 5, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-18T00:00:00", + "OrderID": 10257, + "EmployeeID": 4, + "OrderDate": "1996-07-16T00:00:00", + "RequiredDate": "1996-08-13T00:00:00", + "ShippedDate": "1996-07-22T00:00:00", "ShipVia": 3, - "Freight": 34.57, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 81.91, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10321, - "EmployeeID": 3, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-31T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", - "ShipVia": 2, - "Freight": 3.43, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 20137, - "ShipPostalCode": 41000, - "ShipCountry": "UK", + "OrderID": 10395, + "EmployeeID": 6, + "OrderDate": "1996-12-26T00:00:00", + "RequiredDate": "1997-01-23T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 1, + "Freight": 184.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 10, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 28, + "Discount": 0.1 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 70, + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10322, - "EmployeeID": 7, - "OrderDate": "1996-10-04T00:00:00", - "RequiredDate": "1996-11-01T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", + "OrderID": 10476, + "EmployeeID": 8, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", "ShipVia": 3, - "Freight": 0.4, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 4.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10323, - "EmployeeID": 4, - "OrderDate": "1996-10-07T00:00:00", - "RequiredDate": "1996-11-04T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 1, - "Freight": 4.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10486, + "EmployeeID": 1, + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "ShipVia": 2, + "Freight": 30.53, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 12.4, + "ProductID": 11, + "UnitPrice": 16.8, "Quantity": 5, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 4, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 16, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10324, - "EmployeeID": 9, - "OrderDate": "1996-10-08T00:00:00", - "RequiredDate": "1996-11-05T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", - "ShipVia": 1, - "Freight": 214.27, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10490, + "EmployeeID": 7, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-03T00:00:00", + "ShipVia": 2, + "Freight": 210.19, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.16 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 68, + "UnitPrice": 10, "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 80, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 36, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10325, - "EmployeeID": 1, - "OrderDate": "1996-10-09T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 3, - "Freight": 64.86, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10498, + "EmployeeID": 8, + "OrderDate": "1997-04-07T00:00:00", + "RequiredDate": "1997-05-05T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", + "ShipVia": 2, + "Freight": 29.75, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 9, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 4, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ + }, { - "OrderID": 10326, - "EmployeeID": 4, - "OrderDate": "1996-10-10T00:00:00", - "RequiredDate": "1996-11-07T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 2, - "Freight": 77.92, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", + "OrderID": 10552, + "EmployeeID": 2, + "OrderDate": "1997-05-29T00:00:00", + "RequiredDate": "1997-06-26T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 1, + "Freight": 83.22, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 16, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 18, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 50, + "UnitPrice": 7.75, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 43000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10327, - "EmployeeID": 2, - "OrderDate": "1996-10-11T00:00:00", - "RequiredDate": "1996-11-08T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", + "OrderID": 10601, + "EmployeeID": 7, + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", "ShipVia": 1, - "Freight": 63.36, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 17000, - "ShipCountry": "Sweden", + "Freight": 58.3, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10328, + "OrderID": 10613, "EmployeeID": 4, - "OrderDate": "1996-10-14T00:00:00", - "RequiredDate": "1996-11-11T00:00:00", - "ShippedDate": "1996-10-17T00:00:00", - "ShipVia": 3, - "Freight": 87.03, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 2, + "Freight": 8.11, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 40, "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10329, + "OrderID": 10641, "EmployeeID": 4, - "OrderDate": "1996-10-15T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", "ShipVia": 2, - "Freight": 191.67, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 179.61, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, - "Discount": 0.06 - }, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, + "Discount": 0 + } + ] + }, + { + "OrderID": 10705, + "EmployeeID": 9, + "OrderDate": "1997-10-15T00:00:00", + "RequiredDate": "1997-11-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 3.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 4, + "Discount": 0 + } + ] + }, { - "OrderID": 10330, + "OrderID": 10796, "EmployeeID": 3, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", "ShipVia": 1, - "Freight": 12.75, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, + "Freight": 26.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, "ShipCountry": "Venezuela", "OrderDetails": [ { "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 50, - "Discount": 0.16 + "UnitPrice": 31.23, + "Quantity": 21, + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10331, - "EmployeeID": 9, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-27T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", - "ShipVia": 1, - "Freight": 10.19, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 20000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10332, - "EmployeeID": 3, - "OrderDate": "1996-10-17T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", - "ShipVia": 2, - "Freight": 52.84, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 28000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 40, - "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 35, "Discount": 0.2 }, { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 16, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 24, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10333, - "EmployeeID": 5, - "OrderDate": "1996-10-18T00:00:00", - "RequiredDate": "1996-11-15T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", - "ShipVia": 3, - "Freight": 0.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10863, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 30.26, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10334, - "EmployeeID": 8, - "OrderDate": "1996-10-21T00:00:00", - "RequiredDate": "1996-11-18T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", - "ShipVia": 2, - "Freight": 8.56, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10901, + "EmployeeID": 4, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", + "ShipVia": 1, + "Freight": 62.09, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 8, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10335, - "EmployeeID": 7, - "OrderDate": "1996-10-22T00:00:00", - "RequiredDate": "1996-11-19T00:00:00", - "ShippedDate": "1996-10-24T00:00:00", - "ShipVia": 2, - "Freight": 42.11, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10957, + "EmployeeID": 8, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 105.36, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 7, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10960, + "EmployeeID": 3, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 2.08, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 48, - "Discount": 0.2 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10336, - "EmployeeID": 7, - "OrderDate": "1996-10-23T00:00:00", - "RequiredDate": "1996-11-20T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", - "ShipVia": 2, - "Freight": 15.51, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10976, + "EmployeeID": 1, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 1, + "Freight": 37.97, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10337, - "EmployeeID": 4, - "OrderDate": "1996-10-24T00:00:00", - "RequiredDate": "1996-11-21T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", - "ShipVia": 3, - "Freight": 108.26, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 11055, + "EmployeeID": 7, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", + "ShipVia": 2, + "Freight": 120.92, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 24, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, + "ProductID": 51, + "UnitPrice": 53, "Quantity": 20, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] @@ -4136,625 +3023,475 @@ ] }, { - "CustomerID": "OLDWO", - "Company": "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": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", "Orders": [ { - "OrderID": 10338, - "EmployeeID": 4, - "OrderDate": "1996-10-25T00:00:00", - "RequiredDate": "1996-11-22T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", - "ShipVia": 3, - "Freight": 84.21, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 20, - "Discount": 0 + "OrderID": 10258, + "EmployeeID": 1, + "OrderDate": "1996-07-17T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 1, + "Freight": 140.51, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 50, + "Discount": 0.2 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 15, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 65, + "Discount": 0.2 + }, + { + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 40000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10339, - "EmployeeID": 2, - "OrderDate": "1996-10-28T00:00:00", - "RequiredDate": "1996-11-25T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 15.66, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "OrderID": 10263, + "EmployeeID": 9, + "OrderDate": "1996-07-23T00:00:00", + "RequiredDate": "1996-08-20T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 146.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 10, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 28, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 36, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10340, + "OrderID": 10351, "EmployeeID": 1, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 166.31, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 162.33, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 20, "Discount": 0.06 }, { "ProductID": 41, "UnitPrice": 7.7, - "Quantity": 12, + "Quantity": 13, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 77, "Discount": 0.06 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 40, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 10, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10341, - "EmployeeID": 7, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", - "ShipVia": 3, - "Freight": 26.78, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10368, + "EmployeeID": 2, + "OrderDate": "1996-11-29T00:00:00", + "RequiredDate": "1996-12-27T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 101.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 8, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 13, + "Discount": 0.1 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10342, + "OrderID": 10382, "EmployeeID": 4, - "OrderDate": "1996-10-30T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 54.83, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 24, - "Discount": 0.2 + "OrderDate": "1996-12-13T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1996-12-16T00:00:00", + "ShipVia": 1, + "Freight": 94.77, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 32, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 56, - "Discount": 0.2 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10343, - "EmployeeID": 4, - "OrderDate": "1996-10-31T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-11-06T00:00:00", + "OrderID": 10390, + "EmployeeID": 6, + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-26T00:00:00", "ShipVia": 1, - "Freight": 110.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 126.38, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 68, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 4, - "Discount": 0.06 + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 76, + "ProductID": 35, "UnitPrice": 14.4, - "Quantity": 15, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 45, "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10344, - "EmployeeID": 4, - "OrderDate": "1996-11-01T00:00:00", - "RequiredDate": "1996-11-29T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", + "OrderID": 10402, + "EmployeeID": 8, + "OrderDate": "1997-01-02T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", "ShipVia": 2, - "Freight": 23.29, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 67.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 35, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 65, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10345, - "EmployeeID": 2, - "OrderDate": "1996-11-04T00:00:00", - "RequiredDate": "1996-12-02T00:00:00", - "ShippedDate": "1996-11-11T00:00:00", - "ShipVia": 2, - "Freight": 249.06, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10430, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-03T00:00:00", + "ShipVia": 1, + "Freight": 458.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 80, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 9, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10346, + "OrderID": 10442, "EmployeeID": 3, - "OrderDate": "1996-11-05T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 142.08, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderDate": "1997-02-11T00:00:00", + "RequiredDate": "1997-03-11T00:00:00", + "ShippedDate": "1997-02-18T00:00:00", + "ShipVia": 2, + "Freight": 47.94, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 36, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 80, + "Discount": 0 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10347, - "EmployeeID": 4, - "OrderDate": "1996-11-06T00:00:00", - "RequiredDate": "1996-12-04T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 3.1, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10514, + "EmployeeID": 3, + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 2, + "Freight": 789.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 39, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 4, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 39, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0.16 + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10348, - "EmployeeID": 4, - "OrderDate": "1996-11-07T00:00:00", - "RequiredDate": "1996-12-05T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", - "ShipVia": 2, - "Freight": 0.78, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10571, + "EmployeeID": 8, + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 3, + "Freight": 26.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 11, "Discount": 0.16 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 25, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10349, - "EmployeeID": 7, - "OrderDate": "1996-11-08T00:00:00", - "RequiredDate": "1996-12-06T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", + "OrderID": 10595, + "EmployeeID": 2, + "OrderDate": "1997-07-10T00:00:00", + "RequiredDate": "1997-08-07T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", "ShipVia": 1, - "Freight": 8.63, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 96.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10350, - "EmployeeID": 6, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", - "ShipVia": 2, - "Freight": 64.19, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.25 + }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 120, + "Discount": 0.25 }, { "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 18, - "Discount": 0.1 + "UnitPrice": 36, + "Quantity": 65, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10351, - "EmployeeID": 1, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 162.33, + "OrderID": 10633, + "EmployeeID": 7, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-18T00:00:00", + "ShipVia": 3, + "Freight": 477.9, "ShipName": "Ernst Handel", "ShipAddress": "Kirchgasse 6", "ShipCity": "Graz", @@ -4762,1247 +3499,992 @@ "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 13, + "UnitPrice": 6, "Quantity": 13, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 77, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 80, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10352, - "EmployeeID": 3, - "OrderDate": "1996-11-12T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-18T00:00:00", - "ShipVia": 3, - "Freight": 1.3, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10667, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 78.09, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 14, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10353, - "EmployeeID": 7, - "OrderDate": "1996-11-13T00:00:00", - "RequiredDate": "1996-12-11T00:00:00", - "ShippedDate": "1996-11-25T00:00:00", - "ShipVia": 3, - "Freight": 360.63, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, + "OrderID": 10698, + "EmployeeID": 4, + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-17T00:00:00", + "ShipVia": 1, + "Freight": 272.47, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 11, - "UnitPrice": 16.8, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.06 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 12, - "Discount": 0.2 + "Discount": 0.06 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 65, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 8, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10354, - "EmployeeID": 8, - "OrderDate": "1996-11-14T00:00:00", - "RequiredDate": "1996-12-12T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", + "OrderID": 10764, + "EmployeeID": 6, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", "ShipVia": 3, - "Freight": 53.8, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 145.45, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 4, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 130, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 12000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10355, - "EmployeeID": 6, - "OrderDate": "1996-11-15T00:00:00", - "RequiredDate": "1996-12-13T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 41.95, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 31000, - "ShipCountry": "UK", + "OrderID": 10771, + "EmployeeID": 9, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 2, + "Freight": 11.19, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10356, - "EmployeeID": 6, - "OrderDate": "1996-11-18T00:00:00", - "RequiredDate": "1996-12-16T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 2, - "Freight": 36.71, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10773, + "EmployeeID": 1, + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1998-01-08T00:00:00", + "ShippedDate": "1997-12-16T00:00:00", + "ShipVia": 3, + "Freight": 96.43, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 33, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 12, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 70, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 7, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10357, + "OrderID": 10776, "EmployeeID": 1, - "OrderDate": "1996-11-19T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1998-01-12T00:00:00", + "ShippedDate": "1997-12-18T00:00:00", "ShipVia": 3, - "Freight": 34.88, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 351.53, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 16, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 8, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10358, - "EmployeeID": 5, - "OrderDate": "1996-11-20T00:00:00", - "RequiredDate": "1996-12-18T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 1, - "Freight": 19.64, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 12, "Discount": 0.06 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 27, "Discount": 0.06 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 120, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10359, - "EmployeeID": 5, - "OrderDate": "1996-11-21T00:00:00", - "RequiredDate": "1996-12-19T00:00:00", - "ShippedDate": "1996-11-26T00:00:00", - "ShipVia": 3, - "Freight": 288.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 43000, - "ShipCountry": "UK", + "OrderID": 10795, + "EmployeeID": 8, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-20T00:00:00", + "ShipVia": 2, + "Freight": 126.66, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 56, - "Discount": 0.06 - }, - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 70, - "Discount": 0.06 + "UnitPrice": 17.45, + "Quantity": 65, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10360, - "EmployeeID": 4, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 3, - "Freight": 131.7, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10836, + "EmployeeID": 7, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 1, + "Freight": 411.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 52, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 35, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 10, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 35, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 28, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10361, - "EmployeeID": 1, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", + "OrderID": 10854, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-05T00:00:00", "ShipVia": 2, - "Freight": 183.17, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 100.22, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 54, - "Discount": 0.1 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 100, + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 55, - "Discount": 0.1 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 65, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10362, + "OrderID": 10895, "EmployeeID": 3, - "OrderDate": "1996-11-25T00:00:00", - "RequiredDate": "1996-12-23T00:00:00", - "ShippedDate": "1996-11-28T00:00:00", + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 1, - "Freight": 96.04, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 162.75, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 50, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 110, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 20, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 91, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 100, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10363, - "EmployeeID": 4, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1996-12-24T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", + "OrderID": 10968, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-01T00:00:00", "ShipVia": 3, - "Freight": 30.54, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 74.6, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 12, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 12, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 46000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10364, - "EmployeeID": 1, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", - "ShipVia": 1, - "Freight": 71.97, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 10000, - "ShipCountry": "UK", + "OrderID": 10979, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-03-31T00:00:00", + "ShipVia": 2, + "Freight": 353.07, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 30, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 5, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10365, - "EmployeeID": 3, - "OrderDate": "1996-11-27T00:00:00", - "RequiredDate": "1996-12-25T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 2, - "Freight": 22, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 24, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 80, "Discount": 0 - } - ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ - { - "OrderID": 10366, - "EmployeeID": 8, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1996-12-30T00:00:00", - "ShipVia": 2, - "Freight": 10.14, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", - "OrderDetails": [ + }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 5, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10367, - "EmployeeID": 7, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1996-12-26T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 10990, + "EmployeeID": 2, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", "ShipVia": 3, - "Freight": 13.55, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 117.61, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 36, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 65, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 18, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 60, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 65, + "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 66, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10368, - "EmployeeID": 2, - "OrderDate": "1996-11-29T00:00:00", - "RequiredDate": "1996-12-27T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 2, - "Freight": 101.95, + "OrderID": 11008, + "EmployeeID": 7, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-05-09T00:00:00", + "ShipVia": 3, + "Freight": 79.46, "ShipName": "Ernst Handel", "ShipAddress": "Kirchgasse 6", "ShipCity": "Graz", "ShipPostalCode": 8010, "ShipCountry": "Austria", "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 5, - "Discount": 0.1 - }, { "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 13, - "Discount": 0.1 + "UnitPrice": 45.6, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 90, + "Discount": 0.06 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 21, + "Discount": 0 + } + ] + }, { - "OrderID": 10369, - "EmployeeID": 8, - "OrderDate": "1996-12-02T00:00:00", - "RequiredDate": "1996-12-30T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", + "OrderID": 11017, + "EmployeeID": 9, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 2, - "Freight": 195.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 754.26, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 20, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 110, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10370, - "EmployeeID": 6, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-27T00:00:00", + "OrderID": 11072, + "EmployeeID": 4, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-08-02T00:00:00", "ShipVia": 2, - "Freight": 1.17, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 258.64, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 22, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 130, + "Discount": 0 } ] } - ], - "Fax": "0452-076545" + ] }, { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", + "CustomerID": "CENTC", + "Company": "Centro comercial Moctezuma", + "ContactName": "Francisco Chang", + "ContactTitle": "Marketing Manager", + "Address": "Sierras de Granada 9993", + "City": "México D.F.", + "PostalCode": 5022, + "Country": "Mexico", + "Phone": "(5) 555-3392", + "Fax": "(5) 555-7293", "Orders": [ { - "OrderID": 10371, - "EmployeeID": 1, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", - "ShipVia": 1, - "Freight": 0.45, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10259, + "EmployeeID": 4, + "OrderDate": "1996-07-18T00:00:00", + "RequiredDate": "1996-08-15T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", + "ShipVia": 3, + "Freight": 3.25, + "ShipName": "Centro comercial Moctezuma", + "ShipAddress": "Sierras de Granada 9993", + "ShipCity": "México D.F.", + "ShipPostalCode": 5022, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 1, + "Discount": 0 } ] } ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", + "CustomerID": "OTTIK", + "Company": "Ottilies Käseladen", + "ContactName": "Henriette Pfalzheim", + "ContactTitle": "Owner", + "Address": "Mehrheimerstr. 369", + "City": "Köln", + "PostalCode": 50739, + "Country": "Germany", + "Phone": "0221-0644327", + "Fax": "0221-0765721", "Orders": [ { - "OrderID": 10372, - "EmployeeID": 5, - "OrderDate": "1996-12-04T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 2, - "Freight": 890.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10260, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-29T00:00:00", + "ShipVia": 1, + "Freight": 55.09, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 12, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 16, "Discount": 0.25 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 70, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, "Discount": 0.25 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 42, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 21, "Discount": 0.25 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10373, - "EmployeeID": 4, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-11T00:00:00", - "ShipVia": 3, - "Freight": 124.12, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10407, + "EmployeeID": 2, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-04T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", + "ShipVia": 2, + "Freight": 91.48, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 80, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10374, - "EmployeeID": 1, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 3, - "Freight": 3.94, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 10.6, + "ProductID": 71, + "UnitPrice": 17.2, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10375, - "EmployeeID": 3, - "OrderDate": "1996-12-06T00:00:00", - "RequiredDate": "1997-01-03T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", + "OrderID": 10508, + "EmployeeID": 1, + "OrderDate": "1997-04-16T00:00:00", + "RequiredDate": "1997-05-14T00:00:00", + "ShippedDate": "1997-05-13T00:00:00", "ShipVia": 2, - "Freight": 20.12, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "Freight": 4.99, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, + "ProductID": 39, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 10000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10376, - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 2, - "Freight": 20.39, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 39000, - "ShipCountry": "Canada", + "OrderID": 10554, + "EmployeeID": 4, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 3, + "Freight": 120.97, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 42, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 11000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10377, - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 22.21, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", - "OrderDetails": [ + }, { - "ProductID": 28, - "UnitPrice": 36.4, + "ProductID": 23, + "UnitPrice": 9, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.06 }, { - "ProductID": 39, - "UnitPrice": 14.4, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 13000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10378, - "EmployeeID": 5, - "OrderDate": "1996-12-10T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-19T00:00:00", + "OrderID": 10580, + "EmployeeID": 4, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-01T00:00:00", "ShipVia": 3, - "Freight": 5.44, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 49000, - "ShipCountry": "Sweden", + "Freight": 75.89, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 6, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 30, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10684, + "EmployeeID": 3, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 1, + "Freight": 145.63, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10766, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 157.55, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10833, + "EmployeeID": 6, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 2, + "Freight": 71.49, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 9, + "Discount": 0.1 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 9, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10999, + "EmployeeID": 6, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-01T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 96.35, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 21, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 11020, + "EmployeeID": 2, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 2, + "Freight": 43.3, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 24, + "Discount": 0.16 } ] } @@ -6022,13 +4504,13 @@ "Fax": "(21) 555-4545", "Orders": [ { - "OrderID": 10379, - "EmployeeID": 2, - "OrderDate": "1996-12-11T00:00:00", - "RequiredDate": "1997-01-08T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 1, - "Freight": 45.03, + "OrderID": 10261, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-30T00:00:00", + "ShipVia": 2, + "Freight": 3.05, "ShipName": "Que Delícia", "ShipAddress": "Rua da Panificadora, 12", "ShipCity": "Sao Paulo", @@ -6037,1063 +4519,811 @@ "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 16, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 35, + "UnitPrice": 14.4, "Quantity": 20, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10380, - "EmployeeID": 8, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", - "ShipVia": 3, - "Freight": 35.03, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10291, + "EmployeeID": 6, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-04T00:00:00", + "ShipVia": 2, + "Freight": 6.4, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, + "ProductID": 13, + "UnitPrice": 4.8, "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 6, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 24, "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10381, - "EmployeeID": 3, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", + "OrderID": 10379, + "EmployeeID": 2, + "OrderDate": "1996-12-11T00:00:00", + "RequiredDate": "1997-01-08T00:00:00", "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 7.99, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "ShipVia": 1, + "Freight": 45.03, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 14, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 16, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10382, - "EmployeeID": 4, - "OrderDate": "1996-12-13T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1996-12-16T00:00:00", + "OrderID": 10421, + "EmployeeID": 8, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-03-04T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", "ShipVia": 1, - "Freight": 94.77, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 99.23, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 32, - "Discount": 0 - }, - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 9, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 4, + "Discount": 0.16 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 14, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 50, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 31000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10383, - "EmployeeID": 8, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-18T00:00:00", - "ShipVia": 3, - "Freight": 34.24, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 19000, - "ShipCountry": "UK", + "OrderID": 10587, + "EmployeeID": 1, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 1, + "Freight": 62.52, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, + "ProductID": 77, + "UnitPrice": 13, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 18000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10384, - "EmployeeID": 3, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 3, - "Freight": 168.64, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "OrderID": 10647, + "EmployeeID": 4, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 2, + "Freight": 45.54, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 28, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 15, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10385, - "EmployeeID": 1, - "OrderDate": "1996-12-17T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1996-12-23T00:00:00", + "OrderID": 10720, + "EmployeeID": 8, + "OrderDate": "1997-10-28T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 30.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 9.53, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10794, + "EmployeeID": 6, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 1, + "Freight": 21.49, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10386, - "EmployeeID": 9, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-25T00:00:00", - "ShipVia": 3, - "Freight": 13.99, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", + "OrderID": 10989, + "EmployeeID": 2, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 34.76, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 11, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, "Discount": 0 } ] } - ], - "Fax": "(11) 555-9857" + ] }, { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", + "ContactTitle": "Sales Associate", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", "Orders": [ { - "OrderID": 10387, - "EmployeeID": 1, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-15T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 2, - "Freight": 93.63, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10262, + "EmployeeID": 8, + "OrderDate": "1996-07-22T00:00:00", + "RequiredDate": "1996-08-19T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", + "ShipVia": 3, + "Freight": 48.29, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 17000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10388, - "EmployeeID": 2, - "OrderDate": "1996-12-19T00:00:00", - "RequiredDate": "1997-01-16T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 1, - "Freight": 34.86, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 43000, - "ShipCountry": "UK", + "OrderID": 10272, + "EmployeeID": 6, + "OrderDate": "1996-08-02T00:00:00", + "RequiredDate": "1996-08-30T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", + "ShipVia": 2, + "Freight": 98.03, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 7.6, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 40, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 14000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10389, + "OrderID": 10294, "EmployeeID": 4, - "OrderDate": "1996-12-20T00:00:00", - "RequiredDate": "1997-01-17T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", + "OrderDate": "1996-08-30T00:00:00", + "RequiredDate": "1996-09-27T00:00:00", + "ShippedDate": "1996-09-05T00:00:00", "ShipVia": 2, - "Freight": 47.42, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 28000, - "ShipCountry": "Canada", + "Freight": 147.26, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 16, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, + "ProductID": 17, + "UnitPrice": 31.2, "Quantity": 15, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 20, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10390, - "EmployeeID": 6, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-26T00:00:00", - "ShipVia": 1, - "Freight": 126.38, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10314, + "EmployeeID": 1, + "OrderDate": "1996-09-25T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 74.16, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0.1 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 32, + "UnitPrice": 25.6, "Quantity": 40, "Discount": 0.1 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 45, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 24, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 25, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10391, - "EmployeeID": 3, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-31T00:00:00", + "OrderID": 10316, + "EmployeeID": 1, + "OrderDate": "1996-09-27T00:00:00", + "RequiredDate": "1996-10-25T00:00:00", + "ShippedDate": "1996-10-08T00:00:00", "ShipVia": 3, - "Freight": 5.45, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 150.15, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 18, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 70, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10392, - "EmployeeID": 2, - "OrderDate": "1996-12-24T00:00:00", - "RequiredDate": "1997-01-21T00:00:00", - "ShippedDate": "1997-01-01T00:00:00", + "OrderID": 10346, + "EmployeeID": 3, + "OrderDate": "1996-11-05T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", "ShipVia": 3, - "Freight": 122.46, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 142.08, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 50, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10393, + "OrderID": 10401, "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 3, - "Freight": 126.56, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", + "ShipVia": 1, + "Freight": 12.51, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 42, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 7, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 70, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 32, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10394, - "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", + "OrderID": 10479, + "EmployeeID": 3, + "OrderDate": "1997-03-19T00:00:00", + "RequiredDate": "1997-04-16T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", "ShipVia": 3, - "Freight": 30.34, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "Freight": 708.95, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10395, - "EmployeeID": 6, - "OrderDate": "1996-12-26T00:00:00", - "RequiredDate": "1997-01-23T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 1, - "Freight": 184.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10564, + "EmployeeID": 4, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-08T00:00:00", + "ShippedDate": "1997-06-16T00:00:00", + "ShipVia": 3, + "Freight": 13.75, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 70, - "Discount": 0.1 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 8, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10396, + "OrderID": 10569, + "EmployeeID": 5, + "OrderDate": "1997-06-16T00:00:00", + "RequiredDate": "1997-07-14T00:00:00", + "ShippedDate": "1997-07-11T00:00:00", + "ShipVia": 1, + "Freight": 58.98, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10598, "EmployeeID": 1, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1997-01-06T00:00:00", + "OrderDate": "1997-07-14T00:00:00", + "RequiredDate": "1997-08-11T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", "ShipVia": 3, - "Freight": 135.35, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 44.42, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 50, "Discount": 0 }, { "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 21, + "UnitPrice": 21.5, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10397, + "OrderID": 10761, "EmployeeID": 5, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-24T00:00:00", - "ShippedDate": "1997-01-02T00:00:00", - "ShipVia": 1, - "Freight": 60.26, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 2, + "Freight": 18.66, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 42.4, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 18, - "Discount": 0.16 + "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10398, - "EmployeeID": 2, - "OrderDate": "1996-12-30T00:00:00", - "RequiredDate": "1997-01-27T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 89.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "OrderID": 10820, + "EmployeeID": 3, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 37.52, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 30, "Discount": 0 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10399, + "OrderID": 10852, "EmployeeID": 8, - "OrderDate": "1996-12-31T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", - "ShipVia": 3, - "Freight": 27.36, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 174.05, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 35, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 14, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10400, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderID": 10889, + "EmployeeID": 9, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 3, - "Freight": 83.93, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 25000, - "ShipCountry": "UK", + "Freight": 280.61, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 35, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10401, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", - "ShipVia": 1, - "Freight": 12.51, + "OrderID": 10988, + "EmployeeID": 3, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 61.14, "ShipName": "Rattlesnake Canyon Grocery", "ShipAddress": "2817 Milton Dr.", "ShipCity": "Albuquerque", @@ -7102,341 +5332,217 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 70, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11000, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 3, + "Freight": 55.12, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10402, - "EmployeeID": 8, - "OrderDate": "1997-01-02T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", + "OrderID": 11077, + "EmployeeID": 1, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-07-03T00:00:00", "ShipVia": 2, - "Freight": 67.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 8.53, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 60, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 24, + "Discount": 0.2 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 65, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 4, "Discount": 0 - } - ] - }, - { - "OrderID": 10403, - "EmployeeID": 4, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 73.79, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ + }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 1, + "Discount": 0 }, { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 70, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10404, - "EmployeeID": 2, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", - "ShipVia": 1, - "Freight": 155.97, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 1, + "Discount": 0.02 + }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 1, "Discount": 0.06 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 2, + "Discount": 0.1 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10405, - "EmployeeID": 1, - "OrderDate": "1997-01-06T00:00:00", - "RequiredDate": "1997-02-03T00:00:00", - "ShippedDate": "1997-01-22T00:00:00", - "ShipVia": 1, - "Freight": 34.82, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 50, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 1, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10406, - "EmployeeID": 7, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-13T00:00:00", - "ShipVia": 1, - "Freight": 108.04, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ + }, { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 10, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 1, + "Discount": 0.04 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 42, - "Discount": 0.1 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 2, + "Discount": 0.04 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 5, - "Discount": 0.1 + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 1, + "Discount": 0.04 }, { - "ProductID": 40, - "UnitPrice": 14.7, + "ProductID": 23, + "UnitPrice": 9, "Quantity": 2, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10407, - "EmployeeID": 2, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-04T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", - "ShipVia": 2, - "Freight": 91.48, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ + "Discount": 0 + }, { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 3, + "Discount": 0.02 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ - { - "OrderID": 10408, - "EmployeeID": 8, - "OrderDate": "1997-01-08T00:00:00", - "RequiredDate": "1997-02-05T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", - "ShipVia": 1, - "Freight": 11.26, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", - "OrderDetails": [ + }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 10, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 2, + "Discount": 0.04 + }, + { + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 2, + "Discount": 0.0099999998 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, "Discount": 0 } ] @@ -7444,1232 +5550,851 @@ ] }, { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ - { - "OrderID": 10409, - "EmployeeID": 3, - "OrderDate": "1997-01-09T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", - "ShipVia": 1, - "Freight": 29.83, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 43000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 33000, + "Country": "Sweden", + "Phone": "0695-34 67 21", + "Fax": "0695-34 67 22", "Orders": [ { - "OrderID": 10410, - "EmployeeID": 3, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", + "OrderID": 10264, + "EmployeeID": 6, + "OrderDate": "1996-07-24T00:00:00", + "RequiredDate": "1996-08-21T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", "ShipVia": 3, - "Freight": 2.4, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "Freight": 3.67, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 27000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 49, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 16, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 25, + "Discount": 0.16 } ] }, { - "OrderID": 10411, - "EmployeeID": 9, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-21T00:00:00", - "ShipVia": 3, - "Freight": 23.65, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10327, + "EmployeeID": 2, + "OrderDate": "1996-10-11T00:00:00", + "RequiredDate": "1996-11-08T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 63.36, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 17000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 25, "Discount": 0.2 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 40, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 50, "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10412, - "EmployeeID": 8, - "OrderDate": "1997-01-13T00:00:00", - "RequiredDate": "1997-02-10T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", - "ShipVia": 2, - "Freight": 3.77, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10378, + "EmployeeID": 5, + "OrderDate": "1996-12-10T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-19T00:00:00", + "ShipVia": 3, + "Freight": 5.44, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 49000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10413, + "OrderID": 10434, "EmployeeID": 3, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-02-13T00:00:00", "ShipVia": 2, - "Freight": 95.66, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 17.92, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 23000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0 }, { "ProductID": 76, "UnitPrice": 14.4, - "Quantity": 14, - "Discount": 0 + "Quantity": 18, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10414, - "EmployeeID": 2, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-17T00:00:00", - "ShipVia": 3, - "Freight": 21.48, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10460, + "EmployeeID": 8, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 1, + "Freight": 16.27, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 40000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 21, + "Discount": 0.25 }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 4, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10533, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-22T00:00:00", + "ShipVia": 1, + "Freight": 188.04, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 45000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 24, + "Discount": 0.06 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10415, - "EmployeeID": 3, - "OrderDate": "1997-01-15T00:00:00", - "RequiredDate": "1997-02-12T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", - "ShipVia": 1, - "Freight": 0.2, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "OrderID": 10561, + "EmployeeID": 2, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 2, + "Freight": 242.21, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 23000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 2, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10416, - "EmployeeID": 8, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 3, - "Freight": 22.72, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10703, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-10-20T00:00:00", + "ShipVia": 2, + "Freight": 152.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 28000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 20, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 10, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 20, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10417, - "EmployeeID": 4, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-28T00:00:00", - "ShipVia": 3, - "Freight": 70.29, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10762, + "EmployeeID": 3, + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 328.74, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 44000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 35, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10418, + "OrderID": 10774, "EmployeeID": 4, - "OrderDate": "1997-01-17T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", "ShipVia": 1, - "Freight": 17.55, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 48.2, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 55, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 16, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 2, + "Discount": 0.25 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 15, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10419, - "EmployeeID": 4, - "OrderDate": "1997-01-20T00:00:00", - "RequiredDate": "1997-02-17T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", - "ShipVia": 2, - "Freight": 137.35, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10824, + "EmployeeID": 8, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 1.23, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 39000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10420, - "EmployeeID": 3, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10880, + "EmployeeID": 7, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 1, - "Freight": 44.12, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 88.01, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 15000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 77.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.2 }, { "ProductID": 70, - "UnitPrice": 12, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.1 + "UnitPrice": 15, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10421, - "EmployeeID": 8, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-03-04T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10902, + "EmployeeID": 1, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", "ShipVia": 1, - "Freight": 99.23, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 44.15, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 11000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 4, - "Discount": 0.16 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 10, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 6, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10422, - "EmployeeID": 2, - "OrderDate": "1997-01-22T00:00:00", - "RequiredDate": "1997-02-19T00:00:00", - "ShippedDate": "1997-01-31T00:00:00", - "ShipVia": 1, - "Freight": 3.02, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10955, + "EmployeeID": 8, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 20000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 2, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10423, - "EmployeeID": 6, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", + "OrderID": 10977, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 3, - "Freight": 24.5, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 208.5, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 14, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 30000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10424, - "EmployeeID": 7, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-20T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 2, - "Freight": 370.61, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 22000, - "ShipCountry": "Canada", + "OrderID": 10980, + "EmployeeID": 4, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 1, + "Freight": 1.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0.2 - }, - { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 49, - "Discount": 0.2 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10425, - "EmployeeID": 6, - "OrderDate": "1997-01-24T00:00:00", - "RequiredDate": "1997-02-21T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 7.93, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10993, + "EmployeeID": 7, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 3, + "Freight": 8.81, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 50, "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 20, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10426, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-02-06T00:00:00", - "ShipVia": 1, - "Freight": 18.69, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 11001, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 2, + "Freight": 197.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 30000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 7, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10427, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 11050, + "EmployeeID": 8, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", "ShipVia": 2, - "Freight": 31.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 59.41, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 11000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 35, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", + "CustomerID": "BLONP", + "Company": "Blondesddsl père et fils", + "ContactName": "Frédérique Citeaux", + "ContactTitle": "Marketing Manager", + "Address": "24, place Kléber", + "City": "Strasbourg", + "PostalCode": 67000, + "Country": "France", + "Phone": "88.60.15.31", + "Fax": "88.60.15.32", "Orders": [ { - "OrderID": 10428, - "EmployeeID": 7, - "OrderDate": "1997-01-28T00:00:00", - "RequiredDate": "1997-02-25T00:00:00", - "ShippedDate": "1997-02-04T00:00:00", + "OrderID": 10265, + "EmployeeID": 2, + "OrderDate": "1996-07-25T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", "ShipVia": 1, - "Freight": 11.09, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 55.28, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10429, - "EmployeeID": 3, - "OrderDate": "1997-01-29T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderID": 10297, + "EmployeeID": 5, + "OrderDate": "1996-09-04T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", "ShipVia": 2, - "Freight": 56.63, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 5.74, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 40, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10430, + "OrderID": 10360, "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-03T00:00:00", - "ShipVia": 1, - "Freight": 458.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 131.7, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 50, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.2 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 28, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 47000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10431, - "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderID": 10436, + "EmployeeID": 3, + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-11T00:00:00", "ShipVia": 2, - "Freight": 44.17, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 49000, - "ShipCountry": "Canada", + "Freight": 156.66, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 47, - "UnitPrice": 7.6, + "ProductID": 64, + "UnitPrice": 26.6, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.1 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 24, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10432, + "OrderID": 10449, "EmployeeID": 3, - "OrderDate": "1997-01-31T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderDate": "1997-02-18T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-27T00:00:00", "ShipVia": 2, - "Freight": 4.34, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 53.3, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 10, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 40, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ - { - "OrderID": 10433, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", - "ShipVia": 3, - "Freight": 73.83, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", - "OrderDetails": [ + }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 28, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 23000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10434, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-02-13T00:00:00", - "ShipVia": 2, - "Freight": 17.92, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 23000, - "ShipCountry": "Sweden", + "OrderID": 10559, + "EmployeeID": 6, + "OrderDate": "1997-06-05T00:00:00", + "RequiredDate": "1997-07-03T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 1, + "Freight": 8.05, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 76, - "UnitPrice": 14.4, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 18, - "Discount": 0.16 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 38000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ + }, { - "OrderID": 10435, - "EmployeeID": 8, - "OrderDate": "1997-02-04T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", - "ShipVia": 2, - "Freight": 9.21, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "OrderID": 10566, + "EmployeeID": 9, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", + "ShipVia": 1, + "Freight": 88.4, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 10, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 18, + "Discount": 0.16 }, { - "ProductID": 72, - "UnitPrice": 27.8, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10436, - "EmployeeID": 3, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-11T00:00:00", - "ShipVia": 2, - "Freight": 156.66, + "OrderID": 10584, + "EmployeeID": 4, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 1, + "Freight": 59.14, "ShipName": "Blondel père et fils", "ShipAddress": "24, place Kléber", "ShipCity": "Strasbourg", @@ -8677,28 +6402,82 @@ "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10628, + "EmployeeID": 4, + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 30.36, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10679, + "EmployeeID": 8, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 27.94, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 40, - "Discount": 0.1 - }, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10826, + "EmployeeID": 6, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 1, + "Freight": 7.09, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, + "Discount": 0 } ] } @@ -8717,13 +6496,13 @@ "Fax": "981-443655", "Orders": [ { - "OrderID": 10437, - "EmployeeID": 8, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-12T00:00:00", - "ShipVia": 1, - "Freight": 19.97, + "OrderID": 10266, + "EmployeeID": 3, + "OrderDate": "1996-07-26T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 25.73, "ShipName": "Wartian Herkku", "ShipAddress": "Torikatu 38", "ShipCity": "Oulu", @@ -8731,669 +6510,449 @@ "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 12, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10438, - "EmployeeID": 3, - "OrderDate": "1997-02-06T00:00:00", - "RequiredDate": "1997-03-06T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 8.24, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "OrderID": 10270, + "EmployeeID": 1, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 1, + "Freight": 136.54, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 37000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10439, - "EmployeeID": 6, - "OrderDate": "1997-02-07T00:00:00", - "RequiredDate": "1997-03-07T00:00:00", - "ShippedDate": "1997-02-10T00:00:00", + "OrderID": 10320, + "EmployeeID": 5, + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-18T00:00:00", "ShipVia": 3, - "Freight": 4.07, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "Freight": 34.57, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 16, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10440, - "EmployeeID": 4, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-10T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 86.53, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10333, + "EmployeeID": 5, + "OrderDate": "1996-10-18T00:00:00", + "RequiredDate": "1996-11-15T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", + "ShipVia": 3, + "Freight": 0.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 45, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 49, - "Discount": 0.16 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 90, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 40, + "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10441, - "EmployeeID": 3, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-24T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10412, + "EmployeeID": 8, + "OrderDate": "1997-01-13T00:00:00", + "RequiredDate": "1997-02-10T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", "ShipVia": 2, - "Freight": 73.02, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 3.77, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 50, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10442, - "EmployeeID": 3, - "OrderDate": "1997-02-11T00:00:00", - "RequiredDate": "1997-03-11T00:00:00", - "ShippedDate": "1997-02-18T00:00:00", - "ShipVia": 2, - "Freight": 47.94, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10416, + "EmployeeID": 8, + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 3, + "Freight": 22.72, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 80, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 60, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10443, + "OrderID": 10437, "EmployeeID": 8, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-12T00:00:00", "ShipVia": 1, - "Freight": 13.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 19.97, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.2 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 12, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 15000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10444, - "EmployeeID": 3, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-21T00:00:00", - "ShipVia": 3, - "Freight": 3.5, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 22000, - "ShipCountry": "Sweden", + "OrderID": 10455, + "EmployeeID": 8, + "OrderDate": "1997-02-24T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 2, + "Freight": 180.45, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 15, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 8, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 71, + "UnitPrice": 17.2, "Quantity": 30, "Discount": 0 } ] }, { - "OrderID": 10445, - "EmployeeID": 3, - "OrderDate": "1997-02-13T00:00:00", - "RequiredDate": "1997-03-13T00:00:00", - "ShippedDate": "1997-02-20T00:00:00", - "ShipVia": 1, - "Freight": 9.3, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 18000, - "ShipCountry": "Sweden", + "OrderID": 10526, + "EmployeeID": 4, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-15T00:00:00", + "ShipVia": 2, + "Freight": 58.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0.16 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10446, - "EmployeeID": 6, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-02-19T00:00:00", - "ShipVia": 1, - "Freight": 14.68, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "OrderID": 10553, + "EmployeeID": 2, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-03T00:00:00", + "ShipVia": 2, + "Freight": 149.49, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 12, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 24, + "Discount": 0 }, { "ProductID": 31, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "UnitPrice": 12.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10447, - "EmployeeID": 4, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-03-07T00:00:00", + "OrderID": 10583, + "EmployeeID": 2, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 2, - "Freight": 68.66, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 7.28, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 40, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 35, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10448, + "OrderID": 10636, "EmployeeID": 4, - "OrderDate": "1997-02-17T00:00:00", - "RequiredDate": "1997-03-17T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", - "ShipVia": 2, - "Freight": 38.82, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 1.15, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 6, - "Discount": 0 - }, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0 + }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10449, - "EmployeeID": 3, - "OrderDate": "1997-02-18T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-27T00:00:00", - "ShipVia": 2, - "Freight": 53.3, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10750, + "EmployeeID": 9, + "OrderDate": "1997-11-21T00:00:00", + "RequiredDate": "1997-12-19T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 79.3, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 14, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 5, + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10450, - "EmployeeID": 8, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-19T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", - "ShipVia": 2, - "Freight": 7.23, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10781, + "EmployeeID": 2, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 3, + "Freight": 73.16, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0.2 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10451, - "EmployeeID": 4, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", + "OrderID": 11025, + "EmployeeID": 6, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", "ShipVia": 3, - "Freight": 189.09, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 29.17, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 - }, - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 28, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 55, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0.1 } ] @@ -9401,783 +6960,619 @@ ] }, { - "CustomerID": "SAVEA", - "Company": "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", + "CustomerID": "FRANK", + "Company": "Frankenversand", + "ContactName": "Peter Franken", + "ContactTitle": "Marketing Manager", + "Address": "Berliner Platz 43", + "City": "München", + "PostalCode": 80805, + "Country": "Germany", + "Phone": "089-0877310", + "Fax": "089-0877451", "Orders": [ { - "OrderID": 10452, - "EmployeeID": 8, - "OrderDate": "1997-02-20T00:00:00", - "RequiredDate": "1997-03-20T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", + "OrderID": 10267, + "EmployeeID": 4, + "OrderDate": "1996-07-29T00:00:00", + "RequiredDate": "1996-08-26T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", "ShipVia": 1, - "Freight": 140.26, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 208.58, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 100, - "Discount": 0.06 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 46000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10453, - "EmployeeID": 1, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", - "ShipVia": 2, - "Freight": 25.36, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 40000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10454, + "OrderID": 10337, "EmployeeID": 4, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-25T00:00:00", + "OrderDate": "1996-10-24T00:00:00", + "RequiredDate": "1996-11-21T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", "ShipVia": 3, - "Freight": 2.74, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 108.26, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10455, - "EmployeeID": 8, - "OrderDate": "1997-02-24T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 10342, + "EmployeeID": 4, + "OrderDate": "1996-10-30T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", "ShipVia": 2, - "Freight": 180.45, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 54.83, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 24, + "Discount": 0.2 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 50, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 56, + "Discount": 0.2 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 25, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10456, - "EmployeeID": 8, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 8.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10396, + "EmployeeID": 1, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1997-01-06T00:00:00", + "ShipVia": 3, + "Freight": 135.35, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 23, + "UnitPrice": 7.2, "Quantity": 40, - "Discount": 0.16 + "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, "Quantity": 21, - "Discount": 0.16 + "Discount": 0 } ] }, { - "OrderID": 10457, - "EmployeeID": 2, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-03-25T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", - "ShipVia": 1, - "Freight": 11.57, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10488, + "EmployeeID": 8, + "OrderDate": "1997-03-27T00:00:00", + "RequiredDate": "1997-04-24T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 59, "UnitPrice": 44, - "Quantity": 36, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0.2 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 45000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10458, - "EmployeeID": 7, - "OrderDate": "1997-02-26T00:00:00", - "RequiredDate": "1997-03-26T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", - "ShipVia": 3, - "Freight": 147.06, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 16000, - "ShipCountry": "Belgium", + "OrderID": 10560, + "EmployeeID": 8, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 1, + "Freight": 36.65, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, + "ProductID": 30, + "UnitPrice": 25.89, "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0 + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10459, - "EmployeeID": 4, - "OrderDate": "1997-02-27T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", + "OrderID": 10623, + "EmployeeID": 8, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", "ShipVia": 2, - "Freight": 25.09, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 97.18, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 3, "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 19000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10460, - "EmployeeID": 8, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 10653, + "EmployeeID": 1, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", "ShipVia": 1, - "Freight": 16.27, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 40000, - "ShipCountry": "Sweden", + "Freight": 93.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10461, - "EmployeeID": 1, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-05T00:00:00", - "ShipVia": 3, - "Freight": 148.61, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10670, + "EmployeeID": 4, + "OrderDate": "1997-09-16T00:00:00", + "RequiredDate": "1997-10-14T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 1, + "Freight": 203.48, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 32, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 28, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 60, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 38000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ - { - "OrderID": 10462, - "EmployeeID": 2, - "OrderDate": "1997-03-03T00:00:00", - "RequiredDate": "1997-03-31T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 1, - "Freight": 6.17, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 50000, - "ShipCountry": "UK", - "OrderDetails": [ + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 25, + "Discount": 0 + }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 1, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 21, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 34000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10463, + "OrderID": 10675, "EmployeeID": 5, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-06T00:00:00", - "ShipVia": 3, - "Freight": 14.78, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 21000, - "ShipCountry": "Belgium", + "OrderDate": "1997-09-19T00:00:00", + "RequiredDate": "1997-10-17T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", + "ShipVia": 2, + "Freight": 31.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 21, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 50, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10464, - "EmployeeID": 4, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10717, + "EmployeeID": 1, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 2, - "Freight": 89, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 59.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 16, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 32, + "Discount": 0.06 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 3, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 25, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10791, + "EmployeeID": 6, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-01T00:00:00", + "ShipVia": 2, + "Freight": 16.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 14, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 27.2, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10465, + "OrderID": 10859, "EmployeeID": 1, - "OrderDate": "1997-03-05T00:00:00", - "RequiredDate": "1997-04-02T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 3, - "Freight": 145.04, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 76.1, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0 + "UnitPrice": 4.5, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 45, - "UnitPrice": 7.6, + "ProductID": 64, + "UnitPrice": 33.25, "Quantity": 30, - "Discount": 0.1 + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10929, + "EmployeeID": 6, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 1, + "Freight": 33.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 50, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 77, "UnitPrice": 13, - "Quantity": 25, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10466, - "EmployeeID": 4, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-13T00:00:00", - "ShipVia": 1, - "Freight": 11.93, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderID": 11012, + "EmployeeID": 1, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 3, + "Freight": 242.95, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 36, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.06 } ] } - ], - "Fax": "(11) 555-7647" + ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "GROSR", + "Company": "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", "Orders": [ { - "OrderID": 10467, + "OrderID": 10268, "EmployeeID": 8, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderDate": "1996-07-30T00:00:00", + "RequiredDate": "1996-08-27T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 3, + "Freight": 66.29, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 12, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10468, - "EmployeeID": 3, - "OrderDate": "1997-03-07T00:00:00", - "RequiredDate": "1997-04-04T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", + "OrderID": 10785, + "EmployeeID": 1, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", "ShipVia": 3, - "Freight": 44.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 1.51, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 15, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 10, "Discount": 0 } ] } - ], - "Fax": "0555-09876" + ] }, { "CustomerID": "WHITC", @@ -10193,13 +7588,13 @@ "Fax": "(206) 555-4115", "Orders": [ { - "OrderID": 10469, - "EmployeeID": 1, - "OrderDate": "1997-03-10T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10269, + "EmployeeID": 5, + "OrderDate": "1996-07-31T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", "ShipVia": 1, - "Freight": 60.18, + "Freight": 4.56, "ShipName": "White Clover Markets", "ShipAddress": "1029 - 12th Ave. S.", "ShipCity": "Seattle", @@ -10208,525 +7603,464 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10470, + "OrderID": 10344, "EmployeeID": 4, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderDate": "1996-11-01T00:00:00", + "RequiredDate": "1996-11-29T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", "ShipVia": 2, - "Freight": 64.56, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 23.29, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 15, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 8, - "Discount": 0 + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10471, - "EmployeeID": 2, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 3, - "Freight": 45.59, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 25000, - "ShipCountry": "UK", + "OrderID": 10469, + "EmployeeID": 1, + "OrderDate": "1997-03-10T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 1, + "Freight": 60.18, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 2, + "Discount": 0.16 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 25000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10472, - "EmployeeID": 8, - "OrderDate": "1997-03-12T00:00:00", - "RequiredDate": "1997-04-09T00:00:00", - "ShippedDate": "1997-03-19T00:00:00", - "ShipVia": 1, - "Freight": 4.2, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 21000, - "ShipCountry": "UK", + "OrderID": 10483, + "EmployeeID": 7, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-25T00:00:00", + "ShipVia": 2, + "Freight": 15.28, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 80, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 35, "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 18, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10473, - "EmployeeID": 1, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", + "OrderID": 10504, + "EmployeeID": 4, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-18T00:00:00", "ShipVia": 3, - "Freight": 16.37, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 90698, - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "Freight": 59.13, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 12, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 12, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10474, - "EmployeeID": 5, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-04-10T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 2, - "Freight": 83.49, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 18.6, + "ProductID": 21, + "UnitPrice": 10, "Quantity": 12, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 18, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 21, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 25, "Discount": 0 + } + ] + }, + { + "OrderID": 10596, + "EmployeeID": 8, + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", + "ShipVia": 1, + "Freight": 16.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0.2 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 24, + "Discount": 0.2 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0 + "UnitPrice": 7.75, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 45000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10475, - "EmployeeID": 9, - "OrderDate": "1997-03-14T00:00:00", - "RequiredDate": "1997-04-11T00:00:00", - "ShippedDate": "1997-04-04T00:00:00", - "ShipVia": 1, - "Freight": 68.52, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", + "OrderID": 10693, + "EmployeeID": 3, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-10-10T00:00:00", + "ShipVia": 3, + "Freight": 139.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 13.6, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 60, "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 42, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10476, + "OrderID": 10696, "EmployeeID": 8, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", "ShipVia": 3, - "Freight": 4.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 102.55, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 2, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 70, + "ProductID": 46, "UnitPrice": 12, - "Quantity": 12, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10477, - "EmployeeID": 5, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", - "ShipVia": 2, - "Freight": 13.02, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10723, + "EmployeeID": 3, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-11-27T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", + "ShipVia": 1, + "Freight": 21.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, + "ProductID": 26, + "UnitPrice": 31.23, "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10740, + "EmployeeID": 4, + "OrderDate": "1997-11-13T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", + "ShipVia": 2, + "Freight": 81.88, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, + "Discount": 0.2 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10478, - "EmployeeID": 2, - "OrderDate": "1997-03-18T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-26T00:00:00", - "ShipVia": 3, - "Freight": 4.81, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10861, + "EmployeeID": 4, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-02-27T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 14.93, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 42, + "Discount": 0 + }, + { + "ProductID": 18, + "UnitPrice": 62.5, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10479, + "OrderID": 10904, "EmployeeID": 3, - "OrderDate": "1997-03-19T00:00:00", - "RequiredDate": "1997-04-16T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", "ShipVia": 3, - "Freight": 708.95, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, + "Freight": 162.95, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 30, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 28, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 35, + "Discount": 0 + } + ] + }, + { + "OrderID": 11032, + "EmployeeID": 2, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 606.19, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10480, - "EmployeeID": 6, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", + "OrderID": 11066, + "EmployeeID": 7, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 44.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 30, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 42, + "Discount": 0 + }, + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 35, "Discount": 0 } ] @@ -10734,413 +8068,287 @@ ] }, { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", + "CustomerID": "SPLIR", + "Company": "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", "Orders": [ { - "OrderID": 10481, - "EmployeeID": 8, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", + "OrderID": 10271, + "EmployeeID": 6, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-30T00:00:00", "ShipVia": 2, - "Freight": 64.33, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 4.54, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 33, + "UnitPrice": 2, "Quantity": 24, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10482, - "EmployeeID": 1, - "OrderDate": "1997-03-21T00:00:00", - "RequiredDate": "1997-04-18T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 7.48, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, + "OrderID": 10329, + "EmployeeID": 4, + "OrderDate": "1996-10-15T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 2, + "Freight": 191.67, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ - { - "OrderID": 10483, - "EmployeeID": 7, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-25T00:00:00", - "ShipVia": 2, - "Freight": 15.28, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", - "OrderDetails": [ + "Discount": 0.06 + }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 35, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, "Discount": 0.06 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 12, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 45000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10484, - "EmployeeID": 3, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-01T00:00:00", - "ShipVia": 3, - "Freight": 6.88, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10349, + "EmployeeID": 7, + "OrderDate": "1996-11-08T00:00:00", + "RequiredDate": "1996-12-06T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 1, + "Freight": 8.63, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 14, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10369, + "EmployeeID": 8, + "OrderDate": "1996-12-02T00:00:00", + "RequiredDate": "1996-12-30T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 195.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 3, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 18, + "Discount": 0.25 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10485, - "EmployeeID": 4, - "OrderDate": "1997-03-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-31T00:00:00", + "OrderID": 10385, + "EmployeeID": 1, + "OrderDate": "1996-12-17T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1996-12-23T00:00:00", "ShipVia": 2, - "Freight": 64.45, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 30.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 3, - "UnitPrice": 8, + "ProductID": 60, + "UnitPrice": 27.2, "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 30, - "Discount": 0.1 + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10486, - "EmployeeID": 1, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", + "OrderID": 10432, + "EmployeeID": 3, + "OrderDate": "1997-01-31T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", "ShipVia": 2, - "Freight": 30.53, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 4.34, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 25, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 16, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10487, - "EmployeeID": 2, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-03-28T00:00:00", + "OrderID": 10756, + "EmployeeID": 8, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-02T00:00:00", "ShipVia": 2, - "Freight": 71.07, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 73.21, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 5, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 21, + "Discount": 0.2 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.2 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.2 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10488, - "EmployeeID": 8, - "OrderDate": "1997-03-27T00:00:00", - "RequiredDate": "1997-04-24T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10821, + "EmployeeID": 1, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-15T00:00:00", + "ShipVia": 1, + "Freight": 36.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10489, - "EmployeeID": 6, - "OrderDate": "1997-03-28T00:00:00", - "RequiredDate": "1997-04-25T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 5.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10974, + "EmployeeID": 3, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 12.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 18, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 10, "Discount": 0 } ] @@ -11148,1159 +8356,813 @@ ] }, { - "CustomerID": "HILAA", - "Company": "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": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Fax": "0372-035189", "Orders": [ { - "OrderID": 10490, - "EmployeeID": 7, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-03T00:00:00", - "ShipVia": 2, - "Freight": 210.19, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10273, + "EmployeeID": 3, + "OrderDate": "1996-08-05T00:00:00", + "RequiredDate": "1996-09-02T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", + "ShipVia": 3, + "Freight": 76.07, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 24, + "Discount": 0.06 }, { - "ProductID": 68, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 36, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 33, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10491, - "EmployeeID": 8, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-08T00:00:00", - "ShipVia": 3, - "Freight": 16.96, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10285, + "EmployeeID": 1, + "OrderDate": "1996-08-20T00:00:00", + "RequiredDate": "1996-09-17T00:00:00", + "ShippedDate": "1996-08-26T00:00:00", + "ShipVia": 2, + "Freight": 76.83, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0.16 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 36, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 10000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10492, - "EmployeeID": 3, - "OrderDate": "1997-04-01T00:00:00", - "RequiredDate": "1997-04-29T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 1, - "Freight": 62.89, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderID": 10313, + "EmployeeID": 2, + "OrderDate": "1996-09-24T00:00:00", + "RequiredDate": "1996-10-22T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 1.96, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10345, + "EmployeeID": 2, + "OrderDate": "1996-11-04T00:00:00", + "RequiredDate": "1996-12-02T00:00:00", + "ShippedDate": "1996-11-11T00:00:00", + "ShipVia": 2, + "Freight": 249.06, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 80, + "Discount": 0 }, { "ProductID": 42, "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.06 + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10493, - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 10.64, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10361, + "EmployeeID": 1, + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 183.17, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 54, "Discount": 0.1 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 55, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10494, + "OrderID": 10418, "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 65.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderDate": "1997-01-17T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "ShipVia": 1, + "Freight": 17.55, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 60, "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 19000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ - { - "OrderID": 10495, - "EmployeeID": 3, - "OrderDate": "1997-04-03T00:00:00", - "RequiredDate": "1997-05-01T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 3, - "Freight": 4.65, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 20000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 10, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10496, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 2, - "Freight": 46.77, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10497, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 1, - "Freight": 36.21, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "OrderID": 10451, + "EmployeeID": 4, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 189.09, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 14, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 120, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 28, + "Discount": 0.1 }, { "ProductID": 77, "UnitPrice": 10.4, - "Quantity": 25, - "Discount": 0 + "Quantity": 55, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10498, - "EmployeeID": 8, - "OrderDate": "1997-04-07T00:00:00", - "RequiredDate": "1997-05-05T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 2, - "Freight": 29.75, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10515, + "EmployeeID": 2, + "OrderDate": "1997-04-23T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 1, + "Freight": 204.47, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 14, + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 16, + "Discount": 0.16 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 120, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10499, - "EmployeeID": 4, - "OrderDate": "1997-04-08T00:00:00", - "RequiredDate": "1997-05-06T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 102.02, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, + "Discount": 0.16 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 84, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10500, - "EmployeeID": 6, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-17T00:00:00", + "OrderID": 10527, + "EmployeeID": 7, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", "ShipVia": 1, - "Freight": 42.68, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 41.9, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10501, - "EmployeeID": 9, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", + "OrderID": 10540, + "EmployeeID": 3, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", "ShipVia": 3, - "Freight": 8.85, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, + "Freight": 1007.64, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10502, - "EmployeeID": 2, - "OrderDate": "1997-04-10T00:00:00", - "RequiredDate": "1997-05-08T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 69.32, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 21, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10503, - "EmployeeID": 6, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 16.74, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10549, + "EmployeeID": 5, + "OrderDate": "1997-05-27T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 171.24, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 70, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 55, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 100, + "Discount": 0.16 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 48, + "Discount": 0.16 + } + ] + }, { - "OrderID": 10504, - "EmployeeID": 4, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-18T00:00:00", + "OrderID": 10588, + "EmployeeID": 2, + "OrderDate": "1997-07-03T00:00:00", + "RequiredDate": "1997-07-31T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", "ShipVia": 3, - "Freight": 59.13, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 194.67, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 40, + "Discount": 0.2 }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 100, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10658, + "EmployeeID": 4, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 1, + "Freight": 364.15, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { "ProductID": 21, "UnitPrice": 10, - "Quantity": 12, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 25, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 55, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 70, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 21000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10505, - "EmployeeID": 3, - "OrderDate": "1997-04-14T00:00:00", - "RequiredDate": "1997-05-12T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 7.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 33000, - "ShipCountry": "Canada", + "OrderID": 10691, + "EmployeeID": 2, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-10-22T00:00:00", + "ShipVia": 2, + "Freight": 810.05, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 24, + "Discount": 0 + }, { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 3, + "Quantity": 48, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10506, - "EmployeeID": 9, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 21.19, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10694, + "EmployeeID": 8, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-11-03T00:00:00", + "ShippedDate": "1997-10-09T00:00:00", + "ShipVia": 3, + "Freight": 398.36, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 90, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 }, { "ProductID": 70, "UnitPrice": 15, - "Quantity": 14, - "Discount": 0.1 + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10507, - "EmployeeID": 7, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-04-22T00:00:00", - "ShipVia": 1, - "Freight": 47.45, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 15, - "Discount": 0.16 - }, + "OrderID": 10721, + "EmployeeID": 5, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-11-26T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", + "ShipVia": 3, + "Freight": 48.92, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 50, + "Discount": 0.06 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10508, - "EmployeeID": 1, - "OrderDate": "1997-04-16T00:00:00", - "RequiredDate": "1997-05-14T00:00:00", - "ShippedDate": "1997-05-13T00:00:00", - "ShipVia": 2, - "Freight": 4.99, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, + "OrderID": 10745, + "EmployeeID": 9, + "OrderDate": "1997-11-18T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 1, + "Freight": 3.52, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 7, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10509, - "EmployeeID": 4, - "OrderDate": "1997-04-17T00:00:00", - "RequiredDate": "1997-05-15T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 0.15, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, + "OrderID": 10765, + "EmployeeID": 3, + "OrderDate": "1997-12-04T00:00:00", + "RequiredDate": "1998-01-01T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 3, + "Freight": 42.74, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 80, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10510, - "EmployeeID": 6, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", - "ShipVia": 3, - "Freight": 367.63, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10788, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 42.7, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 36, - "Discount": 0.1 + "Quantity": 40, + "Discount": 0.06 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10511, - "EmployeeID": 4, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 350.64, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10845, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 212.98, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10512, - "EmployeeID": 7, - "OrderDate": "1997-04-21T00:00:00", - "RequiredDate": "1997-05-19T00:00:00", - "ShippedDate": "1997-04-24T00:00:00", - "ShipVia": 2, - "Freight": 3.53, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.16 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 9, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 42, + "Discount": 0.1 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 48, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10513, - "EmployeeID": 7, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-06-03T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", + "OrderID": 10865, + "EmployeeID": 2, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", "ShipVia": 1, - "Freight": 105.65, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, + "Freight": 348.14, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.2 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10514, - "EmployeeID": 3, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", - "ShipVia": 2, - "Freight": 789.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10878, + "EmployeeID": 4, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 46.69, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 20, "UnitPrice": 81, - "Quantity": 39, - "Discount": 0 - }, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10938, + "EmployeeID": 3, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 31.89, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 35, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 70, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0.25 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 39, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 49, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10515, - "EmployeeID": 2, - "OrderDate": "1997-04-23T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 1, - "Freight": 204.47, + "OrderID": 10962, + "EmployeeID": 8, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 275.79, "ShipName": "QUICK-Stop", "ShipAddress": "Taucherstraße 10", "ShipCity": "Cunewalde", @@ -12308,131 +9170,135 @@ "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 16, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, + "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 77, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 120, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0.16 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 84, - "Discount": 0.16 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 44, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10516, - "EmployeeID": 2, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 62.78, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10991, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 1, + "Freight": 38.51, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.2 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 80, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 20, + "Discount": 0.2 }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 90, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10996, + "EmployeeID": 4, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 1.12, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { "ProductID": 42, "UnitPrice": 14, - "Quantity": 20, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 13000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ + }, { - "OrderID": 10517, + "OrderID": 11021, "EmployeeID": 3, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 3, - "Freight": 32.07, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 19000, - "ShipCountry": "UK", + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 1, + "Freight": 297.18, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 11, + "Discount": 0.25 + }, + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 4, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 63, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 44, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, "Discount": 0 } ] @@ -12440,347 +9306,299 @@ ] }, { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", + "CustomerID": "MAGAA", + "Company": "Magazzini Alimentari Riuniti", + "ContactName": "Giovanni Rovelli", + "ContactTitle": "Marketing Manager", + "Address": "Via Ludovico il Moro 22", + "City": "Bergamo", + "PostalCode": 24100, + "Country": "Italy", + "Phone": "035-640230", + "Fax": "035-640231", "Orders": [ { - "OrderID": 10518, - "EmployeeID": 4, - "OrderDate": "1997-04-25T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-05-05T00:00:00", - "ShipVia": 2, - "Freight": 218.15, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10275, + "EmployeeID": 1, + "OrderDate": "1996-08-07T00:00:00", + "RequiredDate": "1996-09-04T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", + "ShipVia": 1, + "Freight": 26.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 6, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10300, + "EmployeeID": 2, + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 17.68, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 9, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10519, - "EmployeeID": 6, - "OrderDate": "1997-04-28T00:00:00", - "RequiredDate": "1997-05-26T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 91.76, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10404, + "EmployeeID": 2, + "OrderDate": "1997-01-03T00:00:00", + "RequiredDate": "1997-01-31T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", + "ShipVia": 1, + "Freight": 155.97, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 42, + "UnitPrice": 11.2, "Quantity": 40, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10520, - "EmployeeID": 7, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 1, - "Freight": 13.37, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10467, + "EmployeeID": 8, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 8, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 5, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10521, + "OrderID": 10635, "EmployeeID": 8, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 17.22, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-08-18T00:00:00", + "RequiredDate": "1997-09-15T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 47.46, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10522, - "EmployeeID": 4, - "OrderDate": "1997-04-30T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-06T00:00:00", - "ShipVia": 1, - "Freight": 45.33, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10754, + "EmployeeID": 6, + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 3, + "Freight": 2.38, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.2 - }, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10784, + "EmployeeID": 4, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 70.09, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 24, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 10000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10523, + "OrderID": 10818, "EmployeeID": 7, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 2, - "Freight": 77.63, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 16000, - "ShipCountry": "UK", + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", + "ShipVia": 3, + "Freight": 65.48, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0.1 + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 37000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10524, - "EmployeeID": 1, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", + "OrderID": 10939, + "EmployeeID": 2, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 2, - "Freight": 244.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 12000, - "ShipCountry": "Sweden", + "Freight": 76.33, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 10, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 60, - "Discount": 0 - }, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10950, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-13T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 2.5, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 5, "Discount": 0 } ] @@ -12788,1370 +9606,1092 @@ ] }, { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", + "CustomerID": "TORTU", + "Company": "Tortuga Restaurante", + "ContactName": "Miguel Angel Paolino", "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", + "Address": "Avda. Azteca 123", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 555-2933", + "Fax": "(5) 555-2934", "Orders": [ { - "OrderID": 10525, - "EmployeeID": 1, - "OrderDate": "1997-05-02T00:00:00", - "RequiredDate": "1997-05-30T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 11.06, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10276, + "EmployeeID": 8, + "OrderDate": "1996-08-08T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-14T00:00:00", + "ShipVia": 3, + "Freight": 13.84, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10526, - "EmployeeID": 4, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-15T00:00:00", - "ShipVia": 2, - "Freight": 58.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10293, + "EmployeeID": 1, + "OrderDate": "1996-08-29T00:00:00", + "RequiredDate": "1996-09-26T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", + "ShipVia": 3, + "Freight": 21.18, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 24, + "UnitPrice": 3.6, "Quantity": 10, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10527, - "EmployeeID": 7, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", - "ShipVia": 1, - "Freight": 41.9, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.1 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10528, - "EmployeeID": 6, - "OrderDate": "1997-05-06T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", + "OrderID": 10304, + "EmployeeID": 1, + "OrderDate": "1996-09-12T00:00:00", + "RequiredDate": "1996-10-10T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", "ShipVia": 2, - "Freight": 3.35, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 63.79, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 3, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 9, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 11000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10529, - "EmployeeID": 5, - "OrderDate": "1997-05-07T00:00:00", - "RequiredDate": "1997-06-04T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", - "ShipVia": 2, - "Freight": 66.69, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 26000, - "ShipCountry": "Belgium", + "OrderID": 10319, + "EmployeeID": 7, + "OrderDate": "1996-10-02T00:00:00", + "RequiredDate": "1996-10-30T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 3, + "Freight": 64.5, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 14, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10530, - "EmployeeID": 3, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", + "OrderID": 10518, + "EmployeeID": 4, + "OrderDate": "1997-04-25T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-05-05T00:00:00", "ShipVia": 2, - "Freight": 339.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 218.15, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 25, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 10576, + "EmployeeID": 3, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", + "ShipVia": 3, + "Freight": 18.56, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 20, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10531, - "EmployeeID": 7, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", - "ShipVia": 1, - "Freight": 8.12, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10676, + "EmployeeID": 2, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-29T00:00:00", + "ShipVia": 2, + "Freight": 2.01, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 2, "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10532, - "EmployeeID": 7, - "OrderDate": "1997-05-09T00:00:00", - "RequiredDate": "1997-06-06T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", + "OrderID": 10842, + "EmployeeID": 1, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 3, - "Freight": 74.46, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 23000, - "ShipCountry": "UK", + "Freight": 54.42, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 11, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 24, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 5, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 21000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10533, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-22T00:00:00", - "ShipVia": 1, - "Freight": 188.04, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 45000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 73, + "ProductID": 70, "UnitPrice": 15, - "Quantity": 24, - "Discount": 0.06 + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10534, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-14T00:00:00", + "OrderID": 10915, + "EmployeeID": 2, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", "ShipVia": 2, - "Freight": 27.94, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 3.51, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 17, + "UnitPrice": 39, "Quantity": 10, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 54, "UnitPrice": 7.45, "Quantity": 10, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10535, - "EmployeeID": 4, - "OrderDate": "1997-05-13T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-21T00:00:00", - "ShipVia": 1, - "Freight": 15.64, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", + "OrderID": 11069, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 15.67, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", "ShipCity": "México D.F.", - "ShipPostalCode": 5023, + "ShipPostalCode": 5033, "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 } ] } - ], - "Fax": "(5) 555-3932" + ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, + "CustomerID": "MORGK", + "Company": "Morgenstern Gesundkost", + "ContactName": "Alexander Feuer", + "ContactTitle": "Marketing Assistant", + "Address": "Heerstr. 22", + "City": "Leipzig", + "PostalCode": 4179, "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "Phone": "0342-023176", + "Fax": "0342-023177", "Orders": [ { - "OrderID": 10536, - "EmployeeID": 3, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-06-11T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 2, - "Freight": 58.88, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "OrderID": 10277, + "EmployeeID": 2, + "OrderDate": "1996-08-09T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-08-13T00:00:00", + "ShipVia": 3, + "Freight": 125.77, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 20, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 12, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, - "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10537, - "EmployeeID": 1, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", + "OrderID": 10575, + "EmployeeID": 5, + "OrderDate": "1997-06-20T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 1, - "Freight": 78.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 127.34, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 6, "Discount": 0 }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 20, - "Discount": 0 - }, { "ProductID": 72, "UnitPrice": 34.8, - "Quantity": 21, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 9, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 44000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10538, - "EmployeeID": 9, - "OrderDate": "1997-05-15T00:00:00", - "RequiredDate": "1997-06-12T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", + "OrderID": 10699, + "EmployeeID": 3, + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", "ShipVia": 3, - "Freight": 4.87, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 27000, - "ShipCountry": "UK", + "Freight": 0.58, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 1, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 12, "Discount": 0 } ] }, { - "OrderID": 10539, - "EmployeeID": 6, - "OrderDate": "1997-05-16T00:00:00", - "RequiredDate": "1997-06-13T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 3, - "Freight": 12.36, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 39000, - "ShipCountry": "UK", + "OrderID": 10779, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 2, + "Freight": 58.13, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 8, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10945, + "EmployeeID": 4, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-04-09T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 10.22, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 6, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 } ] } - ], - "Fax": "(171) 555-1212" + ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10540, - "EmployeeID": 3, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 3, - "Freight": 1007.64, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 14000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", + "Orders": [ + { + "OrderID": 10278, + "EmployeeID": 8, + "OrderDate": "1996-08-12T00:00:00", + "RequiredDate": "1996-09-09T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 92.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 35, + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10541, + "OrderID": 10280, "EmployeeID": 2, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-05-29T00:00:00", + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-09-11T00:00:00", + "ShippedDate": "1996-09-12T00:00:00", "ShipVia": 1, - "Freight": 68.65, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 8.98, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.1 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 4, - "Discount": 0.1 + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 36, - "Discount": 0.1 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10542, - "EmployeeID": 1, - "OrderDate": "1997-05-20T00:00:00", - "RequiredDate": "1997-06-17T00:00:00", - "ShippedDate": "1997-05-26T00:00:00", + "OrderID": 10384, + "EmployeeID": 3, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", "ShipVia": 3, - "Freight": 10.95, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 168.64, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 24, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10543, - "EmployeeID": 8, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 48.17, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10444, + "EmployeeID": 3, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-21T00:00:00", + "ShipVia": 3, + "Freight": 3.5, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 22000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10544, - "EmployeeID": 4, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 24.91, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10524, + "EmployeeID": 1, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", + "ShipVia": 2, + "Freight": 244.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 12000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 7, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 7, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10545, - "EmployeeID": 8, - "OrderDate": "1997-05-22T00:00:00", - "RequiredDate": "1997-06-19T00:00:00", - "ShippedDate": "1997-06-26T00:00:00", + "OrderID": 10572, + "EmployeeID": 3, + "OrderDate": "1997-06-18T00:00:00", + "RequiredDate": "1997-07-16T00:00:00", + "ShippedDate": "1997-06-25T00:00:00", "ShipVia": 2, - "Freight": 11.92, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, - "ShipCountry": "USA", + "Freight": 116.43, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 40000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 32, + "UnitPrice": 32, "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10546, + "OrderID": 10626, "EmployeeID": 1, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-05-27T00:00:00", - "ShipVia": 3, - "Freight": 194.72, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-08T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 2, + "Freight": 138.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 34000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 10, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 27000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10547, - "EmployeeID": 3, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", - "ShipVia": 2, - "Freight": 178.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10654, + "EmployeeID": 5, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 1, + "Freight": 55.26, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 12000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 60, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10548, - "EmployeeID": 3, - "OrderDate": "1997-05-26T00:00:00", - "RequiredDate": "1997-06-23T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", + "OrderID": 10672, + "EmployeeID": 9, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", "ShipVia": 2, - "Freight": 1.43, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 95.75, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 50000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10549, - "EmployeeID": 5, - "OrderDate": "1997-05-27T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 171.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10689, + "EmployeeID": 1, + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-29T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", + "ShipVia": 2, + "Freight": 13.42, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 16000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 55, - "Discount": 0.16 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 100, - "Discount": 0.16 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 48, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10550, - "EmployeeID": 7, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-06-25T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", + "OrderID": 10733, + "EmployeeID": 1, + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-10T00:00:00", "ShipVia": 3, - "Freight": 4.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 110.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 34000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 16, + "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0.1 - }, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10778, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", + "ShipVia": 1, + "Freight": 6.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 39000, + "ShipCountry": "Sweden", + "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 10, - "Discount": 0.1 + "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10551, - "EmployeeID": 4, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", + "OrderID": 10837, + "EmployeeID": 9, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 3, - "Freight": 72.95, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 13.32, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 17000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, + "ProductID": 47, + "UnitPrice": 9.5, "Quantity": 40, - "Discount": 0 + "Discount": 0.25 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10552, - "EmployeeID": 2, - "OrderDate": "1997-05-29T00:00:00", - "RequiredDate": "1997-06-26T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 1, - "Freight": 83.22, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10857, + "EmployeeID": 8, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 2, + "Freight": 188.85, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 18, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.25 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10553, - "EmployeeID": 2, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-03T00:00:00", + "OrderID": 10866, + "EmployeeID": 5, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-03T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 109.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 37000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 6, + "Discount": 0.25 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 40, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10875, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", "ShipVia": 2, - "Freight": 149.49, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 32.37, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 18000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 14, - "Discount": 0 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0.1 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 24, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10924, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 2, + "Freight": 151.52, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 35000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 30, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 35, - "UnitPrice": 18, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 6, "Discount": 0 } @@ -14160,169 +10700,261 @@ ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, + "CustomerID": "LEHMS", + "Company": "Lehmanns Marktstand", + "ContactName": "Renate Messner", + "ContactTitle": "Sales Representative", + "Address": "Magazinweg 7", + "City": "Frankfurt a.M.", + "PostalCode": 60528, "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", + "Phone": "069-0245984", + "Fax": "069-0245874", "Orders": [ { - "OrderID": 10554, + "OrderID": 10279, + "EmployeeID": 8, + "OrderDate": "1996-08-13T00:00:00", + "RequiredDate": "1996-09-10T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 25.83, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10284, "EmployeeID": 4, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 3, - "Freight": 120.97, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, + "OrderDate": "1996-08-19T00:00:00", + "RequiredDate": "1996-09-16T00:00:00", + "ShippedDate": "1996-08-27T00:00:00", + "ShipVia": 1, + "Freight": 76.56, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 60, + "UnitPrice": 27.2, "Quantity": 20, - "Discount": 0.06 + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, + "ProductID": 67, + "UnitPrice": 11.2, + "Quantity": 5, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10343, + "EmployeeID": 4, + "OrderDate": "1996-10-31T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-11-06T00:00:00", + "ShipVia": 1, + "Freight": 110.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 4, "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10555, - "EmployeeID": 6, - "OrderDate": "1997-06-02T00:00:00", - "RequiredDate": "1997-06-30T00:00:00", - "ShippedDate": "1997-06-04T00:00:00", - "ShipVia": 3, - "Freight": 252.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10497, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", + "ShipVia": 1, + "Freight": 36.21, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10522, + "EmployeeID": 4, + "OrderDate": "1997-04-30T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-06T00:00:00", + "ShipVia": 1, + "Freight": 45.33, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0.2 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 18, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, "Discount": 0.2 + } + ] + }, + { + "OrderID": 10534, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-14T00:00:00", + "ShipVia": 2, + "Freight": 27.94, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 40, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10556, - "EmployeeID": 2, - "OrderDate": "1997-06-03T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 9.8, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10536, + "EmployeeID": 3, + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-06-11T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 2, + "Freight": 58.88, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 15, + "Discount": 0.25 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { "OrderID": 10557, "EmployeeID": 9, @@ -14350,418 +10982,349 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10558, - "EmployeeID": 1, - "OrderDate": "1997-06-04T00:00:00", - "RequiredDate": "1997-07-02T00:00:00", - "ShippedDate": "1997-06-10T00:00:00", - "ShipVia": 2, - "Freight": 72.97, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 35000, - "ShipCountry": "UK", + "OrderID": 10592, + "EmployeeID": 3, + "OrderDate": "1997-07-08T00:00:00", + "RequiredDate": "1997-08-05T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 32.1, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 15, + "UnitPrice": 15.5, "Quantity": 25, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 5, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10772, + "EmployeeID": 3, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 91.28, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10862, + "EmployeeID": 8, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 53.23, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 18, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 3, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10559, - "EmployeeID": 6, - "OrderDate": "1997-06-05T00:00:00", - "RequiredDate": "1997-07-03T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 8.05, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10891, + "EmployeeID": 7, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 2, + "Freight": 20.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, "Discount": 0.06 - }, + } + ] + }, + { + "OrderID": 10934, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 3, + "Freight": 32.01, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10560, - "EmployeeID": 8, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", + "OrderID": 11070, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-02T00:00:00", "ShipVia": 1, - "Freight": 36.65, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, + "Freight": 136, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 2, + "UnitPrice": 19, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10561, - "EmployeeID": 2, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", - "ShipVia": 2, - "Freight": 242.21, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 23000, - "ShipCountry": "Sweden", + "CustomerID": "ROMEY", + "Company": "Romero y tomillo", + "ContactName": "Alejandra Camino", + "ContactTitle": "Accounting Manager", + "Address": "Gran Vía, 1", + "City": "Madrid", + "PostalCode": 28001, + "Country": "Spain", + "Phone": "(91) 745 6200", + "Fax": "(91) 745 6210", + "Orders": [ + { + "OrderID": 10281, + "EmployeeID": 4, + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-08-28T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 2.94, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 50, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 6, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10562, - "EmployeeID": 1, - "OrderDate": "1997-06-09T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-12T00:00:00", - "ShipVia": 1, - "Freight": 22.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 20, - "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10563, - "EmployeeID": 2, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-06-24T00:00:00", - "ShipVia": 2, - "Freight": 60.43, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10282, + "EmployeeID": 4, + "OrderDate": "1996-08-15T00:00:00", + "RequiredDate": "1996-09-12T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 70, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10564, - "EmployeeID": 4, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-08T00:00:00", - "ShippedDate": "1997-06-16T00:00:00", + "OrderID": 10306, + "EmployeeID": 1, + "OrderDate": "1996-09-16T00:00:00", + "RequiredDate": "1996-10-14T00:00:00", + "ShippedDate": "1996-09-23T00:00:00", "ShipVia": 3, - "Freight": 13.75, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 7.56, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 38000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10565, - "EmployeeID": 8, - "OrderDate": "1997-06-11T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", + "OrderID": 10917, + "EmployeeID": 4, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", "ShipVia": 2, - "Freight": 7.15, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 21000, - "ShipCountry": "Canada", + "Freight": 8.29, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 1, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10566, - "EmployeeID": 9, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", + "OrderID": 11013, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 1, - "Freight": 88.4, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 32.99, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 18, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 2, "Discount": 0 } ] @@ -14769,1433 +11332,1162 @@ ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "LILAS", + "Company": "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", "Orders": [ { - "OrderID": 10567, - "EmployeeID": 1, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-17T00:00:00", - "ShipVia": 1, - "Freight": 33.97, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10283, + "EmployeeID": 3, + "OrderDate": "1996-08-16T00:00:00", + "RequiredDate": "1996-09-13T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", + "ShipVia": 3, + "Freight": 84.81, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 60, - "Discount": 0.2 + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ - { - "OrderID": 10568, - "EmployeeID": 3, - "OrderDate": "1997-06-13T00:00:00", - "RequiredDate": "1997-07-11T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 3, - "Freight": 6.54, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", - "OrderDetails": [ + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 35, + "Discount": 0 + }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 5, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10569, - "EmployeeID": 5, - "OrderDate": "1997-06-16T00:00:00", - "RequiredDate": "1997-07-14T00:00:00", - "ShippedDate": "1997-07-11T00:00:00", + "OrderID": 10296, + "EmployeeID": 6, + "OrderDate": "1996-09-03T00:00:00", + "RequiredDate": "1996-10-01T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 1, - "Freight": 58.98, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 0.12, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 16, + "UnitPrice": 13.9, "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 22000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10570, + "OrderID": 10330, "EmployeeID": 3, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-19T00:00:00", - "ShipVia": 3, - "Freight": 188.99, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", + "ShipVia": 1, + "Freight": 12.75, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10571, - "EmployeeID": 8, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", + "OrderID": 10357, + "EmployeeID": 1, + "OrderDate": "1996-11-19T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", "ShipVia": 3, - "Freight": 26.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 34.88, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 11, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10572, + "OrderID": 10381, "EmployeeID": 3, - "OrderDate": "1997-06-18T00:00:00", - "RequiredDate": "1997-07-16T00:00:00", - "ShippedDate": "1997-06-25T00:00:00", - "ShipVia": 2, - "Freight": 116.43, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 40000, - "ShipCountry": "Sweden", + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 7.99, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, - "Discount": 0.1 - }, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 14, + "Discount": 0 + } + ] + }, + { + "OrderID": 10461, + "EmployeeID": 1, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-05T00:00:00", + "ShipVia": 3, + "Freight": 148.61, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 28, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10573, - "EmployeeID": 7, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-20T00:00:00", - "ShipVia": 3, - "Freight": 84.84, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10499, + "EmployeeID": 4, + "OrderDate": "1997-04-08T00:00:00", + "RequiredDate": "1997-05-06T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 2, + "Freight": 102.02, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 40, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 49, + "UnitPrice": 20, "Quantity": 25, "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "TRAIH", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10574, - "EmployeeID": 4, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10543, + "EmployeeID": 8, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", "ShipVia": 2, - "Freight": 37.6, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", + "Freight": 48.17, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 2, - "Discount": 0 - }, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10780, + "EmployeeID": 2, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-25T00:00:00", + "ShipVia": 1, + "Freight": 42.13, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 6, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10575, + "OrderID": 10823, "EmployeeID": 5, - "OrderDate": "1997-06-20T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 1, - "Freight": 127.34, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 163.97, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 6, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10576, - "EmployeeID": 3, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10899, + "EmployeeID": 5, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", "ShipVia": 3, - "Freight": 18.56, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 1.21, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, - "Discount": 0 + "Quantity": 8, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10577, - "EmployeeID": 9, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10997, + "EmployeeID": 8, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 25.41, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", + "Freight": 73.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 46, + "UnitPrice": 12, "Quantity": 20, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10578, - "EmployeeID": 4, - "OrderDate": "1997-06-24T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", - "ShipVia": 3, - "Freight": 29.6, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 31000, - "ShipCountry": "UK", + "OrderID": 11065, + "EmployeeID": 8, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-29T00:00:00", + "ShipVia": 1, + "Freight": 12.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 6, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, + "Discount": 0.25 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10579, + "OrderID": 11071, "EmployeeID": 1, - "OrderDate": "1997-06-25T00:00:00", - "RequiredDate": "1997-07-23T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 2, - "Freight": 13.73, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-10T00:00:00", + "ShipVia": 1, + "Freight": 0.93, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 10, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 21, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0.06 } ] } - ], - "Fax": "(415) 555-5938" + ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", + "CustomerID": "RICAR", + "Company": "Ricardo Adocicados", + "ContactName": "Janete Limeira", + "ContactTitle": "Sales Associate", + "Address": "Av. Copacabana, 267", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-3412", + "Fax": "(21) 555-3413", "Orders": [ { - "OrderID": 10580, - "EmployeeID": 4, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-01T00:00:00", + "OrderID": 10287, + "EmployeeID": 8, + "OrderDate": "1996-08-22T00:00:00", + "RequiredDate": "1996-09-19T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", "ShipVia": 3, - "Freight": 75.89, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 12.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10581, - "EmployeeID": 3, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-02T00:00:00", - "ShipVia": 1, - "Freight": 3.01, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", + "OrderID": 10299, + "EmployeeID": 4, + "OrderDate": "1996-09-06T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-13T00:00:00", + "ShipVia": 2, + "Freight": 29.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10582, - "EmployeeID": 3, - "OrderDate": "1997-06-27T00:00:00", - "RequiredDate": "1997-07-25T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 10447, + "EmployeeID": 4, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-03-07T00:00:00", "ShipVia": 2, - "Freight": 27.71, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "Freight": 68.66, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 4, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 14, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10583, - "EmployeeID": 2, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", + "OrderID": 10481, + "EmployeeID": 8, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", "ShipVia": 2, - "Freight": 7.28, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 64.33, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 24, "Discount": 0 }, { "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.16 + "UnitPrice": 27.2, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10563, + "EmployeeID": 2, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-06-24T00:00:00", + "ShipVia": 2, + "Freight": 60.43, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 70, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10584, + "OrderID": 10622, "EmployeeID": 4, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 1, - "Freight": 59.14, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderDate": "1997-08-06T00:00:00", + "RequiredDate": "1997-09-03T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 3, + "Freight": 50.97, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 31, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 68, "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.06 + "Quantity": 18, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10585, - "EmployeeID": 7, - "OrderDate": "1997-07-01T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 1, - "Freight": 13.41, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, + "OrderID": 10648, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-09T00:00:00", + "ShipVia": 2, + "Freight": 14.25, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 22, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10586, - "EmployeeID": 9, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 1, - "Freight": 0.48, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10813, + "EmployeeID": 1, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 1, + "Freight": 47.38, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 12, + "Discount": 0.2 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10587, - "EmployeeID": 1, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", + "OrderID": 10851, + "EmployeeID": 5, + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-23T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", "ShipVia": 1, - "Freight": 62.52, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 160.55, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", "ShipCity": "Sao Paulo", "ShipRegion": "RJ", "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, + "Discount": 0.06 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10588, - "EmployeeID": 2, - "OrderDate": "1997-07-03T00:00:00", - "RequiredDate": "1997-07-31T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 3, - "Freight": 194.67, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10877, + "EmployeeID": 1, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 1, + "Freight": 38.06, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 100, - "Discount": 0.2 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10589, - "EmployeeID": 8, - "OrderDate": "1997-07-04T00:00:00", - "RequiredDate": "1997-08-01T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 11059, + "EmployeeID": 2, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-06-10T00:00:00", + "ShippedDate": "1998-06-15T00:00:00", "ShipVia": 2, - "Freight": 4.42, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 85.8, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 30, "Discount": 0 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 43000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10590, - "EmployeeID": 4, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 3, - "Freight": 44.77, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 40000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0 } ] } ] }, { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10591, - "EmployeeID": 1, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-07-21T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", + "CustomerID": "REGGC", + "Company": "Reggiani Caseifici", + "ContactName": "Maurizio Moroni", + "ContactTitle": "Sales Associate", + "Address": "Strada Provinciale 124", + "City": "Reggio Emilia", + "PostalCode": 42100, + "Country": "Italy", + "Phone": "0522-556721", + "Fax": "0522-556722", + "Orders": [ + { + "OrderID": 10288, + "EmployeeID": 4, + "OrderDate": "1996-08-23T00:00:00", + "RequiredDate": "1996-09-20T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", "ShipVia": 1, - "Freight": 55.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 7.45, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 54, + "UnitPrice": 5.9, "Quantity": 10, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 50, - "Discount": 0 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10592, - "EmployeeID": 3, - "OrderDate": "1997-07-08T00:00:00", - "RequiredDate": "1997-08-05T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", + "OrderID": 10428, + "EmployeeID": 7, + "OrderDate": "1997-01-28T00:00:00", + "RequiredDate": "1997-02-25T00:00:00", + "ShippedDate": "1997-02-04T00:00:00", "ShipVia": 1, - "Freight": 32.1, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 11.09, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 25, - "Discount": 0.06 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0 } ] }, { - "OrderID": 10593, - "EmployeeID": 7, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-08-13T00:00:00", - "ShipVia": 2, - "Freight": 174.2, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10443, + "EmployeeID": 8, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 1, + "Freight": 13.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10594, - "EmployeeID": 3, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", - "ShipVia": 2, - "Freight": 5.24, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10562, + "EmployeeID": 1, + "OrderDate": "1997-06-09T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-12T00:00:00", + "ShipVia": 1, + "Freight": 22.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 24, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10595, - "EmployeeID": 2, - "OrderDate": "1997-07-10T00:00:00", - "RequiredDate": "1997-08-07T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 10586, + "EmployeeID": 9, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", "ShipVia": 1, - "Freight": 96.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 0.48, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 120, - "Discount": 0.25 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 65, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10596, - "EmployeeID": 8, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", - "ShipVia": 1, - "Freight": 16.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10655, + "EmployeeID": 1, + "OrderDate": "1997-09-03T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 4.41, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, "Discount": 0.2 + } + ] + }, + { + "OrderID": 10727, + "EmployeeID": 2, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-12-01T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 89.9, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 24, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10597, - "EmployeeID": 7, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", - "ShipVia": 3, - "Freight": 35.12, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10812, + "EmployeeID": 5, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", + "ShipVia": 1, + "Freight": 59.78, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 16, + "Discount": 0.1 }, { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, "Quantity": 20, "Discount": 0 + } + ] + }, + { + "OrderID": 10908, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 32.96, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 14, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10598, - "EmployeeID": 1, - "OrderDate": "1997-07-14T00:00:00", - "RequiredDate": "1997-08-11T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", + "OrderID": 10942, + "EmployeeID": 9, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 3, - "Freight": 44.42, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 17.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 50, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 28, + "Discount": 0 + } + ] + }, + { + "OrderID": 11010, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 28.71, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, "Discount": 0 } ] - } + }, + { + "OrderID": 11062, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-06-28T00:00:00", + "ShipVia": 2, + "Freight": 29.93, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 12, + "Discount": 0.2 + } + ] + } ] }, { @@ -16205,1875 +12497,1438 @@ "ContactTitle": "Sales Representative", "Address": "Fauntleroy Circus", "City": "London", - "PostalCode": 20000, + "PostalCode": 22000, "Country": "UK", "Phone": "(171) 555-1212", "Orders": [ { - "OrderID": 10599, - "EmployeeID": 6, - "OrderDate": "1997-07-15T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", + "OrderID": 10289, + "EmployeeID": 7, + "OrderDate": "1996-08-26T00:00:00", + "RequiredDate": "1996-09-23T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", "ShipVia": 3, - "Freight": 29.98, + "Freight": 22.77, "ShipName": "Best Beverages", "ShipAddress": "Fauntleroy Circus", "ShipCity": "London", - "ShipPostalCode": 14000, + "ShipPostalCode": 22000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10600, - "EmployeeID": 4, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-13T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", - "ShipVia": 1, - "Freight": 45.13, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "OrderID": 10471, + "EmployeeID": 2, + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 3, + "Freight": 45.59, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 25000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 4, + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10601, - "EmployeeID": 7, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", - "ShipVia": 1, - "Freight": 58.3, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10484, + "EmployeeID": 3, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-01T00:00:00", + "ShipVia": 3, + "Freight": 6.88, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 60, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10602, - "EmployeeID": 8, - "OrderDate": "1997-07-17T00:00:00", - "RequiredDate": "1997-08-14T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", - "ShipVia": 2, - "Freight": 2.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10603, - "EmployeeID": 8, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", - "ShipVia": 2, - "Freight": 48.77, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10538, + "EmployeeID": 9, + "OrderDate": "1997-05-15T00:00:00", + "RequiredDate": "1997-06-12T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 3, + "Freight": 4.87, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 27000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 48, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 1, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10604, - "EmployeeID": 1, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", - "ShipVia": 1, - "Freight": 7.46, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10578, + "EmployeeID": 4, + "OrderDate": "1997-06-24T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 3, + "Freight": 29.6, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 31000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 6, + "Discount": 0 + } + ] + }, + { + "OrderID": 10599, + "EmployeeID": 6, + "OrderDate": "1997-07-15T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", + "ShipVia": 3, + "Freight": 29.98, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 14000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 10, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 32000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10605, - "EmployeeID": 1, - "OrderDate": "1997-07-21T00:00:00", - "RequiredDate": "1997-08-18T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", + "OrderID": 10943, + "EmployeeID": 4, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 379.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", + "Freight": 2.17, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 21, + "Discount": 0 }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10947, + "EmployeeID": 3, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", + "OrderDetails": [ { "ProductID": 59, "UnitPrice": 55, - "Quantity": 20, - "Discount": 0.06 - }, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11023, + "EmployeeID": 1, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 123.83, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 36000, + "ShipCountry": "UK", + "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0 } ] } - ] + ], + "Fax": "(171) 555-1212" }, { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", + "CustomerID": "COMMI", + "Company": "Comércio Mineiro", + "ContactName": "Pedro Afonso", + "ContactTitle": "Sales Associate", + "Address": "Av. dos Lusíadas, 23", "City": "Sao Paulo", "Region": "SP", - "PostalCode": 5634, + "PostalCode": 5432, "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", + "Phone": "(11) 555-7647", "Orders": [ { - "OrderID": 10606, - "EmployeeID": 4, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-31T00:00:00", - "ShipVia": 3, - "Freight": 79.4, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", + "OrderID": 10290, + "EmployeeID": 8, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", + "ShipVia": 1, + "Freight": 79.7, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", "ShipCity": "Sao Paulo", "ShipRegion": "SP", - "ShipPostalCode": 5634, + "ShipPostalCode": 5432, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 5, + "UnitPrice": 17, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10607, - "EmployeeID": 5, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", - "ShipVia": 1, - "Freight": 200.24, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 100, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10466, + "EmployeeID": 4, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-13T00:00:00", + "ShipVia": 1, + "Freight": 11.93, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 42, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 12, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10608, + "OrderID": 10494, "EmployeeID": 4, - "OrderDate": "1997-07-23T00:00:00", - "RequiredDate": "1997-08-20T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", "ShipVia": 2, - "Freight": 27.79, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 65.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10609, - "EmployeeID": 7, - "OrderDate": "1997-07-24T00:00:00", - "RequiredDate": "1997-08-21T00:00:00", - "ShippedDate": "1997-07-30T00:00:00", + "OrderID": 10969, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", "ShipVia": 2, - "Freight": 1.85, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 0.21, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 3, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11042, + "EmployeeID": 2, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 29.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, "Discount": 0 } ] } - ] + ], + "Fax": "(11) 555-7647" }, { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", + "CustomerID": "TRADH", + "Company": "Tradição Hipermercados", + "ContactName": "Anabela Domingues", + "ContactTitle": "Sales Representative", + "Address": "Av. Inês de Castro, 414", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5634, + "Country": "Brazil", + "Phone": "(11) 555-2167", + "Fax": "(11) 555-2168", "Orders": [ { - "OrderID": 10610, - "EmployeeID": 8, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", - "ShipVia": 1, - "Freight": 26.78, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10292, + "EmployeeID": 1, + "OrderDate": "1996-08-28T00:00:00", + "RequiredDate": "1996-09-25T00:00:00", + "ShippedDate": "1996-09-02T00:00:00", + "ShipVia": 2, + "Freight": 1.35, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10611, - "EmployeeID": 6, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderID": 10496, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", "ShipVia": 2, - "Freight": 80.65, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 46.77, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10606, + "EmployeeID": 4, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-31T00:00:00", + "ShipVia": 3, + "Freight": 79.4, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10612, - "EmployeeID": 1, - "OrderDate": "1997-07-28T00:00:00", - "RequiredDate": "1997-08-25T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderID": 10830, + "EmployeeID": 4, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", "ShipVia": 2, - "Freight": 544.08, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 81.83, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 55, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 18, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 28, "Discount": 0 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 40, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 80, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 24, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10613, - "EmployeeID": 4, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 8.11, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10834, + "EmployeeID": 1, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 3, + "Freight": 29.78, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 8, + "Discount": 0.06 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10839, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-22T00:00:00", + "ShipVia": 3, + "Freight": 35.43, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "PostalCode": 48637, + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", "Orders": [ { - "OrderID": 10614, - "EmployeeID": 8, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 3, - "Freight": 1.93, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10298, + "EmployeeID": 6, + "OrderDate": "1996-09-05T00:00:00", + "RequiredDate": "1996-10-03T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", + "ShipVia": 2, + "Freight": 168.22, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 14, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 8, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 5, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10615, - "EmployeeID": 2, - "OrderDate": "1997-07-30T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", - "ShipVia": 3, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10309, + "EmployeeID": 3, + "OrderDate": "1996-09-19T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 1, + "Freight": 47.3, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ - { - "OrderID": 10616, - "EmployeeID": 1, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-05T00:00:00", - "ShipVia": 2, - "Freight": 116.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, + "Discount": 0 }, { "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "UnitPrice": 17.2, + "Quantity": 3, + "Discount": 0 } ] }, { - "OrderID": 10617, - "EmployeeID": 4, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-04T00:00:00", + "OrderID": 10335, + "EmployeeID": 7, + "OrderDate": "1996-10-22T00:00:00", + "RequiredDate": "1996-11-19T00:00:00", + "ShippedDate": "1996-10-24T00:00:00", "ShipVia": 2, - "Freight": 18.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 42.11, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 28000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10618, - "EmployeeID": 1, - "OrderDate": "1997-08-01T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", - "ShipVia": 1, - "Freight": 154.68, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 30000, - "ShipCountry": "Canada", - "OrderDetails": [ + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 7, + "Discount": 0.2 + }, { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 70, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 48, + "Discount": 0.2 } ] }, { - "OrderID": 10619, - "EmployeeID": 3, - "OrderDate": "1997-08-04T00:00:00", - "RequiredDate": "1997-09-01T00:00:00", - "ShippedDate": "1997-08-07T00:00:00", + "OrderID": 10373, + "EmployeeID": 4, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-11T00:00:00", "ShipVia": 3, - "Freight": 91.05, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 21000, - "ShipCountry": "Canada", + "Freight": 124.12, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 42, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 80, + "Discount": 0.2 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 49000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ + }, { - "OrderID": 10620, - "EmployeeID": 2, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", + "OrderID": 10380, + "EmployeeID": 8, + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", "ShipVia": 3, - "Freight": 0.94, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 31000, - "ShipCountry": "Canada", + "Freight": 35.03, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 21000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10621, - "EmployeeID": 4, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", - "ShipVia": 2, - "Freight": 23.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 50269, - "ShipPostalCode": 39000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 10, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 6, + "Discount": 0.1 }, { "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10622, - "EmployeeID": 4, - "OrderDate": "1997-08-06T00:00:00", - "RequiredDate": "1997-09-03T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", - "ShipVia": 3, - "Freight": 50.97, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10429, + "EmployeeID": 3, + "OrderDate": "1997-01-29T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 56.63, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, - "Discount": 0.2 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10623, - "EmployeeID": 8, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", + "OrderID": 10503, + "EmployeeID": 6, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", "ShipVia": 2, - "Freight": 97.18, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 16.74, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { "ProductID": 14, "UnitPrice": 23.25, - "Quantity": 21, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 3, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10624, - "EmployeeID": 4, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 2, - "Freight": 94.8, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "OrderID": 10516, + "EmployeeID": 2, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 62.78, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 6, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 80, + "Discount": 0.1 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10625, - "EmployeeID": 3, - "OrderDate": "1997-08-08T00:00:00", - "RequiredDate": "1997-09-05T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", + "OrderID": 10567, + "EmployeeID": 1, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-17T00:00:00", "ShipVia": 1, - "Freight": 43.9, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 33.97, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 5, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 19000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10626, - "EmployeeID": 1, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-08T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 2, - "Freight": 138.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 34000, - "ShipCountry": "Sweden", + "OrderID": 10646, + "EmployeeID": 9, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 142.33, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.25 }, { "ProductID": 71, "UnitPrice": 21.5, - "Quantity": 20, - "Discount": 0 + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10627, - "EmployeeID": 8, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10661, + "EmployeeID": 7, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", "ShipVia": 3, - "Freight": 107.46, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 17.55, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 49, + "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10628, - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 3, - "Freight": 30.36, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10687, + "EmployeeID": 9, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-30T00:00:00", + "ShipVia": 2, + "Freight": 296.43, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ - { - "OrderID": 10629, - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 3, - "Freight": 85.46, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", - "OrderDetails": [ + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 50, + "Discount": 0.25 + }, { "ProductID": 29, "UnitPrice": 123.79, - "Quantity": 20, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 9, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0.25 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10630, - "EmployeeID": 1, - "OrderDate": "1997-08-13T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 2, - "Freight": 32.35, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10701, + "EmployeeID": 6, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-10-27T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 3, + "Freight": 220.31, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.16 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0.16 }, { "ProductID": 76, "UnitPrice": 18, "Quantity": 35, - "Discount": 0 + "Discount": 0.16 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10631, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-15T00:00:00", + "OrderID": 10712, + "EmployeeID": 3, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", "ShipVia": 1, - "Freight": 0.87, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 89.93, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10632, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 1, - "Freight": 41.38, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10736, + "EmployeeID": 9, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 44.1, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10633, - "EmployeeID": 7, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-18T00:00:00", - "ShipVia": 3, - "Freight": 477.9, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10897, + "EmployeeID": 3, + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-25T00:00:00", + "ShipVia": 2, + "Freight": 603.54, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 80, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 13, - "Discount": 0.16 - }, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 36, + "Discount": 0 + } + ] + }, + { + "OrderID": 10912, + "EmployeeID": 2, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 580.91, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 80, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10634, - "EmployeeID": 4, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", - "ShipVia": 3, - "Freight": 487.38, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "OrderID": 10985, + "EmployeeID": 2, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 91.51, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 36, + "Discount": 0.1 }, { "ProductID": 18, "UnitPrice": 62.5, - "Quantity": 50, - "Discount": 0 + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 15, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 35, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11063, + "EmployeeID": 3, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 81.73, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 2, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "WANDK", + "Company": "Die Wandernde Kuh", + "ContactName": "Rita Müller", + "ContactTitle": "Sales Representative", + "Address": "Adenauerallee 900", + "City": "Stuttgart", + "PostalCode": 70563, + "Country": "Germany", + "Phone": "0711-020361", + "Fax": "0711-035428", "Orders": [ { - "OrderID": 10635, + "OrderID": 10301, "EmployeeID": 8, - "OrderDate": "1997-08-18T00:00:00", - "RequiredDate": "1997-09-15T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", - "ShipVia": 3, - "Freight": 47.46, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", + "ShipVia": 2, + "Freight": 45.08, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 40, + "UnitPrice": 14.7, "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 15, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10636, - "EmployeeID": 4, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 1.15, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10312, + "EmployeeID": 2, + "OrderDate": "1996-09-23T00:00:00", + "RequiredDate": "1996-10-21T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 40.26, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 6, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10637, - "EmployeeID": 6, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 201.29, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10348, + "EmployeeID": 4, + "OrderDate": "1996-11-07T00:00:00", + "RequiredDate": "1996-12-05T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 2, + "Freight": 0.78, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 50, - "UnitPrice": 16.25, + "ProductID": 23, + "UnitPrice": 7.2, "Quantity": 25, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10638, - "EmployeeID": 3, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", - "ShipVia": 1, - "Freight": 158.44, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10356, + "EmployeeID": 6, + "OrderDate": "1996-11-18T00:00:00", + "RequiredDate": "1996-12-16T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", + "ShipVia": 2, + "Freight": 36.71, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 60, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10639, + "OrderID": 10513, "EmployeeID": 7, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-08-27T00:00:00", - "ShipVia": 3, - "Freight": 38.64, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ - { - "OrderID": 10640, - "EmployeeID": 4, - "OrderDate": "1997-08-21T00:00:00", - "RequiredDate": "1997-09-18T00:00:00", - "ShippedDate": "1997-08-28T00:00:00", + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-06-03T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", "ShipVia": 1, - "Freight": 23.55, + "Freight": 105.65, "ShipName": "Die Wandernde Kuh", "ShipAddress": "Adenauerallee 900", "ShipCity": "Stuttgart", @@ -18081,996 +13936,833 @@ "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, "Quantity": 15, - "Discount": 0.25 + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10641, - "EmployeeID": 4, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 2, - "Freight": 179.61, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10632, + "EmployeeID": 8, + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 1, + "Freight": 41.38, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 19, - "Quantity": 50, - "Discount": 0 + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10642, - "EmployeeID": 7, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-09-05T00:00:00", - "ShipVia": 3, - "Freight": 41.89, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10640, + "EmployeeID": 4, + "OrderDate": "1997-08-21T00:00:00", + "RequiredDate": "1997-09-18T00:00:00", + "ShippedDate": "1997-08-28T00:00:00", + "ShipVia": 1, + "Freight": 23.55, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10643, - "EmployeeID": 6, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", - "ShipVia": 1, - "Freight": 29.46, - "ShipName": "Alfreds Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, + "OrderID": 10651, + "EmployeeID": 8, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 20.6, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0.25 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 2, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 20, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10644, - "EmployeeID": 3, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", + "OrderID": 10668, + "EmployeeID": 1, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", "ShipVia": 2, - "Freight": 0.14, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 47.22, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, "Quantity": 4, "Discount": 0.1 }, { - "ProductID": 43, - "UnitPrice": 46, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 15, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11046, + "EmployeeID": 8, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 71.64, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 12, + "UnitPrice": 38, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0.1 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 18, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", + "CustomerID": "GODOS", + "Company": "Godos Cocina Típica", + "ContactName": "José Pedro Freyre", + "ContactTitle": "Sales Manager", + "Address": "C/ Romero, 33", + "City": "Sevilla", + "PostalCode": 41101, + "Country": "Spain", + "Phone": "(95) 555 82 82", "Orders": [ { - "OrderID": 10645, - "EmployeeID": 4, - "OrderDate": "1997-08-26T00:00:00", - "RequiredDate": "1997-09-23T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", - "ShipVia": 1, - "Freight": 12.41, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10303, + "EmployeeID": 7, + "OrderDate": "1996-09-11T00:00:00", + "RequiredDate": "1996-10-09T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 107.83, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 10, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10646, - "EmployeeID": 9, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", + "OrderID": 10550, + "EmployeeID": 7, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-06-25T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", "ShipVia": 3, - "Freight": 142.33, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 4.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10647, + "OrderID": 10629, "EmployeeID": 4, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 2, - "Freight": 45.54, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 85.46, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10648, + "OrderID": 10872, "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-09T00:00:00", + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", "ShipVia": 2, - "Freight": 14.25, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 175.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, "Quantity": 15, - "Discount": 0.16 + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 28000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10649, + "OrderID": 10874, "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-09-25T00:00:00", - "ShippedDate": "1997-08-29T00:00:00", - "ShipVia": 3, - "Freight": 6.2, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 47000, - "ShipCountry": "Belgium", + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", + "ShipVia": 2, + "Freight": 19.58, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10888, + "EmployeeID": 1, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", + "ShipVia": 2, + "Freight": 51.87, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, "Quantity": 20, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10650, - "EmployeeID": 5, - "OrderDate": "1997-08-29T00:00:00", - "RequiredDate": "1997-09-26T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 3, - "Freight": 176.81, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10911, + "EmployeeID": 3, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", + "ShipVia": 1, + "Freight": 38.19, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10651, - "EmployeeID": 8, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 2, - "Freight": 20.6, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10948, + "EmployeeID": 3, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", + "ShipVia": 3, + "Freight": 23.39, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10652, - "EmployeeID": 4, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", - "ShipVia": 2, - "Freight": 7.14, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 11009, + "EmployeeID": 2, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 59.11, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 2, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 18, "Discount": 0.25 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10653, - "EmployeeID": 1, - "OrderDate": "1997-09-02T00:00:00", - "RequiredDate": "1997-09-30T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", + "OrderID": 11037, + "EmployeeID": 7, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", "ShipVia": 1, - "Freight": 93.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 3.2, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 4, + "Discount": 0 } ] } - ] + ], + "Fax": "(95) 555 82 82" }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 33000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "OLDWO", + "Company": "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", "Orders": [ { - "OrderID": 10654, - "EmployeeID": 5, - "OrderDate": "1997-09-02T00:00:00", - "RequiredDate": "1997-09-30T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 1, - "Freight": 55.26, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 12000, - "ShipCountry": "Sweden", + "OrderID": 10305, + "EmployeeID": 8, + "OrderDate": "1996-09-13T00:00:00", + "RequiredDate": "1996-10-11T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 3, + "Freight": 257.62, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 12, + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 25, "Discount": 0.1 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 25, "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10655, - "EmployeeID": 1, - "OrderDate": "1997-09-03T00:00:00", - "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 2, - "Freight": 4.41, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10656, - "EmployeeID": 6, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", - "ShipVia": 1, - "Freight": 57.15, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, + "OrderID": 10338, + "EmployeeID": 4, + "OrderDate": "1996-10-25T00:00:00", + "RequiredDate": "1996-11-22T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", + "ShipVia": 3, + "Freight": 84.21, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0.1 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10657, - "EmployeeID": 2, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", + "OrderID": 10441, + "EmployeeID": 3, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-24T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 352.69, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "Freight": 73.02, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, + "ProductID": 27, + "UnitPrice": 35.1, "Quantity": 50, "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, + } + ] + }, + { + "OrderID": 10594, + "EmployeeID": 3, + "OrderDate": "1997-07-09T00:00:00", + "RequiredDate": "1997-08-06T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 2, + "Freight": 5.24, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, "Quantity": 24, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 45, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10680, + "EmployeeID": 1, + "OrderDate": "1997-09-24T00:00:00", + "RequiredDate": "1997-10-22T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 1, + "Freight": 26.61, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 10, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, + "Discount": 0.25 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 45, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.25 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10658, - "EmployeeID": 4, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", - "ShipVia": 1, - "Freight": 364.15, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10706, + "EmployeeID": 8, + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-11-13T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 3, + "Freight": 135.63, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 55, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10808, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 45.53, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10659, - "EmployeeID": 7, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", - "ShipVia": 2, - "Freight": 105.81, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10855, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 170.97, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, + "Discount": 0 + }, { "ProductID": 31, "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0.06 + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 24, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10660, - "EmployeeID": 8, - "OrderDate": "1997-09-08T00:00:00", - "RequiredDate": "1997-10-06T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", - "ShipVia": 1, - "Freight": 111.29, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "OrderID": 10965, + "EmployeeID": 6, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", + "ShipVia": 3, + "Freight": 144.38, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10661, - "EmployeeID": 7, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", - "ShipVia": 3, - "Freight": 17.55, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 11034, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 40.32, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 49, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 6, + "Discount": 0 } ] } @@ -19090,13 +14782,13 @@ "Fax": "(503) 555-9646", "Orders": [ { - "OrderID": 10662, - "EmployeeID": 3, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", + "OrderID": 10307, + "EmployeeID": 2, + "OrderDate": "1996-09-17T00:00:00", + "RequiredDate": "1996-10-15T00:00:00", + "ShippedDate": "1996-09-25T00:00:00", "ShipVia": 2, - "Freight": 1.28, + "Freight": 0.56, "ShipName": "Lonesome Pine Restaurant", "ShipAddress": "89 Chiaroscuro Rd.", "ShipCity": "Portland", @@ -19105,132 +14797,50 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10663, - "EmployeeID": 2, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-09-24T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", - "ShipVia": 2, - "Freight": 113.15, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10664, - "EmployeeID": 1, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 3, - "Freight": 1.27, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10317, + "EmployeeID": 6, + "OrderDate": "1996-09-30T00:00:00", + "RequiredDate": "1996-10-28T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10665, - "EmployeeID": 1, - "OrderDate": "1997-09-11T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-17T00:00:00", - "ShipVia": 2, - "Freight": 26.31, + "OrderID": 10544, + "EmployeeID": 4, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 24.91, "ShipName": "Lonesome Pine Restaurant", "ShipAddress": "89 Chiaroscuro Rd.", "ShipCity": "Portland", @@ -19239,249 +14849,292 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 1, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 7, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10662, + "EmployeeID": 3, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 2, + "Freight": 1.28, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10666, - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", + "OrderID": 10665, + "EmployeeID": 1, + "OrderDate": "1997-09-11T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-17T00:00:00", "ShipVia": 2, - "Freight": 232.42, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 26.31, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10667, - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", + "OrderID": 10867, + "EmployeeID": 6, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", "ShipVia": 1, - "Freight": 78.09, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 1.93, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 45, - "Discount": 0.2 - }, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10883, + "EmployeeID": 8, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 3, + "Freight": 0.53, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 14, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10668, - "EmployeeID": 1, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", + "OrderID": 11018, + "EmployeeID": 4, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", "ShipVia": 2, - "Freight": 47.22, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 11.65, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", + "CustomerID": "ANATR", + "Company": "Ana Trujillo Emparedados y helados", + "ContactName": "Ana Trujillo", "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", + "Address": "Avda. de la Constitución 2222", + "City": "México D.F.", + "PostalCode": 5021, + "Country": "Mexico", + "Phone": "(5) 555-4729", + "Fax": "(5) 555-3745", "Orders": [ { - "OrderID": 10669, - "EmployeeID": 2, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", - "ShipVia": 1, - "Freight": 24.39, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - } + "OrderID": 10308, + "EmployeeID": 7, + "OrderDate": "1996-09-18T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-24T00:00:00", + "ShipVia": 3, + "Freight": 1.61, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 5, + "Discount": 0 + } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10670, - "EmployeeID": 4, - "OrderDate": "1997-09-16T00:00:00", - "RequiredDate": "1997-10-14T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", + "OrderID": 10625, + "EmployeeID": 3, + "OrderDate": "1997-08-08T00:00:00", + "RequiredDate": "1997-09-05T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", "ShipVia": 1, - "Freight": 203.48, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 43.9, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 32, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 60, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 25, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10759, + "EmployeeID": 3, + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 3, + "Freight": 11.99, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10926, + "EmployeeID": 4, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 39.92, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 25, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, "Discount": 0 } ] @@ -19489,1902 +15142,1343 @@ ] }, { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", + "CustomerID": "THEBI", + "Company": "The Big Cheese", + "ContactName": "Liz Nixon", "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", + "Address": "89 Jefferson Way Suite 2", + "City": "Portland", + "Region": "OR", + "PostalCode": 97201, + "Country": "USA", + "Phone": "(503) 555-3612", "Orders": [ { - "OrderID": 10671, - "EmployeeID": 1, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-09-24T00:00:00", - "ShipVia": 1, - "Freight": 30.34, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10310, + "EmployeeID": 8, + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-18T00:00:00", + "ShippedDate": "1996-09-27T00:00:00", + "ShipVia": 2, + "Freight": 17.52, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 16, - "UnitPrice": 17.45, + "UnitPrice": 13.9, "Quantity": 10, "Discount": 0 }, { "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, + "UnitPrice": 39.4, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10672, - "EmployeeID": 9, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", + "OrderID": 10708, + "EmployeeID": 6, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 95.75, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 50000, - "ShipCountry": "Sweden", + "Freight": 2.96, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10673, + "OrderID": 10805, "EmployeeID": 2, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 1, - "Freight": 22.76, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 237.34, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 42, + "ProductID": 34, "UnitPrice": 14, - "Quantity": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 35000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10674, - "EmployeeID": 4, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 2, - "Freight": 0.9, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60699, - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10992, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 4.27, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 5, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 2, "Discount": 0 } ] } ], - "Fax": "(198) 555-8888" + "Fax": "(503) 555-3612" }, { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", + "CustomerID": "DUMON", + "Company": "Du monde entier", + "ContactName": "Janine Labrune", + "ContactTitle": "Owner", + "Address": "67, rue des Cinquante Otages", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.67.88.88", + "Fax": "40.67.89.89", "Orders": [ { - "OrderID": 10675, - "EmployeeID": 5, - "OrderDate": "1997-09-19T00:00:00", - "RequiredDate": "1997-10-17T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", - "ShipVia": 2, - "Freight": 31.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10311, + "EmployeeID": 1, + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-26T00:00:00", + "ShipVia": 3, + "Freight": 24.69, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 7, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10676, - "EmployeeID": 2, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-29T00:00:00", + "OrderID": 10609, + "EmployeeID": 7, + "OrderDate": "1997-07-24T00:00:00", + "RequiredDate": "1997-08-21T00:00:00", + "ShippedDate": "1997-07-30T00:00:00", "ShipVia": 2, - "Freight": 2.01, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 1.85, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10677, - "EmployeeID": 1, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", - "ShipVia": 3, - "Freight": 4.03, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10683, + "EmployeeID": 2, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 1, + "Freight": 4.4, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 9, + "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10678, + "OrderID": 10890, "EmployeeID": 7, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", - "ShipVia": 3, - "Freight": 388.98, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 32.76, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 100, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 120, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, + "Quantity": 14, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", + "CustomerID": "ISLAT", + "Company": "Island Trading", + "ContactName": "Helen Bennett", "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", + "Address": "Garden House Crowther Way", + "City": "Cowes", + "Region": "Northeast", + "PostalCode": 26000, + "Country": "UK", + "Phone": "(198) 555-8888", "Orders": [ { - "OrderID": 10679, - "EmployeeID": 8, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 3, - "Freight": 27.94, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10315, + "EmployeeID": 4, + "OrderDate": "1996-09-26T00:00:00", + "RequiredDate": "1996-10-24T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 41.76, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 80379, + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10680, - "EmployeeID": 1, - "OrderDate": "1997-09-24T00:00:00", - "RequiredDate": "1997-10-22T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", - "ShipVia": 1, - "Freight": 26.61, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10318, + "EmployeeID": 8, + "OrderDate": "1996-10-01T00:00:00", + "RequiredDate": "1996-10-29T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 4.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 30676, + "ShipPostalCode": 36000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0.25 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 20, - "Discount": 0.25 + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10681, + "OrderID": 10321, "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 3, - "Freight": 76.13, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-31T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 2, + "Freight": 3.43, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 20137, + "ShipPostalCode": 41000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 28, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10682, - "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 2, - "Freight": 36.13, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10473, + "EmployeeID": 1, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", + "ShipVia": 3, + "Freight": 16.37, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 90698, + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 4, + "UnitPrice": 2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 12, "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10683, - "EmployeeID": 2, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 1, - "Freight": 4.4, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10621, + "EmployeeID": 4, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 2, + "Freight": 23.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 50269, + "ShipPostalCode": 39000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 9, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10684, - "EmployeeID": 3, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 1, - "Freight": 145.63, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ + }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 20, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10685, + "OrderID": 10674, "EmployeeID": 4, - "OrderDate": "1997-09-29T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", "ShipVia": 2, - "Freight": 33.75, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 0.9, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60699, + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10749, + "EmployeeID": 4, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 61.53, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 30222, + "ShipPostalCode": 50000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 15, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10686, + "OrderID": 10798, "EmployeeID": 2, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-08T00:00:00", + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 1, - "Freight": 96.5, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 2.33, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60634, + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10687, + "OrderID": 10829, "EmployeeID": 9, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-30T00:00:00", - "ShipVia": 2, - "Freight": 296.43, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-10T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 1, + "Freight": 154.72, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 50889, + "ShipPostalCode": 16000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, "Quantity": 10, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, - "Discount": 0.25 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10688, - "EmployeeID": 4, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", - "ShipVia": 2, - "Freight": 299.09, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderID": 10933, + "EmployeeID": 6, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 3, + "Freight": 54.15, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40624, + "ShipPostalCode": 44000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 14, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, "Discount": 0 } ] } - ] + ], + "Fax": "(198) 555-8888" }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "PERIC", + "Company": "Pericles Comidas clásicas", + "ContactName": "Guillermo Fernández", + "ContactTitle": "Sales Representative", + "Address": "Calle Dr. Jorge Cash 321", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 552-3745", + "Fax": "(5) 545-3745", "Orders": [ { - "OrderID": 10689, - "EmployeeID": 1, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-29T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", - "ShipVia": 2, - "Freight": 13.42, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 16000, - "ShipCountry": "Sweden", + "OrderID": 10322, + "EmployeeID": 7, + "OrderDate": "1996-10-04T00:00:00", + "RequiredDate": "1996-11-01T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 3, + "Freight": 0.4, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10690, - "EmployeeID": 1, - "OrderDate": "1997-10-02T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", - "ShipVia": 1, - "Freight": 15.8, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10354, + "EmployeeID": 8, + "OrderDate": "1996-11-14T00:00:00", + "RequiredDate": "1996-12-12T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 3, + "Freight": 53.8, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.25 - }, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 12, + "Discount": 0 + }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10691, - "EmployeeID": 2, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-10-22T00:00:00", + "OrderID": 10474, + "EmployeeID": 5, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-04-10T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", "ShipVia": 2, - "Freight": 810.05, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 83.49, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 40, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 40, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 24, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 48, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10692, - "EmployeeID": 4, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-10-31T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", - "ShipVia": 2, - "Freight": 61.02, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "OrderID": 10502, + "EmployeeID": 2, + "OrderDate": "1997-04-10T00:00:00", + "RequiredDate": "1997-05-08T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", + "ShipVia": 1, + "Freight": 69.32, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10693, - "EmployeeID": 3, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-10-10T00:00:00", + "OrderID": 10995, + "EmployeeID": 1, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", "ShipVia": 3, - "Freight": 139.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 46, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 6, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 60, - "Discount": 0.16 - }, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11073, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-15T00:00:00", + "ShipVia": 2, + "Freight": 24.95, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, + "CustomerID": "KOENE", + "Company": "Königlich Essen", + "ContactName": "Philip Cramer", + "ContactTitle": "Sales Associate", + "Address": "Maubelstr. 90", + "City": "Brandenburg", + "PostalCode": 14776, "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "Phone": "0555-09876", "Orders": [ { - "OrderID": 10694, - "EmployeeID": 8, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-11-03T00:00:00", - "ShippedDate": "1997-10-09T00:00:00", - "ShipVia": 3, - "Freight": 398.36, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10323, + "EmployeeID": 4, + "OrderDate": "1996-10-07T00:00:00", + "RequiredDate": "1996-11-04T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 4.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 90, + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10695, - "EmployeeID": 7, - "OrderDate": "1997-10-07T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 1, - "Freight": 16.72, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10325, + "EmployeeID": 1, + "OrderDate": "1996-10-09T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 3, + "Freight": 64.86, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 10, "Quantity": 4, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10696, + "OrderID": 10456, "EmployeeID": 8, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 3, - "Freight": 102.55, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderDate": "1997-02-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 8.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 18, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 21, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10697, + "OrderID": 10468, "EmployeeID": 3, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-05T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 1, - "Freight": 45.52, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderDate": "1997-03-07T00:00:00", + "RequiredDate": "1997-04-04T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 44.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 9, - "Discount": 0.25 - }, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10506, + "EmployeeID": 9, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 21.19, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 18, + "Discount": 0.1 }, { "ProductID": 70, "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.25 + "Quantity": 14, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10698, - "EmployeeID": 4, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-17T00:00:00", - "ShipVia": 1, - "Freight": 272.47, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10542, + "EmployeeID": 1, + "OrderDate": "1997-05-20T00:00:00", + "RequiredDate": "1997-06-17T00:00:00", + "ShippedDate": "1997-05-26T00:00:00", + "ShipVia": 3, + "Freight": 10.95, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 11, "UnitPrice": 21, "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 65, "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 24, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10699, - "EmployeeID": 3, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", - "ShipVia": 3, - "Freight": 0.58, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, + "OrderID": 10630, + "EmployeeID": 1, + "OrderDate": "1997-08-13T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 2, + "Freight": 32.35, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10700, - "EmployeeID": 3, - "OrderDate": "1997-10-10T00:00:00", - "RequiredDate": "1997-11-07T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", - "ShipVia": 1, - "Freight": 65.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10718, + "EmployeeID": 1, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 3, + "Freight": 170.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0.2 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 40, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.2 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10701, - "EmployeeID": 6, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-10-27T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", + "OrderID": 10799, + "EmployeeID": 9, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 3, - "Freight": 220.31, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 30.76, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 20, "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10702, - "EmployeeID": 4, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", - "ShipVia": 1, - "Freight": 23.94, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0 + "OrderID": 10817, + "EmployeeID": 3, + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 306.07, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 15, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10703, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-10-20T00:00:00", + "OrderID": 10849, + "EmployeeID": 9, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 2, - "Freight": 152.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 28000, - "ShipCountry": "Sweden", + "Freight": 0.56, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 49, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 18, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10704, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", - "ShipVia": 1, - "Freight": 4.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10893, + "EmployeeID": 9, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 2, + "Freight": 77.78, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 6, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, "Discount": 0 }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 35, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 48, - "UnitPrice": 12.75, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 24, "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10705, - "EmployeeID": 9, - "OrderDate": "1997-10-15T00:00:00", - "RequiredDate": "1997-11-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 2, - "Freight": 3.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ + }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 4, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10706, - "EmployeeID": 8, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-11-13T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", - "ShipVia": 3, - "Freight": 135.63, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 11028, + "EmployeeID": 2, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 1, + "Freight": 29.59, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { "ProductID": 59, "UnitPrice": 55, - "Quantity": 8, + "Quantity": 24, "Discount": 0 } ] } - ] + ], + "Fax": "0555-09876" }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", + "CustomerID": "SAVEA", + "Company": "Save-a-lot Markets", + "ContactName": "Jose Pavarotti", "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 10000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Address": "187 Suffolk Ln.", + "City": "Boise", + "Region": "ID", + "PostalCode": 83720, + "Country": "USA", + "Phone": "(208) 555-8097", "Orders": [ { - "OrderID": 10707, - "EmployeeID": 4, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", - "ShipVia": 3, - "Freight": 21.74, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 28000, - "ShipCountry": "UK", + "OrderID": 10324, + "EmployeeID": 9, + "OrderDate": "1996-10-08T00:00:00", + "RequiredDate": "1996-11-05T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", + "ShipVia": 1, + "Freight": 214.27, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 16, + "UnitPrice": 13.9, "Quantity": 21, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 40, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 70, + "Discount": 0.16 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 28, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 40, "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ - { - "OrderID": 10708, - "EmployeeID": 6, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 2.96, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 4, - "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 80, + "Discount": 0.16 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10709, + "OrderID": 10393, "EmployeeID": 1, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-11-20T00:00:00", + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", "ShipVia": 3, - "Freight": 210.8, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 126.56, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 40, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 28, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 42, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ - { - "OrderID": 10710, - "EmployeeID": 1, - "OrderDate": "1997-10-20T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", - "ShipVia": 1, - "Freight": 4.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", - "OrderDetails": [ + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 7, + "Discount": 0.25 + }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 70, + "Discount": 0.25 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 32, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10711, - "EmployeeID": 5, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 2, - "Freight": 52.41, + "OrderID": 10398, + "EmployeeID": 2, + "OrderDate": "1996-12-30T00:00:00", + "RequiredDate": "1997-01-27T00:00:00", + "ShippedDate": "1997-01-09T00:00:00", + "ShipVia": 3, + "Freight": 89.16, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21393,92 +16487,68 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 42, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 55, + "UnitPrice": 19.2, "Quantity": 120, - "Discount": 0 + "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10712, - "EmployeeID": 3, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", - "ShipVia": 1, - "Freight": 89.93, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10440, + "EmployeeID": 4, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-10T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 86.53, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 45, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 49, + "Discount": 0.16 + }, + { + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 24, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 90, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10713, - "EmployeeID": 1, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-24T00:00:00", + "OrderID": 10452, + "EmployeeID": 8, + "OrderDate": "1997-02-20T00:00:00", + "RequiredDate": "1997-03-20T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", "ShipVia": 1, - "Freight": 167.05, + "Freight": 140.26, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21487,39 +16557,56 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0 - }, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 100, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10510, + "EmployeeID": 6, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", + "ShipVia": 3, + "Freight": 367.63, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 110, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 24, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 36, + "Discount": 0.1 } ] }, { - "OrderID": 10714, - "EmployeeID": 5, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", + "OrderID": 10555, + "EmployeeID": 6, + "OrderDate": "1997-06-02T00:00:00", + "RequiredDate": "1997-06-30T00:00:00", + "ShippedDate": "1997-06-04T00:00:00", "ShipVia": 3, - "Freight": 24.49, + "Freight": 252.49, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21528,382 +16615,291 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 14, + "UnitPrice": 23.25, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.2 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 27, - "Discount": 0.25 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 18, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, + "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10715, - "EmployeeID": 3, - "OrderDate": "1997-10-23T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 1, - "Freight": 63.2, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10603, + "EmployeeID": 8, + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 2, + "Freight": 48.77, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 21, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 48, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10716, - "EmployeeID": 4, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", - "ShipVia": 2, - "Freight": 22.57, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10607, + "EmployeeID": 5, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 1, + "Freight": 200.24, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 7, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 100, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10717, - "EmployeeID": 1, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 2, - "Freight": 59.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 32, - "Discount": 0.06 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 42, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10718, + "OrderID": 10612, "EmployeeID": 1, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 3, - "Freight": 170.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderDate": "1997-07-28T00:00:00", + "RequiredDate": "1997-08-25T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 2, + "Freight": 544.08, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, "Quantity": 40, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 80, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10719, + "OrderID": 10627, "EmployeeID": 8, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 51.44, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 107.46, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 12, - "Discount": 0.25 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 3, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, + "Discount": 0.16 } ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10720, - "EmployeeID": 8, - "OrderDate": "1997-10-28T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", + "OrderID": 10657, + "EmployeeID": 2, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", "ShipVia": 2, - "Freight": 9.53, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 352.69, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 8, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10721, - "EmployeeID": 5, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-11-26T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", + "OrderID": 10678, + "EmployeeID": 7, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", "ShipVia": 3, - "Freight": 48.92, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 388.98, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 100, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 120, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10722, - "EmployeeID": 8, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-04T00:00:00", + "OrderID": 10700, + "EmployeeID": 3, + "OrderDate": "1997-10-10T00:00:00", + "RequiredDate": "1997-11-07T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", "ShipVia": 1, - "Freight": 74.58, + "Freight": 65.1, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21912,1506 +16908,1248 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 3, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.2 }, { "ProductID": 68, "UnitPrice": 12.5, - "Quantity": 45, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10711, + "EmployeeID": 5, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 2, + "Freight": 52.41, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 42, "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 120, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10723, - "EmployeeID": 3, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-11-27T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", + "OrderID": 10713, + "EmployeeID": 1, + "OrderDate": "1997-10-22T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-24T00:00:00", "ShipVia": 1, - "Freight": 21.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, + "Freight": 167.05, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0 + }, { "ProductID": 26, "UnitPrice": 31.23, - "Quantity": 15, + "Quantity": 30, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 26000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10724, - "EmployeeID": 8, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 57.75, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 20000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 110, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10725, - "EmployeeID": 4, - "OrderDate": "1997-10-31T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 3, - "Freight": 10.83, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10722, + "EmployeeID": 8, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-04T00:00:00", + "ShipVia": 1, + "Freight": 74.58, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 43000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10726, - "EmployeeID": 4, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", + "OrderID": 10748, + "EmployeeID": 3, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", "ShipVia": 1, - "Freight": 16.56, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 24000, - "ShipCountry": "UK", + "Freight": 232.55, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 44, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10727, - "EmployeeID": 2, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-12-01T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", + "OrderID": 10757, + "EmployeeID": 6, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", "ShipVia": 1, - "Freight": 89.9, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 8.19, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 59, "UnitPrice": 55, - "Quantity": 10, - "Discount": 0.06 + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 24, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10728, - "EmployeeID": 4, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-11-11T00:00:00", - "ShipVia": 2, - "Freight": 58.33, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10815, + "EmployeeID": 2, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 3, + "Freight": 14.62, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10847, + "EmployeeID": 4, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 3, + "Freight": 487.57, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.2 }, { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 19, + "UnitPrice": 9.2, "Quantity": 12, - "Discount": 0 + "Discount": 0.2 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 60, + "Discount": 0.2 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 36, + "Discount": 0.2 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "Quantity": 45, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 55, + "Discount": 0.2 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10729, - "EmployeeID": 8, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", + "OrderID": 10882, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 3, - "Freight": 141.06, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 23.1, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 50, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 40, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 32, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10730, - "EmployeeID": 5, - "OrderDate": "1997-11-05T00:00:00", - "RequiredDate": "1997-12-03T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", + "OrderID": 10894, + "EmployeeID": 1, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 1, - "Freight": 20.12, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 116.13, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 28, "Discount": 0.06 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 3, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 50, "Discount": 0.06 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 120, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10731, + "OrderID": 10941, "EmployeeID": 7, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", - "ShipVia": 1, - "Freight": 96.65, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 2, + "Freight": 400.81, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 44, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 30, - "Discount": 0.06 + "Discount": 0.25 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 80, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10732, - "EmployeeID": 3, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", - "ShipVia": 1, - "Freight": 16.97, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10983, + "EmployeeID": 2, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", + "ShipVia": 2, + "Freight": 657.54, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 84, + "Discount": 0.16 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 30000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10733, - "EmployeeID": 1, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-10T00:00:00", - "ShipVia": 3, - "Freight": 110.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 34000, - "ShipCountry": "Sweden", + "OrderID": 11002, + "EmployeeID": 4, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 1, + "Freight": 141.16, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 16, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 56, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 25, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.16 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10734, - "EmployeeID": 2, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-12T00:00:00", - "ShipVia": 3, - "Freight": 1.63, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 11030, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 2, + "Freight": 830.75, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 100, + "Discount": 0.25 + }, + { + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 100, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11064, + "EmployeeID": 1, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 30.09, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 77, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 55, "Discount": 0 } ] } ], - "Fax": "(11) 555-9482" + "Fax": "(208) 555-8097" }, { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", + "CustomerID": "BOLID", + "Company": "Bólido Comidas preparadas", + "ContactName": "Martín Sommer", "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", + "Address": "C/ Araquil, 67", + "City": "Madrid", + "PostalCode": 28023, + "Country": "Spain", + "Phone": "(91) 555 22 82", + "Fax": "(91) 555 91 99", "Orders": [ { - "OrderID": 10735, - "EmployeeID": 6, - "OrderDate": "1997-11-10T00:00:00", - "RequiredDate": "1997-12-08T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderID": 10326, + "EmployeeID": 4, + "OrderDate": "1996-10-10T00:00:00", + "RequiredDate": "1996-11-07T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", "ShipVia": 2, - "Freight": 45.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "Freight": 77.92, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10736, - "EmployeeID": 9, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 2, - "Freight": 44.1, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 40, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 16, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, + "UnitPrice": 6.2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10737, - "EmployeeID": 2, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10801, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", "ShipVia": 2, - "Freight": 7.79, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 97.09, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 4, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 10738, - "EmployeeID": 2, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10970, + "EmployeeID": 9, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", "ShipVia": 1, - "Freight": 2.91, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 16.16, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 40, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", + "CustomerID": "FURIB", + "Company": "Furia Bacalhau e Frutos do Mar", + "ContactName": "Lino Rodriguez", + "ContactTitle": "Sales Manager", + "Address": "Jardim das rosas n. 32", + "City": "Lisboa", + "PostalCode": 1675, + "Country": "Portugal", + "Phone": "(1) 354-2534", + "Fax": "(1) 354-2535", "Orders": [ { - "OrderID": 10739, - "EmployeeID": 3, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-17T00:00:00", + "OrderID": 10328, + "EmployeeID": 4, + "OrderDate": "1996-10-14T00:00:00", + "RequiredDate": "1996-11-11T00:00:00", + "ShippedDate": "1996-10-17T00:00:00", "ShipVia": 3, - "Freight": 11.08, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 87.03, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 18, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 40, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, + "Discount": 0 + } + ] + }, { - "OrderID": 10740, + "OrderID": 10352, + "EmployeeID": 3, + "OrderDate": "1996-11-12T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-18T00:00:00", + "ShipVia": 3, + "Freight": 1.3, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 20, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10464, "EmployeeID": 4, - "OrderDate": "1997-11-13T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 81.88, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 89, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 16, "Discount": 0.2 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, - "Discount": 0.2 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10741, - "EmployeeID": 4, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10491, + "EmployeeID": 8, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-08T00:00:00", "ShipVia": 3, - "Freight": 10.96, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 27000, - "ShipCountry": "UK", + "Freight": 16.96, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 44, + "UnitPrice": 15.5, "Quantity": 15, - "Discount": 0.2 + "Discount": 0.16 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 17000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10742, - "EmployeeID": 3, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-12-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10551, + "EmployeeID": 4, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", "ShipVia": 3, - "Freight": 243.73, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 17000, - "ShipCountry": "Canada", + "Freight": 72.95, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 41000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10743, + "OrderID": 10604, "EmployeeID": 1, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", + "ShipVia": 1, + "Freight": 7.46, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 28, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10744, - "EmployeeID": 6, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", - "ShipVia": 1, - "Freight": 69.19, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 6, + "Discount": 0.1 + }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10745, - "EmployeeID": 9, - "OrderDate": "1997-11-18T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 1, - "Freight": 3.52, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10664, + "EmployeeID": 1, + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 3, + "Freight": 1.27, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 24, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 45, - "Discount": 0 - }, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10963, + "EmployeeID": 9, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 3, + "Freight": 2.7, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", + "CustomerID": "BONAP", + "Company": "Bon app", + "ContactName": "Laurence Lebihan", "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", "Orders": [ { - "OrderID": 10746, - "EmployeeID": 1, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 3, - "Freight": 31.43, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10331, + "EmployeeID": 9, + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-27T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", + "ShipVia": 1, + "Freight": 10.19, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 15, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10340, + "EmployeeID": 1, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 166.31, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 9, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, + "ProductID": 43, + "UnitPrice": 36.8, "Quantity": 40, - "Discount": 0 + "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10747, - "EmployeeID": 6, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-26T00:00:00", + "OrderID": 10362, + "EmployeeID": 3, + "OrderDate": "1996-11-25T00:00:00", + "RequiredDate": "1996-12-23T00:00:00", + "ShippedDate": "1996-11-28T00:00:00", "ShipVia": 1, - "Freight": 117.33, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 96.04, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 9, - "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10748, - "EmployeeID": 3, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", - "ShipVia": 1, - "Freight": 232.55, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 44, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 14000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10749, + "OrderID": 10470, "EmployeeID": 4, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 61.53, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 30222, - "ShipPostalCode": 50000, - "ShipCountry": "UK", + "Freight": 64.56, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 15, + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 6, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10750, - "EmployeeID": 9, - "OrderDate": "1997-11-21T00:00:00", - "RequiredDate": "1997-12-19T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", - "ShipVia": 1, - "Freight": 79.3, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10511, + "EmployeeID": 4, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 350.64, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, "Discount": 0.16 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 50, "Discount": 0.16 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10751, - "EmployeeID": 3, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-12-03T00:00:00", - "ShipVia": 3, - "Freight": 130.79, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10525, + "EmployeeID": 1, + "OrderDate": "1997-05-02T00:00:00", + "RequiredDate": "1997-05-30T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 2, + "Freight": 11.06, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 30, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 73, - "UnitPrice": 15, + "ProductID": 40, + "UnitPrice": 18.4, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 36000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ + }, { - "OrderID": 10752, + "OrderID": 10663, "EmployeeID": 2, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", - "ShipVia": 3, - "Freight": 1.39, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-09-24T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 113.15, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 3, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10753, + "OrderID": 10715, "EmployeeID": 3, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", + "OrderDate": "1997-10-23T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 1, - "Freight": 7.7, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "Freight": 63.2, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 4, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10754, - "EmployeeID": 6, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 3, - "Freight": 2.38, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10730, + "EmployeeID": 5, + "OrderDate": "1997-11-05T00:00:00", + "RequiredDate": "1997-12-03T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 1, + "Freight": 20.12, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10732, + "EmployeeID": 3, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", + "ShipVia": 1, + "Freight": 16.97, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { "OrderID": 10755, "EmployeeID": 4, @@ -23451,247 +18189,195 @@ "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10756, - "EmployeeID": 8, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-02T00:00:00", + "OrderID": 10827, + "EmployeeID": 1, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", "ShipVia": 2, - "Freight": 73.21, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 63.54, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10757, - "EmployeeID": 6, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 1, - "Freight": 8.19, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10871, + "EmployeeID": 9, + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 112.27, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 50, + "Discount": 0.06 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 7, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 30, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10876, + "EmployeeID": 7, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 60.42, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 21, "Discount": 0 }, { "ProductID": 64, "UnitPrice": 33.25, - "Quantity": 24, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10758, - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-04T00:00:00", - "ShipVia": 3, - "Freight": 138.17, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10932, + "EmployeeID": 8, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", + "ShipVia": 1, + "Freight": 134.64, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 60, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 14, + "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 16, "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10759, - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", + "OrderID": 10940, + "EmployeeID": 8, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", "ShipVia": 3, - "Freight": 11.99, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 19.77, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10760, + "OrderID": 11076, "EmployeeID": 4, - "OrderDate": "1997-12-01T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1997-12-10T00:00:00", - "ShipVia": 1, - "Freight": 155.64, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-06-08T00:00:00", + "ShipVia": 2, + "Freight": 38.28, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 12, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, "Discount": 0.25 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 40, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, "Discount": 0.25 } ] @@ -23699,4607 +18385,398 @@ ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "MEREP", + "Company": "Mère Paillarde", + "ContactName": "Jean Fresnière", + "ContactTitle": "Marketing Assistant", + "Address": "43 rue St. Laurent", + "City": "Montréal", + "Region": "Québec", + "PostalCode": 20000, + "Country": "Canada", + "Phone": "(514) 555-8054", + "Fax": "(514) 555-8055", "Orders": [ { - "OrderID": 10761, - "EmployeeID": 5, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", + "OrderID": 10332, + "EmployeeID": 3, + "OrderDate": "1996-10-17T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", "ShipVia": 2, - "Freight": 18.66, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 52.84, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 28000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 18, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 16, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 13000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10762, - "EmployeeID": 3, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 1, - "Freight": 328.74, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 44000, - "ShipCountry": "Sweden", + "OrderID": 10339, + "EmployeeID": 2, + "OrderDate": "1996-10-28T00:00:00", + "RequiredDate": "1996-11-25T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", + "ShipVia": 2, + "Freight": 15.66, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 16, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 28, "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10763, - "EmployeeID": 3, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", - "ShipVia": 3, - "Freight": 37.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "OrderID": 10376, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 2, + "Freight": 20.39, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 39000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 21, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "Quantity": 42, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10424, + "EmployeeID": 7, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-20T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 2, + "Freight": 370.61, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 22000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 6, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 49, + "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10764, + "OrderID": 10439, "EmployeeID": 6, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", + "OrderDate": "1997-02-07T00:00:00", + "RequiredDate": "1997-03-07T00:00:00", + "ShippedDate": "1997-02-10T00:00:00", "ShipVia": 3, - "Freight": 145.45, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 130, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10765, - "EmployeeID": 3, - "OrderDate": "1997-12-04T00:00:00", - "RequiredDate": "1998-01-01T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 3, - "Freight": 42.74, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 80, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10766, - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 1, - "Freight": 157.55, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 28000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10767, - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 3, - "Freight": 1.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 44000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 22000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10768, - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 2, - "Freight": 146.32, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10769, - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 65.06, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10770, - "EmployeeID": 8, - "OrderDate": "1997-12-09T00:00:00", - "RequiredDate": "1998-01-06T00:00:00", - "ShippedDate": "1997-12-17T00:00:00", - "ShipVia": 3, - "Freight": 5.32, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10771, - "EmployeeID": 9, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 2, - "Freight": 11.19, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10772, - "EmployeeID": 3, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 2, - "Freight": 91.28, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10773, - "EmployeeID": 1, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1998-01-08T00:00:00", - "ShippedDate": "1997-12-16T00:00:00", - "ShipVia": 3, - "Freight": 96.43, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 33, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 70, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 7, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10774, - "EmployeeID": 4, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 48.2, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 2, - "Discount": 0.25 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "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", - "Orders": [ - { - "OrderID": 10775, - "EmployeeID": 7, - "OrderDate": "1997-12-12T00:00:00", - "RequiredDate": "1998-01-09T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 20.25, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10776, - "EmployeeID": 1, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1998-01-12T00:00:00", - "ShippedDate": "1997-12-18T00:00:00", - "ShipVia": 3, - "Freight": 351.53, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 27, - "Discount": 0.06 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 120, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 10777, - "EmployeeID": 7, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 2, - "Freight": 3.01, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 11000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10778, - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 1, - "Freight": 6.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 39000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ - { - "OrderID": 10779, - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 2, - "Freight": 58.13, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0 - } - ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10780, - "EmployeeID": 2, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-25T00:00:00", - "ShipVia": 1, - "Freight": 42.13, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10781, - "EmployeeID": 2, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 3, - "Freight": 73.16, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0.2 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10782, - "EmployeeID": 9, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 1.1, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 1, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10783, - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 2, - "Freight": 124.98, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10784, - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 70.09, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.16 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "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", - "Orders": [ - { - "OrderID": 10785, - "EmployeeID": 1, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 3, - "Freight": 1.51, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10786, - "EmployeeID": 8, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-16T00:00:00", - "ShippedDate": "1997-12-23T00:00:00", - "ShipVia": 1, - "Freight": 110.87, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 42, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10787, - "EmployeeID": 2, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 249.93, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10788, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 42.7, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ - { - "OrderID": 10789, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 2, - "Freight": 100.6, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 10790, - "EmployeeID": 6, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 28.23, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 3, - "Discount": 0.16 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.16 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10791, - "EmployeeID": 6, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-01T00:00:00", - "ShipVia": 2, - "Freight": 16.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10792, - "EmployeeID": 1, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 3, - "Freight": 23.79, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 19000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10793, - "EmployeeID": 3, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", - "ShipVia": 3, - "Freight": 4.52, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 32000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ - { - "OrderID": 10794, - "EmployeeID": 6, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 1, - "Freight": 21.49, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10795, - "EmployeeID": 8, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-20T00:00:00", - "ShipVia": 2, - "Freight": 126.66, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 65, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 35, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10796, - "EmployeeID": 3, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 1, - "Freight": 26.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 24, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ - { - "OrderID": 10797, - "EmployeeID": 7, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 2, - "Freight": 33.35, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10798, - "EmployeeID": 2, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 1, - "Freight": 2.33, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60634, - "ShipPostalCode": 40000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10799, - "EmployeeID": 9, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 3, - "Freight": 30.76, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10800, - "EmployeeID": 1, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 3, - "Freight": 137.44, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 41000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 7, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ - { - "OrderID": 10801, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 2, - "Freight": 97.09, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ - { - "OrderID": 10802, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 2, - "Freight": 257.26, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 5, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ - { - "OrderID": 10803, - "EmployeeID": 4, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-06T00:00:00", - "ShipVia": 1, - "Freight": 55.23, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 24, - "Discount": 0.06 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10804, - "EmployeeID": 6, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 2, - "Freight": 27.33, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 38000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 36, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 4, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ - { - "OrderID": 10805, - "EmployeeID": 2, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 3, - "Freight": 237.34, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10806, - "EmployeeID": 3, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 2, - "Freight": 22.11, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ - { - "OrderID": 10807, - "EmployeeID": 4, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 1, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ - { - "OrderID": 10808, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 3, - "Freight": 45.53, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ - { - "OrderID": 10809, - "EmployeeID": 7, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 1, - "Freight": 4.87, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 28000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ - { - "OrderID": 10810, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 3, - "Freight": 4.33, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 48000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10811, - "EmployeeID": 8, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", - "ShipVia": 1, - "Freight": 31.22, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10812, - "EmployeeID": 5, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 1, - "Freight": 59.78, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.1 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ - { - "OrderID": 10813, - "EmployeeID": 1, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 1, - "Freight": 47.38, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0.2 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10814, - "EmployeeID": 3, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 130.94, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 8, - "Discount": 0.16 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10815, - "EmployeeID": 2, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 14.62, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ - { - "OrderID": 10816, - "EmployeeID": 4, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-02-03T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 2, - "Freight": 719.78, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10817, - "EmployeeID": 3, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 306.07, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 25, - "Discount": 0.16 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10818, - "EmployeeID": 7, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 3, - "Freight": 65.48, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10819, - "EmployeeID": 2, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 19.76, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10820, - "EmployeeID": 3, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 37.52, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ - { - "OrderID": 10821, - "EmployeeID": 1, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-15T00:00:00", - "ShipVia": 1, - "Freight": 36.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "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", - "Orders": [ - { - "OrderID": 10822, - "EmployeeID": 6, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 7, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10823, - "EmployeeID": 5, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 163.97, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 29000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10824, - "EmployeeID": 8, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 1.23, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 39000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ - { - "OrderID": 10825, - "EmployeeID": 1, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 1, - "Freight": 79.25, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10826, - "EmployeeID": 6, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", - "ShipVia": 1, - "Freight": 7.09, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10827, - "EmployeeID": 1, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", - "ShipVia": 2, - "Freight": 63.54, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ - { - "OrderID": 10828, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 1, - "Freight": 90.85, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10829, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-10T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 1, - "Freight": 154.72, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 50889, - "ShipPostalCode": 16000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10830, - "EmployeeID": 4, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 2, - "Freight": 81.83, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ - { - "OrderID": 10831, - "EmployeeID": 3, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 2, - "Freight": 72.19, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10832, - "EmployeeID": 2, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 43.26, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 3, - "Discount": 0.2 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0.2 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10833, - "EmployeeID": 6, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 2, - "Freight": 71.49, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 9, - "Discount": 0.1 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 9, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10834, - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 3, - "Freight": 29.78, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 8, - "Discount": 0.06 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ - { - "OrderID": 10835, - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 3, - "Freight": 69.53, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10836, - "EmployeeID": 7, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 1, - "Freight": 411.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 52, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 47000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10837, - "EmployeeID": 9, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 13.32, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 17000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10838, - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 59.28, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10839, - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-22T00:00:00", - "ShipVia": 3, - "Freight": 35.43, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10840, - "EmployeeID": 4, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", - "ShipVia": 2, - "Freight": 2.71, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 6, - "Discount": 0.2 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 22000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10841, - "EmployeeID": 5, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 2, - "Freight": 424.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 27000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10842, - "EmployeeID": 1, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 3, - "Freight": 54.42, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10843, - "EmployeeID": 4, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 9.26, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 4, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10844, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 25.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10845, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 212.98, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.1 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 42, - "Discount": 0.1 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 60, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 48, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 15000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10846, - "EmployeeID": 2, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 56.46, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 15000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10847, - "EmployeeID": 4, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 3, - "Freight": 487.57, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.2 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.2 - }, - { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 60, - "Discount": 0.2 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 36, - "Discount": 0.2 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 45, - "Discount": 0.2 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 55, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 43000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ - { - "OrderID": 10848, - "EmployeeID": 7, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 2, - "Freight": 38.24, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 36000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10849, - "EmployeeID": 9, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 49, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 18, - "Discount": 0.16 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10850, - "EmployeeID": 1, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 49.19, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 4, - "Discount": 0.16 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ - { - "OrderID": 10851, - "EmployeeID": 5, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-23T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", - "ShipVia": 1, - "Freight": 160.55, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 4.07, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0.06 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.06 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10852, - "EmployeeID": 8, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 174.05, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 39, + "ProductID": 64, + "UnitPrice": 26.6, "Quantity": 6, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 50, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10853, - "EmployeeID": 9, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", - "ShipVia": 2, - "Freight": 53.83, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10505, + "EmployeeID": 3, + "OrderDate": "1997-04-14T00:00:00", + "RequiredDate": "1997-05-12T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 7.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 33000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10854, - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-05T00:00:00", + "OrderID": 10565, + "EmployeeID": 8, + "OrderDate": "1997-06-11T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", "ShipVia": 2, - "Freight": 100.22, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 7.15, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 21000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 100, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 18, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10855, + "OrderID": 10570, "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 1, - "Freight": 170.97, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 14, - "Discount": 0 + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-19T00:00:00", + "ShipVia": 3, + "Freight": 188.99, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0.06 }, { "ProductID": 56, "UnitPrice": 38, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "Quantity": 60, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10856, - "EmployeeID": 3, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 2, - "Freight": 58.43, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10590, + "EmployeeID": 4, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 3, + "Freight": 44.77, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 20, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 60, + "Discount": 0.06 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 48000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10857, - "EmployeeID": 8, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", + "OrderID": 10605, + "EmployeeID": 1, + "OrderDate": "1997-07-21T00:00:00", + "RequiredDate": "1997-08-18T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", "ShipVia": 2, - "Freight": 188.85, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", + "Freight": 379.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.25 + "Discount": 0.06 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ - { - "OrderID": 10858, - "EmployeeID": 2, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", - "ShipVia": 1, - "Freight": 52.51, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 5, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 10, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10859, + "OrderID": 10618, "EmployeeID": 1, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", - "ShipVia": 2, - "Freight": 76.1, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderDate": "1997-08-01T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 1, + "Freight": 154.68, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 30000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, { - "OrderID": 10860, - "EmployeeID": 3, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 3, - "Freight": 19.26, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10724, + "EmployeeID": 8, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 2, + "Freight": 57.75, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 20000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] @@ -28307,2480 +18784,2081 @@ ] }, { - "CustomerID": "WHITC", - "Company": "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": "PRINI", + "Company": "Princesa Isabel Vinhos", + "ContactName": "Isabel de Castro", + "ContactTitle": "Sales Representative", + "Address": "Estrada da saúde n. 58", + "City": "Lisboa", + "PostalCode": 1756, + "Country": "Portugal", + "Phone": "(1) 356-5634", "Orders": [ { - "OrderID": 10861, - "EmployeeID": 4, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-02-27T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", + "OrderID": 10336, + "EmployeeID": 7, + "OrderDate": "1996-10-23T00:00:00", + "RequiredDate": "1996-11-20T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", "ShipVia": 2, - "Freight": 14.93, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 15.51, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 42, - "Discount": 0 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, - "Discount": 0 - }, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 18, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10397, + "EmployeeID": 5, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-24T00:00:00", + "ShippedDate": "1997-01-02T00:00:00", + "ShipVia": 1, + "Freight": 60.26, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ { "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 35, - "Discount": 0 - }, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10433, + "EmployeeID": 3, + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 73.83, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10862, - "EmployeeID": 8, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderID": 10477, + "EmployeeID": 5, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", "ShipVia": 2, - "Freight": 53.23, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 13.02, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 25, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10863, - "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", + "OrderID": 11007, + "EmployeeID": 8, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 30.26, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 202.24, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 14, + "Discount": 0 } ] } - ] + ], + "Fax": "(1) 356-5634" }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 31000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "CustomerID": "SIMOB", + "Company": "Simons bistro", + "ContactName": "Jytte Petersen", + "ContactTitle": "Owner", + "Address": "Vinbæltet 34", + "City": "Kobenhavn", + "PostalCode": 1734, + "Country": "Denmark", + "Phone": "31 12 34 56", + "Fax": "31 13 35 57", "Orders": [ { - "OrderID": 10864, + "OrderID": 10341, + "EmployeeID": 7, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", + "ShipVia": 3, + "Freight": 26.78, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10417, "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 2, - "Freight": 3.04, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 37000, - "ShipCountry": "UK", + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-28T00:00:00", + "ShipVia": 3, + "Freight": 70.29, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 2, + "Discount": 0.25 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 36, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10865, + "OrderID": 10556, "EmployeeID": 2, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderDate": "1997-06-03T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", "ShipVia": 1, - "Freight": 348.14, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 9.8, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10642, + "EmployeeID": 7, + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-09-05T00:00:00", + "ShipVia": 3, + "Freight": 41.89, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 48000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10866, - "EmployeeID": 5, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-03T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderID": 10669, + "EmployeeID": 2, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", "ShipVia": 1, - "Freight": 109.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 37000, - "ShipCountry": "Sweden", + "Freight": 24.39, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 2, + "ProductID": 36, "UnitPrice": 19, - "Quantity": 21, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10802, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 2, + "Freight": 257.26, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, "Discount": 0.25 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 6, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 60, "Discount": 0.25 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 40, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 5, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10867, - "EmployeeID": 6, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 1, - "Freight": 1.93, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 11074, + "EmployeeID": 7, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-06-03T00:00:00", + "ShipVia": 2, + "Freight": 18.44, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", + "CustomerID": "FAMIA", + "Company": "Familia Arquibaldo", + "ContactName": "Aria Cruz", "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", + "Address": "Rua Orós, 92", "City": "Sao Paulo", "Region": "SP", - "PostalCode": 5487, + "PostalCode": 5442, "Country": "Brazil", - "Phone": "(11) 555-1189", + "Phone": "(11) 555-9857", "Orders": [ { - "OrderID": 10868, - "EmployeeID": 7, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 2, - "Freight": 191.27, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", + "OrderID": 10347, + "EmployeeID": 4, + "OrderDate": "1996-11-06T00:00:00", + "RequiredDate": "1996-12-04T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 3.1, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", "ShipCity": "Sao Paulo", "ShipRegion": "SP", - "ShipPostalCode": 5487, + "ShipPostalCode": 5442, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 42, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 29000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10869, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 1, - "Freight": 143.28, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 48000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 11, - "UnitPrice": 21, + "ProductID": 25, + "UnitPrice": 11.2, "Quantity": 10, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, + "ProductID": 39, + "UnitPrice": 14.4, "Quantity": 50, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10870, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", - "ShipVia": 3, - "Freight": 12.04, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 2, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10871, + "OrderID": 10386, "EmployeeID": 9, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 2, - "Freight": 112.27, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-25T00:00:00", + "ShipVia": 3, + "Freight": 13.99, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10414, + "EmployeeID": 2, + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-17T00:00:00", + "ShipVia": 3, + "Freight": 21.48, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, "Discount": 0.06 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10872, - "EmployeeID": 5, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", + "OrderID": 10512, + "EmployeeID": 7, + "OrderDate": "1997-04-21T00:00:00", + "RequiredDate": "1997-05-19T00:00:00", + "ShippedDate": "1997-04-24T00:00:00", "ShipVia": 2, - "Freight": 175.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 3.53, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 10, - "Discount": 0.06 + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 12, + "Discount": 0.16 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10873, - "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", + "OrderID": 10581, + "EmployeeID": 3, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-02T00:00:00", "ShipVia": 1, - "Freight": 0.82, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 3.01, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10874, + "OrderID": 10650, "EmployeeID": 5, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 2, - "Freight": 19.58, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderDate": "1997-08-29T00:00:00", + "RequiredDate": "1997-09-26T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 176.81, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 34000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10875, + "OrderID": 10725, "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 2, - "Freight": 32.37, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 18000, - "ShipCountry": "Sweden", + "OrderDate": "1997-10-31T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 3, + "Freight": 10.83, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 25, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 21, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 15, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] } - ] + ], + "Fax": "(11) 555-9857" }, { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, + "CustomerID": "LAMAI", + "Company": "La maison de Asie", + "ContactName": "Annette Roulet", + "ContactTitle": "Sales Manager", + "Address": "1 rue Alsace-Lorraine", + "City": "Toulouse", + "PostalCode": 31000, "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", + "Phone": "61.77.61.10", + "Fax": "61.77.61.11", "Orders": [ { - "OrderID": 10876, - "EmployeeID": 7, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 3, - "Freight": 60.42, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, + "OrderID": 10350, + "EmployeeID": 6, + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 64.19, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 18, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10877, - "EmployeeID": 1, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", + "OrderID": 10358, + "EmployeeID": 5, + "OrderDate": "1996-11-20T00:00:00", + "RequiredDate": "1996-12-18T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", "ShipVia": 1, - "Freight": 38.06, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 19.64, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10878, - "EmployeeID": 4, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderID": 10371, + "EmployeeID": 1, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", "ShipVia": 1, - "Freight": 46.69, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 0.45, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 6, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10879, + "OrderID": 10413, "EmployeeID": 3, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 3, - "Freight": 8.5, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 2, + "Freight": 95.66, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 14, + "Discount": 0 + } + ] + }, + { + "OrderID": 10425, + "EmployeeID": 6, + "OrderDate": "1997-01-24T00:00:00", + "RequiredDate": "1997-02-21T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 2, + "Freight": 7.93, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, + "ProductID": 55, + "UnitPrice": 19.2, "Quantity": 10, - "Discount": 0 + "Discount": 0.25 }, { "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 43000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10880, - "EmployeeID": 7, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 88.01, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 15000, - "ShipCountry": "Sweden", + "OrderID": 10454, + "EmployeeID": 4, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-25T00:00:00", + "ShipVia": 3, + "Freight": 2.74, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 30, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 10, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10881, + "OrderID": 10493, "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 2.84, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 10.64, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 73, - "UnitPrice": 15, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, "Quantity": 10, - "Discount": 0 + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10882, - "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 3, - "Freight": 23.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10500, + "EmployeeID": 6, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-17T00:00:00", + "ShipVia": 1, + "Freight": 42.68, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 25, - "Discount": 0 + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 20, - "Discount": 0.16 - }, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10610, + "EmployeeID": 8, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 1, + "Freight": 26.78, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 32, - "Discount": 0.16 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10883, + "OrderID": 10631, "EmployeeID": 8, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 3, - "Freight": 0.53, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-15T00:00:00", + "ShipVia": 1, + "Freight": 0.87, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 8, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10884, - "EmployeeID": 4, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", - "ShipVia": 2, - "Freight": 90.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10787, + "EmployeeID": 2, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 249.93, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 21, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, "Discount": 0.06 + } + ] + }, + { + "OrderID": 10832, + "EmployeeID": 2, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 43.26, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0.2 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 3, + "Discount": 0 } ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 10000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10885, - "EmployeeID": 6, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", + "OrderID": 10923, + "EmployeeID": 7, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 3, - "Freight": 5.64, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 40000, - "ShipCountry": "Belgium", + "Freight": 68.26, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 - }, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 11051, + "EmployeeID": 7, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-09-25T00:00:00", + "ShipVia": 3, + "Freight": 2.79, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 25, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", + "CustomerID": "PICCO", + "Company": "Piccolo und mehr", + "ContactName": "Georg Pipps", + "ContactTitle": "Sales Manager", + "Address": "Geislweg 14", + "City": "Salzburg", + "PostalCode": 5020, + "Country": "Austria", + "Phone": "6562-9722", + "Fax": "6562-9723", "Orders": [ { - "OrderID": 10886, - "EmployeeID": 1, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 1, - "Freight": 4.99, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10353, + "EmployeeID": 7, + "OrderDate": "1996-11-13T00:00:00", + "RequiredDate": "1996-12-11T00:00:00", + "ShippedDate": "1996-11-25T00:00:00", + "ShipVia": 3, + "Freight": 360.63, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 40, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10887, - "EmployeeID": 8, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", + "OrderID": 10392, + "EmployeeID": 2, + "OrderDate": "1996-12-24T00:00:00", + "RequiredDate": "1997-01-21T00:00:00", + "ShippedDate": "1997-01-01T00:00:00", "ShipVia": 3, - "Freight": 1.25, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "Freight": 122.46, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10888, - "EmployeeID": 1, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", + "OrderID": 10427, + "EmployeeID": 4, + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", "ShipVia": 2, - "Freight": 51.87, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 31.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10889, - "EmployeeID": 9, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 3, - "Freight": 280.61, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10489, + "EmployeeID": 6, + "OrderDate": "1997-03-28T00:00:00", + "RequiredDate": "1997-04-25T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", + "ShipVia": 2, + "Freight": 5.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10890, - "EmployeeID": 7, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 32.76, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10530, + "EmployeeID": 3, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", + "ShipVia": 2, + "Freight": 339.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 17, "UnitPrice": 39, - "Quantity": 15, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10891, + "OrderID": 10597, "EmployeeID": 7, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 20.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", + "ShipVia": 3, + "Freight": 35.12, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10892, - "EmployeeID": 4, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 120.27, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 45000, - "ShipCountry": "Belgium", + "OrderID": 10686, + "EmployeeID": 2, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-08T00:00:00", + "ShipVia": 1, + "Freight": 96.5, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10893, - "EmployeeID": 9, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 2, - "Freight": 77.78, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10747, + "EmployeeID": 6, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-26T00:00:00", + "ShipVia": 1, + "Freight": 117.33, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 24, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 35, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10844, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", + "ShipVia": 2, + "Freight": 25.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10894, - "EmployeeID": 1, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 1, - "Freight": 116.13, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11053, + "EmployeeID": 2, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 28, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 120, - "Discount": 0.06 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 25, + "Discount": 0.2 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "AROUT", + "Company": "Around the Horn", + "ContactName": "Thomas Hardy", + "ContactTitle": "Sales Representative", + "Address": "120 Hanover Sq.", + "City": "London", + "PostalCode": 12000, + "Country": "UK", + "Phone": "(171) 555-7788", + "Fax": "(171) 555-6750", "Orders": [ { - "OrderID": 10895, - "EmployeeID": 3, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 1, - "Freight": 162.75, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10355, + "EmployeeID": 6, + "OrderDate": "1996-11-15T00:00:00", + "RequiredDate": "1996-12-13T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 41.95, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 31000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 110, + "UnitPrice": 3.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 45, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10383, + "EmployeeID": 8, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-18T00:00:00", + "ShipVia": 3, + "Freight": 34.24, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 19000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 91, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 100, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 11000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10896, - "EmployeeID": 7, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 32.45, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 28000, - "ShipCountry": "Belgium", + "OrderID": 10453, + "EmployeeID": 1, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", + "ShipVia": 2, + "Freight": 25.36, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 48, + "UnitPrice": 10.2, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 16, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10897, - "EmployeeID": 3, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-25T00:00:00", + "OrderID": 10558, + "EmployeeID": 1, + "OrderDate": "1997-06-04T00:00:00", + "RequiredDate": "1997-07-02T00:00:00", + "ShippedDate": "1997-06-10T00:00:00", "ShipVia": 2, - "Freight": 603.54, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 72.97, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 35000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 80, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 36, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10898, + "OrderID": 10707, "EmployeeID": 4, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 1.27, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 3, + "Freight": 21.74, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10899, - "EmployeeID": 5, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", + "OrderID": 10741, + "EmployeeID": 4, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 1.21, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 10.96, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 27000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10900, + "OrderID": 10743, "EmployeeID": 1, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", "ShipVia": 2, - "Freight": 1.66, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 28, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10901, - "EmployeeID": 4, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", - "ShipVia": 1, - "Freight": 62.09, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10768, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 2, + "Freight": 146.32, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 }, { "ProductID": 71, "UnitPrice": 21.5, - "Quantity": 30, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 39000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10902, - "EmployeeID": 1, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 1, - "Freight": 44.15, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 11000, - "ShipCountry": "Sweden", + "OrderID": 10793, + "EmployeeID": 3, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", + "ShipVia": 3, + "Freight": 4.52, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10903, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 36.71, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10864, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 2, + "Freight": 3.04, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10904, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 162.95, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10920, + "EmployeeID": 4, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", + "ShipVia": 2, + "Freight": 29.61, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 35000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 35, + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10905, + "OrderID": 10953, "EmployeeID": 9, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-25T00:00:00", "ShipVia": 2, - "Freight": 13.72, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10906, - "EmployeeID": 4, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 3, - "Freight": 26.29, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 11016, + "EmployeeID": 9, + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 2, + "Freight": 33.8, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 20000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 16, + "Discount": 0 } ] } ] }, { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", + "CustomerID": "SEVES", + "Company": "Seven Seas Imports", + "ContactName": "Hari Kumar", + "ContactTitle": "Sales Manager", + "Address": "90 Wadhurst Rd.", + "City": "London", + "PostalCode": 23000, + "Country": "UK", + "Phone": "(171) 555-1717", + "Fax": "(171) 555-5646", "Orders": [ { - "OrderID": 10907, - "EmployeeID": 6, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-25T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", + "OrderID": 10359, + "EmployeeID": 5, + "OrderDate": "1996-11-21T00:00:00", + "RequiredDate": "1996-12-19T00:00:00", + "ShippedDate": "1996-11-26T00:00:00", "ShipVia": 3, - "Freight": 9.19, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 288.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 43000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 14, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 56, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 70, + "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10908, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 32.96, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10377, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 22.21, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 20, - "Discount": 0.06 + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 14, - "Discount": 0.06 + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10909, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-10T00:00:00", - "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10388, + "EmployeeID": 2, + "OrderDate": "1996-12-19T00:00:00", + "RequiredDate": "1997-01-16T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", + "ShipVia": 1, + "Freight": 34.86, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 43000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 12, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 7.6, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 5, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10910, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 38.11, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10472, + "EmployeeID": 8, + "OrderDate": "1997-03-12T00:00:00", + "RequiredDate": "1997-04-09T00:00:00", + "ShippedDate": "1997-03-19T00:00:00", + "ShipVia": 1, + "Freight": 4.2, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 21000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 10, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 80, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10911, - "EmployeeID": 3, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", - "ShipVia": 1, - "Freight": 38.19, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10523, + "EmployeeID": 7, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 2, + "Freight": 77.63, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 16000, + "ShipCountry": "UK", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, { "ProductID": 17, "UnitPrice": 39, - "Quantity": 12, - "Discount": 0 + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 67, - "UnitPrice": 14, + "ProductID": 20, + "UnitPrice": 81, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 6, + "Discount": 0.1 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10912, - "EmployeeID": 2, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10547, + "EmployeeID": 3, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", "ShipVia": 2, - "Freight": 580.91, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 178.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 60, - "Discount": 0.25 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10913, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 1, - "Freight": 33.05, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10800, + "EmployeeID": 1, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 3, + "Freight": 137.44, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 41000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 7, + "Discount": 0.1 } ] }, { - "OrderID": 10914, + "OrderID": 10804, "EmployeeID": 6, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 1, - "Freight": 21.19, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 25, - "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10915, - "EmployeeID": 2, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 2, - "Freight": 3.51, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 27.33, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 38000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 10, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 4, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10916, - "EmployeeID": 1, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 2, - "Freight": 63.77, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10869, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 143.28, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 48000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 6, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 6, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 20, "Discount": 0 } @@ -30789,172 +20867,169 @@ ] }, { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", + "CustomerID": "DRACD", + "Company": "Drachenblut Delikatessen", + "ContactName": "Sven Ottlieb", + "ContactTitle": "Order Administrator", + "Address": "Walserweg 21", + "City": "Aachen", + "PostalCode": 52066, + "Country": "Germany", + "Phone": "0241-039123", + "Fax": "0241-059428", "Orders": [ { - "OrderID": 10917, + "OrderID": 10363, "EmployeeID": 4, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 2, - "Freight": 8.29, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1996-12-24T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", + "ShipVia": 3, + "Freight": 30.54, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 1, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 32000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10918, + "OrderID": 10391, "EmployeeID": 3, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-31T00:00:00", "ShipVia": 3, - "Freight": 48.83, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 45000, - "ShipCountry": "Canada", + "Freight": 5.45, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 18, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10919, - "EmployeeID": 2, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", + "OrderID": 10797, + "EmployeeID": 7, + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 2, - "Freight": 19.8, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 33.35, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 24, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10825, + "EmployeeID": 1, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 1, + "Freight": 79.25, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 24, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 53, + "UnitPrice": 32.8, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 41000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10920, - "EmployeeID": 4, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", + "OrderID": 11036, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 3, + "Freight": 149.47, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 11067, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", "ShipVia": 2, - "Freight": 29.61, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 35000, - "ShipCountry": "UK", + "Freight": 7.98, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 24, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, "Discount": 0 } ] @@ -30962,327 +21037,267 @@ ] }, { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", + "CustomerID": "EASTC", + "Company": "Eastern Connection", + "ContactName": "Ann Devon", + "ContactTitle": "Sales Agent", + "Address": "35 King George", + "City": "London", + "PostalCode": 46000, + "Country": "UK", + "Phone": "(171) 555-0297", + "Fax": "(171) 555-3373", "Orders": [ { - "OrderID": 10921, + "OrderID": 10364, "EmployeeID": 1, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", "ShipVia": 1, - "Freight": 176.48, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 71.97, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 10000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10922, - "EmployeeID": 5, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", + "OrderID": 10400, + "EmployeeID": 1, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", "ShipVia": 3, - "Freight": 62.74, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 83.93, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 25000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 15, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 35, + "UnitPrice": 14.4, "Quantity": 35, "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10923, + "OrderID": 10532, "EmployeeID": 7, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderDate": "1997-05-09T00:00:00", + "RequiredDate": "1997-06-06T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", "ShipVia": 3, - "Freight": 68.26, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 74.46, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 23000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, + "ProductID": 66, + "UnitPrice": 17, "Quantity": 24, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 28000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10924, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 2, - "Freight": 151.52, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 35000, - "ShipCountry": "Sweden", + "OrderID": 10726, + "EmployeeID": 4, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 16.56, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 24000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 6, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10925, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderID": 10987, + "EmployeeID": 8, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", "ShipVia": 1, - "Freight": 2.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 185.48, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 12, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 20, + "Discount": 0 + } + ] + }, { - "OrderID": 10926, + "OrderID": 11024, "EmployeeID": 4, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 3, - "Freight": 39.92, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 74.36, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 23000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 2, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ + }, { - "OrderID": 10927, - "EmployeeID": 4, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 19.79, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "OrderID": 11047, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 46.62, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 14000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11056, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 2, + "Freight": 278.96, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 17000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 } ] @@ -31290,837 +21305,693 @@ ] }, { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", + "CustomerID": "ANTON", + "Company": "Antonio Moreno Taquería", + "ContactName": "Antonio Moreno", + "ContactTitle": "Owner", + "Address": "Mataderos 2312", + "City": "México D.F.", + "PostalCode": 5023, + "Country": "Mexico", + "Phone": "(5) 555-3932", "Orders": [ { - "OrderID": 10928, - "EmployeeID": 1, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 10365, + "EmployeeID": 3, + "OrderDate": "1996-11-27T00:00:00", + "RequiredDate": "1996-12-25T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 22, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 24, "Discount": 0 + } + ] + }, + { + "OrderID": 10507, + "EmployeeID": 7, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-04-22T00:00:00", + "ShipVia": 1, + "Freight": 47.45, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0 + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10929, - "EmployeeID": 6, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", + "OrderID": 10535, + "EmployeeID": 4, + "OrderDate": "1997-05-13T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-21T00:00:00", "ShipVia": 1, - "Freight": 33.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 15.64, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 49, - "Discount": 0 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 5, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 14000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10930, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10573, + "EmployeeID": 7, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-20T00:00:00", "ShipVia": 3, - "Freight": 15.55, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 17000, - "ShipCountry": "Belgium", + "Freight": 84.84, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 36, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 25, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 53, + "UnitPrice": 32.8, "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10931, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 2, - "Freight": 13.6, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10677, + "EmployeeID": 1, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 3, + "Freight": 4.03, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 42, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 30, "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10932, - "EmployeeID": 8, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", - "ShipVia": 1, - "Freight": 134.64, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10682, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 2, + "Freight": 36.13, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, + "ProductID": 33, + "UnitPrice": 2.5, "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 14, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 16, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 4, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.1 + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 27000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10933, - "EmployeeID": 6, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 3, - "Freight": 54.15, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40624, - "ShipPostalCode": 44000, - "ShipCountry": "UK", + "OrderID": 10856, + "EmployeeID": 3, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 58.43, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 2, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] } ], - "Fax": "(198) 555-8888" + "Fax": "(5) 555-3932" }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "CustomerID": "GALED", + "Company": "Galería del gastrónomo", + "ContactName": "Eduardo Saavedra", + "ContactTitle": "Marketing Manager", + "Address": "Rambla de Cataluña, 23", + "City": "Barcelona", + "PostalCode": 8022, + "Country": "Spain", + "Phone": "(93) 203 4560", + "Fax": "(93) 203 4561", "Orders": [ { - "OrderID": 10934, - "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", - "ShipVia": 3, - "Freight": 32.01, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10366, + "EmployeeID": 8, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-30T00:00:00", + "ShipVia": 2, + "Freight": 10.14, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10935, + "OrderID": 10426, "EmployeeID": 4, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 47.59, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-02-06T00:00:00", + "ShipVia": 1, + "Freight": 18.69, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 8, - "Discount": 0.25 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10936, + "OrderID": 10568, "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 2, - "Freight": 33.68, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1997-06-13T00:00:00", + "RequiredDate": "1997-07-11T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 3, + "Freight": 6.54, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 5, + "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10937, - "EmployeeID": 7, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderID": 10887, + "EmployeeID": 8, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", "ShipVia": 3, - "Freight": 31.51, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 1.25, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 34, + "ProductID": 25, "UnitPrice": 14, - "Quantity": 20, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10938, - "EmployeeID": 3, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 31.89, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10928, + "EmployeeID": 1, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 1.36, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 49, - "Discount": 0.25 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "VAFFE", + "Company": "Vaffeljernet", + "ContactName": "Palle Ibsen", + "ContactTitle": "Sales Manager", + "Address": "Smagsloget 45", + "City": "Århus", + "PostalCode": 8200, + "Country": "Denmark", + "Phone": "86 21 32 43", + "Fax": "86 22 33 44", "Orders": [ { - "OrderID": 10939, - "EmployeeID": 2, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 2, - "Freight": 76.33, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10367, + "EmployeeID": 7, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1996-12-26T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 13.55, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10940, + "OrderID": 10399, "EmployeeID": 8, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderDate": "1996-12-31T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", "ShipVia": 3, - "Freight": 19.77, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 27.36, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 8, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10941, - "EmployeeID": 7, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 400.81, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10465, + "EmployeeID": 1, + "OrderDate": "1997-03-05T00:00:00", + "RequiredDate": "1997-04-02T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 3, + "Freight": 145.04, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 44, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 45, + "UnitPrice": 7.6, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.1 + }, + { + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10591, + "EmployeeID": 1, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-07-21T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 55.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 80, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 50, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10942, - "EmployeeID": 9, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 17.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10602, + "EmployeeID": 8, + "OrderDate": "1997-07-17T00:00:00", + "RequiredDate": "1997-08-14T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", + "ShipVia": 2, + "Freight": 2.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 28, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 5, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 15000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10943, + "OrderID": 10688, "EmployeeID": 4, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", "ShipVia": 2, - "Freight": 2.17, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", + "Freight": 299.09, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 15, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 21, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 15, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 14, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 44000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10944, + "OrderID": 10744, "EmployeeID": 6, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 3, - "Freight": 52.92, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 69.19, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10769, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 1, + "Freight": 65.06, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10945, - "EmployeeID": 4, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-04-09T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10921, + "EmployeeID": 1, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 1, - "Freight": 10.22, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 176.48, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 40, "Discount": 0 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { "OrderID": 10946, "EmployeeID": 1, @@ -32154,1106 +22025,1060 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 39000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10947, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "OrderID": 10994, + "EmployeeID": 2, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-04-09T00:00:00", + "ShipVia": 3, + "Freight": 65.53, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { "ProductID": 59, "UnitPrice": 55, - "Quantity": 4, - "Discount": 0 + "Quantity": 18, + "Discount": 0.06 } ] } - ], - "Fax": "(171) 555-1212" + ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "CustomerID": "QUEEN", + "Company": "Queen Cozinha", + "ContactName": "Lúcia Carvalho", + "ContactTitle": "Marketing Assistant", + "Address": "Alameda dos Canàrios, 891", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5487, + "Country": "Brazil", + "Phone": "(11) 555-1189", "Orders": [ { - "OrderID": 10948, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 3, - "Freight": 23.39, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10372, + "EmployeeID": 5, + "OrderDate": "1996-12-04T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 890.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 9, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 40, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 70, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 42, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10406, + "EmployeeID": 7, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-13T00:00:00", + "ShipVia": 1, + "Freight": 108.04, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 42, + "Discount": 0.1 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 2, + "Discount": 0.1 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 17000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10949, + "OrderID": 10487, "EmployeeID": 2, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-17T00:00:00", - "ShipVia": 3, - "Freight": 74.44, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 34000, - "ShipCountry": "Canada", + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-03-28T00:00:00", + "ShipVia": 2, + "Freight": 71.07, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 12, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 30, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10637, + "EmployeeID": 6, + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 201.29, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 25, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 60, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10950, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-13T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10659, + "EmployeeID": 7, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 2, - "Freight": 2.5, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 105.81, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 24, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10704, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", + "ShipVia": 1, + "Freight": 4.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { "ProductID": 4, "UnitPrice": 22, - "Quantity": 5, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10951, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", + "OrderID": 10728, + "EmployeeID": 4, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-11-11T00:00:00", "ShipVia": 2, - "Freight": 30.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 58.33, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, + "ProductID": 30, + "UnitPrice": 25.89, "Quantity": 15, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, + "ProductID": 40, + "UnitPrice": 18.4, "Quantity": 6, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10952, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "OrderID": 10786, + "EmployeeID": 8, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-16T00:00:00", + "ShippedDate": "1997-12-23T00:00:00", "ShipVia": 1, - "Freight": 40.42, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 110.87, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 2, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0.2 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, + "Discount": 0.2 } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 36000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10953, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-25T00:00:00", + ] + }, + { + "OrderID": 10868, + "EmployeeID": 7, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 37000, - "ShipCountry": "UK", + "Freight": 191.27, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 42, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10954, - "EmployeeID": 5, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 10913, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 1, - "Freight": 27.91, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", + "Freight": 33.05, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 17000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10955, + "OrderID": 10961, "EmployeeID": 8, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 20000, - "ShipCountry": "Sweden", + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", + "ShipVia": 1, + "Freight": 104.47, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10956, - "EmployeeID": 6, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 11068, + "EmployeeID": 8, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-11-01T00:00:00", "ShipVia": 2, - "Freight": 44.65, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "Freight": 81.75, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.16 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 14, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 36, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 8, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 28, + "Discount": 0.16 } ] } - ] + ], + "Fax": "(11) 555-1189" }, { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10957, - "EmployeeID": 8, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "CustomerID": "WOLZA", + "Company": "Wolski Zajazd", + "ContactName": "Zbyszek Piestrzeniewicz", + "ContactTitle": "Owner", + "Address": "ul. Filtrowa 68", + "City": "Warszawa", + "PostalCode": 12000, + "Country": "Poland", + "Phone": "(26) 642-7012", + "Fax": "(26) 642-7012", + "Orders": [ + { + "OrderID": 10374, + "EmployeeID": 1, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", "ShipVia": 3, - "Freight": 105.36, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 3.94, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 31, + "UnitPrice": 10, "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 8, + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10958, - "EmployeeID": 7, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "OrderID": 10611, + "EmployeeID": 6, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 49.56, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 80.65, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 20, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 6, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 5, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10959, - "EmployeeID": 6, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", - "ShipVia": 2, - "Freight": 4.98, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 10792, + "EmployeeID": 1, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 3, + "Freight": 23.79, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10960, - "EmployeeID": 3, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 2.08, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10870, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", + "ShipVia": 3, + "Freight": 12.04, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 24, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10961, - "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", - "ShipVia": 1, - "Freight": 104.47, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, - "Discount": 0.06 - }, + "OrderID": 10906, + "EmployeeID": 4, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", + "ShipVia": 3, + "Freight": 26.29, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 60, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 15, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10962, + "OrderID": 10998, "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", "ShipVia": 2, - "Freight": 275.79, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 20.31, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 77, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 74, + "UnitPrice": 10, "Quantity": 20, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 9, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 44, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10963, - "EmployeeID": 9, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", - "ShipVia": 3, - "Freight": 2.7, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 11044, + "EmployeeID": 4, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 8.72, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0 } ] } ] }, { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", + "CustomerID": "HUNGC", + "Company": "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", "Orders": [ { - "OrderID": 10964, + "OrderID": 10375, "EmployeeID": 3, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "OrderDate": "1996-12-06T00:00:00", + "RequiredDate": "1997-01-03T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", "ShipVia": 2, - "Freight": 87.38, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 20.12, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 6, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10394, + "EmployeeID": 1, + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 3, + "Freight": 30.34, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10965, - "EmployeeID": 6, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", - "ShipVia": 3, - "Freight": 144.38, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "OrderID": 10415, + "EmployeeID": 3, + "OrderDate": "1997-01-15T00:00:00", + "RequiredDate": "1997-02-12T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "ShipVia": 1, + "Freight": 0.2, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 16, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10966, + "OrderID": 10600, "EmployeeID": 4, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-13T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", "ShipVia": 1, - "Freight": 27.19, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 45.13, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 - }, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10660, + "EmployeeID": 8, + "OrderDate": "1997-09-08T00:00:00", + "RequiredDate": "1997-10-06T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 1, + "Freight": 111.29, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 21, + "Discount": 0 } ] } - ], - "Fax": "0452-076545" + ] }, { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", + "CustomerID": "SANTG", + "Company": "Santé Gourmet", + "ContactName": "Jonas Bergulfsen", + "ContactTitle": "Owner", + "Address": "Erling Skakkes gate 78", + "City": "Stavern", + "PostalCode": 4110, + "Country": "Norway", + "Phone": "07-98 92 35", + "Fax": "07-98 92 47", "Orders": [ { - "OrderID": 10967, - "EmployeeID": 2, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10387, + "EmployeeID": 1, + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-15T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", "ShipVia": 2, - "Freight": 62.22, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 93.63, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, "Quantity": 12, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10968, - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-01T00:00:00", - "ShipVia": 3, - "Freight": 74.6, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10520, + "EmployeeID": 7, + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 1, + "Freight": 13.37, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 30, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 4, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10969, - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", + "OrderID": 10639, + "EmployeeID": 7, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-08-27T00:00:00", + "ShipVia": 3, + "Freight": 38.64, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10831, + "EmployeeID": 3, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 2, - "Freight": 0.21, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 72.19, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ + }, { - "OrderID": 10970, - "EmployeeID": 9, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 1, - "Freight": 16.16, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", + "OrderID": 10909, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-10T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10971, + "OrderID": 11015, "EmployeeID": 2, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 2, - "Freight": 121.82, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 4.62, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] @@ -33261,462 +23086,321 @@ ] }, { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", + "CustomerID": "BOTTM", + "Company": "Bottom-Dollar Markets", + "ContactName": "Elizabeth Lincoln", + "ContactTitle": "Accounting Manager", + "Address": "23 Tsawassen Blvd.", + "City": "Tsawassen", + "Region": "BC", + "PostalCode": 14000, + "Country": "Canada", + "Phone": "(604) 555-4729", + "Fax": "(604) 555-3745", "Orders": [ { - "OrderID": 10972, + "OrderID": 10389, "EmployeeID": 4, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", + "OrderDate": "1996-12-20T00:00:00", + "RequiredDate": "1997-01-17T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", "ShipVia": 2, - "Freight": 0.02, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "Freight": 47.42, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 28000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 7, - "Discount": 0 - } - ] - }, - { - "OrderID": 10973, - "EmployeeID": 6, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 2, - "Freight": 15.17, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10974, + "OrderID": 10410, "EmployeeID": 3, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderDate": "1997-01-10T00:00:00", + "RequiredDate": "1997-02-07T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", "ShipVia": 3, - "Freight": 12.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 2.4, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 19000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10975, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-22T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 3, - "Freight": 32.27, + "OrderID": 10431, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 44.17, "ShipName": "Bottom-Dollar Markets", "ShipAddress": "23 Tsawassen Blvd.", "ShipCity": "Tsawassen", "ShipRegion": "BC", - "ShipPostalCode": 45000, + "ShipPostalCode": 49000, "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 16, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 50, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10976, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderID": 10492, + "EmployeeID": 3, + "OrderDate": "1997-04-01T00:00:00", + "RequiredDate": "1997-04-29T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 1, - "Freight": 37.97, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 62.89, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 41000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10977, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10742, + "EmployeeID": 3, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-12-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 208.5, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", + "Freight": 243.73, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 17000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 46000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10978, - "EmployeeID": 9, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", - "ShipVia": 2, - "Freight": 32.82, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", + "OrderID": 10918, + "EmployeeID": 3, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 48.83, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", "ShipPostalCode": 45000, - "ShipCountry": "Belgium", + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.16 - }, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 25, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10944, + "EmployeeID": 6, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 52.92, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, + "Discount": 0.25 }, { "ProductID": 44, "UnitPrice": 19.45, - "Quantity": 6, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10979, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-03-31T00:00:00", - "ShipVia": 2, - "Freight": 353.07, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, "Quantity": 18, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 12, + "ProductID": 56, "UnitPrice": 38, - "Quantity": 20, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10949, + "EmployeeID": 2, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-17T00:00:00", + "ShipVia": 3, + "Freight": 74.44, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 34000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 80, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 30, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 24, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 35, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 21000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10980, - "EmployeeID": 4, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 1, - "Freight": 1.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "OrderID": 10975, + "EmployeeID": 1, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-22T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 32.27, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 45000, + "ShipCountry": "Canada", "OrderDetails": [ + { + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 16, + "Discount": 0 + }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10981, - "EmployeeID": 1, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 193.37, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 16000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { "OrderID": 10982, "EmployeeID": 2, @@ -33745,588 +23429,513 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10983, - "EmployeeID": 2, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 2, - "Freight": 657.54, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11027, + "EmployeeID": 1, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 52.52, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 11000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 21, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11045, + "EmployeeID": 6, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-05-23T00:00:00", + "ShipVia": 2, + "Freight": 70.58, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 36000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 84, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 24, "Discount": 0 } ] }, { - "OrderID": 10984, - "EmployeeID": 1, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderID": 11048, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", "ShipVia": 3, - "Freight": 211.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 24.12, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 15000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 55, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 42, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "LINOD", + "Company": "LINO-Delicateses", + "ContactName": "Felipe Izquierdo", + "ContactTitle": "Owner", + "Address": "Ave. 5 de Mayo Porlamar", + "City": "Sao Paulo", + "Region": "Nueva Esparta", + "PostalCode": 4980, + "Country": "Venezuela", + "Phone": "(8) 34-56-12", + "Fax": "(8) 34-93-93", "Orders": [ { - "OrderID": 10985, - "EmployeeID": 2, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10405, + "EmployeeID": 1, + "OrderDate": "1997-01-06T00:00:00", + "RequiredDate": "1997-02-03T00:00:00", + "ShippedDate": "1997-01-22T00:00:00", "ShipVia": 1, - "Freight": 91.51, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 34.82, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 36, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 + } + ] + }, + { + "OrderID": 10485, + "EmployeeID": 4, + "OrderDate": "1997-03-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-31T00:00:00", + "ShipVia": 2, + "Freight": 64.45, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 35, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 60, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10986, - "EmployeeID": 8, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 2, - "Freight": 217.86, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10638, + "EmployeeID": 3, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", + "ShipVia": 1, + "Freight": 158.44, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 16000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10987, - "EmployeeID": 8, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 1, - "Freight": 185.48, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 32000, - "ShipCountry": "UK", + "OrderID": 10697, + "EmployeeID": 3, + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-05T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", + "ShipVia": 1, + "Freight": 45.52, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0.25 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 9, + "Discount": 0.25 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10988, - "EmployeeID": 3, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 61.14, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10729, + "EmployeeID": 8, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 3, + "Freight": 141.06, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 50, + "UnitPrice": 16.25, "Quantity": 40, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10989, - "EmployeeID": 2, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10811, + "EmployeeID": 8, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", "ShipVia": 1, - "Freight": 34.76, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 31.22, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 40, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10990, - "EmployeeID": 2, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", + "OrderID": 10838, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 3, - "Freight": 117.61, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 59.28, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 65, - "Discount": 0 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 60, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 66, - "Discount": 0.16 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10991, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 1, - "Freight": 38.51, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10840, + "EmployeeID": 4, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", + "ShipVia": 2, + "Freight": 2.71, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.2 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 76, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 90, + "Quantity": 10, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10992, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 4.27, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "OrderID": 10919, + "EmployeeID": 2, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 2, + "Freight": 19.8, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 2, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 50000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10993, - "EmployeeID": 7, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 3, - "Freight": 8.81, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "OrderID": 10954, + "EmployeeID": 5, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 1, + "Freight": 27.91, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 28, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 25, + "Discount": 0.16 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10994, + "OrderID": 11014, "EmployeeID": 2, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-04-09T00:00:00", + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", "ShipVia": 3, - "Freight": 65.53, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 23.6, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 28, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10995, + "OrderID": 11039, "EmployeeID": 1, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 3, - "Freight": 46, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-05-25T00:00:00", + "ShipVia": 2, + "Freight": 65, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 28, "Discount": 0 } ] @@ -34334,935 +23943,905 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "FOLIG", + "Company": "Folies gourmandes", + "ContactName": "Martine Rancé", + "ContactTitle": "Sales Associate", + "Address": "184, chaussée de Tournai", + "City": "Lille", + "PostalCode": 59000, + "Country": "France", + "Phone": "20.16.10.16", + "Fax": "20.16.10.17", "Orders": [ { - "OrderID": 10996, - "EmployeeID": 4, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 1.12, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10408, + "EmployeeID": 8, + "OrderDate": "1997-01-08T00:00:00", + "RequiredDate": "1997-02-05T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 11.26, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10997, - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10480, + "EmployeeID": 6, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", "ShipVia": 2, - "Freight": 73.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 1.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10998, - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 2, - "Freight": 20.31, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10634, + "EmployeeID": 4, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 487.38, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 7, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 30, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10999, - "EmployeeID": 6, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-01T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10763, + "EmployeeID": 3, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 3, + "Freight": 37.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10789, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", "ShipVia": 2, - "Freight": 96.35, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 100.6, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 35, + "UnitPrice": 18, "Quantity": 15, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 21, - "Discount": 0.06 + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "OCEAN", + "Company": "Océano Atlántico Ltda.", + "ContactName": "Yvonne Moncada", + "ContactTitle": "Sales Agent", + "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5333", + "Fax": "(1) 135-5535", "Orders": [ { - "OrderID": 11000, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", - "ShipVia": 3, - "Freight": 55.12, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10409, + "EmployeeID": 3, + "OrderDate": "1997-01-09T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 29.83, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 - }, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10531, + "EmployeeID": 7, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", + "ShipVia": 1, + "Freight": 8.12, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 30000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 11001, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", + "OrderID": 10898, + "EmployeeID": 4, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", "ShipVia": 2, - "Freight": 197.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 30000, - "ShipCountry": "Sweden", + "Freight": 1.27, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 5, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10958, + "EmployeeID": 7, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 2, + "Freight": 49.56, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 25, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 25, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11002, - "EmployeeID": 4, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", - "ShipVia": 1, - "Freight": 141.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10986, + "EmployeeID": 8, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 217.86, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 56, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, + "ProductID": 20, + "UnitPrice": 81, "Quantity": 15, - "Discount": 0.16 + "Discount": 0 }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0.16 + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 40, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "THECR", - "Company": "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": "FRANS", + "Company": "Franchi S.p.A.", + "ContactName": "Paolo Accorti", + "ContactTitle": "Sales Representative", + "Address": "Via Monte Bianco 34", + "City": "Torino", + "PostalCode": 10100, + "Country": "Italy", + "Phone": "011-4988260", + "Fax": "011-4988261", "Orders": [ { - "OrderID": 11003, - "EmployeeID": 3, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 3, - "Freight": 14.91, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "OrderID": 10422, + "EmployeeID": 2, + "OrderDate": "1997-01-22T00:00:00", + "RequiredDate": "1997-02-19T00:00:00", + "ShippedDate": "1997-01-31T00:00:00", + "ShipVia": 1, + "Freight": 3.02, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 2, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10710, + "EmployeeID": 1, + "OrderDate": "1997-10-20T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 1, + "Freight": 4.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 10, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 37000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 11004, + "OrderID": 10753, "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", "ShipVia": 1, - "Freight": 44.84, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 33000, - "ShipCountry": "Belgium", + "Freight": 7.7, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 6, + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 11005, - "EmployeeID": 2, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10807, + "EmployeeID": 4, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 1.36, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 2, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 1, + "Discount": 0 + } + ] + }, + { + "OrderID": 11026, + "EmployeeID": 4, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", + "ShipVia": 1, + "Freight": 47.09, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 51, + "UnitPrice": 53, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11006, - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", + "OrderID": 11060, + "EmployeeID": 2, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", "ShipVia": 2, - "Freight": 25.19, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 10.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0 } ] } - ], - "Fax": "(503) 555-7555" + ] }, { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", + "CustomerID": "GOURL", + "Company": "Gourmet Lanchonetes", + "ContactName": "André Fonseca", + "ContactTitle": "Sales Associate", + "Address": "Av. Brasil, 442", + "City": "Campinas", + "Region": "SP", + "PostalCode": 4876, + "Country": "Brazil", + "Phone": "(11) 555-9482", "Orders": [ { - "OrderID": 11007, - "EmployeeID": 8, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 2, - "Freight": 202.24, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10423, + "EmployeeID": 6, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", + "ShipVia": 3, + "Freight": 24.5, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 20, "Discount": 0 + } + ] + }, + { + "OrderID": 10652, + "EmployeeID": 4, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 2, + "Freight": 7.14, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 2, + "Discount": 0.25 }, { "ProductID": 42, "UnitPrice": 14, - "Quantity": 14, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11008, - "EmployeeID": 7, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-05-09T00:00:00", - "ShipVia": 3, - "Freight": 79.46, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10685, + "EmployeeID": 4, + "OrderDate": "1997-09-29T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 33.75, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 90, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 21, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 11009, - "EmployeeID": 2, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 59.11, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10709, + "EmployeeID": 1, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-11-20T00:00:00", + "ShipVia": 3, + "Freight": 210.8, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 9, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11010, + "OrderID": 10734, "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 2, - "Freight": 28.71, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-12T00:00:00", + "ShipVia": 3, + "Freight": 1.63, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 11011, - "EmployeeID": 3, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10777, + "EmployeeID": 7, + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 2, + "Freight": 3.01, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10790, + "EmployeeID": 6, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", "ShipVia": 1, - "Freight": 1.21, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 28.23, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 3, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 11012, - "EmployeeID": 1, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 3, - "Freight": 242.95, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10959, + "EmployeeID": 6, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 4.98, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 - }, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 11049, + "EmployeeID": 3, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 8.34, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 36, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, + "Discount": 0.2 } ] } - ] + ], + "Fax": "(11) 555-9482" }, { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", + "CustomerID": "CONSH", + "Company": "Consolidated Holdings", + "ContactName": "Elizabeth Brown", + "ContactTitle": "Sales Representative", + "Address": "Berkeley Gardens 12 Brewery", + "City": "London", + "PostalCode": 38000, + "Country": "UK", + "Phone": "(171) 555-2282", + "Fax": "(171) 555-9199", "Orders": [ { - "OrderID": 11013, - "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 32.99, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10435, + "EmployeeID": 8, + "OrderDate": "1997-02-04T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 9.21, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 10, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 4, + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10462, + "EmployeeID": 2, + "OrderDate": "1997-03-03T00:00:00", + "RequiredDate": "1997-03-31T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 1, + "Freight": 6.17, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 50000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 2, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 11014, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", - "ShipVia": 3, - "Freight": 23.6, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 28, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 11015, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10848, + "EmployeeID": 7, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 2, - "Freight": 4.62, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 38.24, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 36000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 3, "Discount": 0 } ] @@ -35270,158 +24849,141 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", + "CustomerID": "RANCH", + "Company": "Rancho grande", + "ContactName": "Sergio Gutiérrez", "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 42000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Address": "Av. del Libertador 900", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 123-5555", + "Fax": "(1) 123-5556", "Orders": [ { - "OrderID": 11016, - "EmployeeID": 9, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10448, + "EmployeeID": 4, + "OrderDate": "1997-02-17T00:00:00", + "RequiredDate": "1997-03-17T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", "ShipVia": 2, - "Freight": 33.8, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 20000, - "ShipCountry": "UK", + "Freight": 38.82, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 16, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11017, - "EmployeeID": 9, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10716, + "EmployeeID": 4, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-27T00:00:00", "ShipVia": 2, - "Freight": 754.26, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 22.57, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 3, + "ProductID": 21, "UnitPrice": 10, - "Quantity": 25, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 110, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11018, - "EmployeeID": 4, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10828, + "EmployeeID": 9, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 90.85, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 10916, + "EmployeeID": 1, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 2, - "Freight": 11.65, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 63.77, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { "OrderID": 11019, "EmployeeID": 6, @@ -35453,139 +25015,60 @@ ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 11020, - "EmployeeID": 2, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", - "ShipVia": 2, - "Freight": 43.3, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "LAZYK", + "Company": "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", "Orders": [ { - "OrderID": 11021, - "EmployeeID": 3, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 1, - "Freight": 297.18, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10482, + "EmployeeID": 1, + "OrderDate": "1997-03-21T00:00:00", + "RequiredDate": "1997-04-18T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 7.48, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 11, - "Discount": 0.25 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 63, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 44, - "Discount": 0.25 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 11022, - "EmployeeID": 9, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10545, + "EmployeeID": 8, + "OrderDate": "1997-05-22T00:00:00", + "RequiredDate": "1997-06-19T00:00:00", + "ShippedDate": "1997-06-26T00:00:00", "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 11.92, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 } ] @@ -35593,460 +25076,323 @@ ] }, { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", + "CustomerID": "LAUGB", + "Company": "Laughing Bacchus Wine Cellars", + "ContactName": "Yoshi Tannamuri", + "ContactTitle": "Marketing Assistant", + "Address": "1900 Oak St.", + "City": "Vancouver", + "Region": "BC", "PostalCode": 19000, - "Country": "UK", - "Phone": "(171) 555-1212", + "Country": "Canada", + "Phone": "(604) 555-3392", + "Fax": "(604) 555-7293", "Orders": [ { - "OrderID": 11023, - "EmployeeID": 1, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 123.83, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 36000, - "ShipCountry": "UK", + "OrderID": 10495, + "EmployeeID": 3, + "OrderDate": "1997-04-03T00:00:00", + "RequiredDate": "1997-05-01T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", + "ShipVia": 3, + "Freight": 4.65, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 20000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 4, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 16000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11024, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 1, - "Freight": 74.36, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 23000, - "ShipCountry": "UK", + "OrderID": 10620, + "EmployeeID": 2, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", + "ShipVia": 3, + "Freight": 0.94, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 31000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 50, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 11025, - "EmployeeID": 6, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10810, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 3, - "Freight": 29.17, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 4.33, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 48000, + "ShipCountry": "Canada", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.1 - }, { "ProductID": 13, "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.1 + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", + "CustomerID": "BLAUS", + "Company": "Blauer See Delikatessen", + "ContactName": "Hanna Moos", "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", + "Address": "Forsterstr. 57", + "City": "Mannheim", + "PostalCode": 68306, + "Country": "Germany", + "Phone": "0621-08460", + "Fax": "0621-08924", "Orders": [ { - "OrderID": 11026, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", - "ShipVia": 1, - "Freight": 47.09, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10501, + "EmployeeID": 9, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 3, + "Freight": 8.85, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 49000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11027, - "EmployeeID": 1, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10509, + "EmployeeID": 4, + "OrderDate": "1997-04-17T00:00:00", + "RequiredDate": "1997-05-15T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 1, - "Freight": 52.52, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 11000, - "ShipCountry": "Canada", + "Freight": 0.15, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 11028, - "EmployeeID": 2, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", - "ShipVia": 1, - "Freight": 29.59, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10582, + "EmployeeID": 3, + "OrderDate": "1997-06-27T00:00:00", + "RequiredDate": "1997-07-25T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 27.71, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 24, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 14, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 11029, - "EmployeeID": 4, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 47.84, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10614, + "EmployeeID": 8, + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 3, + "Freight": 1.93, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 12, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11030, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", + "OrderID": 10853, + "EmployeeID": 9, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", "ShipVia": 2, - "Freight": 830.75, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 53.83, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 100, - "Discount": 0.25 - }, - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 70, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 100, - "Discount": 0.25 } ] }, { - "OrderID": 11031, + "OrderID": 10956, "EmployeeID": 6, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 227.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 44.65, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 45, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 80, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 21, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11032, - "EmployeeID": 2, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 11058, + "EmployeeID": 9, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShippedDate": "1998-08-27T00:00:00", "ShipVia": 3, - "Freight": 606.19, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 31.14, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 35, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 25, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, "Discount": 0 } ] @@ -36054,145 +25400,97 @@ ] }, { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", + "CustomerID": "NORTS", + "Company": "North/South", + "ContactName": "Simon Crowther", + "ContactTitle": "Sales Associate", + "Address": "South House 300 Queensbridge", + "City": "London", + "PostalCode": 13000, + "Country": "UK", + "Phone": "(171) 555-7733", + "Fax": "(171) 555-2530", "Orders": [ { - "OrderID": 11033, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 10517, + "EmployeeID": 3, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 3, - "Freight": 84.74, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 70, - "Discount": 0.1 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 36, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ - { - "OrderID": 11034, - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 40.32, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 32.07, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 19000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 12, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 23000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 11035, + "OrderID": 10752, "EmployeeID": 2, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 0.17, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 30000, - "ShipCountry": "Belgium", + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", + "ShipVia": 3, + "Freight": 1.39, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 1, "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 60, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 3, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11057, + "EmployeeID": 3, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 4.13, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 47000, + "ShipCountry": "UK", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] @@ -36200,181 +25498,175 @@ ] }, { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", + "CustomerID": "CACTU", + "Company": "Cactus Comidas para llevar", + "ContactName": "Patricio Simpson", + "ContactTitle": "Sales Agent", + "Address": "Cerrito 333", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5555", + "Fax": "(1) 135-4892", "Orders": [ { - "OrderID": 11036, + "OrderID": 10521, "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", - "ShipVia": 3, - "Freight": 149.47, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 17.22, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 11037, - "EmployeeID": 7, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 3.2, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10782, + "EmployeeID": 9, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 1.1, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 1, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 11038, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", - "ShipVia": 2, - "Freight": 29.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 44000, - "ShipCountry": "Belgium", + "OrderID": 10819, + "EmployeeID": 2, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", + "ShipVia": 3, + "Freight": 19.76, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 7, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 2, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10881, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 2.84, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 11039, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-05-25T00:00:00", - "ShipVia": 2, - "Freight": 65, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10937, + "EmployeeID": 7, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 31.51, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { "ProductID": 28, "UnitPrice": 45.6, - "Quantity": 20, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 24, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11054, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShippedDate": "1998-05-26T00:00:00", + "ShipVia": 1, + "Freight": 0.33, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 60, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 28, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] @@ -36394,13 +25686,48 @@ "Phone": "(503) 555-7555", "Orders": [ { - "OrderID": 11040, - "EmployeeID": 4, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-05-20T00:00:00", - "ShipVia": 3, - "Freight": 18.84, + "OrderID": 10528, + "EmployeeID": 6, + "OrderDate": "1997-05-06T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 3.35, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.2 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 10589, + "EmployeeID": 8, + "OrderDate": "1997-07-04T00:00:00", + "RequiredDate": "1997-08-01T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 4.42, "ShipName": "Great Lakes Food Market", "ShipAddress": "2732 Baker Blvd.", "ShipCity": "Eugene", @@ -36409,590 +25736,476 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 11041, - "EmployeeID": 3, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", + "OrderID": 10616, + "EmployeeID": 1, + "OrderDate": "1997-07-31T00:00:00", + "RequiredDate": "1997-08-28T00:00:00", + "ShippedDate": "1997-08-05T00:00:00", "ShipVia": 2, - "Freight": 48.22, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 116.53, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 11042, - "EmployeeID": 2, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10656, + "EmployeeID": 6, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 1, - "Freight": 29.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 57.15, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, + "Discount": 0.1 + }, { "ProductID": 44, "UnitPrice": 19.45, - "Quantity": 15, - "Discount": 0 + "Quantity": 28, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 4, - "Discount": 0 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.1 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 11043, - "EmployeeID": 5, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", - "ShipVia": 2, - "Freight": 8.8, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "OrderID": 10681, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 76.13, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 11044, + "OrderID": 10816, "EmployeeID": 4, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 1, - "Freight": 8.72, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-02-03T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 2, + "Freight": 719.78, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10936, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 33.68, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 31000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11045, - "EmployeeID": 6, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-05-23T00:00:00", + "OrderID": 11006, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", "ShipVia": 2, - "Freight": 70.58, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", + "Freight": 25.19, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 24, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 2, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 11046, - "EmployeeID": 8, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 71.64, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 11040, + "EmployeeID": 4, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-05-20T00:00:00", + "ShipVia": 3, + "Freight": 18.84, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, + "ProductID": 21, + "UnitPrice": 10, "Quantity": 20, - "Discount": 0.06 - }, + "Discount": 0 + } + ] + }, + { + "OrderID": 11061, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-06-11T00:00:00", + "ShippedDate": "1998-06-11T00:00:00", + "ShipVia": 3, + "Freight": 14.01, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, + "ProductID": 60, + "UnitPrice": 34, "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 18, - "Discount": 0.06 + "Discount": 0 } ] } - ] + ], + "Fax": "(503) 555-7555" }, { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", + "CustomerID": "MAISD", + "Company": "Maison Dewey", + "ContactName": "Catherine Dewey", "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", + "Address": "Rue Joseph-Bens 532", + "City": "Bruxelles", + "PostalCode": 11000, + "Country": "Belgium", + "Phone": "(02) 201 24 67", + "Fax": "(02) 201 24 68", "Orders": [ { - "OrderID": 11047, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 3, - "Freight": 46.62, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 14000, - "ShipCountry": "UK", + "OrderID": 10529, + "EmployeeID": 5, + "OrderDate": "1997-05-07T00:00:00", + "RequiredDate": "1997-06-04T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 66.69, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 26000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 48000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11048, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", + "OrderID": 10649, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-09-25T00:00:00", + "ShippedDate": "1997-08-29T00:00:00", "ShipVia": 3, - "Freight": 24.12, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 15000, - "ShipCountry": "Canada", + "Freight": 6.2, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 47000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 42, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 11049, - "EmployeeID": 3, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10760, + "EmployeeID": 4, + "OrderDate": "1997-12-01T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1997-12-10T00:00:00", "ShipVia": 1, - "Freight": 8.34, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 155.64, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.25 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 35000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 11050, - "EmployeeID": 8, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10892, + "EmployeeID": 4, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", "ShipVia": 2, - "Freight": 59.41, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 11000, - "ShipCountry": "Sweden", + "Freight": 120.27, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 45000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 11051, + "OrderID": 10896, "EmployeeID": 7, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-09-25T00:00:00", + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", "ShipVia": 3, - "Freight": 2.79, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 11052, - "EmployeeID": 3, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 1, - "Freight": 67.26, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 32.45, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 28000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 16, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 11053, - "EmployeeID": 2, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", + "OrderID": 10978, + "EmployeeID": 9, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 32.82, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 45000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 11054, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", - "ShippedDate": "1998-05-26T00:00:00", + "OrderID": 11004, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 1, - "Freight": 0.33, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 44.84, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 33000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 10, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 } ] @@ -37000,187 +26213,119 @@ ] }, { - "CustomerID": "HILAA", - "Company": "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": "TRAIH", + "Company": "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", "Orders": [ { - "OrderID": 11055, - "EmployeeID": 7, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10574, + "EmployeeID": 4, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 120.92, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 37.6, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 35000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11056, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10577, + "EmployeeID": 9, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 278.96, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 17000, - "ShipCountry": "UK", + "Freight": 25.41, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 40, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 14000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ - { - "OrderID": 11057, - "EmployeeID": 3, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 3, - "Freight": 4.13, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 47000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 11058, - "EmployeeID": 9, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShippedDate": "1998-08-27T00:00:00", - "ShipVia": 3, - "Freight": 31.14, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10822, + "EmployeeID": 6, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", + "ShipVia": 3, + "Freight": 7, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 3, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 4, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 6, "Discount": 0 } ] @@ -37188,413 +26333,370 @@ ] }, { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", + "CustomerID": "LETSS", + "Company": "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", "Orders": [ { - "OrderID": 11059, - "EmployeeID": 2, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-06-10T00:00:00", - "ShippedDate": "1998-06-15T00:00:00", + "OrderID": 10579, + "EmployeeID": 1, + "OrderDate": "1997-06-25T00:00:00", + "RequiredDate": "1997-07-23T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 2, - "Freight": 85.8, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 13.73, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 12, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 11060, - "EmployeeID": 2, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10719, + "EmployeeID": 8, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 10.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "Freight": 51.44, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 3, + "Discount": 0.25 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 40, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11061, - "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-06-11T00:00:00", - "ShippedDate": "1998-06-11T00:00:00", - "ShipVia": 3, - "Freight": 14.01, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, + "OrderID": 10735, + "EmployeeID": 6, + "OrderDate": "1997-11-10T00:00:00", + "RequiredDate": "1997-12-08T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 45.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.1 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11062, + "OrderID": 10884, "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-06-28T00:00:00", + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", "ShipVia": 2, - "Freight": 29.93, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 90.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 21, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, "Quantity": 12, - "Discount": 0.2 + "Discount": 0.06 } ] } - ] + ], + "Fax": "(415) 555-5938" }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "WILMK", + "Company": "Wilman Kala", + "ContactName": "Matti Karttunen", + "ContactTitle": "Owner/Marketing Assistant", + "Address": "Keskuskatu 45", + "City": "Helsinki", + "PostalCode": 21240, + "Country": "Finland", + "Phone": "90-224 8858", + "Fax": "90-224 8858", "Orders": [ { - "OrderID": 11063, - "EmployeeID": 3, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 81.73, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10615, + "EmployeeID": 2, + "OrderDate": "1997-07-30T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 3, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10673, + "EmployeeID": 2, + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 22.76, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11064, - "EmployeeID": 1, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10695, + "EmployeeID": 7, + "OrderDate": "1997-10-07T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", "ShipVia": 1, - "Freight": 30.09, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 16.72, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 77, - "Discount": 0.1 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.1 - }, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10873, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 0.82, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 55, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11065, - "EmployeeID": 8, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-29T00:00:00", - "ShipVia": 1, - "Freight": 12.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10879, + "EmployeeID": 3, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 8.5, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11066, - "EmployeeID": 7, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 2, - "Freight": 44.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10910, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 3, + "Freight": 38.11, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 42, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 35, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 11067, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 7.98, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderID": 11005, + "EmployeeID": 2, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, "Discount": 0 } ] @@ -37602,85 +26704,113 @@ ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", + "CustomerID": "THECR", + "Company": "The Cracker Box", + "ContactName": "Liu Wong", "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", + "Address": "55 Grizzly Peak Rd.", + "City": "Butte", + "Region": "MT", + "PostalCode": 59801, + "Country": "USA", + "Phone": "(406) 555-5834", + "Fax": "(406) 555-8083", "Orders": [ { - "OrderID": 11068, - "EmployeeID": 8, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-11-01T00:00:00", + "OrderID": 10624, + "EmployeeID": 4, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", "ShipVia": 2, - "Freight": 81.75, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 94.8, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 28, "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.16 + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 11069, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 15.67, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10775, + "EmployeeID": 7, + "OrderDate": "1997-12-12T00:00:00", + "RequiredDate": "1998-01-09T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 20.25, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 11003, + "EmployeeID": 3, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 3, + "Freight": 14.91, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 10, "Discount": 0 } ] @@ -37688,507 +26818,503 @@ ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", + "CustomerID": "ALFKI", + "Company": "Alfreds Futterkiste", + "ContactName": "Maria Anders", "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, + "Address": "Obere Str. 57", + "City": "Berlin", + "PostalCode": 12209, "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "Phone": "030-0074321", + "Fax": "030-0076545", "Orders": [ { - "OrderID": 11070, - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-02T00:00:00", + "OrderID": 10643, + "EmployeeID": 6, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", "ShipVia": 1, - "Freight": 136, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "Freight": 29.46, + "ShipName": "Alfreds Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 15, + "Discount": 0.25 + }, + { + "ProductID": 39, "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.16 + "Quantity": 21, + "Discount": 0.25 }, { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 2, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10692, + "EmployeeID": 4, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-10-31T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", + "ShipVia": 2, + "Freight": 61.02, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 20, - "Discount": 0.16 - }, + "Discount": 0 + } + ] + }, + { + "OrderID": 10702, + "EmployeeID": 4, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 1, + "Freight": 23.94, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11071, + "OrderID": 10835, "EmployeeID": 1, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-10T00:00:00", - "ShipVia": 1, - "Freight": 0.93, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 3, + "Freight": 69.53, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10952, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", + "ShipVia": 1, + "Freight": 40.42, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 16, "Discount": 0.06 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 11011, + "EmployeeID": 3, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 1, + "Freight": 1.21, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 40, "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "FRANR", + "Company": "France restauration", + "ContactName": "Carine Schmitt", + "ContactTitle": "Marketing Manager", + "Address": "54, rue Royale", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.32.21.21", + "Fax": "40.32.21.20", "Orders": [ { - "OrderID": 11072, - "EmployeeID": 4, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-08-02T00:00:00", - "ShipVia": 2, - "Freight": 258.64, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10671, + "EmployeeID": 1, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-09-24T00:00:00", + "ShipVia": 1, + "Freight": 30.34, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 22, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 130, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 11073, - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-15T00:00:00", - "ShipVia": 2, - "Freight": 24.95, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10860, + "EmployeeID": 3, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 3, + "Freight": 19.26, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 11074, - "EmployeeID": 7, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-06-03T00:00:00", + "OrderID": 10971, + "EmployeeID": 2, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", "ShipVia": 2, - "Freight": 18.44, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 121.82, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 14, - "Discount": 0.06 + "Discount": 0 } ] } ] }, { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", + "CustomerID": "SPECD", + "Company": "Spécialités du monde", + "ContactName": "Dominique Perrier", + "ContactTitle": "Marketing Manager", + "Address": "25, rue Lauriston", + "City": "Paris", + "PostalCode": 75016, + "Country": "France", + "Phone": "(1) 47.55.60.10", + "Fax": "(1) 47.55.60.20", "Orders": [ { - "OrderID": 11075, - "EmployeeID": 8, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-05-03T00:00:00", - "ShipVia": 2, - "Freight": 6.19, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10738, + "EmployeeID": 2, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 1, + "Freight": 2.91, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0.16 - }, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10907, + "EmployeeID": 6, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-25T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 9.19, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 14, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 11076, - "EmployeeID": 4, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-06-08T00:00:00", + "OrderID": 10964, + "EmployeeID": 3, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 2, - "Freight": 38.28, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, + "Freight": 87.38, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 69, + "UnitPrice": 36, "Quantity": 10, - "Discount": 0.25 + "Discount": 0 + } + ] + }, + { + "OrderID": 11043, + "EmployeeID": 5, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 8.8, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "LACOR", + "Company": "La corne de abondance", + "ContactName": "Daniel Tonini", + "ContactTitle": "Sales Representative", + "Address": "67, avenue de Europe", + "City": "Versailles", + "PostalCode": 78000, + "Country": "France", + "Phone": "30.59.84.10", + "Fax": "30.59.85.11", "Orders": [ { - "OrderID": 11077, - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-07-03T00:00:00", - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10858, + "EmployeeID": 2, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", + "ShipVia": 1, + "Freight": 52.51, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 24, - "Discount": 0.2 - }, - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 1, - "Discount": 0.02 - }, { "ProductID": 7, "UnitPrice": 30, - "Quantity": 1, - "Discount": 0.06 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 2, - "Discount": 0.1 - }, - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 1, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 2, - "Discount": 0.06 + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 4, "Discount": 0 - }, - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 2, - "Discount": 0.04 - }, + } + ] + }, + { + "OrderID": 10927, + "EmployeeID": 4, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 19.79, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { "ProductID": 20, "UnitPrice": 81, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 3, + "Quantity": 5, "Discount": 0 }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 3, - "Discount": 0.02 - }, { "ProductID": 52, "UnitPrice": 7, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 2, - "Discount": 0.04 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 1, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 2, - "Discount": 0.0099999998 - }, + } + ] + }, + { + "OrderID": 10972, + "EmployeeID": 4, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 2, + "Freight": 0.02, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 4, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 7, "Discount": 0 } ] diff --git a/samples/grids/hierarchical-grid/multi-column-headers-overview/src/HierarchicalCustomers.json b/samples/grids/hierarchical-grid/multi-column-headers-overview/src/HierarchicalCustomers.json index 75c7bc037d..43b2853953 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-overview/src/HierarchicalCustomers.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-overview/src/HierarchicalCustomers.json @@ -44,6 +44,112 @@ "Discount": 0 } ] + }, + { + "OrderID": 10274, + "EmployeeID": 6, + "OrderDate": "1996-08-06T00:00:00", + "RequiredDate": "1996-09-03T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 1, + "Freight": 6.01, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 7, + "Discount": 0 + } + ] + }, + { + "OrderID": 10295, + "EmployeeID": 2, + "OrderDate": "1996-09-02T00:00:00", + "RequiredDate": "1996-09-30T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", + "ShipVia": 2, + "Freight": 1.15, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 10737, + "EmployeeID": 2, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 7.79, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10739, + "EmployeeID": 3, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-17T00:00:00", + "ShipVia": 3, + "Freight": 11.08, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 18, + "Discount": 0 + } + ] } ] }, @@ -86,251 +192,155 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10250, - "EmployeeID": 4, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-12T00:00:00", + "OrderID": 10438, + "EmployeeID": 3, + "OrderDate": "1997-02-06T00:00:00", + "RequiredDate": "1997-03-06T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", "ShipVia": 2, - "Freight": 65.83, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 8.24, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 15, - "Discount": 0.16 + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10251, - "EmployeeID": 3, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", + "OrderID": 10446, + "EmployeeID": 6, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-02-19T00:00:00", "ShipVia": 1, - "Freight": 41.34, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 14.68, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 + }, + { + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 44000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10252, - "EmployeeID": 4, - "OrderDate": "1996-07-09T00:00:00", - "RequiredDate": "1996-08-06T00:00:00", - "ShippedDate": "1996-07-11T00:00:00", + "OrderID": 10548, + "EmployeeID": 3, + "OrderDate": "1997-05-26T00:00:00", + "RequiredDate": "1997-06-23T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", "ShipVia": 2, - "Freight": 51.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 22000, - "ShipCountry": "Belgium", + "Freight": 1.43, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 40, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Fax": "0452-076546", - "Orders": [ + }, { - "OrderID": 10254, - "EmployeeID": 5, - "OrderDate": "1996-07-11T00:00:00", - "RequiredDate": "1996-08-08T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderID": 10608, + "EmployeeID": 4, + "OrderDate": "1997-07-23T00:00:00", + "RequiredDate": "1997-08-20T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 22.98, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 27.79, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 21, - "Discount": 0.16 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10255, - "EmployeeID": 9, - "OrderDate": "1996-07-12T00:00:00", - "RequiredDate": "1996-08-09T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", - "ShipVia": 3, - "Freight": 148.33, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10967, + "EmployeeID": 2, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 62.22, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 25, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 40, "Discount": 0 } ] @@ -338,2105 +348,1447 @@ ] }, { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, + "CustomerID": "HANAR", + "Company": "Hanari Carnes", + "ContactName": "Mario Pontes", + "ContactTitle": "Accounting Manager", + "Address": "Rua do Paço, 67", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 5454, "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", + "Phone": "(21) 555-0091", + "Fax": "(21) 555-8765", "Orders": [ { - "OrderID": 10256, - "EmployeeID": 3, - "OrderDate": "1996-07-15T00:00:00", - "RequiredDate": "1996-08-12T00:00:00", - "ShippedDate": "1996-07-17T00:00:00", + "OrderID": 10250, + "EmployeeID": 4, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-12T00:00:00", "ShipVia": 2, - "Freight": 13.97, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, + "Freight": 65.83, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10257, - "EmployeeID": 4, - "OrderDate": "1996-07-16T00:00:00", - "RequiredDate": "1996-08-13T00:00:00", - "ShippedDate": "1996-07-22T00:00:00", - "ShipVia": 3, - "Freight": 81.91, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10258, - "EmployeeID": 1, - "OrderDate": "1996-07-17T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderID": 10541, + "EmployeeID": 2, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-05-29T00:00:00", "ShipVia": 1, - "Freight": 140.51, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 68.65, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.1 }, { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 65, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 4, + "Discount": 0.1 }, { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 9, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "CENTC", - "Company": "Centro comercial Moctezuma", - "ContactName": "Francisco Chang", - "ContactTitle": "Marketing Manager", - "Address": "Sierras de Granada 9993", - "City": "México D.F.", - "PostalCode": 5022, - "Country": "Mexico", - "Phone": "(5) 555-3392", - "Fax": "(5) 555-7293", - "Orders": [ + }, { - "OrderID": 10259, + "OrderID": 10645, "EmployeeID": 4, - "OrderDate": "1996-07-18T00:00:00", - "RequiredDate": "1996-08-15T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", - "ShipVia": 3, - "Freight": 3.25, - "ShipName": "Centro comercial Moctezuma", - "ShipAddress": "Sierras de Granada 9993", - "ShipCity": "México D.F.", - "ShipPostalCode": 5022, - "ShipCountry": "Mexico", + "OrderDate": "1997-08-26T00:00:00", + "RequiredDate": "1997-09-23T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", + "ShipVia": 1, + "Freight": 12.41, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 1, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10260, - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-29T00:00:00", + "OrderID": 10690, + "EmployeeID": 1, + "OrderDate": "1997-10-02T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", "ShipVia": 1, - "Freight": 55.09, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 15.8, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 16, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, "Discount": 0.25 - }, + } + ] + }, + { + "OrderID": 10770, + "EmployeeID": 8, + "OrderDate": "1997-12-09T00:00:00", + "RequiredDate": "1998-01-06T00:00:00", + "ShippedDate": "1997-12-17T00:00:00", + "ShipVia": 3, + "Freight": 5.32, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 21, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10261, + "OrderID": 10783, "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-30T00:00:00", + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", "ShipVia": 2, - "Freight": 3.05, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 124.98, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", "ShipCity": "Sao Paulo", "ShipRegion": "RJ", - "ShipPostalCode": 2389, + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 20, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 20, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10262, - "EmployeeID": 8, - "OrderDate": "1996-07-22T00:00:00", - "RequiredDate": "1996-08-19T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", - "ShipVia": 3, - "Freight": 48.29, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10886, + "EmployeeID": 1, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", + "ShipVia": 1, + "Freight": 4.99, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 15, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 2, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10263, - "EmployeeID": 9, - "OrderDate": "1996-07-23T00:00:00", - "RequiredDate": "1996-08-20T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", + "OrderID": 10903, + "EmployeeID": 3, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 3, - "Freight": 146.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 36.71, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 33000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10264, - "EmployeeID": 6, - "OrderDate": "1996-07-24T00:00:00", - "RequiredDate": "1996-08-21T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", + "OrderID": 10922, + "EmployeeID": 5, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", "ShipVia": 3, - "Freight": 3.67, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 27000, - "ShipCountry": "Sweden", + "Freight": 62.74, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 35, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10265, - "EmployeeID": 2, - "OrderDate": "1996-07-25T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", + "OrderID": 10925, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 1, - "Freight": 55.28, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 2.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10266, - "EmployeeID": 3, - "OrderDate": "1996-07-26T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", - "ShipVia": 3, - "Freight": 25.73, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10981, + "EmployeeID": 1, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 193.37, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10267, - "EmployeeID": 4, - "OrderDate": "1996-07-29T00:00:00", - "RequiredDate": "1996-08-26T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", - "ShipVia": 1, - "Freight": 208.58, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 11022, + "EmployeeID": 9, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10268, - "EmployeeID": 8, - "OrderDate": "1996-07-30T00:00:00", - "RequiredDate": "1996-08-27T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 3, - "Freight": 66.29, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", + "OrderID": 11052, + "EmployeeID": 3, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 67.26, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 10, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 4, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "WHITC", - "Company": "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": "VICTE", + "Company": "Victuailles en stock", + "ContactName": "Mary Saveley", + "ContactTitle": "Sales Agent", + "Address": "2, rue du Commerce", + "City": "Lyon", + "PostalCode": 69004, + "Country": "France", + "Phone": "78.32.54.86", + "Fax": "78.32.54.87", "Orders": [ { - "OrderID": 10269, - "EmployeeID": 5, - "OrderDate": "1996-07-31T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", + "OrderID": 10251, + "EmployeeID": 3, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", "ShipVia": 1, - "Freight": 4.56, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 41.34, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 15, "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10270, - "EmployeeID": 1, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 1, - "Freight": 136.54, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 30, - "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 25, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10271, - "EmployeeID": 6, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", + "OrderID": 10334, + "EmployeeID": 8, + "OrderDate": "1996-10-21T00:00:00", + "RequiredDate": "1996-11-18T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", "ShipVia": 2, - "Freight": 4.54, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 8.56, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 24, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10272, - "EmployeeID": 6, - "OrderDate": "1996-08-02T00:00:00", - "RequiredDate": "1996-08-30T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", + "OrderID": 10450, + "EmployeeID": 8, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-19T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", "ShipVia": 2, - "Freight": 98.03, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 7.23, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, "Quantity": 6, - "Discount": 0 + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10459, + "EmployeeID": 4, + "OrderDate": "1997-02-27T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 25.09, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0.06 }, { "ProductID": 72, "UnitPrice": 27.8, - "Quantity": 24, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10273, - "EmployeeID": 3, - "OrderDate": "1996-08-05T00:00:00", - "RequiredDate": "1996-09-02T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", + "OrderID": 10478, + "EmployeeID": 2, + "OrderDate": "1997-03-18T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-26T00:00:00", "ShipVia": 3, - "Freight": 76.07, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 4.81, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 10, "UnitPrice": 24.8, - "Quantity": 24, - "Discount": 0.06 - }, - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2, "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 60, - "Discount": 0.06 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 33, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10274, - "EmployeeID": 6, - "OrderDate": "1996-08-06T00:00:00", - "RequiredDate": "1996-09-03T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 1, - "Freight": 6.01, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, + "OrderID": 10546, + "EmployeeID": 1, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-05-27T00:00:00", + "ShipVia": 3, + "Freight": 194.72, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 20, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 7, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10275, - "EmployeeID": 1, - "OrderDate": "1996-08-07T00:00:00", - "RequiredDate": "1996-09-04T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", - "ShipVia": 1, - "Freight": 26.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10806, + "EmployeeID": 3, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 2, + "Freight": 22.11, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 6, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10276, - "EmployeeID": 8, - "OrderDate": "1996-08-08T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-14T00:00:00", - "ShipVia": 3, - "Freight": 13.84, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 15, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Fax": "0342-023177", - "Orders": [ + }, { - "OrderID": 10277, - "EmployeeID": 2, - "OrderDate": "1996-08-09T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-08-13T00:00:00", + "OrderID": 10814, + "EmployeeID": 3, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", "ShipVia": 3, - "Freight": 125.77, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 130.94, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, + "Discount": 0.16 + }, + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 8, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 14000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10278, - "EmployeeID": 8, - "OrderDate": "1996-08-12T00:00:00", - "RequiredDate": "1996-09-09T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", + "OrderID": 10843, + "EmployeeID": 4, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", "ShipVia": 2, - "Freight": 92.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "Freight": 9.26, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 16, - "Discount": 0 - }, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 4, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10850, + "EmployeeID": 1, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 49.19, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 15, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 8, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 4, + "Discount": 0.16 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10279, - "EmployeeID": 8, - "OrderDate": "1996-08-13T00:00:00", - "RequiredDate": "1996-09-10T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 2, - "Freight": 25.83, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 27000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "SUPRD", + "Company": "Suprêmes délices", + "ContactName": "Pascale Cartrain", + "ContactTitle": "Accounting Manager", + "Address": "Boulevard Tirou, 255", + "City": "Charleroi", + "PostalCode": 44000, + "Country": "Belgium", + "Phone": "(071) 23 67 22 20", + "Fax": "(071) 23 67 22 21", "Orders": [ { - "OrderID": 10280, - "EmployeeID": 2, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-09-11T00:00:00", - "ShippedDate": "1996-09-12T00:00:00", - "ShipVia": 1, - "Freight": 8.98, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", + "OrderID": 10252, + "EmployeeID": 4, + "OrderDate": "1996-07-09T00:00:00", + "RequiredDate": "1996-08-06T00:00:00", + "ShippedDate": "1996-07-11T00:00:00", + "ShipVia": 2, + "Freight": 51.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 22000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 20, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 25, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10281, + "OrderID": 10302, "EmployeeID": 4, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-08-28T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 2.94, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderDate": "1996-09-10T00:00:00", + "RequiredDate": "1996-10-08T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 20000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 1, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 6, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 12, "Discount": 0 } ] }, { - "OrderID": 10282, - "EmployeeID": 4, - "OrderDate": "1996-08-15T00:00:00", - "RequiredDate": "1996-09-12T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10458, + "EmployeeID": 7, + "OrderDate": "1997-02-26T00:00:00", + "RequiredDate": "1997-03-26T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 147.06, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 16000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 6, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10283, - "EmployeeID": 3, - "OrderDate": "1996-08-16T00:00:00", - "RequiredDate": "1996-09-13T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", - "ShipVia": 3, - "Freight": 84.81, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 15, - "UnitPrice": 12.4, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 35, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 3, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10284, - "EmployeeID": 4, - "OrderDate": "1996-08-19T00:00:00", - "RequiredDate": "1996-09-16T00:00:00", - "ShippedDate": "1996-08-27T00:00:00", - "ShipVia": 1, - "Freight": 76.56, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10463, + "EmployeeID": 5, + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-06T00:00:00", + "ShipVia": 3, + "Freight": 14.78, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 21000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 44, - "UnitPrice": 15.5, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 21, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 67, + "ProductID": 42, "UnitPrice": 11.2, - "Quantity": 5, - "Discount": 0.25 + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10285, - "EmployeeID": 1, - "OrderDate": "1996-08-20T00:00:00", - "RequiredDate": "1996-09-17T00:00:00", - "ShippedDate": "1996-08-26T00:00:00", - "ShipVia": 2, - "Freight": 76.83, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10475, + "EmployeeID": 9, + "OrderDate": "1997-03-14T00:00:00", + "RequiredDate": "1997-04-11T00:00:00", + "ShippedDate": "1997-04-04T00:00:00", + "ShipVia": 1, + "Freight": 68.52, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, + "Discount": 0.16 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 36, - "Discount": 0.2 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 42, + "Discount": 0.16 } ] }, { - "OrderID": 10286, - "EmployeeID": 8, - "OrderDate": "1996-08-21T00:00:00", - "RequiredDate": "1996-09-18T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", + "OrderID": 10767, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", "ShipVia": 3, - "Freight": 229.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 1.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 44000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 100, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10287, - "EmployeeID": 8, - "OrderDate": "1996-08-22T00:00:00", - "RequiredDate": "1996-09-19T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", - "ShipVia": 3, - "Freight": 12.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10841, + "EmployeeID": 5, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", + "ShipVia": 2, + "Freight": 424.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 27000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, "Quantity": 15, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10288, - "EmployeeID": 4, - "OrderDate": "1996-08-23T00:00:00", - "RequiredDate": "1996-09-20T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", - "ShipVia": 1, - "Freight": 7.45, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10846, + "EmployeeID": 2, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 56.46, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 15000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 22000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10289, - "EmployeeID": 7, - "OrderDate": "1996-08-26T00:00:00", - "RequiredDate": "1996-09-23T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", + "OrderID": 10885, + "EmployeeID": 6, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 3, - "Freight": 22.77, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "Freight": 5.64, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 40000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 8, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, "Quantity": 30, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 9, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 25, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10290, - "EmployeeID": 8, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", - "ShipVia": 1, - "Freight": 79.7, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderID": 10930, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 3, + "Freight": 15.55, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 17000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 15, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 15, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.2 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 11035, + "EmployeeID": 2, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 0.17, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 30000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10291, - "EmployeeID": 6, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-04T00:00:00", + "OrderID": 11038, + "EmployeeID": 1, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", "ShipVia": 2, - "Freight": 6.4, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 29.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 44000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, + "Discount": 0 } ] } ] }, { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10292, - "EmployeeID": 1, - "OrderDate": "1996-08-28T00:00:00", - "RequiredDate": "1996-09-25T00:00:00", - "ShippedDate": "1996-09-02T00:00:00", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", + "CustomerID": "CHOPS", + "Company": "Chop-suey Chinese", + "ContactName": "Yang Wang", "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", + "Address": "Hauptstr. 29", + "City": "Bern", + "PostalCode": 3012, + "Country": "Switzerland", + "Phone": "0452-076545", + "Fax": "0452-076546", "Orders": [ { - "OrderID": 10293, - "EmployeeID": 1, - "OrderDate": "1996-08-29T00:00:00", - "RequiredDate": "1996-09-26T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 3, - "Freight": 21.18, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10254, + "EmployeeID": 5, + "OrderDate": "1996-07-11T00:00:00", + "RequiredDate": "1996-08-08T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 2, + "Freight": 22.98, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 12, - "Discount": 0 - }, { "ProductID": 24, "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0 + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 5, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 21, + "Discount": 0.16 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10294, - "EmployeeID": 4, - "OrderDate": "1996-08-30T00:00:00", - "RequiredDate": "1996-09-27T00:00:00", - "ShippedDate": "1996-09-05T00:00:00", + "OrderID": 10370, + "EmployeeID": 6, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-27T00:00:00", "ShipVia": 2, - "Freight": 147.26, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 1.17, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { "ProductID": 1, "UnitPrice": 14.4, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, "Quantity": 15, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 21, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ - { - "OrderID": 10295, - "EmployeeID": 2, - "OrderDate": "1996-09-02T00:00:00", - "RequiredDate": "1996-09-30T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", - "ShipVia": 2, - "Freight": 1.15, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 4, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10296, + "OrderID": 10519, "EmployeeID": 6, - "OrderDate": "1996-09-03T00:00:00", - "RequiredDate": "1996-10-01T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 1, - "Freight": 0.12, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderDate": "1997-04-28T00:00:00", + "RequiredDate": "1997-05-26T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 91.76, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10297, - "EmployeeID": 5, - "OrderDate": "1996-09-04T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", - "ShipVia": 2, - "Freight": 5.74, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10731, + "EmployeeID": 7, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 1, + "Freight": 96.65, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10298, - "EmployeeID": 6, - "OrderDate": "1996-09-05T00:00:00", - "RequiredDate": "1996-10-03T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 2, - "Freight": 168.22, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10746, + "EmployeeID": 1, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 3, + "Freight": 31.43, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10299, + "OrderID": 10966, "EmployeeID": 4, - "OrderDate": "1996-09-06T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-13T00:00:00", - "ShipVia": 2, - "Freight": 29.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 27.19, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10300, - "EmployeeID": 2, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", - "ShipVia": 2, - "Freight": 17.68, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 11029, + "EmployeeID": 4, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 47.84, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10301, - "EmployeeID": 8, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", + "OrderID": 11041, + "EmployeeID": 3, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", "ShipVia": 2, - "Freight": 45.08, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 48.22, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 30, "Discount": 0 } ] @@ -2444,1691 +1796,1226 @@ ] }, { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 27000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", + "CustomerID": "RICSU", + "Company": "Richter Supermarkt", + "ContactName": "Michael Holz", + "ContactTitle": "Sales Manager", + "Address": "Grenzacherweg 237", + "City": "Genève", + "PostalCode": 1203, + "Country": "Switzerland", + "Phone": "0897-034214", + "Fax": "0897-034215", "Orders": [ { - "OrderID": 10302, - "EmployeeID": 4, - "OrderDate": "1996-09-10T00:00:00", - "RequiredDate": "1996-10-08T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 20000, - "ShipCountry": "Belgium", + "OrderID": 10255, + "EmployeeID": 9, + "OrderDate": "1996-07-12T00:00:00", + "RequiredDate": "1996-08-09T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", + "ShipVia": 3, + "Freight": 148.33, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 40, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 28, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 12, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10303, - "EmployeeID": 7, - "OrderDate": "1996-09-11T00:00:00", - "RequiredDate": "1996-10-09T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", + "OrderID": 10419, + "EmployeeID": 4, + "OrderDate": "1997-01-20T00:00:00", + "RequiredDate": "1997-02-17T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", "ShipVia": 2, - "Freight": 107.83, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 137.35, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10304, + "OrderID": 10537, "EmployeeID": 1, - "OrderDate": "1996-09-12T00:00:00", - "RequiredDate": "1996-10-10T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", - "ShipVia": 2, - "Freight": 63.79, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", + "ShipVia": 1, + "Freight": 78.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 10, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ - { - "OrderID": 10305, - "EmployeeID": 8, - "OrderDate": "1996-09-13T00:00:00", - "RequiredDate": "1996-10-11T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 3, - "Freight": 257.62, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10306, - "EmployeeID": 1, - "OrderDate": "1996-09-16T00:00:00", - "RequiredDate": "1996-10-14T00:00:00", - "ShippedDate": "1996-09-23T00:00:00", - "ShipVia": 3, - "Freight": 7.56, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10666, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", + "ShipVia": 2, + "Freight": 232.42, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, + "ProductID": 65, + "UnitPrice": 21.05, "Quantity": 10, "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 5, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10307, - "EmployeeID": 2, - "OrderDate": "1996-09-17T00:00:00", - "RequiredDate": "1996-10-15T00:00:00", - "ShippedDate": "1996-09-25T00:00:00", - "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10751, + "EmployeeID": 3, + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-12-03T00:00:00", + "ShipVia": 3, + "Freight": 130.79, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ - { - "OrderID": 10308, - "EmployeeID": 7, - "OrderDate": "1996-09-18T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-24T00:00:00", - "ShipVia": 3, - "Freight": 1.61, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 1, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 5, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10309, + "OrderID": 10758, "EmployeeID": 3, - "OrderDate": "1996-09-19T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", - "ShipVia": 1, - "Freight": 47.3, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-04T00:00:00", + "ShipVia": 3, + "Freight": 138.17, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, + "ProductID": 26, + "UnitPrice": 31.23, "Quantity": 20, "Discount": 0 }, { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 20, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 3, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10310, - "EmployeeID": 8, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-18T00:00:00", - "ShippedDate": "1996-09-27T00:00:00", + "OrderID": 10931, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 17.52, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "Freight": 13.6, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 10, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 42, + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 5, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10311, - "EmployeeID": 1, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-26T00:00:00", - "ShipVia": 3, - "Freight": 24.69, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10951, + "EmployeeID": 9, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 2, + "Freight": 30.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 11.2, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 6, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10312, - "EmployeeID": 2, - "OrderDate": "1996-09-23T00:00:00", - "RequiredDate": "1996-10-21T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", - "ShipVia": 2, - "Freight": 40.26, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 11033, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 84.74, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 4, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 24, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 36, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11075, + "EmployeeID": 8, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-05-03T00:00:00", + "ShipVia": 2, + "Freight": 6.19, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 20, - "Discount": 0 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "WELLI", + "Company": "Wellington Importadora", + "ContactName": "Paula Parente", + "ContactTitle": "Sales Manager", + "Address": "Rua do Mercado, 12", + "City": "Resende", + "Region": "SP", + "PostalCode": 8737, + "Country": "Brazil", + "Phone": "(14) 555-8122", + "Fax": "(14) 555-8123", "Orders": [ { - "OrderID": 10313, - "EmployeeID": 2, - "OrderDate": "1996-09-24T00:00:00", - "RequiredDate": "1996-10-22T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderID": 10256, + "EmployeeID": 3, + "OrderDate": "1996-07-15T00:00:00", + "RequiredDate": "1996-08-12T00:00:00", + "ShippedDate": "1996-07-17T00:00:00", "ShipVia": 2, - "Freight": 1.96, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 13.97, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10314, - "EmployeeID": 1, - "OrderDate": "1996-09-25T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", - "ShipVia": 2, - "Freight": 74.16, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10420, + "EmployeeID": 3, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 1, + "Freight": 44.12, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 40, + "ProductID": 9, + "UnitPrice": 77.6, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 2, "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 25, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 26000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10315, - "EmployeeID": 4, - "OrderDate": "1996-09-26T00:00:00", - "RequiredDate": "1996-10-24T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", + "OrderID": 10585, + "EmployeeID": 7, + "OrderDate": "1997-07-01T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", + "ShipVia": 1, + "Freight": 13.41, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10644, + "EmployeeID": 3, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", "ShipVia": 2, - "Freight": 41.76, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 80379, - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "Freight": 0.14, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 14, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 70, + "ProductID": 46, "UnitPrice": 12, - "Quantity": 30, - "Discount": 0 + "Quantity": 21, + "Discount": 0.1 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10316, - "EmployeeID": 1, - "OrderDate": "1996-09-27T00:00:00", - "RequiredDate": "1996-10-25T00:00:00", - "ShippedDate": "1996-10-08T00:00:00", - "ShipVia": 3, - "Freight": 150.15, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10803, + "EmployeeID": 4, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-06T00:00:00", + "ShipVia": 1, + "Freight": 55.23, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 24, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 70, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 15, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10317, - "EmployeeID": 6, - "OrderDate": "1996-09-30T00:00:00", - "RequiredDate": "1996-10-28T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", + "OrderID": 10809, + "EmployeeID": 7, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 4.87, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, + "ProductID": 52, + "UnitPrice": 7, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10318, - "EmployeeID": 8, - "OrderDate": "1996-10-01T00:00:00", - "RequiredDate": "1996-10-29T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderID": 10900, + "EmployeeID": 1, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 2, - "Freight": 4.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 30676, - "ShipPostalCode": 36000, - "ShipCountry": "UK", + "Freight": 1.66, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, - "Discount": 0 - }, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10905, + "EmployeeID": 9, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 13.72, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.06 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10319, - "EmployeeID": 7, - "OrderDate": "1996-10-02T00:00:00", - "RequiredDate": "1996-10-30T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", + "OrderID": 10935, + "EmployeeID": 4, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 3, - "Freight": 64.5, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 47.59, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 8, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 14, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 30, - "Discount": 0 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 8, + "Discount": 0.25 } ] } ] }, { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", + "CustomerID": "HILAA", + "Company": "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", "Orders": [ { - "OrderID": 10320, - "EmployeeID": 5, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-18T00:00:00", + "OrderID": 10257, + "EmployeeID": 4, + "OrderDate": "1996-07-16T00:00:00", + "RequiredDate": "1996-08-13T00:00:00", + "ShippedDate": "1996-07-22T00:00:00", "ShipVia": 3, - "Freight": 34.57, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 81.91, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10321, - "EmployeeID": 3, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-31T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", - "ShipVia": 2, - "Freight": 3.43, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 20137, - "ShipPostalCode": 41000, - "ShipCountry": "UK", + "OrderID": 10395, + "EmployeeID": 6, + "OrderDate": "1996-12-26T00:00:00", + "RequiredDate": "1997-01-23T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 1, + "Freight": 184.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 10, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 28, + "Discount": 0.1 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 70, + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10322, - "EmployeeID": 7, - "OrderDate": "1996-10-04T00:00:00", - "RequiredDate": "1996-11-01T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", + "OrderID": 10476, + "EmployeeID": 8, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", "ShipVia": 3, - "Freight": 0.4, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 4.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10323, - "EmployeeID": 4, - "OrderDate": "1996-10-07T00:00:00", - "RequiredDate": "1996-11-04T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 1, - "Freight": 4.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10486, + "EmployeeID": 1, + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "ShipVia": 2, + "Freight": 30.53, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 12.4, + "ProductID": 11, + "UnitPrice": 16.8, "Quantity": 5, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 4, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 16, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10324, - "EmployeeID": 9, - "OrderDate": "1996-10-08T00:00:00", - "RequiredDate": "1996-11-05T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", - "ShipVia": 1, - "Freight": 214.27, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10490, + "EmployeeID": 7, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-03T00:00:00", + "ShipVia": 2, + "Freight": 210.19, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.16 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 68, + "UnitPrice": 10, "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 80, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 36, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10325, - "EmployeeID": 1, - "OrderDate": "1996-10-09T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 3, - "Freight": 64.86, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10498, + "EmployeeID": 8, + "OrderDate": "1997-04-07T00:00:00", + "RequiredDate": "1997-05-05T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", + "ShipVia": 2, + "Freight": 29.75, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 9, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 4, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ + }, { - "OrderID": 10326, - "EmployeeID": 4, - "OrderDate": "1996-10-10T00:00:00", - "RequiredDate": "1996-11-07T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 2, - "Freight": 77.92, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", + "OrderID": 10552, + "EmployeeID": 2, + "OrderDate": "1997-05-29T00:00:00", + "RequiredDate": "1997-06-26T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 1, + "Freight": 83.22, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 16, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 18, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 50, + "UnitPrice": 7.75, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 43000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10327, - "EmployeeID": 2, - "OrderDate": "1996-10-11T00:00:00", - "RequiredDate": "1996-11-08T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", + "OrderID": 10601, + "EmployeeID": 7, + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", "ShipVia": 1, - "Freight": 63.36, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 17000, - "ShipCountry": "Sweden", + "Freight": 58.3, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10328, + "OrderID": 10613, "EmployeeID": 4, - "OrderDate": "1996-10-14T00:00:00", - "RequiredDate": "1996-11-11T00:00:00", - "ShippedDate": "1996-10-17T00:00:00", - "ShipVia": 3, - "Freight": 87.03, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 2, + "Freight": 8.11, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 40, "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10329, + "OrderID": 10641, "EmployeeID": 4, - "OrderDate": "1996-10-15T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", "ShipVia": 2, - "Freight": 191.67, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 179.61, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, - "Discount": 0.06 - }, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, + "Discount": 0 + } + ] + }, + { + "OrderID": 10705, + "EmployeeID": 9, + "OrderDate": "1997-10-15T00:00:00", + "RequiredDate": "1997-11-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 3.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 4, + "Discount": 0 + } + ] + }, { - "OrderID": 10330, + "OrderID": 10796, "EmployeeID": 3, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", "ShipVia": 1, - "Freight": 12.75, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, + "Freight": 26.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, "ShipCountry": "Venezuela", "OrderDetails": [ { "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 50, - "Discount": 0.16 + "UnitPrice": 31.23, + "Quantity": 21, + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10331, - "EmployeeID": 9, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-27T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", - "ShipVia": 1, - "Freight": 10.19, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 20000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10332, - "EmployeeID": 3, - "OrderDate": "1996-10-17T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", - "ShipVia": 2, - "Freight": 52.84, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 28000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 40, - "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 35, "Discount": 0.2 }, { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 16, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 24, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10333, - "EmployeeID": 5, - "OrderDate": "1996-10-18T00:00:00", - "RequiredDate": "1996-11-15T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", - "ShipVia": 3, - "Freight": 0.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10863, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 30.26, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10334, - "EmployeeID": 8, - "OrderDate": "1996-10-21T00:00:00", - "RequiredDate": "1996-11-18T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", - "ShipVia": 2, - "Freight": 8.56, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10901, + "EmployeeID": 4, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", + "ShipVia": 1, + "Freight": 62.09, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 8, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10335, - "EmployeeID": 7, - "OrderDate": "1996-10-22T00:00:00", - "RequiredDate": "1996-11-19T00:00:00", - "ShippedDate": "1996-10-24T00:00:00", - "ShipVia": 2, - "Freight": 42.11, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10957, + "EmployeeID": 8, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 105.36, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 7, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10960, + "EmployeeID": 3, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 2.08, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 48, - "Discount": 0.2 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10336, - "EmployeeID": 7, - "OrderDate": "1996-10-23T00:00:00", - "RequiredDate": "1996-11-20T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", - "ShipVia": 2, - "Freight": 15.51, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10976, + "EmployeeID": 1, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 1, + "Freight": 37.97, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10337, - "EmployeeID": 4, - "OrderDate": "1996-10-24T00:00:00", - "RequiredDate": "1996-11-21T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", - "ShipVia": 3, - "Freight": 108.26, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 11055, + "EmployeeID": 7, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", + "ShipVia": 2, + "Freight": 120.92, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 24, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, + "ProductID": 51, + "UnitPrice": 53, "Quantity": 20, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] @@ -4136,625 +3023,475 @@ ] }, { - "CustomerID": "OLDWO", - "Company": "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": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", "Orders": [ { - "OrderID": 10338, - "EmployeeID": 4, - "OrderDate": "1996-10-25T00:00:00", - "RequiredDate": "1996-11-22T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", - "ShipVia": 3, - "Freight": 84.21, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 20, - "Discount": 0 + "OrderID": 10258, + "EmployeeID": 1, + "OrderDate": "1996-07-17T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 1, + "Freight": 140.51, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 50, + "Discount": 0.2 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 15, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 65, + "Discount": 0.2 + }, + { + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 40000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10339, - "EmployeeID": 2, - "OrderDate": "1996-10-28T00:00:00", - "RequiredDate": "1996-11-25T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 15.66, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "OrderID": 10263, + "EmployeeID": 9, + "OrderDate": "1996-07-23T00:00:00", + "RequiredDate": "1996-08-20T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 146.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 10, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 28, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 36, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10340, + "OrderID": 10351, "EmployeeID": 1, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 166.31, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 162.33, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 20, "Discount": 0.06 }, { "ProductID": 41, "UnitPrice": 7.7, - "Quantity": 12, + "Quantity": 13, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 77, "Discount": 0.06 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 40, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 10, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10341, - "EmployeeID": 7, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", - "ShipVia": 3, - "Freight": 26.78, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10368, + "EmployeeID": 2, + "OrderDate": "1996-11-29T00:00:00", + "RequiredDate": "1996-12-27T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 101.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 8, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 13, + "Discount": 0.1 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10342, + "OrderID": 10382, "EmployeeID": 4, - "OrderDate": "1996-10-30T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 54.83, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 24, - "Discount": 0.2 + "OrderDate": "1996-12-13T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1996-12-16T00:00:00", + "ShipVia": 1, + "Freight": 94.77, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 32, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 56, - "Discount": 0.2 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10343, - "EmployeeID": 4, - "OrderDate": "1996-10-31T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-11-06T00:00:00", + "OrderID": 10390, + "EmployeeID": 6, + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-26T00:00:00", "ShipVia": 1, - "Freight": 110.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 126.38, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 68, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 4, - "Discount": 0.06 + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 76, + "ProductID": 35, "UnitPrice": 14.4, - "Quantity": 15, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 45, "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10344, - "EmployeeID": 4, - "OrderDate": "1996-11-01T00:00:00", - "RequiredDate": "1996-11-29T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", + "OrderID": 10402, + "EmployeeID": 8, + "OrderDate": "1997-01-02T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", "ShipVia": 2, - "Freight": 23.29, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 67.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 35, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 65, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10345, - "EmployeeID": 2, - "OrderDate": "1996-11-04T00:00:00", - "RequiredDate": "1996-12-02T00:00:00", - "ShippedDate": "1996-11-11T00:00:00", - "ShipVia": 2, - "Freight": 249.06, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10430, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-03T00:00:00", + "ShipVia": 1, + "Freight": 458.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 80, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 9, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10346, + "OrderID": 10442, "EmployeeID": 3, - "OrderDate": "1996-11-05T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 142.08, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderDate": "1997-02-11T00:00:00", + "RequiredDate": "1997-03-11T00:00:00", + "ShippedDate": "1997-02-18T00:00:00", + "ShipVia": 2, + "Freight": 47.94, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 36, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 80, + "Discount": 0 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10347, - "EmployeeID": 4, - "OrderDate": "1996-11-06T00:00:00", - "RequiredDate": "1996-12-04T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 3.1, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10514, + "EmployeeID": 3, + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 2, + "Freight": 789.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 39, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 4, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 39, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0.16 + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10348, - "EmployeeID": 4, - "OrderDate": "1996-11-07T00:00:00", - "RequiredDate": "1996-12-05T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", - "ShipVia": 2, - "Freight": 0.78, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10571, + "EmployeeID": 8, + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 3, + "Freight": 26.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 11, "Discount": 0.16 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 25, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10349, - "EmployeeID": 7, - "OrderDate": "1996-11-08T00:00:00", - "RequiredDate": "1996-12-06T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", + "OrderID": 10595, + "EmployeeID": 2, + "OrderDate": "1997-07-10T00:00:00", + "RequiredDate": "1997-08-07T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", "ShipVia": 1, - "Freight": 8.63, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 96.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10350, - "EmployeeID": 6, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", - "ShipVia": 2, - "Freight": 64.19, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.25 + }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 120, + "Discount": 0.25 }, { "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 18, - "Discount": 0.1 + "UnitPrice": 36, + "Quantity": 65, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10351, - "EmployeeID": 1, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 162.33, + "OrderID": 10633, + "EmployeeID": 7, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-18T00:00:00", + "ShipVia": 3, + "Freight": 477.9, "ShipName": "Ernst Handel", "ShipAddress": "Kirchgasse 6", "ShipCity": "Graz", @@ -4762,1247 +3499,992 @@ "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 13, + "UnitPrice": 6, "Quantity": 13, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 77, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 80, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10352, - "EmployeeID": 3, - "OrderDate": "1996-11-12T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-18T00:00:00", - "ShipVia": 3, - "Freight": 1.3, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10667, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 78.09, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 14, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10353, - "EmployeeID": 7, - "OrderDate": "1996-11-13T00:00:00", - "RequiredDate": "1996-12-11T00:00:00", - "ShippedDate": "1996-11-25T00:00:00", - "ShipVia": 3, - "Freight": 360.63, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, + "OrderID": 10698, + "EmployeeID": 4, + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-17T00:00:00", + "ShipVia": 1, + "Freight": 272.47, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 11, - "UnitPrice": 16.8, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.06 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 12, - "Discount": 0.2 + "Discount": 0.06 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 65, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 8, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10354, - "EmployeeID": 8, - "OrderDate": "1996-11-14T00:00:00", - "RequiredDate": "1996-12-12T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", + "OrderID": 10764, + "EmployeeID": 6, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", "ShipVia": 3, - "Freight": 53.8, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 145.45, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 4, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 130, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 12000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10355, - "EmployeeID": 6, - "OrderDate": "1996-11-15T00:00:00", - "RequiredDate": "1996-12-13T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 41.95, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 31000, - "ShipCountry": "UK", + "OrderID": 10771, + "EmployeeID": 9, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 2, + "Freight": 11.19, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10356, - "EmployeeID": 6, - "OrderDate": "1996-11-18T00:00:00", - "RequiredDate": "1996-12-16T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 2, - "Freight": 36.71, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10773, + "EmployeeID": 1, + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1998-01-08T00:00:00", + "ShippedDate": "1997-12-16T00:00:00", + "ShipVia": 3, + "Freight": 96.43, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 33, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 12, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 70, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 7, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10357, + "OrderID": 10776, "EmployeeID": 1, - "OrderDate": "1996-11-19T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1998-01-12T00:00:00", + "ShippedDate": "1997-12-18T00:00:00", "ShipVia": 3, - "Freight": 34.88, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 351.53, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 16, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 8, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10358, - "EmployeeID": 5, - "OrderDate": "1996-11-20T00:00:00", - "RequiredDate": "1996-12-18T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 1, - "Freight": 19.64, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 12, "Discount": 0.06 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 27, "Discount": 0.06 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 120, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10359, - "EmployeeID": 5, - "OrderDate": "1996-11-21T00:00:00", - "RequiredDate": "1996-12-19T00:00:00", - "ShippedDate": "1996-11-26T00:00:00", - "ShipVia": 3, - "Freight": 288.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 43000, - "ShipCountry": "UK", + "OrderID": 10795, + "EmployeeID": 8, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-20T00:00:00", + "ShipVia": 2, + "Freight": 126.66, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 56, - "Discount": 0.06 - }, - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 70, - "Discount": 0.06 + "UnitPrice": 17.45, + "Quantity": 65, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10360, - "EmployeeID": 4, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 3, - "Freight": 131.7, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10836, + "EmployeeID": 7, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 1, + "Freight": 411.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 52, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 35, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 10, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 35, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 28, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10361, - "EmployeeID": 1, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", + "OrderID": 10854, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-05T00:00:00", "ShipVia": 2, - "Freight": 183.17, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 100.22, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 54, - "Discount": 0.1 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 100, + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 55, - "Discount": 0.1 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 65, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10362, + "OrderID": 10895, "EmployeeID": 3, - "OrderDate": "1996-11-25T00:00:00", - "RequiredDate": "1996-12-23T00:00:00", - "ShippedDate": "1996-11-28T00:00:00", + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 1, - "Freight": 96.04, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 162.75, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 50, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 110, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 20, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 91, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 100, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10363, - "EmployeeID": 4, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1996-12-24T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", + "OrderID": 10968, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-01T00:00:00", "ShipVia": 3, - "Freight": 30.54, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 74.6, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 12, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 12, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 46000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10364, - "EmployeeID": 1, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", - "ShipVia": 1, - "Freight": 71.97, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 10000, - "ShipCountry": "UK", + "OrderID": 10979, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-03-31T00:00:00", + "ShipVia": 2, + "Freight": 353.07, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 30, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 5, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10365, - "EmployeeID": 3, - "OrderDate": "1996-11-27T00:00:00", - "RequiredDate": "1996-12-25T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 2, - "Freight": 22, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 24, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 80, "Discount": 0 - } - ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ - { - "OrderID": 10366, - "EmployeeID": 8, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1996-12-30T00:00:00", - "ShipVia": 2, - "Freight": 10.14, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", - "OrderDetails": [ + }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 5, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10367, - "EmployeeID": 7, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1996-12-26T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 10990, + "EmployeeID": 2, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", "ShipVia": 3, - "Freight": 13.55, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 117.61, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 36, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 65, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 18, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 60, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 65, + "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 66, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10368, - "EmployeeID": 2, - "OrderDate": "1996-11-29T00:00:00", - "RequiredDate": "1996-12-27T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 2, - "Freight": 101.95, + "OrderID": 11008, + "EmployeeID": 7, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-05-09T00:00:00", + "ShipVia": 3, + "Freight": 79.46, "ShipName": "Ernst Handel", "ShipAddress": "Kirchgasse 6", "ShipCity": "Graz", "ShipPostalCode": 8010, "ShipCountry": "Austria", "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 5, - "Discount": 0.1 - }, { "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 13, - "Discount": 0.1 + "UnitPrice": 45.6, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 90, + "Discount": 0.06 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 21, + "Discount": 0 + } + ] + }, { - "OrderID": 10369, - "EmployeeID": 8, - "OrderDate": "1996-12-02T00:00:00", - "RequiredDate": "1996-12-30T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", + "OrderID": 11017, + "EmployeeID": 9, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 2, - "Freight": 195.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 754.26, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 20, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 110, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10370, - "EmployeeID": 6, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-27T00:00:00", + "OrderID": 11072, + "EmployeeID": 4, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-08-02T00:00:00", "ShipVia": 2, - "Freight": 1.17, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 258.64, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 22, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 130, + "Discount": 0 } ] } - ], - "Fax": "0452-076545" + ] }, { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", + "CustomerID": "CENTC", + "Company": "Centro comercial Moctezuma", + "ContactName": "Francisco Chang", + "ContactTitle": "Marketing Manager", + "Address": "Sierras de Granada 9993", + "City": "México D.F.", + "PostalCode": 5022, + "Country": "Mexico", + "Phone": "(5) 555-3392", + "Fax": "(5) 555-7293", "Orders": [ { - "OrderID": 10371, - "EmployeeID": 1, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", - "ShipVia": 1, - "Freight": 0.45, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10259, + "EmployeeID": 4, + "OrderDate": "1996-07-18T00:00:00", + "RequiredDate": "1996-08-15T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", + "ShipVia": 3, + "Freight": 3.25, + "ShipName": "Centro comercial Moctezuma", + "ShipAddress": "Sierras de Granada 9993", + "ShipCity": "México D.F.", + "ShipPostalCode": 5022, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 1, + "Discount": 0 } ] } ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", + "CustomerID": "OTTIK", + "Company": "Ottilies Käseladen", + "ContactName": "Henriette Pfalzheim", + "ContactTitle": "Owner", + "Address": "Mehrheimerstr. 369", + "City": "Köln", + "PostalCode": 50739, + "Country": "Germany", + "Phone": "0221-0644327", + "Fax": "0221-0765721", "Orders": [ { - "OrderID": 10372, - "EmployeeID": 5, - "OrderDate": "1996-12-04T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 2, - "Freight": 890.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10260, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-29T00:00:00", + "ShipVia": 1, + "Freight": 55.09, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 12, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 16, "Discount": 0.25 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 70, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, "Discount": 0.25 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 42, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 21, "Discount": 0.25 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10373, - "EmployeeID": 4, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-11T00:00:00", - "ShipVia": 3, - "Freight": 124.12, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10407, + "EmployeeID": 2, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-04T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", + "ShipVia": 2, + "Freight": 91.48, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 80, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10374, - "EmployeeID": 1, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 3, - "Freight": 3.94, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 10.6, + "ProductID": 71, + "UnitPrice": 17.2, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10375, - "EmployeeID": 3, - "OrderDate": "1996-12-06T00:00:00", - "RequiredDate": "1997-01-03T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", + "OrderID": 10508, + "EmployeeID": 1, + "OrderDate": "1997-04-16T00:00:00", + "RequiredDate": "1997-05-14T00:00:00", + "ShippedDate": "1997-05-13T00:00:00", "ShipVia": 2, - "Freight": 20.12, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "Freight": 4.99, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, + "ProductID": 39, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 10000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10376, - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 2, - "Freight": 20.39, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 39000, - "ShipCountry": "Canada", + "OrderID": 10554, + "EmployeeID": 4, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 3, + "Freight": 120.97, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 42, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 11000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10377, - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 22.21, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", - "OrderDetails": [ + }, { - "ProductID": 28, - "UnitPrice": 36.4, + "ProductID": 23, + "UnitPrice": 9, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.06 }, { - "ProductID": 39, - "UnitPrice": 14.4, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 13000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10378, - "EmployeeID": 5, - "OrderDate": "1996-12-10T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-19T00:00:00", + "OrderID": 10580, + "EmployeeID": 4, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-01T00:00:00", "ShipVia": 3, - "Freight": 5.44, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 49000, - "ShipCountry": "Sweden", + "Freight": 75.89, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 6, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 30, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10684, + "EmployeeID": 3, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 1, + "Freight": 145.63, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10766, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 157.55, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10833, + "EmployeeID": 6, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 2, + "Freight": 71.49, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 9, + "Discount": 0.1 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 9, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10999, + "EmployeeID": 6, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-01T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 96.35, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 21, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 11020, + "EmployeeID": 2, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 2, + "Freight": 43.3, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 24, + "Discount": 0.16 } ] } @@ -6022,13 +4504,13 @@ "Fax": "(21) 555-4545", "Orders": [ { - "OrderID": 10379, - "EmployeeID": 2, - "OrderDate": "1996-12-11T00:00:00", - "RequiredDate": "1997-01-08T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 1, - "Freight": 45.03, + "OrderID": 10261, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-30T00:00:00", + "ShipVia": 2, + "Freight": 3.05, "ShipName": "Que Delícia", "ShipAddress": "Rua da Panificadora, 12", "ShipCity": "Sao Paulo", @@ -6037,1063 +4519,811 @@ "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 16, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 35, + "UnitPrice": 14.4, "Quantity": 20, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10380, - "EmployeeID": 8, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", - "ShipVia": 3, - "Freight": 35.03, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10291, + "EmployeeID": 6, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-04T00:00:00", + "ShipVia": 2, + "Freight": 6.4, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, + "ProductID": 13, + "UnitPrice": 4.8, "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 6, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 24, "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10381, - "EmployeeID": 3, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", + "OrderID": 10379, + "EmployeeID": 2, + "OrderDate": "1996-12-11T00:00:00", + "RequiredDate": "1997-01-08T00:00:00", "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 7.99, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "ShipVia": 1, + "Freight": 45.03, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 14, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 16, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10382, - "EmployeeID": 4, - "OrderDate": "1996-12-13T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1996-12-16T00:00:00", + "OrderID": 10421, + "EmployeeID": 8, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-03-04T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", "ShipVia": 1, - "Freight": 94.77, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 99.23, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 32, - "Discount": 0 - }, - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 9, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 4, + "Discount": 0.16 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 14, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 50, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 31000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10383, - "EmployeeID": 8, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-18T00:00:00", - "ShipVia": 3, - "Freight": 34.24, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 19000, - "ShipCountry": "UK", + "OrderID": 10587, + "EmployeeID": 1, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 1, + "Freight": 62.52, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, + "ProductID": 77, + "UnitPrice": 13, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 18000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10384, - "EmployeeID": 3, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 3, - "Freight": 168.64, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "OrderID": 10647, + "EmployeeID": 4, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 2, + "Freight": 45.54, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 28, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 15, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10385, - "EmployeeID": 1, - "OrderDate": "1996-12-17T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1996-12-23T00:00:00", + "OrderID": 10720, + "EmployeeID": 8, + "OrderDate": "1997-10-28T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 30.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 9.53, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10794, + "EmployeeID": 6, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 1, + "Freight": 21.49, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10386, - "EmployeeID": 9, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-25T00:00:00", - "ShipVia": 3, - "Freight": 13.99, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", + "OrderID": 10989, + "EmployeeID": 2, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 34.76, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 11, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, "Discount": 0 } ] } - ], - "Fax": "(11) 555-9857" + ] }, { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", + "ContactTitle": "Sales Associate", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", "Orders": [ { - "OrderID": 10387, - "EmployeeID": 1, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-15T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 2, - "Freight": 93.63, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10262, + "EmployeeID": 8, + "OrderDate": "1996-07-22T00:00:00", + "RequiredDate": "1996-08-19T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", + "ShipVia": 3, + "Freight": 48.29, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 17000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10388, - "EmployeeID": 2, - "OrderDate": "1996-12-19T00:00:00", - "RequiredDate": "1997-01-16T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 1, - "Freight": 34.86, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 43000, - "ShipCountry": "UK", + "OrderID": 10272, + "EmployeeID": 6, + "OrderDate": "1996-08-02T00:00:00", + "RequiredDate": "1996-08-30T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", + "ShipVia": 2, + "Freight": 98.03, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 7.6, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 40, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 14000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10389, + "OrderID": 10294, "EmployeeID": 4, - "OrderDate": "1996-12-20T00:00:00", - "RequiredDate": "1997-01-17T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", + "OrderDate": "1996-08-30T00:00:00", + "RequiredDate": "1996-09-27T00:00:00", + "ShippedDate": "1996-09-05T00:00:00", "ShipVia": 2, - "Freight": 47.42, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 28000, - "ShipCountry": "Canada", + "Freight": 147.26, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 16, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, + "ProductID": 17, + "UnitPrice": 31.2, "Quantity": 15, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 20, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10390, - "EmployeeID": 6, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-26T00:00:00", - "ShipVia": 1, - "Freight": 126.38, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10314, + "EmployeeID": 1, + "OrderDate": "1996-09-25T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 74.16, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0.1 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 32, + "UnitPrice": 25.6, "Quantity": 40, "Discount": 0.1 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 45, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 24, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 25, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10391, - "EmployeeID": 3, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-31T00:00:00", + "OrderID": 10316, + "EmployeeID": 1, + "OrderDate": "1996-09-27T00:00:00", + "RequiredDate": "1996-10-25T00:00:00", + "ShippedDate": "1996-10-08T00:00:00", "ShipVia": 3, - "Freight": 5.45, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 150.15, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 18, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 70, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10392, - "EmployeeID": 2, - "OrderDate": "1996-12-24T00:00:00", - "RequiredDate": "1997-01-21T00:00:00", - "ShippedDate": "1997-01-01T00:00:00", + "OrderID": 10346, + "EmployeeID": 3, + "OrderDate": "1996-11-05T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", "ShipVia": 3, - "Freight": 122.46, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 142.08, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 50, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10393, + "OrderID": 10401, "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 3, - "Freight": 126.56, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", + "ShipVia": 1, + "Freight": 12.51, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 42, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 7, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 70, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 32, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10394, - "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", + "OrderID": 10479, + "EmployeeID": 3, + "OrderDate": "1997-03-19T00:00:00", + "RequiredDate": "1997-04-16T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", "ShipVia": 3, - "Freight": 30.34, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "Freight": 708.95, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10395, - "EmployeeID": 6, - "OrderDate": "1996-12-26T00:00:00", - "RequiredDate": "1997-01-23T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 1, - "Freight": 184.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10564, + "EmployeeID": 4, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-08T00:00:00", + "ShippedDate": "1997-06-16T00:00:00", + "ShipVia": 3, + "Freight": 13.75, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 70, - "Discount": 0.1 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 8, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10396, + "OrderID": 10569, + "EmployeeID": 5, + "OrderDate": "1997-06-16T00:00:00", + "RequiredDate": "1997-07-14T00:00:00", + "ShippedDate": "1997-07-11T00:00:00", + "ShipVia": 1, + "Freight": 58.98, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10598, "EmployeeID": 1, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1997-01-06T00:00:00", + "OrderDate": "1997-07-14T00:00:00", + "RequiredDate": "1997-08-11T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", "ShipVia": 3, - "Freight": 135.35, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 44.42, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 50, "Discount": 0 }, { "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 21, + "UnitPrice": 21.5, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10397, + "OrderID": 10761, "EmployeeID": 5, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-24T00:00:00", - "ShippedDate": "1997-01-02T00:00:00", - "ShipVia": 1, - "Freight": 60.26, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 2, + "Freight": 18.66, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 42.4, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 18, - "Discount": 0.16 + "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10398, - "EmployeeID": 2, - "OrderDate": "1996-12-30T00:00:00", - "RequiredDate": "1997-01-27T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 89.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "OrderID": 10820, + "EmployeeID": 3, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 37.52, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 30, "Discount": 0 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10399, + "OrderID": 10852, "EmployeeID": 8, - "OrderDate": "1996-12-31T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", - "ShipVia": 3, - "Freight": 27.36, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 174.05, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 35, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 14, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10400, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderID": 10889, + "EmployeeID": 9, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 3, - "Freight": 83.93, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 25000, - "ShipCountry": "UK", + "Freight": 280.61, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 35, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10401, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", - "ShipVia": 1, - "Freight": 12.51, + "OrderID": 10988, + "EmployeeID": 3, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 61.14, "ShipName": "Rattlesnake Canyon Grocery", "ShipAddress": "2817 Milton Dr.", "ShipCity": "Albuquerque", @@ -7102,341 +5332,217 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 70, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11000, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 3, + "Freight": 55.12, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10402, - "EmployeeID": 8, - "OrderDate": "1997-01-02T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", + "OrderID": 11077, + "EmployeeID": 1, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-07-03T00:00:00", "ShipVia": 2, - "Freight": 67.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 8.53, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 60, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 24, + "Discount": 0.2 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 65, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 4, "Discount": 0 - } - ] - }, - { - "OrderID": 10403, - "EmployeeID": 4, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 73.79, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ + }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 1, + "Discount": 0 }, { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 70, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10404, - "EmployeeID": 2, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", - "ShipVia": 1, - "Freight": 155.97, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 1, + "Discount": 0.02 + }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 1, "Discount": 0.06 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 2, + "Discount": 0.1 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10405, - "EmployeeID": 1, - "OrderDate": "1997-01-06T00:00:00", - "RequiredDate": "1997-02-03T00:00:00", - "ShippedDate": "1997-01-22T00:00:00", - "ShipVia": 1, - "Freight": 34.82, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 50, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 1, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10406, - "EmployeeID": 7, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-13T00:00:00", - "ShipVia": 1, - "Freight": 108.04, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ + }, { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 10, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 1, + "Discount": 0.04 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 42, - "Discount": 0.1 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 2, + "Discount": 0.04 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 5, - "Discount": 0.1 + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 1, + "Discount": 0.04 }, { - "ProductID": 40, - "UnitPrice": 14.7, + "ProductID": 23, + "UnitPrice": 9, "Quantity": 2, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10407, - "EmployeeID": 2, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-04T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", - "ShipVia": 2, - "Freight": 91.48, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ + "Discount": 0 + }, { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 3, + "Discount": 0.02 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ - { - "OrderID": 10408, - "EmployeeID": 8, - "OrderDate": "1997-01-08T00:00:00", - "RequiredDate": "1997-02-05T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", - "ShipVia": 1, - "Freight": 11.26, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", - "OrderDetails": [ + }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 10, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 2, + "Discount": 0.04 + }, + { + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 2, + "Discount": 0.0099999998 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, "Discount": 0 } ] @@ -7444,1232 +5550,851 @@ ] }, { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ - { - "OrderID": 10409, - "EmployeeID": 3, - "OrderDate": "1997-01-09T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", - "ShipVia": 1, - "Freight": 29.83, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 43000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 33000, + "Country": "Sweden", + "Phone": "0695-34 67 21", + "Fax": "0695-34 67 22", "Orders": [ { - "OrderID": 10410, - "EmployeeID": 3, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", + "OrderID": 10264, + "EmployeeID": 6, + "OrderDate": "1996-07-24T00:00:00", + "RequiredDate": "1996-08-21T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", "ShipVia": 3, - "Freight": 2.4, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "Freight": 3.67, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 27000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 49, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 16, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 25, + "Discount": 0.16 } ] }, { - "OrderID": 10411, - "EmployeeID": 9, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-21T00:00:00", - "ShipVia": 3, - "Freight": 23.65, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10327, + "EmployeeID": 2, + "OrderDate": "1996-10-11T00:00:00", + "RequiredDate": "1996-11-08T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 63.36, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 17000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 25, "Discount": 0.2 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 40, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 50, "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10412, - "EmployeeID": 8, - "OrderDate": "1997-01-13T00:00:00", - "RequiredDate": "1997-02-10T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", - "ShipVia": 2, - "Freight": 3.77, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10378, + "EmployeeID": 5, + "OrderDate": "1996-12-10T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-19T00:00:00", + "ShipVia": 3, + "Freight": 5.44, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 49000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10413, + "OrderID": 10434, "EmployeeID": 3, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-02-13T00:00:00", "ShipVia": 2, - "Freight": 95.66, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 17.92, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 23000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0 }, { "ProductID": 76, "UnitPrice": 14.4, - "Quantity": 14, - "Discount": 0 + "Quantity": 18, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10414, - "EmployeeID": 2, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-17T00:00:00", - "ShipVia": 3, - "Freight": 21.48, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10460, + "EmployeeID": 8, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 1, + "Freight": 16.27, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 40000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 21, + "Discount": 0.25 }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 4, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10533, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-22T00:00:00", + "ShipVia": 1, + "Freight": 188.04, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 45000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 24, + "Discount": 0.06 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10415, - "EmployeeID": 3, - "OrderDate": "1997-01-15T00:00:00", - "RequiredDate": "1997-02-12T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", - "ShipVia": 1, - "Freight": 0.2, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "OrderID": 10561, + "EmployeeID": 2, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 2, + "Freight": 242.21, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 23000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 2, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10416, - "EmployeeID": 8, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 3, - "Freight": 22.72, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10703, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-10-20T00:00:00", + "ShipVia": 2, + "Freight": 152.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 28000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 20, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 10, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 20, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10417, - "EmployeeID": 4, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-28T00:00:00", - "ShipVia": 3, - "Freight": 70.29, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10762, + "EmployeeID": 3, + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 328.74, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 44000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 35, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10418, + "OrderID": 10774, "EmployeeID": 4, - "OrderDate": "1997-01-17T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", "ShipVia": 1, - "Freight": 17.55, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 48.2, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 55, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 16, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 2, + "Discount": 0.25 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 15, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10419, - "EmployeeID": 4, - "OrderDate": "1997-01-20T00:00:00", - "RequiredDate": "1997-02-17T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", - "ShipVia": 2, - "Freight": 137.35, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10824, + "EmployeeID": 8, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 1.23, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 39000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10420, - "EmployeeID": 3, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10880, + "EmployeeID": 7, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 1, - "Freight": 44.12, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 88.01, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 15000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 77.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.2 }, { "ProductID": 70, - "UnitPrice": 12, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.1 + "UnitPrice": 15, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10421, - "EmployeeID": 8, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-03-04T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10902, + "EmployeeID": 1, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", "ShipVia": 1, - "Freight": 99.23, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 44.15, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 11000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 4, - "Discount": 0.16 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 10, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 6, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10422, - "EmployeeID": 2, - "OrderDate": "1997-01-22T00:00:00", - "RequiredDate": "1997-02-19T00:00:00", - "ShippedDate": "1997-01-31T00:00:00", - "ShipVia": 1, - "Freight": 3.02, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10955, + "EmployeeID": 8, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 20000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 2, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10423, - "EmployeeID": 6, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", + "OrderID": 10977, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 3, - "Freight": 24.5, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 208.5, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 14, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 30000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10424, - "EmployeeID": 7, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-20T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 2, - "Freight": 370.61, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 22000, - "ShipCountry": "Canada", + "OrderID": 10980, + "EmployeeID": 4, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 1, + "Freight": 1.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0.2 - }, - { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 49, - "Discount": 0.2 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10425, - "EmployeeID": 6, - "OrderDate": "1997-01-24T00:00:00", - "RequiredDate": "1997-02-21T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 7.93, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10993, + "EmployeeID": 7, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 3, + "Freight": 8.81, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 50, "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 20, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10426, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-02-06T00:00:00", - "ShipVia": 1, - "Freight": 18.69, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 11001, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 2, + "Freight": 197.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 30000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 7, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10427, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 11050, + "EmployeeID": 8, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", "ShipVia": 2, - "Freight": 31.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 59.41, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 11000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 35, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", + "CustomerID": "BLONP", + "Company": "Blondesddsl père et fils", + "ContactName": "Frédérique Citeaux", + "ContactTitle": "Marketing Manager", + "Address": "24, place Kléber", + "City": "Strasbourg", + "PostalCode": 67000, + "Country": "France", + "Phone": "88.60.15.31", + "Fax": "88.60.15.32", "Orders": [ { - "OrderID": 10428, - "EmployeeID": 7, - "OrderDate": "1997-01-28T00:00:00", - "RequiredDate": "1997-02-25T00:00:00", - "ShippedDate": "1997-02-04T00:00:00", + "OrderID": 10265, + "EmployeeID": 2, + "OrderDate": "1996-07-25T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", "ShipVia": 1, - "Freight": 11.09, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 55.28, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10429, - "EmployeeID": 3, - "OrderDate": "1997-01-29T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderID": 10297, + "EmployeeID": 5, + "OrderDate": "1996-09-04T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", "ShipVia": 2, - "Freight": 56.63, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 5.74, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 40, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10430, + "OrderID": 10360, "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-03T00:00:00", - "ShipVia": 1, - "Freight": 458.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 131.7, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 50, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.2 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 28, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 47000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10431, - "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderID": 10436, + "EmployeeID": 3, + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-11T00:00:00", "ShipVia": 2, - "Freight": 44.17, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 49000, - "ShipCountry": "Canada", + "Freight": 156.66, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 47, - "UnitPrice": 7.6, + "ProductID": 64, + "UnitPrice": 26.6, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.1 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 24, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10432, + "OrderID": 10449, "EmployeeID": 3, - "OrderDate": "1997-01-31T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderDate": "1997-02-18T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-27T00:00:00", "ShipVia": 2, - "Freight": 4.34, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 53.3, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 10, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 40, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ - { - "OrderID": 10433, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", - "ShipVia": 3, - "Freight": 73.83, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", - "OrderDetails": [ + }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 28, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 23000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10434, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-02-13T00:00:00", - "ShipVia": 2, - "Freight": 17.92, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 23000, - "ShipCountry": "Sweden", + "OrderID": 10559, + "EmployeeID": 6, + "OrderDate": "1997-06-05T00:00:00", + "RequiredDate": "1997-07-03T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 1, + "Freight": 8.05, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 76, - "UnitPrice": 14.4, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 18, - "Discount": 0.16 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 38000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ + }, { - "OrderID": 10435, - "EmployeeID": 8, - "OrderDate": "1997-02-04T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", - "ShipVia": 2, - "Freight": 9.21, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "OrderID": 10566, + "EmployeeID": 9, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", + "ShipVia": 1, + "Freight": 88.4, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 10, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 18, + "Discount": 0.16 }, { - "ProductID": 72, - "UnitPrice": 27.8, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10436, - "EmployeeID": 3, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-11T00:00:00", - "ShipVia": 2, - "Freight": 156.66, + "OrderID": 10584, + "EmployeeID": 4, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 1, + "Freight": 59.14, "ShipName": "Blondel père et fils", "ShipAddress": "24, place Kléber", "ShipCity": "Strasbourg", @@ -8677,28 +6402,82 @@ "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10628, + "EmployeeID": 4, + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 30.36, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10679, + "EmployeeID": 8, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 27.94, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 40, - "Discount": 0.1 - }, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10826, + "EmployeeID": 6, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 1, + "Freight": 7.09, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, + "Discount": 0 } ] } @@ -8717,13 +6496,13 @@ "Fax": "981-443655", "Orders": [ { - "OrderID": 10437, - "EmployeeID": 8, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-12T00:00:00", - "ShipVia": 1, - "Freight": 19.97, + "OrderID": 10266, + "EmployeeID": 3, + "OrderDate": "1996-07-26T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 25.73, "ShipName": "Wartian Herkku", "ShipAddress": "Torikatu 38", "ShipCity": "Oulu", @@ -8731,669 +6510,449 @@ "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 12, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10438, - "EmployeeID": 3, - "OrderDate": "1997-02-06T00:00:00", - "RequiredDate": "1997-03-06T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 8.24, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "OrderID": 10270, + "EmployeeID": 1, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 1, + "Freight": 136.54, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 37000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10439, - "EmployeeID": 6, - "OrderDate": "1997-02-07T00:00:00", - "RequiredDate": "1997-03-07T00:00:00", - "ShippedDate": "1997-02-10T00:00:00", + "OrderID": 10320, + "EmployeeID": 5, + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-18T00:00:00", "ShipVia": 3, - "Freight": 4.07, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "Freight": 34.57, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 16, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10440, - "EmployeeID": 4, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-10T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 86.53, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10333, + "EmployeeID": 5, + "OrderDate": "1996-10-18T00:00:00", + "RequiredDate": "1996-11-15T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", + "ShipVia": 3, + "Freight": 0.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 45, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 49, - "Discount": 0.16 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 90, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 40, + "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10441, - "EmployeeID": 3, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-24T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10412, + "EmployeeID": 8, + "OrderDate": "1997-01-13T00:00:00", + "RequiredDate": "1997-02-10T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", "ShipVia": 2, - "Freight": 73.02, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 3.77, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 50, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10442, - "EmployeeID": 3, - "OrderDate": "1997-02-11T00:00:00", - "RequiredDate": "1997-03-11T00:00:00", - "ShippedDate": "1997-02-18T00:00:00", - "ShipVia": 2, - "Freight": 47.94, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10416, + "EmployeeID": 8, + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 3, + "Freight": 22.72, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 80, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 60, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10443, + "OrderID": 10437, "EmployeeID": 8, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-12T00:00:00", "ShipVia": 1, - "Freight": 13.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 19.97, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.2 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 12, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 15000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10444, - "EmployeeID": 3, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-21T00:00:00", - "ShipVia": 3, - "Freight": 3.5, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 22000, - "ShipCountry": "Sweden", + "OrderID": 10455, + "EmployeeID": 8, + "OrderDate": "1997-02-24T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 2, + "Freight": 180.45, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 15, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 8, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 71, + "UnitPrice": 17.2, "Quantity": 30, "Discount": 0 } ] }, { - "OrderID": 10445, - "EmployeeID": 3, - "OrderDate": "1997-02-13T00:00:00", - "RequiredDate": "1997-03-13T00:00:00", - "ShippedDate": "1997-02-20T00:00:00", - "ShipVia": 1, - "Freight": 9.3, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 18000, - "ShipCountry": "Sweden", + "OrderID": 10526, + "EmployeeID": 4, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-15T00:00:00", + "ShipVia": 2, + "Freight": 58.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0.16 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10446, - "EmployeeID": 6, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-02-19T00:00:00", - "ShipVia": 1, - "Freight": 14.68, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "OrderID": 10553, + "EmployeeID": 2, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-03T00:00:00", + "ShipVia": 2, + "Freight": 149.49, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 12, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 24, + "Discount": 0 }, { "ProductID": 31, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "UnitPrice": 12.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10447, - "EmployeeID": 4, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-03-07T00:00:00", + "OrderID": 10583, + "EmployeeID": 2, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 2, - "Freight": 68.66, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 7.28, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 40, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 35, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10448, + "OrderID": 10636, "EmployeeID": 4, - "OrderDate": "1997-02-17T00:00:00", - "RequiredDate": "1997-03-17T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", - "ShipVia": 2, - "Freight": 38.82, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 1.15, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 6, - "Discount": 0 - }, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0 + }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10449, - "EmployeeID": 3, - "OrderDate": "1997-02-18T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-27T00:00:00", - "ShipVia": 2, - "Freight": 53.3, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10750, + "EmployeeID": 9, + "OrderDate": "1997-11-21T00:00:00", + "RequiredDate": "1997-12-19T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 79.3, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 14, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 5, + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10450, - "EmployeeID": 8, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-19T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", - "ShipVia": 2, - "Freight": 7.23, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10781, + "EmployeeID": 2, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 3, + "Freight": 73.16, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0.2 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10451, - "EmployeeID": 4, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", + "OrderID": 11025, + "EmployeeID": 6, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", "ShipVia": 3, - "Freight": 189.09, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 29.17, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 - }, - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 28, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 55, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0.1 } ] @@ -9401,783 +6960,619 @@ ] }, { - "CustomerID": "SAVEA", - "Company": "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", + "CustomerID": "FRANK", + "Company": "Frankenversand", + "ContactName": "Peter Franken", + "ContactTitle": "Marketing Manager", + "Address": "Berliner Platz 43", + "City": "München", + "PostalCode": 80805, + "Country": "Germany", + "Phone": "089-0877310", + "Fax": "089-0877451", "Orders": [ { - "OrderID": 10452, - "EmployeeID": 8, - "OrderDate": "1997-02-20T00:00:00", - "RequiredDate": "1997-03-20T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", + "OrderID": 10267, + "EmployeeID": 4, + "OrderDate": "1996-07-29T00:00:00", + "RequiredDate": "1996-08-26T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", "ShipVia": 1, - "Freight": 140.26, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 208.58, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 100, - "Discount": 0.06 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 46000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10453, - "EmployeeID": 1, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", - "ShipVia": 2, - "Freight": 25.36, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 40000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10454, + "OrderID": 10337, "EmployeeID": 4, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-25T00:00:00", + "OrderDate": "1996-10-24T00:00:00", + "RequiredDate": "1996-11-21T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", "ShipVia": 3, - "Freight": 2.74, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 108.26, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10455, - "EmployeeID": 8, - "OrderDate": "1997-02-24T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 10342, + "EmployeeID": 4, + "OrderDate": "1996-10-30T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", "ShipVia": 2, - "Freight": 180.45, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 54.83, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 24, + "Discount": 0.2 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 50, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 56, + "Discount": 0.2 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 25, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10456, - "EmployeeID": 8, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 8.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10396, + "EmployeeID": 1, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1997-01-06T00:00:00", + "ShipVia": 3, + "Freight": 135.35, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 23, + "UnitPrice": 7.2, "Quantity": 40, - "Discount": 0.16 + "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, "Quantity": 21, - "Discount": 0.16 + "Discount": 0 } ] }, { - "OrderID": 10457, - "EmployeeID": 2, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-03-25T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", - "ShipVia": 1, - "Freight": 11.57, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10488, + "EmployeeID": 8, + "OrderDate": "1997-03-27T00:00:00", + "RequiredDate": "1997-04-24T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 59, "UnitPrice": 44, - "Quantity": 36, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0.2 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 45000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10458, - "EmployeeID": 7, - "OrderDate": "1997-02-26T00:00:00", - "RequiredDate": "1997-03-26T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", - "ShipVia": 3, - "Freight": 147.06, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 16000, - "ShipCountry": "Belgium", + "OrderID": 10560, + "EmployeeID": 8, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 1, + "Freight": 36.65, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, + "ProductID": 30, + "UnitPrice": 25.89, "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0 + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10459, - "EmployeeID": 4, - "OrderDate": "1997-02-27T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", + "OrderID": 10623, + "EmployeeID": 8, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", "ShipVia": 2, - "Freight": 25.09, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 97.18, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 3, "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 19000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10460, - "EmployeeID": 8, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 10653, + "EmployeeID": 1, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", "ShipVia": 1, - "Freight": 16.27, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 40000, - "ShipCountry": "Sweden", + "Freight": 93.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10461, - "EmployeeID": 1, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-05T00:00:00", - "ShipVia": 3, - "Freight": 148.61, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10670, + "EmployeeID": 4, + "OrderDate": "1997-09-16T00:00:00", + "RequiredDate": "1997-10-14T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 1, + "Freight": 203.48, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 32, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 28, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 60, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 38000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ - { - "OrderID": 10462, - "EmployeeID": 2, - "OrderDate": "1997-03-03T00:00:00", - "RequiredDate": "1997-03-31T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 1, - "Freight": 6.17, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 50000, - "ShipCountry": "UK", - "OrderDetails": [ + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 25, + "Discount": 0 + }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 1, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 21, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 34000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10463, + "OrderID": 10675, "EmployeeID": 5, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-06T00:00:00", - "ShipVia": 3, - "Freight": 14.78, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 21000, - "ShipCountry": "Belgium", + "OrderDate": "1997-09-19T00:00:00", + "RequiredDate": "1997-10-17T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", + "ShipVia": 2, + "Freight": 31.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 21, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 50, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10464, - "EmployeeID": 4, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10717, + "EmployeeID": 1, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 2, - "Freight": 89, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 59.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 16, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 32, + "Discount": 0.06 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 3, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 25, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10791, + "EmployeeID": 6, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-01T00:00:00", + "ShipVia": 2, + "Freight": 16.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 14, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 27.2, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10465, + "OrderID": 10859, "EmployeeID": 1, - "OrderDate": "1997-03-05T00:00:00", - "RequiredDate": "1997-04-02T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 3, - "Freight": 145.04, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 76.1, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0 + "UnitPrice": 4.5, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 45, - "UnitPrice": 7.6, + "ProductID": 64, + "UnitPrice": 33.25, "Quantity": 30, - "Discount": 0.1 + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10929, + "EmployeeID": 6, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 1, + "Freight": 33.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 50, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 77, "UnitPrice": 13, - "Quantity": 25, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10466, - "EmployeeID": 4, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-13T00:00:00", - "ShipVia": 1, - "Freight": 11.93, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderID": 11012, + "EmployeeID": 1, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 3, + "Freight": 242.95, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 36, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.06 } ] } - ], - "Fax": "(11) 555-7647" + ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "GROSR", + "Company": "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", "Orders": [ { - "OrderID": 10467, + "OrderID": 10268, "EmployeeID": 8, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderDate": "1996-07-30T00:00:00", + "RequiredDate": "1996-08-27T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 3, + "Freight": 66.29, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 12, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10468, - "EmployeeID": 3, - "OrderDate": "1997-03-07T00:00:00", - "RequiredDate": "1997-04-04T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", + "OrderID": 10785, + "EmployeeID": 1, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", "ShipVia": 3, - "Freight": 44.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 1.51, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 15, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 10, "Discount": 0 } ] } - ], - "Fax": "0555-09876" + ] }, { "CustomerID": "WHITC", @@ -10193,13 +7588,13 @@ "Fax": "(206) 555-4115", "Orders": [ { - "OrderID": 10469, - "EmployeeID": 1, - "OrderDate": "1997-03-10T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10269, + "EmployeeID": 5, + "OrderDate": "1996-07-31T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", "ShipVia": 1, - "Freight": 60.18, + "Freight": 4.56, "ShipName": "White Clover Markets", "ShipAddress": "1029 - 12th Ave. S.", "ShipCity": "Seattle", @@ -10208,525 +7603,464 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10470, + "OrderID": 10344, "EmployeeID": 4, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderDate": "1996-11-01T00:00:00", + "RequiredDate": "1996-11-29T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", "ShipVia": 2, - "Freight": 64.56, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 23.29, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 15, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 8, - "Discount": 0 + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10471, - "EmployeeID": 2, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 3, - "Freight": 45.59, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 25000, - "ShipCountry": "UK", + "OrderID": 10469, + "EmployeeID": 1, + "OrderDate": "1997-03-10T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 1, + "Freight": 60.18, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 2, + "Discount": 0.16 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 25000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10472, - "EmployeeID": 8, - "OrderDate": "1997-03-12T00:00:00", - "RequiredDate": "1997-04-09T00:00:00", - "ShippedDate": "1997-03-19T00:00:00", - "ShipVia": 1, - "Freight": 4.2, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 21000, - "ShipCountry": "UK", + "OrderID": 10483, + "EmployeeID": 7, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-25T00:00:00", + "ShipVia": 2, + "Freight": 15.28, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 80, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 35, "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 18, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10473, - "EmployeeID": 1, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", + "OrderID": 10504, + "EmployeeID": 4, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-18T00:00:00", "ShipVia": 3, - "Freight": 16.37, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 90698, - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "Freight": 59.13, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 12, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 12, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10474, - "EmployeeID": 5, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-04-10T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 2, - "Freight": 83.49, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 18.6, + "ProductID": 21, + "UnitPrice": 10, "Quantity": 12, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 18, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 21, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 25, "Discount": 0 + } + ] + }, + { + "OrderID": 10596, + "EmployeeID": 8, + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", + "ShipVia": 1, + "Freight": 16.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0.2 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 24, + "Discount": 0.2 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0 + "UnitPrice": 7.75, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 45000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10475, - "EmployeeID": 9, - "OrderDate": "1997-03-14T00:00:00", - "RequiredDate": "1997-04-11T00:00:00", - "ShippedDate": "1997-04-04T00:00:00", - "ShipVia": 1, - "Freight": 68.52, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", + "OrderID": 10693, + "EmployeeID": 3, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-10-10T00:00:00", + "ShipVia": 3, + "Freight": 139.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 13.6, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 60, "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 42, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10476, + "OrderID": 10696, "EmployeeID": 8, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", "ShipVia": 3, - "Freight": 4.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 102.55, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 2, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 70, + "ProductID": 46, "UnitPrice": 12, - "Quantity": 12, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10477, - "EmployeeID": 5, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", - "ShipVia": 2, - "Freight": 13.02, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10723, + "EmployeeID": 3, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-11-27T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", + "ShipVia": 1, + "Freight": 21.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, + "ProductID": 26, + "UnitPrice": 31.23, "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10740, + "EmployeeID": 4, + "OrderDate": "1997-11-13T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", + "ShipVia": 2, + "Freight": 81.88, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, + "Discount": 0.2 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10478, - "EmployeeID": 2, - "OrderDate": "1997-03-18T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-26T00:00:00", - "ShipVia": 3, - "Freight": 4.81, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10861, + "EmployeeID": 4, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-02-27T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 14.93, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 42, + "Discount": 0 + }, + { + "ProductID": 18, + "UnitPrice": 62.5, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10479, + "OrderID": 10904, "EmployeeID": 3, - "OrderDate": "1997-03-19T00:00:00", - "RequiredDate": "1997-04-16T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", "ShipVia": 3, - "Freight": 708.95, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, + "Freight": 162.95, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 30, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 28, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 35, + "Discount": 0 + } + ] + }, + { + "OrderID": 11032, + "EmployeeID": 2, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 606.19, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10480, - "EmployeeID": 6, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", + "OrderID": 11066, + "EmployeeID": 7, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 44.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 30, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 42, + "Discount": 0 + }, + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 35, "Discount": 0 } ] @@ -10734,413 +8068,287 @@ ] }, { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", + "CustomerID": "SPLIR", + "Company": "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", "Orders": [ { - "OrderID": 10481, - "EmployeeID": 8, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", + "OrderID": 10271, + "EmployeeID": 6, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-30T00:00:00", "ShipVia": 2, - "Freight": 64.33, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 4.54, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 33, + "UnitPrice": 2, "Quantity": 24, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10482, - "EmployeeID": 1, - "OrderDate": "1997-03-21T00:00:00", - "RequiredDate": "1997-04-18T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 7.48, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, + "OrderID": 10329, + "EmployeeID": 4, + "OrderDate": "1996-10-15T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 2, + "Freight": 191.67, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ - { - "OrderID": 10483, - "EmployeeID": 7, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-25T00:00:00", - "ShipVia": 2, - "Freight": 15.28, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", - "OrderDetails": [ + "Discount": 0.06 + }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 35, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, "Discount": 0.06 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 12, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 45000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10484, - "EmployeeID": 3, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-01T00:00:00", - "ShipVia": 3, - "Freight": 6.88, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10349, + "EmployeeID": 7, + "OrderDate": "1996-11-08T00:00:00", + "RequiredDate": "1996-12-06T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 1, + "Freight": 8.63, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 14, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10369, + "EmployeeID": 8, + "OrderDate": "1996-12-02T00:00:00", + "RequiredDate": "1996-12-30T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 195.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 3, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 18, + "Discount": 0.25 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10485, - "EmployeeID": 4, - "OrderDate": "1997-03-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-31T00:00:00", + "OrderID": 10385, + "EmployeeID": 1, + "OrderDate": "1996-12-17T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1996-12-23T00:00:00", "ShipVia": 2, - "Freight": 64.45, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 30.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 3, - "UnitPrice": 8, + "ProductID": 60, + "UnitPrice": 27.2, "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 30, - "Discount": 0.1 + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10486, - "EmployeeID": 1, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", + "OrderID": 10432, + "EmployeeID": 3, + "OrderDate": "1997-01-31T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", "ShipVia": 2, - "Freight": 30.53, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 4.34, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 25, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 16, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10487, - "EmployeeID": 2, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-03-28T00:00:00", + "OrderID": 10756, + "EmployeeID": 8, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-02T00:00:00", "ShipVia": 2, - "Freight": 71.07, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 73.21, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 5, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 21, + "Discount": 0.2 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.2 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.2 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10488, - "EmployeeID": 8, - "OrderDate": "1997-03-27T00:00:00", - "RequiredDate": "1997-04-24T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10821, + "EmployeeID": 1, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-15T00:00:00", + "ShipVia": 1, + "Freight": 36.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10489, - "EmployeeID": 6, - "OrderDate": "1997-03-28T00:00:00", - "RequiredDate": "1997-04-25T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 5.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10974, + "EmployeeID": 3, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 12.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 18, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 10, "Discount": 0 } ] @@ -11148,1159 +8356,813 @@ ] }, { - "CustomerID": "HILAA", - "Company": "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": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Fax": "0372-035189", "Orders": [ { - "OrderID": 10490, - "EmployeeID": 7, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-03T00:00:00", - "ShipVia": 2, - "Freight": 210.19, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10273, + "EmployeeID": 3, + "OrderDate": "1996-08-05T00:00:00", + "RequiredDate": "1996-09-02T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", + "ShipVia": 3, + "Freight": 76.07, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 24, + "Discount": 0.06 }, { - "ProductID": 68, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 36, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 33, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10491, - "EmployeeID": 8, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-08T00:00:00", - "ShipVia": 3, - "Freight": 16.96, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10285, + "EmployeeID": 1, + "OrderDate": "1996-08-20T00:00:00", + "RequiredDate": "1996-09-17T00:00:00", + "ShippedDate": "1996-08-26T00:00:00", + "ShipVia": 2, + "Freight": 76.83, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0.16 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 36, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 10000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10492, - "EmployeeID": 3, - "OrderDate": "1997-04-01T00:00:00", - "RequiredDate": "1997-04-29T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 1, - "Freight": 62.89, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderID": 10313, + "EmployeeID": 2, + "OrderDate": "1996-09-24T00:00:00", + "RequiredDate": "1996-10-22T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 1.96, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10345, + "EmployeeID": 2, + "OrderDate": "1996-11-04T00:00:00", + "RequiredDate": "1996-12-02T00:00:00", + "ShippedDate": "1996-11-11T00:00:00", + "ShipVia": 2, + "Freight": 249.06, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 80, + "Discount": 0 }, { "ProductID": 42, "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.06 + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10493, - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 10.64, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10361, + "EmployeeID": 1, + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 183.17, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 54, "Discount": 0.1 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 55, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10494, + "OrderID": 10418, "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 65.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderDate": "1997-01-17T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "ShipVia": 1, + "Freight": 17.55, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 60, "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 19000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ - { - "OrderID": 10495, - "EmployeeID": 3, - "OrderDate": "1997-04-03T00:00:00", - "RequiredDate": "1997-05-01T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 3, - "Freight": 4.65, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 20000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 10, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10496, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 2, - "Freight": 46.77, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10497, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 1, - "Freight": 36.21, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "OrderID": 10451, + "EmployeeID": 4, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 189.09, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 14, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 120, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 28, + "Discount": 0.1 }, { "ProductID": 77, "UnitPrice": 10.4, - "Quantity": 25, - "Discount": 0 + "Quantity": 55, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10498, - "EmployeeID": 8, - "OrderDate": "1997-04-07T00:00:00", - "RequiredDate": "1997-05-05T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 2, - "Freight": 29.75, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10515, + "EmployeeID": 2, + "OrderDate": "1997-04-23T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 1, + "Freight": 204.47, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 14, + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 16, + "Discount": 0.16 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 120, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10499, - "EmployeeID": 4, - "OrderDate": "1997-04-08T00:00:00", - "RequiredDate": "1997-05-06T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 102.02, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, + "Discount": 0.16 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 84, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10500, - "EmployeeID": 6, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-17T00:00:00", + "OrderID": 10527, + "EmployeeID": 7, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", "ShipVia": 1, - "Freight": 42.68, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 41.9, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10501, - "EmployeeID": 9, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", + "OrderID": 10540, + "EmployeeID": 3, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", "ShipVia": 3, - "Freight": 8.85, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, + "Freight": 1007.64, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10502, - "EmployeeID": 2, - "OrderDate": "1997-04-10T00:00:00", - "RequiredDate": "1997-05-08T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 69.32, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 21, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10503, - "EmployeeID": 6, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 16.74, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10549, + "EmployeeID": 5, + "OrderDate": "1997-05-27T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 171.24, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 70, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 55, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 100, + "Discount": 0.16 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 48, + "Discount": 0.16 + } + ] + }, { - "OrderID": 10504, - "EmployeeID": 4, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-18T00:00:00", + "OrderID": 10588, + "EmployeeID": 2, + "OrderDate": "1997-07-03T00:00:00", + "RequiredDate": "1997-07-31T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", "ShipVia": 3, - "Freight": 59.13, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 194.67, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 40, + "Discount": 0.2 }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 100, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10658, + "EmployeeID": 4, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 1, + "Freight": 364.15, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { "ProductID": 21, "UnitPrice": 10, - "Quantity": 12, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 25, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 55, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 70, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 21000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10505, - "EmployeeID": 3, - "OrderDate": "1997-04-14T00:00:00", - "RequiredDate": "1997-05-12T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 7.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 33000, - "ShipCountry": "Canada", + "OrderID": 10691, + "EmployeeID": 2, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-10-22T00:00:00", + "ShipVia": 2, + "Freight": 810.05, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 24, + "Discount": 0 + }, { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 3, + "Quantity": 48, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10506, - "EmployeeID": 9, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 21.19, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10694, + "EmployeeID": 8, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-11-03T00:00:00", + "ShippedDate": "1997-10-09T00:00:00", + "ShipVia": 3, + "Freight": 398.36, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 90, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 }, { "ProductID": 70, "UnitPrice": 15, - "Quantity": 14, - "Discount": 0.1 + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10507, - "EmployeeID": 7, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-04-22T00:00:00", - "ShipVia": 1, - "Freight": 47.45, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 15, - "Discount": 0.16 - }, + "OrderID": 10721, + "EmployeeID": 5, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-11-26T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", + "ShipVia": 3, + "Freight": 48.92, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 50, + "Discount": 0.06 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10508, - "EmployeeID": 1, - "OrderDate": "1997-04-16T00:00:00", - "RequiredDate": "1997-05-14T00:00:00", - "ShippedDate": "1997-05-13T00:00:00", - "ShipVia": 2, - "Freight": 4.99, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, + "OrderID": 10745, + "EmployeeID": 9, + "OrderDate": "1997-11-18T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 1, + "Freight": 3.52, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 7, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10509, - "EmployeeID": 4, - "OrderDate": "1997-04-17T00:00:00", - "RequiredDate": "1997-05-15T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 0.15, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, + "OrderID": 10765, + "EmployeeID": 3, + "OrderDate": "1997-12-04T00:00:00", + "RequiredDate": "1998-01-01T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 3, + "Freight": 42.74, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 80, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10510, - "EmployeeID": 6, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", - "ShipVia": 3, - "Freight": 367.63, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10788, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 42.7, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 36, - "Discount": 0.1 + "Quantity": 40, + "Discount": 0.06 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10511, - "EmployeeID": 4, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 350.64, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10845, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 212.98, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10512, - "EmployeeID": 7, - "OrderDate": "1997-04-21T00:00:00", - "RequiredDate": "1997-05-19T00:00:00", - "ShippedDate": "1997-04-24T00:00:00", - "ShipVia": 2, - "Freight": 3.53, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.16 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 9, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 42, + "Discount": 0.1 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 48, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10513, - "EmployeeID": 7, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-06-03T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", + "OrderID": 10865, + "EmployeeID": 2, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", "ShipVia": 1, - "Freight": 105.65, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, + "Freight": 348.14, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.2 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10514, - "EmployeeID": 3, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", - "ShipVia": 2, - "Freight": 789.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10878, + "EmployeeID": 4, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 46.69, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 20, "UnitPrice": 81, - "Quantity": 39, - "Discount": 0 - }, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10938, + "EmployeeID": 3, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 31.89, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 35, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 70, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0.25 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 39, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 49, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10515, - "EmployeeID": 2, - "OrderDate": "1997-04-23T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 1, - "Freight": 204.47, + "OrderID": 10962, + "EmployeeID": 8, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 275.79, "ShipName": "QUICK-Stop", "ShipAddress": "Taucherstraße 10", "ShipCity": "Cunewalde", @@ -12308,131 +9170,135 @@ "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 16, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, + "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 77, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 120, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0.16 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 84, - "Discount": 0.16 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 44, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10516, - "EmployeeID": 2, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 62.78, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10991, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 1, + "Freight": 38.51, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.2 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 80, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 20, + "Discount": 0.2 }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 90, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10996, + "EmployeeID": 4, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 1.12, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { "ProductID": 42, "UnitPrice": 14, - "Quantity": 20, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 13000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ + }, { - "OrderID": 10517, + "OrderID": 11021, "EmployeeID": 3, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 3, - "Freight": 32.07, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 19000, - "ShipCountry": "UK", + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 1, + "Freight": 297.18, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 11, + "Discount": 0.25 + }, + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 4, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 63, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 44, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, "Discount": 0 } ] @@ -12440,347 +9306,299 @@ ] }, { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", + "CustomerID": "MAGAA", + "Company": "Magazzini Alimentari Riuniti", + "ContactName": "Giovanni Rovelli", + "ContactTitle": "Marketing Manager", + "Address": "Via Ludovico il Moro 22", + "City": "Bergamo", + "PostalCode": 24100, + "Country": "Italy", + "Phone": "035-640230", + "Fax": "035-640231", "Orders": [ { - "OrderID": 10518, - "EmployeeID": 4, - "OrderDate": "1997-04-25T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-05-05T00:00:00", - "ShipVia": 2, - "Freight": 218.15, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10275, + "EmployeeID": 1, + "OrderDate": "1996-08-07T00:00:00", + "RequiredDate": "1996-09-04T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", + "ShipVia": 1, + "Freight": 26.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 6, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10300, + "EmployeeID": 2, + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 17.68, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 9, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10519, - "EmployeeID": 6, - "OrderDate": "1997-04-28T00:00:00", - "RequiredDate": "1997-05-26T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 91.76, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10404, + "EmployeeID": 2, + "OrderDate": "1997-01-03T00:00:00", + "RequiredDate": "1997-01-31T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", + "ShipVia": 1, + "Freight": 155.97, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 42, + "UnitPrice": 11.2, "Quantity": 40, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10520, - "EmployeeID": 7, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 1, - "Freight": 13.37, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10467, + "EmployeeID": 8, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 8, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 5, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10521, + "OrderID": 10635, "EmployeeID": 8, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 17.22, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-08-18T00:00:00", + "RequiredDate": "1997-09-15T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 47.46, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10522, - "EmployeeID": 4, - "OrderDate": "1997-04-30T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-06T00:00:00", - "ShipVia": 1, - "Freight": 45.33, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10754, + "EmployeeID": 6, + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 3, + "Freight": 2.38, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.2 - }, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10784, + "EmployeeID": 4, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 70.09, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 24, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 10000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10523, + "OrderID": 10818, "EmployeeID": 7, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 2, - "Freight": 77.63, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 16000, - "ShipCountry": "UK", + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", + "ShipVia": 3, + "Freight": 65.48, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0.1 + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 37000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10524, - "EmployeeID": 1, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", + "OrderID": 10939, + "EmployeeID": 2, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 2, - "Freight": 244.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 12000, - "ShipCountry": "Sweden", + "Freight": 76.33, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 10, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 60, - "Discount": 0 - }, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10950, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-13T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 2.5, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 5, "Discount": 0 } ] @@ -12788,1370 +9606,1092 @@ ] }, { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", + "CustomerID": "TORTU", + "Company": "Tortuga Restaurante", + "ContactName": "Miguel Angel Paolino", "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", + "Address": "Avda. Azteca 123", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 555-2933", + "Fax": "(5) 555-2934", "Orders": [ { - "OrderID": 10525, - "EmployeeID": 1, - "OrderDate": "1997-05-02T00:00:00", - "RequiredDate": "1997-05-30T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 11.06, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10276, + "EmployeeID": 8, + "OrderDate": "1996-08-08T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-14T00:00:00", + "ShipVia": 3, + "Freight": 13.84, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10526, - "EmployeeID": 4, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-15T00:00:00", - "ShipVia": 2, - "Freight": 58.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10293, + "EmployeeID": 1, + "OrderDate": "1996-08-29T00:00:00", + "RequiredDate": "1996-09-26T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", + "ShipVia": 3, + "Freight": 21.18, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 24, + "UnitPrice": 3.6, "Quantity": 10, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10527, - "EmployeeID": 7, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", - "ShipVia": 1, - "Freight": 41.9, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.1 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10528, - "EmployeeID": 6, - "OrderDate": "1997-05-06T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", + "OrderID": 10304, + "EmployeeID": 1, + "OrderDate": "1996-09-12T00:00:00", + "RequiredDate": "1996-10-10T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", "ShipVia": 2, - "Freight": 3.35, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 63.79, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 3, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 9, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 11000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10529, - "EmployeeID": 5, - "OrderDate": "1997-05-07T00:00:00", - "RequiredDate": "1997-06-04T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", - "ShipVia": 2, - "Freight": 66.69, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 26000, - "ShipCountry": "Belgium", + "OrderID": 10319, + "EmployeeID": 7, + "OrderDate": "1996-10-02T00:00:00", + "RequiredDate": "1996-10-30T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 3, + "Freight": 64.5, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 14, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10530, - "EmployeeID": 3, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", + "OrderID": 10518, + "EmployeeID": 4, + "OrderDate": "1997-04-25T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-05-05T00:00:00", "ShipVia": 2, - "Freight": 339.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 218.15, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 25, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 10576, + "EmployeeID": 3, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", + "ShipVia": 3, + "Freight": 18.56, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 20, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10531, - "EmployeeID": 7, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", - "ShipVia": 1, - "Freight": 8.12, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10676, + "EmployeeID": 2, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-29T00:00:00", + "ShipVia": 2, + "Freight": 2.01, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 2, "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10532, - "EmployeeID": 7, - "OrderDate": "1997-05-09T00:00:00", - "RequiredDate": "1997-06-06T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", + "OrderID": 10842, + "EmployeeID": 1, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 3, - "Freight": 74.46, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 23000, - "ShipCountry": "UK", + "Freight": 54.42, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 11, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 24, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 5, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 21000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10533, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-22T00:00:00", - "ShipVia": 1, - "Freight": 188.04, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 45000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 73, + "ProductID": 70, "UnitPrice": 15, - "Quantity": 24, - "Discount": 0.06 + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10534, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-14T00:00:00", + "OrderID": 10915, + "EmployeeID": 2, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", "ShipVia": 2, - "Freight": 27.94, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 3.51, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 17, + "UnitPrice": 39, "Quantity": 10, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 54, "UnitPrice": 7.45, "Quantity": 10, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10535, - "EmployeeID": 4, - "OrderDate": "1997-05-13T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-21T00:00:00", - "ShipVia": 1, - "Freight": 15.64, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", + "OrderID": 11069, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 15.67, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", "ShipCity": "México D.F.", - "ShipPostalCode": 5023, + "ShipPostalCode": 5033, "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 } ] } - ], - "Fax": "(5) 555-3932" + ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, + "CustomerID": "MORGK", + "Company": "Morgenstern Gesundkost", + "ContactName": "Alexander Feuer", + "ContactTitle": "Marketing Assistant", + "Address": "Heerstr. 22", + "City": "Leipzig", + "PostalCode": 4179, "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "Phone": "0342-023176", + "Fax": "0342-023177", "Orders": [ { - "OrderID": 10536, - "EmployeeID": 3, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-06-11T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 2, - "Freight": 58.88, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "OrderID": 10277, + "EmployeeID": 2, + "OrderDate": "1996-08-09T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-08-13T00:00:00", + "ShipVia": 3, + "Freight": 125.77, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 20, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 12, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, - "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10537, - "EmployeeID": 1, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", + "OrderID": 10575, + "EmployeeID": 5, + "OrderDate": "1997-06-20T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 1, - "Freight": 78.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 127.34, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 6, "Discount": 0 }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 20, - "Discount": 0 - }, { "ProductID": 72, "UnitPrice": 34.8, - "Quantity": 21, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 9, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 44000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10538, - "EmployeeID": 9, - "OrderDate": "1997-05-15T00:00:00", - "RequiredDate": "1997-06-12T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", + "OrderID": 10699, + "EmployeeID": 3, + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", "ShipVia": 3, - "Freight": 4.87, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 27000, - "ShipCountry": "UK", + "Freight": 0.58, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 1, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 12, "Discount": 0 } ] }, { - "OrderID": 10539, - "EmployeeID": 6, - "OrderDate": "1997-05-16T00:00:00", - "RequiredDate": "1997-06-13T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 3, - "Freight": 12.36, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 39000, - "ShipCountry": "UK", + "OrderID": 10779, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 2, + "Freight": 58.13, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 8, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10945, + "EmployeeID": 4, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-04-09T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 10.22, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 6, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 } ] } - ], - "Fax": "(171) 555-1212" + ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10540, - "EmployeeID": 3, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 3, - "Freight": 1007.64, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 14000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", + "Orders": [ + { + "OrderID": 10278, + "EmployeeID": 8, + "OrderDate": "1996-08-12T00:00:00", + "RequiredDate": "1996-09-09T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 92.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 35, + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10541, + "OrderID": 10280, "EmployeeID": 2, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-05-29T00:00:00", + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-09-11T00:00:00", + "ShippedDate": "1996-09-12T00:00:00", "ShipVia": 1, - "Freight": 68.65, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 8.98, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.1 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 4, - "Discount": 0.1 + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 36, - "Discount": 0.1 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10542, - "EmployeeID": 1, - "OrderDate": "1997-05-20T00:00:00", - "RequiredDate": "1997-06-17T00:00:00", - "ShippedDate": "1997-05-26T00:00:00", + "OrderID": 10384, + "EmployeeID": 3, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", "ShipVia": 3, - "Freight": 10.95, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 168.64, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 24, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10543, - "EmployeeID": 8, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 48.17, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10444, + "EmployeeID": 3, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-21T00:00:00", + "ShipVia": 3, + "Freight": 3.5, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 22000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10544, - "EmployeeID": 4, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 24.91, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10524, + "EmployeeID": 1, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", + "ShipVia": 2, + "Freight": 244.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 12000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 7, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 7, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10545, - "EmployeeID": 8, - "OrderDate": "1997-05-22T00:00:00", - "RequiredDate": "1997-06-19T00:00:00", - "ShippedDate": "1997-06-26T00:00:00", + "OrderID": 10572, + "EmployeeID": 3, + "OrderDate": "1997-06-18T00:00:00", + "RequiredDate": "1997-07-16T00:00:00", + "ShippedDate": "1997-06-25T00:00:00", "ShipVia": 2, - "Freight": 11.92, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, - "ShipCountry": "USA", + "Freight": 116.43, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 40000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 32, + "UnitPrice": 32, "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10546, + "OrderID": 10626, "EmployeeID": 1, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-05-27T00:00:00", - "ShipVia": 3, - "Freight": 194.72, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-08T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 2, + "Freight": 138.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 34000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 10, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 27000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10547, - "EmployeeID": 3, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", - "ShipVia": 2, - "Freight": 178.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10654, + "EmployeeID": 5, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 1, + "Freight": 55.26, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 12000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 60, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10548, - "EmployeeID": 3, - "OrderDate": "1997-05-26T00:00:00", - "RequiredDate": "1997-06-23T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", + "OrderID": 10672, + "EmployeeID": 9, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", "ShipVia": 2, - "Freight": 1.43, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 95.75, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 50000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10549, - "EmployeeID": 5, - "OrderDate": "1997-05-27T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 171.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10689, + "EmployeeID": 1, + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-29T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", + "ShipVia": 2, + "Freight": 13.42, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 16000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 55, - "Discount": 0.16 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 100, - "Discount": 0.16 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 48, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10550, - "EmployeeID": 7, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-06-25T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", + "OrderID": 10733, + "EmployeeID": 1, + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-10T00:00:00", "ShipVia": 3, - "Freight": 4.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 110.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 34000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 16, + "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0.1 - }, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10778, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", + "ShipVia": 1, + "Freight": 6.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 39000, + "ShipCountry": "Sweden", + "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 10, - "Discount": 0.1 + "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10551, - "EmployeeID": 4, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", + "OrderID": 10837, + "EmployeeID": 9, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 3, - "Freight": 72.95, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 13.32, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 17000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, + "ProductID": 47, + "UnitPrice": 9.5, "Quantity": 40, - "Discount": 0 + "Discount": 0.25 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10552, - "EmployeeID": 2, - "OrderDate": "1997-05-29T00:00:00", - "RequiredDate": "1997-06-26T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 1, - "Freight": 83.22, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10857, + "EmployeeID": 8, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 2, + "Freight": 188.85, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 18, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.25 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10553, - "EmployeeID": 2, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-03T00:00:00", + "OrderID": 10866, + "EmployeeID": 5, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-03T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 109.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 37000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 6, + "Discount": 0.25 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 40, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10875, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", "ShipVia": 2, - "Freight": 149.49, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 32.37, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 18000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 14, - "Discount": 0 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0.1 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 24, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10924, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 2, + "Freight": 151.52, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 35000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 30, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 35, - "UnitPrice": 18, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 6, "Discount": 0 } @@ -14160,169 +10700,261 @@ ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, + "CustomerID": "LEHMS", + "Company": "Lehmanns Marktstand", + "ContactName": "Renate Messner", + "ContactTitle": "Sales Representative", + "Address": "Magazinweg 7", + "City": "Frankfurt a.M.", + "PostalCode": 60528, "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", + "Phone": "069-0245984", + "Fax": "069-0245874", "Orders": [ { - "OrderID": 10554, + "OrderID": 10279, + "EmployeeID": 8, + "OrderDate": "1996-08-13T00:00:00", + "RequiredDate": "1996-09-10T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 25.83, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10284, "EmployeeID": 4, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 3, - "Freight": 120.97, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, + "OrderDate": "1996-08-19T00:00:00", + "RequiredDate": "1996-09-16T00:00:00", + "ShippedDate": "1996-08-27T00:00:00", + "ShipVia": 1, + "Freight": 76.56, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 60, + "UnitPrice": 27.2, "Quantity": 20, - "Discount": 0.06 + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, + "ProductID": 67, + "UnitPrice": 11.2, + "Quantity": 5, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10343, + "EmployeeID": 4, + "OrderDate": "1996-10-31T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-11-06T00:00:00", + "ShipVia": 1, + "Freight": 110.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 4, "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10555, - "EmployeeID": 6, - "OrderDate": "1997-06-02T00:00:00", - "RequiredDate": "1997-06-30T00:00:00", - "ShippedDate": "1997-06-04T00:00:00", - "ShipVia": 3, - "Freight": 252.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10497, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", + "ShipVia": 1, + "Freight": 36.21, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10522, + "EmployeeID": 4, + "OrderDate": "1997-04-30T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-06T00:00:00", + "ShipVia": 1, + "Freight": 45.33, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0.2 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 18, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, "Discount": 0.2 + } + ] + }, + { + "OrderID": 10534, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-14T00:00:00", + "ShipVia": 2, + "Freight": 27.94, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 40, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10556, - "EmployeeID": 2, - "OrderDate": "1997-06-03T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 9.8, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10536, + "EmployeeID": 3, + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-06-11T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 2, + "Freight": 58.88, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 15, + "Discount": 0.25 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { "OrderID": 10557, "EmployeeID": 9, @@ -14350,418 +10982,349 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10558, - "EmployeeID": 1, - "OrderDate": "1997-06-04T00:00:00", - "RequiredDate": "1997-07-02T00:00:00", - "ShippedDate": "1997-06-10T00:00:00", - "ShipVia": 2, - "Freight": 72.97, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 35000, - "ShipCountry": "UK", + "OrderID": 10592, + "EmployeeID": 3, + "OrderDate": "1997-07-08T00:00:00", + "RequiredDate": "1997-08-05T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 32.1, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 15, + "UnitPrice": 15.5, "Quantity": 25, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 5, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10772, + "EmployeeID": 3, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 91.28, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10862, + "EmployeeID": 8, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 53.23, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 18, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 3, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10559, - "EmployeeID": 6, - "OrderDate": "1997-06-05T00:00:00", - "RequiredDate": "1997-07-03T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 8.05, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10891, + "EmployeeID": 7, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 2, + "Freight": 20.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, "Discount": 0.06 - }, + } + ] + }, + { + "OrderID": 10934, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 3, + "Freight": 32.01, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10560, - "EmployeeID": 8, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", + "OrderID": 11070, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-02T00:00:00", "ShipVia": 1, - "Freight": 36.65, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, + "Freight": 136, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 2, + "UnitPrice": 19, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10561, - "EmployeeID": 2, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", - "ShipVia": 2, - "Freight": 242.21, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 23000, - "ShipCountry": "Sweden", + "CustomerID": "ROMEY", + "Company": "Romero y tomillo", + "ContactName": "Alejandra Camino", + "ContactTitle": "Accounting Manager", + "Address": "Gran Vía, 1", + "City": "Madrid", + "PostalCode": 28001, + "Country": "Spain", + "Phone": "(91) 745 6200", + "Fax": "(91) 745 6210", + "Orders": [ + { + "OrderID": 10281, + "EmployeeID": 4, + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-08-28T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 2.94, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 50, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 6, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10562, - "EmployeeID": 1, - "OrderDate": "1997-06-09T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-12T00:00:00", - "ShipVia": 1, - "Freight": 22.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 20, - "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10563, - "EmployeeID": 2, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-06-24T00:00:00", - "ShipVia": 2, - "Freight": 60.43, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10282, + "EmployeeID": 4, + "OrderDate": "1996-08-15T00:00:00", + "RequiredDate": "1996-09-12T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 70, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10564, - "EmployeeID": 4, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-08T00:00:00", - "ShippedDate": "1997-06-16T00:00:00", + "OrderID": 10306, + "EmployeeID": 1, + "OrderDate": "1996-09-16T00:00:00", + "RequiredDate": "1996-10-14T00:00:00", + "ShippedDate": "1996-09-23T00:00:00", "ShipVia": 3, - "Freight": 13.75, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 7.56, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 38000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10565, - "EmployeeID": 8, - "OrderDate": "1997-06-11T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", + "OrderID": 10917, + "EmployeeID": 4, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", "ShipVia": 2, - "Freight": 7.15, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 21000, - "ShipCountry": "Canada", + "Freight": 8.29, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 1, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10566, - "EmployeeID": 9, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", + "OrderID": 11013, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 1, - "Freight": 88.4, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 32.99, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 18, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 2, "Discount": 0 } ] @@ -14769,1433 +11332,1162 @@ ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "LILAS", + "Company": "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", "Orders": [ { - "OrderID": 10567, - "EmployeeID": 1, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-17T00:00:00", - "ShipVia": 1, - "Freight": 33.97, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10283, + "EmployeeID": 3, + "OrderDate": "1996-08-16T00:00:00", + "RequiredDate": "1996-09-13T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", + "ShipVia": 3, + "Freight": 84.81, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 60, - "Discount": 0.2 + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ - { - "OrderID": 10568, - "EmployeeID": 3, - "OrderDate": "1997-06-13T00:00:00", - "RequiredDate": "1997-07-11T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 3, - "Freight": 6.54, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", - "OrderDetails": [ + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 35, + "Discount": 0 + }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 5, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10569, - "EmployeeID": 5, - "OrderDate": "1997-06-16T00:00:00", - "RequiredDate": "1997-07-14T00:00:00", - "ShippedDate": "1997-07-11T00:00:00", + "OrderID": 10296, + "EmployeeID": 6, + "OrderDate": "1996-09-03T00:00:00", + "RequiredDate": "1996-10-01T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 1, - "Freight": 58.98, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 0.12, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 16, + "UnitPrice": 13.9, "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 22000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10570, + "OrderID": 10330, "EmployeeID": 3, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-19T00:00:00", - "ShipVia": 3, - "Freight": 188.99, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", + "ShipVia": 1, + "Freight": 12.75, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10571, - "EmployeeID": 8, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", + "OrderID": 10357, + "EmployeeID": 1, + "OrderDate": "1996-11-19T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", "ShipVia": 3, - "Freight": 26.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 34.88, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 11, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10572, + "OrderID": 10381, "EmployeeID": 3, - "OrderDate": "1997-06-18T00:00:00", - "RequiredDate": "1997-07-16T00:00:00", - "ShippedDate": "1997-06-25T00:00:00", - "ShipVia": 2, - "Freight": 116.43, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 40000, - "ShipCountry": "Sweden", + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 7.99, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, - "Discount": 0.1 - }, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 14, + "Discount": 0 + } + ] + }, + { + "OrderID": 10461, + "EmployeeID": 1, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-05T00:00:00", + "ShipVia": 3, + "Freight": 148.61, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 28, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10573, - "EmployeeID": 7, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-20T00:00:00", - "ShipVia": 3, - "Freight": 84.84, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10499, + "EmployeeID": 4, + "OrderDate": "1997-04-08T00:00:00", + "RequiredDate": "1997-05-06T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 2, + "Freight": 102.02, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 40, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 49, + "UnitPrice": 20, "Quantity": 25, "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "TRAIH", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10574, - "EmployeeID": 4, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10543, + "EmployeeID": 8, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", "ShipVia": 2, - "Freight": 37.6, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", + "Freight": 48.17, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 2, - "Discount": 0 - }, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10780, + "EmployeeID": 2, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-25T00:00:00", + "ShipVia": 1, + "Freight": 42.13, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 6, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10575, + "OrderID": 10823, "EmployeeID": 5, - "OrderDate": "1997-06-20T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 1, - "Freight": 127.34, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 163.97, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 6, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10576, - "EmployeeID": 3, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10899, + "EmployeeID": 5, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", "ShipVia": 3, - "Freight": 18.56, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 1.21, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, - "Discount": 0 + "Quantity": 8, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10577, - "EmployeeID": 9, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10997, + "EmployeeID": 8, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 25.41, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", + "Freight": 73.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 46, + "UnitPrice": 12, "Quantity": 20, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10578, - "EmployeeID": 4, - "OrderDate": "1997-06-24T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", - "ShipVia": 3, - "Freight": 29.6, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 31000, - "ShipCountry": "UK", + "OrderID": 11065, + "EmployeeID": 8, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-29T00:00:00", + "ShipVia": 1, + "Freight": 12.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 6, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, + "Discount": 0.25 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10579, + "OrderID": 11071, "EmployeeID": 1, - "OrderDate": "1997-06-25T00:00:00", - "RequiredDate": "1997-07-23T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 2, - "Freight": 13.73, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-10T00:00:00", + "ShipVia": 1, + "Freight": 0.93, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 10, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 21, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0.06 } ] } - ], - "Fax": "(415) 555-5938" + ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", + "CustomerID": "RICAR", + "Company": "Ricardo Adocicados", + "ContactName": "Janete Limeira", + "ContactTitle": "Sales Associate", + "Address": "Av. Copacabana, 267", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-3412", + "Fax": "(21) 555-3413", "Orders": [ { - "OrderID": 10580, - "EmployeeID": 4, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-01T00:00:00", + "OrderID": 10287, + "EmployeeID": 8, + "OrderDate": "1996-08-22T00:00:00", + "RequiredDate": "1996-09-19T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", "ShipVia": 3, - "Freight": 75.89, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 12.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10581, - "EmployeeID": 3, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-02T00:00:00", - "ShipVia": 1, - "Freight": 3.01, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", + "OrderID": 10299, + "EmployeeID": 4, + "OrderDate": "1996-09-06T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-13T00:00:00", + "ShipVia": 2, + "Freight": 29.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10582, - "EmployeeID": 3, - "OrderDate": "1997-06-27T00:00:00", - "RequiredDate": "1997-07-25T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 10447, + "EmployeeID": 4, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-03-07T00:00:00", "ShipVia": 2, - "Freight": 27.71, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "Freight": 68.66, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 4, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 14, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10583, - "EmployeeID": 2, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", + "OrderID": 10481, + "EmployeeID": 8, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", "ShipVia": 2, - "Freight": 7.28, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 64.33, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 24, "Discount": 0 }, { "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.16 + "UnitPrice": 27.2, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10563, + "EmployeeID": 2, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-06-24T00:00:00", + "ShipVia": 2, + "Freight": 60.43, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 70, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10584, + "OrderID": 10622, "EmployeeID": 4, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 1, - "Freight": 59.14, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderDate": "1997-08-06T00:00:00", + "RequiredDate": "1997-09-03T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 3, + "Freight": 50.97, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 31, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 68, "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.06 + "Quantity": 18, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10585, - "EmployeeID": 7, - "OrderDate": "1997-07-01T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 1, - "Freight": 13.41, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, + "OrderID": 10648, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-09T00:00:00", + "ShipVia": 2, + "Freight": 14.25, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 22, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10586, - "EmployeeID": 9, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 1, - "Freight": 0.48, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10813, + "EmployeeID": 1, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 1, + "Freight": 47.38, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 12, + "Discount": 0.2 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10587, - "EmployeeID": 1, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", + "OrderID": 10851, + "EmployeeID": 5, + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-23T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", "ShipVia": 1, - "Freight": 62.52, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 160.55, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", "ShipCity": "Sao Paulo", "ShipRegion": "RJ", "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, + "Discount": 0.06 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10588, - "EmployeeID": 2, - "OrderDate": "1997-07-03T00:00:00", - "RequiredDate": "1997-07-31T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 3, - "Freight": 194.67, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10877, + "EmployeeID": 1, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 1, + "Freight": 38.06, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 100, - "Discount": 0.2 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10589, - "EmployeeID": 8, - "OrderDate": "1997-07-04T00:00:00", - "RequiredDate": "1997-08-01T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 11059, + "EmployeeID": 2, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-06-10T00:00:00", + "ShippedDate": "1998-06-15T00:00:00", "ShipVia": 2, - "Freight": 4.42, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 85.8, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 30, "Discount": 0 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 43000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10590, - "EmployeeID": 4, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 3, - "Freight": 44.77, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 40000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0 } ] } ] }, { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10591, - "EmployeeID": 1, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-07-21T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", + "CustomerID": "REGGC", + "Company": "Reggiani Caseifici", + "ContactName": "Maurizio Moroni", + "ContactTitle": "Sales Associate", + "Address": "Strada Provinciale 124", + "City": "Reggio Emilia", + "PostalCode": 42100, + "Country": "Italy", + "Phone": "0522-556721", + "Fax": "0522-556722", + "Orders": [ + { + "OrderID": 10288, + "EmployeeID": 4, + "OrderDate": "1996-08-23T00:00:00", + "RequiredDate": "1996-09-20T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", "ShipVia": 1, - "Freight": 55.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 7.45, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 54, + "UnitPrice": 5.9, "Quantity": 10, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 50, - "Discount": 0 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10592, - "EmployeeID": 3, - "OrderDate": "1997-07-08T00:00:00", - "RequiredDate": "1997-08-05T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", + "OrderID": 10428, + "EmployeeID": 7, + "OrderDate": "1997-01-28T00:00:00", + "RequiredDate": "1997-02-25T00:00:00", + "ShippedDate": "1997-02-04T00:00:00", "ShipVia": 1, - "Freight": 32.1, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 11.09, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 25, - "Discount": 0.06 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0 } ] }, { - "OrderID": 10593, - "EmployeeID": 7, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-08-13T00:00:00", - "ShipVia": 2, - "Freight": 174.2, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10443, + "EmployeeID": 8, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 1, + "Freight": 13.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10594, - "EmployeeID": 3, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", - "ShipVia": 2, - "Freight": 5.24, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10562, + "EmployeeID": 1, + "OrderDate": "1997-06-09T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-12T00:00:00", + "ShipVia": 1, + "Freight": 22.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 24, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10595, - "EmployeeID": 2, - "OrderDate": "1997-07-10T00:00:00", - "RequiredDate": "1997-08-07T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 10586, + "EmployeeID": 9, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", "ShipVia": 1, - "Freight": 96.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 0.48, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 120, - "Discount": 0.25 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 65, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10596, - "EmployeeID": 8, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", - "ShipVia": 1, - "Freight": 16.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10655, + "EmployeeID": 1, + "OrderDate": "1997-09-03T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 4.41, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, "Discount": 0.2 + } + ] + }, + { + "OrderID": 10727, + "EmployeeID": 2, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-12-01T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 89.9, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 24, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10597, - "EmployeeID": 7, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", - "ShipVia": 3, - "Freight": 35.12, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10812, + "EmployeeID": 5, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", + "ShipVia": 1, + "Freight": 59.78, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 16, + "Discount": 0.1 }, { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, "Quantity": 20, "Discount": 0 + } + ] + }, + { + "OrderID": 10908, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 32.96, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 14, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10598, - "EmployeeID": 1, - "OrderDate": "1997-07-14T00:00:00", - "RequiredDate": "1997-08-11T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", + "OrderID": 10942, + "EmployeeID": 9, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 3, - "Freight": 44.42, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 17.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 50, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 28, + "Discount": 0 + } + ] + }, + { + "OrderID": 11010, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 28.71, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, "Discount": 0 } ] - } + }, + { + "OrderID": 11062, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-06-28T00:00:00", + "ShipVia": 2, + "Freight": 29.93, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 12, + "Discount": 0.2 + } + ] + } ] }, { @@ -16205,1875 +12497,1438 @@ "ContactTitle": "Sales Representative", "Address": "Fauntleroy Circus", "City": "London", - "PostalCode": 20000, + "PostalCode": 22000, "Country": "UK", "Phone": "(171) 555-1212", "Orders": [ { - "OrderID": 10599, - "EmployeeID": 6, - "OrderDate": "1997-07-15T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", + "OrderID": 10289, + "EmployeeID": 7, + "OrderDate": "1996-08-26T00:00:00", + "RequiredDate": "1996-09-23T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", "ShipVia": 3, - "Freight": 29.98, + "Freight": 22.77, "ShipName": "Best Beverages", "ShipAddress": "Fauntleroy Circus", "ShipCity": "London", - "ShipPostalCode": 14000, + "ShipPostalCode": 22000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10600, - "EmployeeID": 4, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-13T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", - "ShipVia": 1, - "Freight": 45.13, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "OrderID": 10471, + "EmployeeID": 2, + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 3, + "Freight": 45.59, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 25000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 4, + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10601, - "EmployeeID": 7, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", - "ShipVia": 1, - "Freight": 58.3, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10484, + "EmployeeID": 3, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-01T00:00:00", + "ShipVia": 3, + "Freight": 6.88, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 60, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10602, - "EmployeeID": 8, - "OrderDate": "1997-07-17T00:00:00", - "RequiredDate": "1997-08-14T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", - "ShipVia": 2, - "Freight": 2.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10603, - "EmployeeID": 8, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", - "ShipVia": 2, - "Freight": 48.77, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10538, + "EmployeeID": 9, + "OrderDate": "1997-05-15T00:00:00", + "RequiredDate": "1997-06-12T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 3, + "Freight": 4.87, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 27000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 48, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 1, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10604, - "EmployeeID": 1, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", - "ShipVia": 1, - "Freight": 7.46, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10578, + "EmployeeID": 4, + "OrderDate": "1997-06-24T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 3, + "Freight": 29.6, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 31000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 6, + "Discount": 0 + } + ] + }, + { + "OrderID": 10599, + "EmployeeID": 6, + "OrderDate": "1997-07-15T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", + "ShipVia": 3, + "Freight": 29.98, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 14000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 10, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 32000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10605, - "EmployeeID": 1, - "OrderDate": "1997-07-21T00:00:00", - "RequiredDate": "1997-08-18T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", + "OrderID": 10943, + "EmployeeID": 4, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 379.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", + "Freight": 2.17, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 21, + "Discount": 0 }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10947, + "EmployeeID": 3, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", + "OrderDetails": [ { "ProductID": 59, "UnitPrice": 55, - "Quantity": 20, - "Discount": 0.06 - }, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11023, + "EmployeeID": 1, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 123.83, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 36000, + "ShipCountry": "UK", + "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0 } ] } - ] + ], + "Fax": "(171) 555-1212" }, { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", + "CustomerID": "COMMI", + "Company": "Comércio Mineiro", + "ContactName": "Pedro Afonso", + "ContactTitle": "Sales Associate", + "Address": "Av. dos Lusíadas, 23", "City": "Sao Paulo", "Region": "SP", - "PostalCode": 5634, + "PostalCode": 5432, "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", + "Phone": "(11) 555-7647", "Orders": [ { - "OrderID": 10606, - "EmployeeID": 4, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-31T00:00:00", - "ShipVia": 3, - "Freight": 79.4, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", + "OrderID": 10290, + "EmployeeID": 8, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", + "ShipVia": 1, + "Freight": 79.7, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", "ShipCity": "Sao Paulo", "ShipRegion": "SP", - "ShipPostalCode": 5634, + "ShipPostalCode": 5432, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 5, + "UnitPrice": 17, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10607, - "EmployeeID": 5, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", - "ShipVia": 1, - "Freight": 200.24, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 100, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10466, + "EmployeeID": 4, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-13T00:00:00", + "ShipVia": 1, + "Freight": 11.93, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 42, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 12, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10608, + "OrderID": 10494, "EmployeeID": 4, - "OrderDate": "1997-07-23T00:00:00", - "RequiredDate": "1997-08-20T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", "ShipVia": 2, - "Freight": 27.79, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 65.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10609, - "EmployeeID": 7, - "OrderDate": "1997-07-24T00:00:00", - "RequiredDate": "1997-08-21T00:00:00", - "ShippedDate": "1997-07-30T00:00:00", + "OrderID": 10969, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", "ShipVia": 2, - "Freight": 1.85, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 0.21, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 3, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11042, + "EmployeeID": 2, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 29.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, "Discount": 0 } ] } - ] + ], + "Fax": "(11) 555-7647" }, { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", + "CustomerID": "TRADH", + "Company": "Tradição Hipermercados", + "ContactName": "Anabela Domingues", + "ContactTitle": "Sales Representative", + "Address": "Av. Inês de Castro, 414", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5634, + "Country": "Brazil", + "Phone": "(11) 555-2167", + "Fax": "(11) 555-2168", "Orders": [ { - "OrderID": 10610, - "EmployeeID": 8, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", - "ShipVia": 1, - "Freight": 26.78, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10292, + "EmployeeID": 1, + "OrderDate": "1996-08-28T00:00:00", + "RequiredDate": "1996-09-25T00:00:00", + "ShippedDate": "1996-09-02T00:00:00", + "ShipVia": 2, + "Freight": 1.35, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10611, - "EmployeeID": 6, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderID": 10496, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", "ShipVia": 2, - "Freight": 80.65, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 46.77, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10606, + "EmployeeID": 4, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-31T00:00:00", + "ShipVia": 3, + "Freight": 79.4, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10612, - "EmployeeID": 1, - "OrderDate": "1997-07-28T00:00:00", - "RequiredDate": "1997-08-25T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderID": 10830, + "EmployeeID": 4, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", "ShipVia": 2, - "Freight": 544.08, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 81.83, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 55, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 18, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 28, "Discount": 0 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 40, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 80, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 24, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10613, - "EmployeeID": 4, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 8.11, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10834, + "EmployeeID": 1, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 3, + "Freight": 29.78, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 8, + "Discount": 0.06 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10839, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-22T00:00:00", + "ShipVia": 3, + "Freight": 35.43, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "PostalCode": 48637, + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", "Orders": [ { - "OrderID": 10614, - "EmployeeID": 8, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 3, - "Freight": 1.93, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10298, + "EmployeeID": 6, + "OrderDate": "1996-09-05T00:00:00", + "RequiredDate": "1996-10-03T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", + "ShipVia": 2, + "Freight": 168.22, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 14, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 8, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 5, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10615, - "EmployeeID": 2, - "OrderDate": "1997-07-30T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", - "ShipVia": 3, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10309, + "EmployeeID": 3, + "OrderDate": "1996-09-19T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 1, + "Freight": 47.3, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ - { - "OrderID": 10616, - "EmployeeID": 1, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-05T00:00:00", - "ShipVia": 2, - "Freight": 116.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, + "Discount": 0 }, { "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "UnitPrice": 17.2, + "Quantity": 3, + "Discount": 0 } ] }, { - "OrderID": 10617, - "EmployeeID": 4, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-04T00:00:00", + "OrderID": 10335, + "EmployeeID": 7, + "OrderDate": "1996-10-22T00:00:00", + "RequiredDate": "1996-11-19T00:00:00", + "ShippedDate": "1996-10-24T00:00:00", "ShipVia": 2, - "Freight": 18.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 42.11, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 28000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10618, - "EmployeeID": 1, - "OrderDate": "1997-08-01T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", - "ShipVia": 1, - "Freight": 154.68, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 30000, - "ShipCountry": "Canada", - "OrderDetails": [ + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 7, + "Discount": 0.2 + }, { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 70, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 48, + "Discount": 0.2 } ] }, { - "OrderID": 10619, - "EmployeeID": 3, - "OrderDate": "1997-08-04T00:00:00", - "RequiredDate": "1997-09-01T00:00:00", - "ShippedDate": "1997-08-07T00:00:00", + "OrderID": 10373, + "EmployeeID": 4, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-11T00:00:00", "ShipVia": 3, - "Freight": 91.05, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 21000, - "ShipCountry": "Canada", + "Freight": 124.12, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 42, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 80, + "Discount": 0.2 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 49000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ + }, { - "OrderID": 10620, - "EmployeeID": 2, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", + "OrderID": 10380, + "EmployeeID": 8, + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", "ShipVia": 3, - "Freight": 0.94, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 31000, - "ShipCountry": "Canada", + "Freight": 35.03, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 21000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10621, - "EmployeeID": 4, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", - "ShipVia": 2, - "Freight": 23.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 50269, - "ShipPostalCode": 39000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 10, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 6, + "Discount": 0.1 }, { "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10622, - "EmployeeID": 4, - "OrderDate": "1997-08-06T00:00:00", - "RequiredDate": "1997-09-03T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", - "ShipVia": 3, - "Freight": 50.97, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10429, + "EmployeeID": 3, + "OrderDate": "1997-01-29T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 56.63, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, - "Discount": 0.2 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10623, - "EmployeeID": 8, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", + "OrderID": 10503, + "EmployeeID": 6, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", "ShipVia": 2, - "Freight": 97.18, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 16.74, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { "ProductID": 14, "UnitPrice": 23.25, - "Quantity": 21, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 3, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10624, - "EmployeeID": 4, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 2, - "Freight": 94.8, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "OrderID": 10516, + "EmployeeID": 2, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 62.78, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 6, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 80, + "Discount": 0.1 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10625, - "EmployeeID": 3, - "OrderDate": "1997-08-08T00:00:00", - "RequiredDate": "1997-09-05T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", + "OrderID": 10567, + "EmployeeID": 1, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-17T00:00:00", "ShipVia": 1, - "Freight": 43.9, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 33.97, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 5, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 19000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10626, - "EmployeeID": 1, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-08T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 2, - "Freight": 138.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 34000, - "ShipCountry": "Sweden", + "OrderID": 10646, + "EmployeeID": 9, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 142.33, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.25 }, { "ProductID": 71, "UnitPrice": 21.5, - "Quantity": 20, - "Discount": 0 + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10627, - "EmployeeID": 8, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10661, + "EmployeeID": 7, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", "ShipVia": 3, - "Freight": 107.46, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 17.55, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 49, + "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10628, - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 3, - "Freight": 30.36, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10687, + "EmployeeID": 9, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-30T00:00:00", + "ShipVia": 2, + "Freight": 296.43, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ - { - "OrderID": 10629, - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 3, - "Freight": 85.46, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", - "OrderDetails": [ + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 50, + "Discount": 0.25 + }, { "ProductID": 29, "UnitPrice": 123.79, - "Quantity": 20, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 9, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0.25 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10630, - "EmployeeID": 1, - "OrderDate": "1997-08-13T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 2, - "Freight": 32.35, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10701, + "EmployeeID": 6, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-10-27T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 3, + "Freight": 220.31, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.16 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0.16 }, { "ProductID": 76, "UnitPrice": 18, "Quantity": 35, - "Discount": 0 + "Discount": 0.16 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10631, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-15T00:00:00", + "OrderID": 10712, + "EmployeeID": 3, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", "ShipVia": 1, - "Freight": 0.87, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 89.93, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10632, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 1, - "Freight": 41.38, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10736, + "EmployeeID": 9, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 44.1, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10633, - "EmployeeID": 7, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-18T00:00:00", - "ShipVia": 3, - "Freight": 477.9, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10897, + "EmployeeID": 3, + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-25T00:00:00", + "ShipVia": 2, + "Freight": 603.54, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 80, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 13, - "Discount": 0.16 - }, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 36, + "Discount": 0 + } + ] + }, + { + "OrderID": 10912, + "EmployeeID": 2, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 580.91, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 80, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10634, - "EmployeeID": 4, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", - "ShipVia": 3, - "Freight": 487.38, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "OrderID": 10985, + "EmployeeID": 2, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 91.51, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 36, + "Discount": 0.1 }, { "ProductID": 18, "UnitPrice": 62.5, - "Quantity": 50, - "Discount": 0 + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 15, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 35, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11063, + "EmployeeID": 3, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 81.73, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 2, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "WANDK", + "Company": "Die Wandernde Kuh", + "ContactName": "Rita Müller", + "ContactTitle": "Sales Representative", + "Address": "Adenauerallee 900", + "City": "Stuttgart", + "PostalCode": 70563, + "Country": "Germany", + "Phone": "0711-020361", + "Fax": "0711-035428", "Orders": [ { - "OrderID": 10635, + "OrderID": 10301, "EmployeeID": 8, - "OrderDate": "1997-08-18T00:00:00", - "RequiredDate": "1997-09-15T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", - "ShipVia": 3, - "Freight": 47.46, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", + "ShipVia": 2, + "Freight": 45.08, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 40, + "UnitPrice": 14.7, "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 15, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10636, - "EmployeeID": 4, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 1.15, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10312, + "EmployeeID": 2, + "OrderDate": "1996-09-23T00:00:00", + "RequiredDate": "1996-10-21T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 40.26, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 6, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10637, - "EmployeeID": 6, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 201.29, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10348, + "EmployeeID": 4, + "OrderDate": "1996-11-07T00:00:00", + "RequiredDate": "1996-12-05T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 2, + "Freight": 0.78, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 50, - "UnitPrice": 16.25, + "ProductID": 23, + "UnitPrice": 7.2, "Quantity": 25, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10638, - "EmployeeID": 3, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", - "ShipVia": 1, - "Freight": 158.44, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10356, + "EmployeeID": 6, + "OrderDate": "1996-11-18T00:00:00", + "RequiredDate": "1996-12-16T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", + "ShipVia": 2, + "Freight": 36.71, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 60, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10639, + "OrderID": 10513, "EmployeeID": 7, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-08-27T00:00:00", - "ShipVia": 3, - "Freight": 38.64, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ - { - "OrderID": 10640, - "EmployeeID": 4, - "OrderDate": "1997-08-21T00:00:00", - "RequiredDate": "1997-09-18T00:00:00", - "ShippedDate": "1997-08-28T00:00:00", + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-06-03T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", "ShipVia": 1, - "Freight": 23.55, + "Freight": 105.65, "ShipName": "Die Wandernde Kuh", "ShipAddress": "Adenauerallee 900", "ShipCity": "Stuttgart", @@ -18081,996 +13936,833 @@ "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, "Quantity": 15, - "Discount": 0.25 + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10641, - "EmployeeID": 4, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 2, - "Freight": 179.61, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10632, + "EmployeeID": 8, + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 1, + "Freight": 41.38, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 19, - "Quantity": 50, - "Discount": 0 + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10642, - "EmployeeID": 7, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-09-05T00:00:00", - "ShipVia": 3, - "Freight": 41.89, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10640, + "EmployeeID": 4, + "OrderDate": "1997-08-21T00:00:00", + "RequiredDate": "1997-09-18T00:00:00", + "ShippedDate": "1997-08-28T00:00:00", + "ShipVia": 1, + "Freight": 23.55, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10643, - "EmployeeID": 6, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", - "ShipVia": 1, - "Freight": 29.46, - "ShipName": "Alfreds Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, + "OrderID": 10651, + "EmployeeID": 8, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 20.6, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0.25 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 2, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 20, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10644, - "EmployeeID": 3, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", + "OrderID": 10668, + "EmployeeID": 1, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", "ShipVia": 2, - "Freight": 0.14, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 47.22, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, "Quantity": 4, "Discount": 0.1 }, { - "ProductID": 43, - "UnitPrice": 46, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 15, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11046, + "EmployeeID": 8, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 71.64, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 12, + "UnitPrice": 38, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0.1 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 18, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", + "CustomerID": "GODOS", + "Company": "Godos Cocina Típica", + "ContactName": "José Pedro Freyre", + "ContactTitle": "Sales Manager", + "Address": "C/ Romero, 33", + "City": "Sevilla", + "PostalCode": 41101, + "Country": "Spain", + "Phone": "(95) 555 82 82", "Orders": [ { - "OrderID": 10645, - "EmployeeID": 4, - "OrderDate": "1997-08-26T00:00:00", - "RequiredDate": "1997-09-23T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", - "ShipVia": 1, - "Freight": 12.41, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10303, + "EmployeeID": 7, + "OrderDate": "1996-09-11T00:00:00", + "RequiredDate": "1996-10-09T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 107.83, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 10, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10646, - "EmployeeID": 9, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", + "OrderID": 10550, + "EmployeeID": 7, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-06-25T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", "ShipVia": 3, - "Freight": 142.33, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 4.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10647, + "OrderID": 10629, "EmployeeID": 4, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 2, - "Freight": 45.54, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 85.46, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10648, + "OrderID": 10872, "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-09T00:00:00", + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", "ShipVia": 2, - "Freight": 14.25, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 175.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, "Quantity": 15, - "Discount": 0.16 + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 28000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10649, + "OrderID": 10874, "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-09-25T00:00:00", - "ShippedDate": "1997-08-29T00:00:00", - "ShipVia": 3, - "Freight": 6.2, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 47000, - "ShipCountry": "Belgium", + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", + "ShipVia": 2, + "Freight": 19.58, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10888, + "EmployeeID": 1, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", + "ShipVia": 2, + "Freight": 51.87, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, "Quantity": 20, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10650, - "EmployeeID": 5, - "OrderDate": "1997-08-29T00:00:00", - "RequiredDate": "1997-09-26T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 3, - "Freight": 176.81, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10911, + "EmployeeID": 3, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", + "ShipVia": 1, + "Freight": 38.19, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10651, - "EmployeeID": 8, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 2, - "Freight": 20.6, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10948, + "EmployeeID": 3, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", + "ShipVia": 3, + "Freight": 23.39, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10652, - "EmployeeID": 4, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", - "ShipVia": 2, - "Freight": 7.14, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 11009, + "EmployeeID": 2, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 59.11, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 2, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 18, "Discount": 0.25 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10653, - "EmployeeID": 1, - "OrderDate": "1997-09-02T00:00:00", - "RequiredDate": "1997-09-30T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", + "OrderID": 11037, + "EmployeeID": 7, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", "ShipVia": 1, - "Freight": 93.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 3.2, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 4, + "Discount": 0 } ] } - ] + ], + "Fax": "(95) 555 82 82" }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 33000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "OLDWO", + "Company": "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", "Orders": [ { - "OrderID": 10654, - "EmployeeID": 5, - "OrderDate": "1997-09-02T00:00:00", - "RequiredDate": "1997-09-30T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 1, - "Freight": 55.26, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 12000, - "ShipCountry": "Sweden", + "OrderID": 10305, + "EmployeeID": 8, + "OrderDate": "1996-09-13T00:00:00", + "RequiredDate": "1996-10-11T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 3, + "Freight": 257.62, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 12, + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 25, "Discount": 0.1 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 25, "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10655, - "EmployeeID": 1, - "OrderDate": "1997-09-03T00:00:00", - "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 2, - "Freight": 4.41, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10656, - "EmployeeID": 6, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", - "ShipVia": 1, - "Freight": 57.15, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, + "OrderID": 10338, + "EmployeeID": 4, + "OrderDate": "1996-10-25T00:00:00", + "RequiredDate": "1996-11-22T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", + "ShipVia": 3, + "Freight": 84.21, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0.1 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10657, - "EmployeeID": 2, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", + "OrderID": 10441, + "EmployeeID": 3, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-24T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 352.69, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "Freight": 73.02, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, + "ProductID": 27, + "UnitPrice": 35.1, "Quantity": 50, "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, + } + ] + }, + { + "OrderID": 10594, + "EmployeeID": 3, + "OrderDate": "1997-07-09T00:00:00", + "RequiredDate": "1997-08-06T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 2, + "Freight": 5.24, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, "Quantity": 24, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 45, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10680, + "EmployeeID": 1, + "OrderDate": "1997-09-24T00:00:00", + "RequiredDate": "1997-10-22T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 1, + "Freight": 26.61, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 10, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, + "Discount": 0.25 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 45, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.25 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10658, - "EmployeeID": 4, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", - "ShipVia": 1, - "Freight": 364.15, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10706, + "EmployeeID": 8, + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-11-13T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 3, + "Freight": 135.63, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 55, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10808, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 45.53, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10659, - "EmployeeID": 7, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", - "ShipVia": 2, - "Freight": 105.81, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10855, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 170.97, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, + "Discount": 0 + }, { "ProductID": 31, "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0.06 + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 24, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10660, - "EmployeeID": 8, - "OrderDate": "1997-09-08T00:00:00", - "RequiredDate": "1997-10-06T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", - "ShipVia": 1, - "Freight": 111.29, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "OrderID": 10965, + "EmployeeID": 6, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", + "ShipVia": 3, + "Freight": 144.38, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10661, - "EmployeeID": 7, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", - "ShipVia": 3, - "Freight": 17.55, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 11034, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 40.32, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 49, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 6, + "Discount": 0 } ] } @@ -19090,13 +14782,13 @@ "Fax": "(503) 555-9646", "Orders": [ { - "OrderID": 10662, - "EmployeeID": 3, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", + "OrderID": 10307, + "EmployeeID": 2, + "OrderDate": "1996-09-17T00:00:00", + "RequiredDate": "1996-10-15T00:00:00", + "ShippedDate": "1996-09-25T00:00:00", "ShipVia": 2, - "Freight": 1.28, + "Freight": 0.56, "ShipName": "Lonesome Pine Restaurant", "ShipAddress": "89 Chiaroscuro Rd.", "ShipCity": "Portland", @@ -19105,132 +14797,50 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10663, - "EmployeeID": 2, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-09-24T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", - "ShipVia": 2, - "Freight": 113.15, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10664, - "EmployeeID": 1, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 3, - "Freight": 1.27, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10317, + "EmployeeID": 6, + "OrderDate": "1996-09-30T00:00:00", + "RequiredDate": "1996-10-28T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10665, - "EmployeeID": 1, - "OrderDate": "1997-09-11T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-17T00:00:00", - "ShipVia": 2, - "Freight": 26.31, + "OrderID": 10544, + "EmployeeID": 4, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 24.91, "ShipName": "Lonesome Pine Restaurant", "ShipAddress": "89 Chiaroscuro Rd.", "ShipCity": "Portland", @@ -19239,249 +14849,292 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 1, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 7, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10662, + "EmployeeID": 3, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 2, + "Freight": 1.28, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10666, - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", + "OrderID": 10665, + "EmployeeID": 1, + "OrderDate": "1997-09-11T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-17T00:00:00", "ShipVia": 2, - "Freight": 232.42, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 26.31, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10667, - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", + "OrderID": 10867, + "EmployeeID": 6, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", "ShipVia": 1, - "Freight": 78.09, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 1.93, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 45, - "Discount": 0.2 - }, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10883, + "EmployeeID": 8, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 3, + "Freight": 0.53, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 14, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10668, - "EmployeeID": 1, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", + "OrderID": 11018, + "EmployeeID": 4, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", "ShipVia": 2, - "Freight": 47.22, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 11.65, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", + "CustomerID": "ANATR", + "Company": "Ana Trujillo Emparedados y helados", + "ContactName": "Ana Trujillo", "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", + "Address": "Avda. de la Constitución 2222", + "City": "México D.F.", + "PostalCode": 5021, + "Country": "Mexico", + "Phone": "(5) 555-4729", + "Fax": "(5) 555-3745", "Orders": [ { - "OrderID": 10669, - "EmployeeID": 2, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", - "ShipVia": 1, - "Freight": 24.39, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - } + "OrderID": 10308, + "EmployeeID": 7, + "OrderDate": "1996-09-18T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-24T00:00:00", + "ShipVia": 3, + "Freight": 1.61, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 5, + "Discount": 0 + } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10670, - "EmployeeID": 4, - "OrderDate": "1997-09-16T00:00:00", - "RequiredDate": "1997-10-14T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", + "OrderID": 10625, + "EmployeeID": 3, + "OrderDate": "1997-08-08T00:00:00", + "RequiredDate": "1997-09-05T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", "ShipVia": 1, - "Freight": 203.48, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 43.9, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 32, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 60, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 25, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10759, + "EmployeeID": 3, + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 3, + "Freight": 11.99, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10926, + "EmployeeID": 4, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 39.92, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 25, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, "Discount": 0 } ] @@ -19489,1902 +15142,1343 @@ ] }, { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", + "CustomerID": "THEBI", + "Company": "The Big Cheese", + "ContactName": "Liz Nixon", "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", + "Address": "89 Jefferson Way Suite 2", + "City": "Portland", + "Region": "OR", + "PostalCode": 97201, + "Country": "USA", + "Phone": "(503) 555-3612", "Orders": [ { - "OrderID": 10671, - "EmployeeID": 1, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-09-24T00:00:00", - "ShipVia": 1, - "Freight": 30.34, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10310, + "EmployeeID": 8, + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-18T00:00:00", + "ShippedDate": "1996-09-27T00:00:00", + "ShipVia": 2, + "Freight": 17.52, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 16, - "UnitPrice": 17.45, + "UnitPrice": 13.9, "Quantity": 10, "Discount": 0 }, { "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, + "UnitPrice": 39.4, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10672, - "EmployeeID": 9, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", + "OrderID": 10708, + "EmployeeID": 6, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 95.75, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 50000, - "ShipCountry": "Sweden", + "Freight": 2.96, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10673, + "OrderID": 10805, "EmployeeID": 2, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 1, - "Freight": 22.76, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 237.34, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 42, + "ProductID": 34, "UnitPrice": 14, - "Quantity": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 35000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10674, - "EmployeeID": 4, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 2, - "Freight": 0.9, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60699, - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10992, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 4.27, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 5, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 2, "Discount": 0 } ] } ], - "Fax": "(198) 555-8888" + "Fax": "(503) 555-3612" }, { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", + "CustomerID": "DUMON", + "Company": "Du monde entier", + "ContactName": "Janine Labrune", + "ContactTitle": "Owner", + "Address": "67, rue des Cinquante Otages", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.67.88.88", + "Fax": "40.67.89.89", "Orders": [ { - "OrderID": 10675, - "EmployeeID": 5, - "OrderDate": "1997-09-19T00:00:00", - "RequiredDate": "1997-10-17T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", - "ShipVia": 2, - "Freight": 31.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10311, + "EmployeeID": 1, + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-26T00:00:00", + "ShipVia": 3, + "Freight": 24.69, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 7, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10676, - "EmployeeID": 2, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-29T00:00:00", + "OrderID": 10609, + "EmployeeID": 7, + "OrderDate": "1997-07-24T00:00:00", + "RequiredDate": "1997-08-21T00:00:00", + "ShippedDate": "1997-07-30T00:00:00", "ShipVia": 2, - "Freight": 2.01, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 1.85, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10677, - "EmployeeID": 1, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", - "ShipVia": 3, - "Freight": 4.03, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10683, + "EmployeeID": 2, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 1, + "Freight": 4.4, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 9, + "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10678, + "OrderID": 10890, "EmployeeID": 7, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", - "ShipVia": 3, - "Freight": 388.98, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 32.76, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 100, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 120, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, + "Quantity": 14, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", + "CustomerID": "ISLAT", + "Company": "Island Trading", + "ContactName": "Helen Bennett", "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", + "Address": "Garden House Crowther Way", + "City": "Cowes", + "Region": "Northeast", + "PostalCode": 26000, + "Country": "UK", + "Phone": "(198) 555-8888", "Orders": [ { - "OrderID": 10679, - "EmployeeID": 8, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 3, - "Freight": 27.94, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10315, + "EmployeeID": 4, + "OrderDate": "1996-09-26T00:00:00", + "RequiredDate": "1996-10-24T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 41.76, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 80379, + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10680, - "EmployeeID": 1, - "OrderDate": "1997-09-24T00:00:00", - "RequiredDate": "1997-10-22T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", - "ShipVia": 1, - "Freight": 26.61, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10318, + "EmployeeID": 8, + "OrderDate": "1996-10-01T00:00:00", + "RequiredDate": "1996-10-29T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 4.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 30676, + "ShipPostalCode": 36000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0.25 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 20, - "Discount": 0.25 + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10681, + "OrderID": 10321, "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 3, - "Freight": 76.13, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-31T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 2, + "Freight": 3.43, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 20137, + "ShipPostalCode": 41000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 28, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10682, - "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 2, - "Freight": 36.13, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10473, + "EmployeeID": 1, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", + "ShipVia": 3, + "Freight": 16.37, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 90698, + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 4, + "UnitPrice": 2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 12, "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10683, - "EmployeeID": 2, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 1, - "Freight": 4.4, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10621, + "EmployeeID": 4, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 2, + "Freight": 23.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 50269, + "ShipPostalCode": 39000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 9, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10684, - "EmployeeID": 3, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 1, - "Freight": 145.63, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ + }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 20, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10685, + "OrderID": 10674, "EmployeeID": 4, - "OrderDate": "1997-09-29T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", "ShipVia": 2, - "Freight": 33.75, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 0.9, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60699, + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10749, + "EmployeeID": 4, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 61.53, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 30222, + "ShipPostalCode": 50000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 15, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10686, + "OrderID": 10798, "EmployeeID": 2, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-08T00:00:00", + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 1, - "Freight": 96.5, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 2.33, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60634, + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10687, + "OrderID": 10829, "EmployeeID": 9, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-30T00:00:00", - "ShipVia": 2, - "Freight": 296.43, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-10T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 1, + "Freight": 154.72, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 50889, + "ShipPostalCode": 16000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, "Quantity": 10, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, - "Discount": 0.25 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10688, - "EmployeeID": 4, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", - "ShipVia": 2, - "Freight": 299.09, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderID": 10933, + "EmployeeID": 6, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 3, + "Freight": 54.15, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40624, + "ShipPostalCode": 44000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 14, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, "Discount": 0 } ] } - ] + ], + "Fax": "(198) 555-8888" }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "PERIC", + "Company": "Pericles Comidas clásicas", + "ContactName": "Guillermo Fernández", + "ContactTitle": "Sales Representative", + "Address": "Calle Dr. Jorge Cash 321", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 552-3745", + "Fax": "(5) 545-3745", "Orders": [ { - "OrderID": 10689, - "EmployeeID": 1, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-29T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", - "ShipVia": 2, - "Freight": 13.42, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 16000, - "ShipCountry": "Sweden", + "OrderID": 10322, + "EmployeeID": 7, + "OrderDate": "1996-10-04T00:00:00", + "RequiredDate": "1996-11-01T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 3, + "Freight": 0.4, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10690, - "EmployeeID": 1, - "OrderDate": "1997-10-02T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", - "ShipVia": 1, - "Freight": 15.8, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10354, + "EmployeeID": 8, + "OrderDate": "1996-11-14T00:00:00", + "RequiredDate": "1996-12-12T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 3, + "Freight": 53.8, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.25 - }, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 12, + "Discount": 0 + }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10691, - "EmployeeID": 2, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-10-22T00:00:00", + "OrderID": 10474, + "EmployeeID": 5, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-04-10T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", "ShipVia": 2, - "Freight": 810.05, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 83.49, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 40, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 40, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 24, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 48, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10692, - "EmployeeID": 4, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-10-31T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", - "ShipVia": 2, - "Freight": 61.02, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "OrderID": 10502, + "EmployeeID": 2, + "OrderDate": "1997-04-10T00:00:00", + "RequiredDate": "1997-05-08T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", + "ShipVia": 1, + "Freight": 69.32, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10693, - "EmployeeID": 3, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-10-10T00:00:00", + "OrderID": 10995, + "EmployeeID": 1, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", "ShipVia": 3, - "Freight": 139.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 46, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 6, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 60, - "Discount": 0.16 - }, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11073, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-15T00:00:00", + "ShipVia": 2, + "Freight": 24.95, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, + "CustomerID": "KOENE", + "Company": "Königlich Essen", + "ContactName": "Philip Cramer", + "ContactTitle": "Sales Associate", + "Address": "Maubelstr. 90", + "City": "Brandenburg", + "PostalCode": 14776, "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "Phone": "0555-09876", "Orders": [ { - "OrderID": 10694, - "EmployeeID": 8, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-11-03T00:00:00", - "ShippedDate": "1997-10-09T00:00:00", - "ShipVia": 3, - "Freight": 398.36, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10323, + "EmployeeID": 4, + "OrderDate": "1996-10-07T00:00:00", + "RequiredDate": "1996-11-04T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 4.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 90, + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10695, - "EmployeeID": 7, - "OrderDate": "1997-10-07T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 1, - "Freight": 16.72, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10325, + "EmployeeID": 1, + "OrderDate": "1996-10-09T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 3, + "Freight": 64.86, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 10, "Quantity": 4, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10696, + "OrderID": 10456, "EmployeeID": 8, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 3, - "Freight": 102.55, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderDate": "1997-02-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 8.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 18, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 21, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10697, + "OrderID": 10468, "EmployeeID": 3, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-05T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 1, - "Freight": 45.52, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderDate": "1997-03-07T00:00:00", + "RequiredDate": "1997-04-04T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 44.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 9, - "Discount": 0.25 - }, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10506, + "EmployeeID": 9, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 21.19, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 18, + "Discount": 0.1 }, { "ProductID": 70, "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.25 + "Quantity": 14, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10698, - "EmployeeID": 4, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-17T00:00:00", - "ShipVia": 1, - "Freight": 272.47, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10542, + "EmployeeID": 1, + "OrderDate": "1997-05-20T00:00:00", + "RequiredDate": "1997-06-17T00:00:00", + "ShippedDate": "1997-05-26T00:00:00", + "ShipVia": 3, + "Freight": 10.95, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 11, "UnitPrice": 21, "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 65, "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 24, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10699, - "EmployeeID": 3, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", - "ShipVia": 3, - "Freight": 0.58, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, + "OrderID": 10630, + "EmployeeID": 1, + "OrderDate": "1997-08-13T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 2, + "Freight": 32.35, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10700, - "EmployeeID": 3, - "OrderDate": "1997-10-10T00:00:00", - "RequiredDate": "1997-11-07T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", - "ShipVia": 1, - "Freight": 65.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10718, + "EmployeeID": 1, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 3, + "Freight": 170.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0.2 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 40, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.2 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10701, - "EmployeeID": 6, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-10-27T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", + "OrderID": 10799, + "EmployeeID": 9, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 3, - "Freight": 220.31, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 30.76, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 20, "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10702, - "EmployeeID": 4, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", - "ShipVia": 1, - "Freight": 23.94, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0 + "OrderID": 10817, + "EmployeeID": 3, + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 306.07, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 15, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10703, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-10-20T00:00:00", + "OrderID": 10849, + "EmployeeID": 9, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 2, - "Freight": 152.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 28000, - "ShipCountry": "Sweden", + "Freight": 0.56, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 49, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 18, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10704, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", - "ShipVia": 1, - "Freight": 4.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10893, + "EmployeeID": 9, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 2, + "Freight": 77.78, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 6, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, "Discount": 0 }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 35, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 48, - "UnitPrice": 12.75, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 24, "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10705, - "EmployeeID": 9, - "OrderDate": "1997-10-15T00:00:00", - "RequiredDate": "1997-11-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 2, - "Freight": 3.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ + }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 4, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10706, - "EmployeeID": 8, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-11-13T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", - "ShipVia": 3, - "Freight": 135.63, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 11028, + "EmployeeID": 2, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 1, + "Freight": 29.59, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { "ProductID": 59, "UnitPrice": 55, - "Quantity": 8, + "Quantity": 24, "Discount": 0 } ] } - ] + ], + "Fax": "0555-09876" }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", + "CustomerID": "SAVEA", + "Company": "Save-a-lot Markets", + "ContactName": "Jose Pavarotti", "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 10000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Address": "187 Suffolk Ln.", + "City": "Boise", + "Region": "ID", + "PostalCode": 83720, + "Country": "USA", + "Phone": "(208) 555-8097", "Orders": [ { - "OrderID": 10707, - "EmployeeID": 4, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", - "ShipVia": 3, - "Freight": 21.74, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 28000, - "ShipCountry": "UK", + "OrderID": 10324, + "EmployeeID": 9, + "OrderDate": "1996-10-08T00:00:00", + "RequiredDate": "1996-11-05T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", + "ShipVia": 1, + "Freight": 214.27, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 16, + "UnitPrice": 13.9, "Quantity": 21, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 40, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 70, + "Discount": 0.16 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 28, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 40, "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ - { - "OrderID": 10708, - "EmployeeID": 6, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 2.96, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 4, - "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 80, + "Discount": 0.16 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10709, + "OrderID": 10393, "EmployeeID": 1, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-11-20T00:00:00", + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", "ShipVia": 3, - "Freight": 210.8, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 126.56, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 40, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 28, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 42, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ - { - "OrderID": 10710, - "EmployeeID": 1, - "OrderDate": "1997-10-20T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", - "ShipVia": 1, - "Freight": 4.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", - "OrderDetails": [ + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 7, + "Discount": 0.25 + }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 70, + "Discount": 0.25 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 32, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10711, - "EmployeeID": 5, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 2, - "Freight": 52.41, + "OrderID": 10398, + "EmployeeID": 2, + "OrderDate": "1996-12-30T00:00:00", + "RequiredDate": "1997-01-27T00:00:00", + "ShippedDate": "1997-01-09T00:00:00", + "ShipVia": 3, + "Freight": 89.16, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21393,92 +16487,68 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 42, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 55, + "UnitPrice": 19.2, "Quantity": 120, - "Discount": 0 + "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10712, - "EmployeeID": 3, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", - "ShipVia": 1, - "Freight": 89.93, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10440, + "EmployeeID": 4, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-10T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 86.53, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 45, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 49, + "Discount": 0.16 + }, + { + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 24, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 90, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10713, - "EmployeeID": 1, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-24T00:00:00", + "OrderID": 10452, + "EmployeeID": 8, + "OrderDate": "1997-02-20T00:00:00", + "RequiredDate": "1997-03-20T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", "ShipVia": 1, - "Freight": 167.05, + "Freight": 140.26, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21487,39 +16557,56 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0 - }, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 100, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10510, + "EmployeeID": 6, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", + "ShipVia": 3, + "Freight": 367.63, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 110, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 24, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 36, + "Discount": 0.1 } ] }, { - "OrderID": 10714, - "EmployeeID": 5, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", + "OrderID": 10555, + "EmployeeID": 6, + "OrderDate": "1997-06-02T00:00:00", + "RequiredDate": "1997-06-30T00:00:00", + "ShippedDate": "1997-06-04T00:00:00", "ShipVia": 3, - "Freight": 24.49, + "Freight": 252.49, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21528,382 +16615,291 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 14, + "UnitPrice": 23.25, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.2 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 27, - "Discount": 0.25 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 18, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, + "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10715, - "EmployeeID": 3, - "OrderDate": "1997-10-23T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 1, - "Freight": 63.2, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10603, + "EmployeeID": 8, + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 2, + "Freight": 48.77, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 21, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 48, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10716, - "EmployeeID": 4, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", - "ShipVia": 2, - "Freight": 22.57, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10607, + "EmployeeID": 5, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 1, + "Freight": 200.24, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 7, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 100, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10717, - "EmployeeID": 1, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 2, - "Freight": 59.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 32, - "Discount": 0.06 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 42, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10718, + "OrderID": 10612, "EmployeeID": 1, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 3, - "Freight": 170.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderDate": "1997-07-28T00:00:00", + "RequiredDate": "1997-08-25T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 2, + "Freight": 544.08, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, "Quantity": 40, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 80, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10719, + "OrderID": 10627, "EmployeeID": 8, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 51.44, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 107.46, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 12, - "Discount": 0.25 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 3, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, + "Discount": 0.16 } ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10720, - "EmployeeID": 8, - "OrderDate": "1997-10-28T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", + "OrderID": 10657, + "EmployeeID": 2, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", "ShipVia": 2, - "Freight": 9.53, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 352.69, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 8, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10721, - "EmployeeID": 5, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-11-26T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", + "OrderID": 10678, + "EmployeeID": 7, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", "ShipVia": 3, - "Freight": 48.92, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 388.98, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 100, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 120, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10722, - "EmployeeID": 8, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-04T00:00:00", + "OrderID": 10700, + "EmployeeID": 3, + "OrderDate": "1997-10-10T00:00:00", + "RequiredDate": "1997-11-07T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", "ShipVia": 1, - "Freight": 74.58, + "Freight": 65.1, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21912,1506 +16908,1248 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 3, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.2 }, { "ProductID": 68, "UnitPrice": 12.5, - "Quantity": 45, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10711, + "EmployeeID": 5, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 2, + "Freight": 52.41, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 42, "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 120, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10723, - "EmployeeID": 3, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-11-27T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", + "OrderID": 10713, + "EmployeeID": 1, + "OrderDate": "1997-10-22T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-24T00:00:00", "ShipVia": 1, - "Freight": 21.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, + "Freight": 167.05, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0 + }, { "ProductID": 26, "UnitPrice": 31.23, - "Quantity": 15, + "Quantity": 30, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 26000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10724, - "EmployeeID": 8, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 57.75, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 20000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 110, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10725, - "EmployeeID": 4, - "OrderDate": "1997-10-31T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 3, - "Freight": 10.83, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10722, + "EmployeeID": 8, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-04T00:00:00", + "ShipVia": 1, + "Freight": 74.58, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 43000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10726, - "EmployeeID": 4, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", + "OrderID": 10748, + "EmployeeID": 3, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", "ShipVia": 1, - "Freight": 16.56, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 24000, - "ShipCountry": "UK", + "Freight": 232.55, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 44, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10727, - "EmployeeID": 2, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-12-01T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", + "OrderID": 10757, + "EmployeeID": 6, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", "ShipVia": 1, - "Freight": 89.9, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 8.19, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 59, "UnitPrice": 55, - "Quantity": 10, - "Discount": 0.06 + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 24, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10728, - "EmployeeID": 4, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-11-11T00:00:00", - "ShipVia": 2, - "Freight": 58.33, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10815, + "EmployeeID": 2, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 3, + "Freight": 14.62, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10847, + "EmployeeID": 4, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 3, + "Freight": 487.57, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.2 }, { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 19, + "UnitPrice": 9.2, "Quantity": 12, - "Discount": 0 + "Discount": 0.2 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 60, + "Discount": 0.2 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 36, + "Discount": 0.2 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "Quantity": 45, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 55, + "Discount": 0.2 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10729, - "EmployeeID": 8, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", + "OrderID": 10882, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 3, - "Freight": 141.06, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 23.1, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 50, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 40, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 32, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10730, - "EmployeeID": 5, - "OrderDate": "1997-11-05T00:00:00", - "RequiredDate": "1997-12-03T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", + "OrderID": 10894, + "EmployeeID": 1, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 1, - "Freight": 20.12, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 116.13, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 28, "Discount": 0.06 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 3, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 50, "Discount": 0.06 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 120, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10731, + "OrderID": 10941, "EmployeeID": 7, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", - "ShipVia": 1, - "Freight": 96.65, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 2, + "Freight": 400.81, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 44, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 30, - "Discount": 0.06 + "Discount": 0.25 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 80, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10732, - "EmployeeID": 3, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", - "ShipVia": 1, - "Freight": 16.97, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10983, + "EmployeeID": 2, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", + "ShipVia": 2, + "Freight": 657.54, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 84, + "Discount": 0.16 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 30000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10733, - "EmployeeID": 1, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-10T00:00:00", - "ShipVia": 3, - "Freight": 110.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 34000, - "ShipCountry": "Sweden", + "OrderID": 11002, + "EmployeeID": 4, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 1, + "Freight": 141.16, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 16, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 56, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 25, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.16 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10734, - "EmployeeID": 2, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-12T00:00:00", - "ShipVia": 3, - "Freight": 1.63, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 11030, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 2, + "Freight": 830.75, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 100, + "Discount": 0.25 + }, + { + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 100, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11064, + "EmployeeID": 1, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 30.09, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 77, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 55, "Discount": 0 } ] } ], - "Fax": "(11) 555-9482" + "Fax": "(208) 555-8097" }, { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", + "CustomerID": "BOLID", + "Company": "Bólido Comidas preparadas", + "ContactName": "Martín Sommer", "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", + "Address": "C/ Araquil, 67", + "City": "Madrid", + "PostalCode": 28023, + "Country": "Spain", + "Phone": "(91) 555 22 82", + "Fax": "(91) 555 91 99", "Orders": [ { - "OrderID": 10735, - "EmployeeID": 6, - "OrderDate": "1997-11-10T00:00:00", - "RequiredDate": "1997-12-08T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderID": 10326, + "EmployeeID": 4, + "OrderDate": "1996-10-10T00:00:00", + "RequiredDate": "1996-11-07T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", "ShipVia": 2, - "Freight": 45.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "Freight": 77.92, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10736, - "EmployeeID": 9, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 2, - "Freight": 44.1, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 40, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 16, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, + "UnitPrice": 6.2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10737, - "EmployeeID": 2, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10801, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", "ShipVia": 2, - "Freight": 7.79, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 97.09, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 4, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 10738, - "EmployeeID": 2, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10970, + "EmployeeID": 9, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", "ShipVia": 1, - "Freight": 2.91, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 16.16, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 40, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", + "CustomerID": "FURIB", + "Company": "Furia Bacalhau e Frutos do Mar", + "ContactName": "Lino Rodriguez", + "ContactTitle": "Sales Manager", + "Address": "Jardim das rosas n. 32", + "City": "Lisboa", + "PostalCode": 1675, + "Country": "Portugal", + "Phone": "(1) 354-2534", + "Fax": "(1) 354-2535", "Orders": [ { - "OrderID": 10739, - "EmployeeID": 3, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-17T00:00:00", + "OrderID": 10328, + "EmployeeID": 4, + "OrderDate": "1996-10-14T00:00:00", + "RequiredDate": "1996-11-11T00:00:00", + "ShippedDate": "1996-10-17T00:00:00", "ShipVia": 3, - "Freight": 11.08, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 87.03, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 18, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 40, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, + "Discount": 0 + } + ] + }, { - "OrderID": 10740, + "OrderID": 10352, + "EmployeeID": 3, + "OrderDate": "1996-11-12T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-18T00:00:00", + "ShipVia": 3, + "Freight": 1.3, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 20, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10464, "EmployeeID": 4, - "OrderDate": "1997-11-13T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 81.88, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 89, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 16, "Discount": 0.2 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, - "Discount": 0.2 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10741, - "EmployeeID": 4, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10491, + "EmployeeID": 8, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-08T00:00:00", "ShipVia": 3, - "Freight": 10.96, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 27000, - "ShipCountry": "UK", + "Freight": 16.96, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 44, + "UnitPrice": 15.5, "Quantity": 15, - "Discount": 0.2 + "Discount": 0.16 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 17000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10742, - "EmployeeID": 3, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-12-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10551, + "EmployeeID": 4, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", "ShipVia": 3, - "Freight": 243.73, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 17000, - "ShipCountry": "Canada", + "Freight": 72.95, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 41000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10743, + "OrderID": 10604, "EmployeeID": 1, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", + "ShipVia": 1, + "Freight": 7.46, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 28, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10744, - "EmployeeID": 6, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", - "ShipVia": 1, - "Freight": 69.19, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 6, + "Discount": 0.1 + }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10745, - "EmployeeID": 9, - "OrderDate": "1997-11-18T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 1, - "Freight": 3.52, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10664, + "EmployeeID": 1, + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 3, + "Freight": 1.27, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 24, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 45, - "Discount": 0 - }, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10963, + "EmployeeID": 9, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 3, + "Freight": 2.7, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", + "CustomerID": "BONAP", + "Company": "Bon app", + "ContactName": "Laurence Lebihan", "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", "Orders": [ { - "OrderID": 10746, - "EmployeeID": 1, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 3, - "Freight": 31.43, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10331, + "EmployeeID": 9, + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-27T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", + "ShipVia": 1, + "Freight": 10.19, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 15, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10340, + "EmployeeID": 1, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 166.31, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 9, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, + "ProductID": 43, + "UnitPrice": 36.8, "Quantity": 40, - "Discount": 0 + "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10747, - "EmployeeID": 6, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-26T00:00:00", + "OrderID": 10362, + "EmployeeID": 3, + "OrderDate": "1996-11-25T00:00:00", + "RequiredDate": "1996-12-23T00:00:00", + "ShippedDate": "1996-11-28T00:00:00", "ShipVia": 1, - "Freight": 117.33, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 96.04, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 9, - "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10748, - "EmployeeID": 3, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", - "ShipVia": 1, - "Freight": 232.55, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 44, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 14000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10749, + "OrderID": 10470, "EmployeeID": 4, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 61.53, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 30222, - "ShipPostalCode": 50000, - "ShipCountry": "UK", + "Freight": 64.56, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 15, + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 6, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10750, - "EmployeeID": 9, - "OrderDate": "1997-11-21T00:00:00", - "RequiredDate": "1997-12-19T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", - "ShipVia": 1, - "Freight": 79.3, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10511, + "EmployeeID": 4, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 350.64, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, "Discount": 0.16 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 50, "Discount": 0.16 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10751, - "EmployeeID": 3, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-12-03T00:00:00", - "ShipVia": 3, - "Freight": 130.79, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10525, + "EmployeeID": 1, + "OrderDate": "1997-05-02T00:00:00", + "RequiredDate": "1997-05-30T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 2, + "Freight": 11.06, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 30, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 73, - "UnitPrice": 15, + "ProductID": 40, + "UnitPrice": 18.4, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 36000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ + }, { - "OrderID": 10752, + "OrderID": 10663, "EmployeeID": 2, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", - "ShipVia": 3, - "Freight": 1.39, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-09-24T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 113.15, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 3, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10753, + "OrderID": 10715, "EmployeeID": 3, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", + "OrderDate": "1997-10-23T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 1, - "Freight": 7.7, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "Freight": 63.2, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 4, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10754, - "EmployeeID": 6, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 3, - "Freight": 2.38, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10730, + "EmployeeID": 5, + "OrderDate": "1997-11-05T00:00:00", + "RequiredDate": "1997-12-03T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 1, + "Freight": 20.12, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10732, + "EmployeeID": 3, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", + "ShipVia": 1, + "Freight": 16.97, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { "OrderID": 10755, "EmployeeID": 4, @@ -23451,247 +18189,195 @@ "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10756, - "EmployeeID": 8, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-02T00:00:00", + "OrderID": 10827, + "EmployeeID": 1, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", "ShipVia": 2, - "Freight": 73.21, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 63.54, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10757, - "EmployeeID": 6, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 1, - "Freight": 8.19, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10871, + "EmployeeID": 9, + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 112.27, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 50, + "Discount": 0.06 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 7, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 30, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10876, + "EmployeeID": 7, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 60.42, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 21, "Discount": 0 }, { "ProductID": 64, "UnitPrice": 33.25, - "Quantity": 24, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10758, - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-04T00:00:00", - "ShipVia": 3, - "Freight": 138.17, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10932, + "EmployeeID": 8, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", + "ShipVia": 1, + "Freight": 134.64, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 60, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 14, + "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 16, "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10759, - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", + "OrderID": 10940, + "EmployeeID": 8, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", "ShipVia": 3, - "Freight": 11.99, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 19.77, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10760, + "OrderID": 11076, "EmployeeID": 4, - "OrderDate": "1997-12-01T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1997-12-10T00:00:00", - "ShipVia": 1, - "Freight": 155.64, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-06-08T00:00:00", + "ShipVia": 2, + "Freight": 38.28, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 12, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, "Discount": 0.25 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 40, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, "Discount": 0.25 } ] @@ -23699,4607 +18385,398 @@ ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "MEREP", + "Company": "Mère Paillarde", + "ContactName": "Jean Fresnière", + "ContactTitle": "Marketing Assistant", + "Address": "43 rue St. Laurent", + "City": "Montréal", + "Region": "Québec", + "PostalCode": 20000, + "Country": "Canada", + "Phone": "(514) 555-8054", + "Fax": "(514) 555-8055", "Orders": [ { - "OrderID": 10761, - "EmployeeID": 5, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", + "OrderID": 10332, + "EmployeeID": 3, + "OrderDate": "1996-10-17T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", "ShipVia": 2, - "Freight": 18.66, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 52.84, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 28000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 18, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 16, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 13000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10762, - "EmployeeID": 3, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 1, - "Freight": 328.74, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 44000, - "ShipCountry": "Sweden", + "OrderID": 10339, + "EmployeeID": 2, + "OrderDate": "1996-10-28T00:00:00", + "RequiredDate": "1996-11-25T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", + "ShipVia": 2, + "Freight": 15.66, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 16, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 28, "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10763, - "EmployeeID": 3, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", - "ShipVia": 3, - "Freight": 37.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "OrderID": 10376, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 2, + "Freight": 20.39, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 39000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 21, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "Quantity": 42, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10424, + "EmployeeID": 7, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-20T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 2, + "Freight": 370.61, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 22000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 6, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 49, + "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10764, + "OrderID": 10439, "EmployeeID": 6, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", + "OrderDate": "1997-02-07T00:00:00", + "RequiredDate": "1997-03-07T00:00:00", + "ShippedDate": "1997-02-10T00:00:00", "ShipVia": 3, - "Freight": 145.45, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 130, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10765, - "EmployeeID": 3, - "OrderDate": "1997-12-04T00:00:00", - "RequiredDate": "1998-01-01T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 3, - "Freight": 42.74, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 80, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10766, - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 1, - "Freight": 157.55, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 28000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10767, - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 3, - "Freight": 1.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 44000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 22000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10768, - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 2, - "Freight": 146.32, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10769, - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 65.06, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10770, - "EmployeeID": 8, - "OrderDate": "1997-12-09T00:00:00", - "RequiredDate": "1998-01-06T00:00:00", - "ShippedDate": "1997-12-17T00:00:00", - "ShipVia": 3, - "Freight": 5.32, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10771, - "EmployeeID": 9, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 2, - "Freight": 11.19, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10772, - "EmployeeID": 3, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 2, - "Freight": 91.28, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10773, - "EmployeeID": 1, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1998-01-08T00:00:00", - "ShippedDate": "1997-12-16T00:00:00", - "ShipVia": 3, - "Freight": 96.43, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 33, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 70, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 7, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10774, - "EmployeeID": 4, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 48.2, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 2, - "Discount": 0.25 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "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", - "Orders": [ - { - "OrderID": 10775, - "EmployeeID": 7, - "OrderDate": "1997-12-12T00:00:00", - "RequiredDate": "1998-01-09T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 20.25, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10776, - "EmployeeID": 1, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1998-01-12T00:00:00", - "ShippedDate": "1997-12-18T00:00:00", - "ShipVia": 3, - "Freight": 351.53, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 27, - "Discount": 0.06 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 120, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 10777, - "EmployeeID": 7, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 2, - "Freight": 3.01, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 11000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10778, - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 1, - "Freight": 6.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 39000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ - { - "OrderID": 10779, - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 2, - "Freight": 58.13, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0 - } - ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10780, - "EmployeeID": 2, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-25T00:00:00", - "ShipVia": 1, - "Freight": 42.13, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10781, - "EmployeeID": 2, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 3, - "Freight": 73.16, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0.2 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10782, - "EmployeeID": 9, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 1.1, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 1, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10783, - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 2, - "Freight": 124.98, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10784, - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 70.09, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.16 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "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", - "Orders": [ - { - "OrderID": 10785, - "EmployeeID": 1, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 3, - "Freight": 1.51, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10786, - "EmployeeID": 8, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-16T00:00:00", - "ShippedDate": "1997-12-23T00:00:00", - "ShipVia": 1, - "Freight": 110.87, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 42, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10787, - "EmployeeID": 2, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 249.93, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10788, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 42.7, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ - { - "OrderID": 10789, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 2, - "Freight": 100.6, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 10790, - "EmployeeID": 6, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 28.23, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 3, - "Discount": 0.16 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.16 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10791, - "EmployeeID": 6, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-01T00:00:00", - "ShipVia": 2, - "Freight": 16.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10792, - "EmployeeID": 1, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 3, - "Freight": 23.79, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 19000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10793, - "EmployeeID": 3, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", - "ShipVia": 3, - "Freight": 4.52, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 32000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ - { - "OrderID": 10794, - "EmployeeID": 6, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 1, - "Freight": 21.49, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10795, - "EmployeeID": 8, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-20T00:00:00", - "ShipVia": 2, - "Freight": 126.66, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 65, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 35, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10796, - "EmployeeID": 3, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 1, - "Freight": 26.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 24, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ - { - "OrderID": 10797, - "EmployeeID": 7, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 2, - "Freight": 33.35, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10798, - "EmployeeID": 2, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 1, - "Freight": 2.33, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60634, - "ShipPostalCode": 40000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10799, - "EmployeeID": 9, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 3, - "Freight": 30.76, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10800, - "EmployeeID": 1, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 3, - "Freight": 137.44, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 41000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 7, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ - { - "OrderID": 10801, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 2, - "Freight": 97.09, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ - { - "OrderID": 10802, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 2, - "Freight": 257.26, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 5, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ - { - "OrderID": 10803, - "EmployeeID": 4, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-06T00:00:00", - "ShipVia": 1, - "Freight": 55.23, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 24, - "Discount": 0.06 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10804, - "EmployeeID": 6, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 2, - "Freight": 27.33, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 38000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 36, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 4, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ - { - "OrderID": 10805, - "EmployeeID": 2, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 3, - "Freight": 237.34, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10806, - "EmployeeID": 3, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 2, - "Freight": 22.11, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ - { - "OrderID": 10807, - "EmployeeID": 4, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 1, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ - { - "OrderID": 10808, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 3, - "Freight": 45.53, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ - { - "OrderID": 10809, - "EmployeeID": 7, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 1, - "Freight": 4.87, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 28000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ - { - "OrderID": 10810, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 3, - "Freight": 4.33, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 48000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10811, - "EmployeeID": 8, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", - "ShipVia": 1, - "Freight": 31.22, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10812, - "EmployeeID": 5, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 1, - "Freight": 59.78, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.1 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ - { - "OrderID": 10813, - "EmployeeID": 1, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 1, - "Freight": 47.38, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0.2 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10814, - "EmployeeID": 3, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 130.94, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 8, - "Discount": 0.16 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10815, - "EmployeeID": 2, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 14.62, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ - { - "OrderID": 10816, - "EmployeeID": 4, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-02-03T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 2, - "Freight": 719.78, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10817, - "EmployeeID": 3, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 306.07, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 25, - "Discount": 0.16 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10818, - "EmployeeID": 7, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 3, - "Freight": 65.48, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10819, - "EmployeeID": 2, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 19.76, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10820, - "EmployeeID": 3, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 37.52, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ - { - "OrderID": 10821, - "EmployeeID": 1, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-15T00:00:00", - "ShipVia": 1, - "Freight": 36.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "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", - "Orders": [ - { - "OrderID": 10822, - "EmployeeID": 6, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 7, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10823, - "EmployeeID": 5, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 163.97, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 29000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10824, - "EmployeeID": 8, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 1.23, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 39000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ - { - "OrderID": 10825, - "EmployeeID": 1, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 1, - "Freight": 79.25, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10826, - "EmployeeID": 6, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", - "ShipVia": 1, - "Freight": 7.09, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10827, - "EmployeeID": 1, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", - "ShipVia": 2, - "Freight": 63.54, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ - { - "OrderID": 10828, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 1, - "Freight": 90.85, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10829, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-10T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 1, - "Freight": 154.72, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 50889, - "ShipPostalCode": 16000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10830, - "EmployeeID": 4, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 2, - "Freight": 81.83, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ - { - "OrderID": 10831, - "EmployeeID": 3, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 2, - "Freight": 72.19, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10832, - "EmployeeID": 2, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 43.26, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 3, - "Discount": 0.2 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0.2 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10833, - "EmployeeID": 6, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 2, - "Freight": 71.49, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 9, - "Discount": 0.1 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 9, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10834, - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 3, - "Freight": 29.78, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 8, - "Discount": 0.06 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ - { - "OrderID": 10835, - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 3, - "Freight": 69.53, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10836, - "EmployeeID": 7, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 1, - "Freight": 411.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 52, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 47000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10837, - "EmployeeID": 9, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 13.32, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 17000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10838, - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 59.28, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10839, - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-22T00:00:00", - "ShipVia": 3, - "Freight": 35.43, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10840, - "EmployeeID": 4, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", - "ShipVia": 2, - "Freight": 2.71, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 6, - "Discount": 0.2 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 22000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10841, - "EmployeeID": 5, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 2, - "Freight": 424.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 27000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10842, - "EmployeeID": 1, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 3, - "Freight": 54.42, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10843, - "EmployeeID": 4, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 9.26, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 4, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10844, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 25.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10845, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 212.98, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.1 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 42, - "Discount": 0.1 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 60, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 48, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 15000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10846, - "EmployeeID": 2, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 56.46, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 15000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10847, - "EmployeeID": 4, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 3, - "Freight": 487.57, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.2 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.2 - }, - { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 60, - "Discount": 0.2 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 36, - "Discount": 0.2 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 45, - "Discount": 0.2 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 55, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 43000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ - { - "OrderID": 10848, - "EmployeeID": 7, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 2, - "Freight": 38.24, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 36000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10849, - "EmployeeID": 9, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 49, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 18, - "Discount": 0.16 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10850, - "EmployeeID": 1, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 49.19, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 4, - "Discount": 0.16 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ - { - "OrderID": 10851, - "EmployeeID": 5, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-23T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", - "ShipVia": 1, - "Freight": 160.55, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 4.07, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0.06 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.06 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10852, - "EmployeeID": 8, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 174.05, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 39, + "ProductID": 64, + "UnitPrice": 26.6, "Quantity": 6, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 50, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10853, - "EmployeeID": 9, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", - "ShipVia": 2, - "Freight": 53.83, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10505, + "EmployeeID": 3, + "OrderDate": "1997-04-14T00:00:00", + "RequiredDate": "1997-05-12T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 7.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 33000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10854, - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-05T00:00:00", + "OrderID": 10565, + "EmployeeID": 8, + "OrderDate": "1997-06-11T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", "ShipVia": 2, - "Freight": 100.22, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 7.15, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 21000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 100, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 18, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10855, + "OrderID": 10570, "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 1, - "Freight": 170.97, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 14, - "Discount": 0 + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-19T00:00:00", + "ShipVia": 3, + "Freight": 188.99, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0.06 }, { "ProductID": 56, "UnitPrice": 38, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "Quantity": 60, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10856, - "EmployeeID": 3, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 2, - "Freight": 58.43, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10590, + "EmployeeID": 4, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 3, + "Freight": 44.77, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 20, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 60, + "Discount": 0.06 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 48000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10857, - "EmployeeID": 8, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", + "OrderID": 10605, + "EmployeeID": 1, + "OrderDate": "1997-07-21T00:00:00", + "RequiredDate": "1997-08-18T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", "ShipVia": 2, - "Freight": 188.85, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", + "Freight": 379.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.25 + "Discount": 0.06 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ - { - "OrderID": 10858, - "EmployeeID": 2, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", - "ShipVia": 1, - "Freight": 52.51, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 5, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 10, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10859, + "OrderID": 10618, "EmployeeID": 1, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", - "ShipVia": 2, - "Freight": 76.1, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderDate": "1997-08-01T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 1, + "Freight": 154.68, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 30000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, { - "OrderID": 10860, - "EmployeeID": 3, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 3, - "Freight": 19.26, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10724, + "EmployeeID": 8, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 2, + "Freight": 57.75, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 20000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] @@ -28307,2480 +18784,2081 @@ ] }, { - "CustomerID": "WHITC", - "Company": "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": "PRINI", + "Company": "Princesa Isabel Vinhos", + "ContactName": "Isabel de Castro", + "ContactTitle": "Sales Representative", + "Address": "Estrada da saúde n. 58", + "City": "Lisboa", + "PostalCode": 1756, + "Country": "Portugal", + "Phone": "(1) 356-5634", "Orders": [ { - "OrderID": 10861, - "EmployeeID": 4, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-02-27T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", + "OrderID": 10336, + "EmployeeID": 7, + "OrderDate": "1996-10-23T00:00:00", + "RequiredDate": "1996-11-20T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", "ShipVia": 2, - "Freight": 14.93, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 15.51, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 42, - "Discount": 0 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, - "Discount": 0 - }, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 18, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10397, + "EmployeeID": 5, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-24T00:00:00", + "ShippedDate": "1997-01-02T00:00:00", + "ShipVia": 1, + "Freight": 60.26, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ { "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 35, - "Discount": 0 - }, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10433, + "EmployeeID": 3, + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 73.83, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10862, - "EmployeeID": 8, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderID": 10477, + "EmployeeID": 5, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", "ShipVia": 2, - "Freight": 53.23, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 13.02, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 25, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10863, - "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", + "OrderID": 11007, + "EmployeeID": 8, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 30.26, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 202.24, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 14, + "Discount": 0 } ] } - ] + ], + "Fax": "(1) 356-5634" }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 31000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "CustomerID": "SIMOB", + "Company": "Simons bistro", + "ContactName": "Jytte Petersen", + "ContactTitle": "Owner", + "Address": "Vinbæltet 34", + "City": "Kobenhavn", + "PostalCode": 1734, + "Country": "Denmark", + "Phone": "31 12 34 56", + "Fax": "31 13 35 57", "Orders": [ { - "OrderID": 10864, + "OrderID": 10341, + "EmployeeID": 7, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", + "ShipVia": 3, + "Freight": 26.78, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10417, "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 2, - "Freight": 3.04, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 37000, - "ShipCountry": "UK", + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-28T00:00:00", + "ShipVia": 3, + "Freight": 70.29, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 2, + "Discount": 0.25 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 36, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10865, + "OrderID": 10556, "EmployeeID": 2, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderDate": "1997-06-03T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", "ShipVia": 1, - "Freight": 348.14, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 9.8, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10642, + "EmployeeID": 7, + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-09-05T00:00:00", + "ShipVia": 3, + "Freight": 41.89, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 48000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10866, - "EmployeeID": 5, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-03T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderID": 10669, + "EmployeeID": 2, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", "ShipVia": 1, - "Freight": 109.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 37000, - "ShipCountry": "Sweden", + "Freight": 24.39, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 2, + "ProductID": 36, "UnitPrice": 19, - "Quantity": 21, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10802, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 2, + "Freight": 257.26, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, "Discount": 0.25 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 6, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 60, "Discount": 0.25 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 40, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 5, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10867, - "EmployeeID": 6, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 1, - "Freight": 1.93, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 11074, + "EmployeeID": 7, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-06-03T00:00:00", + "ShipVia": 2, + "Freight": 18.44, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", + "CustomerID": "FAMIA", + "Company": "Familia Arquibaldo", + "ContactName": "Aria Cruz", "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", + "Address": "Rua Orós, 92", "City": "Sao Paulo", "Region": "SP", - "PostalCode": 5487, + "PostalCode": 5442, "Country": "Brazil", - "Phone": "(11) 555-1189", + "Phone": "(11) 555-9857", "Orders": [ { - "OrderID": 10868, - "EmployeeID": 7, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 2, - "Freight": 191.27, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", + "OrderID": 10347, + "EmployeeID": 4, + "OrderDate": "1996-11-06T00:00:00", + "RequiredDate": "1996-12-04T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 3.1, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", "ShipCity": "Sao Paulo", "ShipRegion": "SP", - "ShipPostalCode": 5487, + "ShipPostalCode": 5442, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 42, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 29000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10869, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 1, - "Freight": 143.28, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 48000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 11, - "UnitPrice": 21, + "ProductID": 25, + "UnitPrice": 11.2, "Quantity": 10, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, + "ProductID": 39, + "UnitPrice": 14.4, "Quantity": 50, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10870, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", - "ShipVia": 3, - "Freight": 12.04, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 2, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10871, + "OrderID": 10386, "EmployeeID": 9, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 2, - "Freight": 112.27, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-25T00:00:00", + "ShipVia": 3, + "Freight": 13.99, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10414, + "EmployeeID": 2, + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-17T00:00:00", + "ShipVia": 3, + "Freight": 21.48, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, "Discount": 0.06 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10872, - "EmployeeID": 5, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", + "OrderID": 10512, + "EmployeeID": 7, + "OrderDate": "1997-04-21T00:00:00", + "RequiredDate": "1997-05-19T00:00:00", + "ShippedDate": "1997-04-24T00:00:00", "ShipVia": 2, - "Freight": 175.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 3.53, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 10, - "Discount": 0.06 + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 12, + "Discount": 0.16 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10873, - "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", + "OrderID": 10581, + "EmployeeID": 3, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-02T00:00:00", "ShipVia": 1, - "Freight": 0.82, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 3.01, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10874, + "OrderID": 10650, "EmployeeID": 5, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 2, - "Freight": 19.58, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderDate": "1997-08-29T00:00:00", + "RequiredDate": "1997-09-26T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 176.81, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 34000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10875, + "OrderID": 10725, "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 2, - "Freight": 32.37, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 18000, - "ShipCountry": "Sweden", + "OrderDate": "1997-10-31T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 3, + "Freight": 10.83, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 25, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 21, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 15, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] } - ] + ], + "Fax": "(11) 555-9857" }, { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, + "CustomerID": "LAMAI", + "Company": "La maison de Asie", + "ContactName": "Annette Roulet", + "ContactTitle": "Sales Manager", + "Address": "1 rue Alsace-Lorraine", + "City": "Toulouse", + "PostalCode": 31000, "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", + "Phone": "61.77.61.10", + "Fax": "61.77.61.11", "Orders": [ { - "OrderID": 10876, - "EmployeeID": 7, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 3, - "Freight": 60.42, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, + "OrderID": 10350, + "EmployeeID": 6, + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 64.19, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 18, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10877, - "EmployeeID": 1, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", + "OrderID": 10358, + "EmployeeID": 5, + "OrderDate": "1996-11-20T00:00:00", + "RequiredDate": "1996-12-18T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", "ShipVia": 1, - "Freight": 38.06, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 19.64, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10878, - "EmployeeID": 4, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderID": 10371, + "EmployeeID": 1, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", "ShipVia": 1, - "Freight": 46.69, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 0.45, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 6, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10879, + "OrderID": 10413, "EmployeeID": 3, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 3, - "Freight": 8.5, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 2, + "Freight": 95.66, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 14, + "Discount": 0 + } + ] + }, + { + "OrderID": 10425, + "EmployeeID": 6, + "OrderDate": "1997-01-24T00:00:00", + "RequiredDate": "1997-02-21T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 2, + "Freight": 7.93, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, + "ProductID": 55, + "UnitPrice": 19.2, "Quantity": 10, - "Discount": 0 + "Discount": 0.25 }, { "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 43000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10880, - "EmployeeID": 7, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 88.01, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 15000, - "ShipCountry": "Sweden", + "OrderID": 10454, + "EmployeeID": 4, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-25T00:00:00", + "ShipVia": 3, + "Freight": 2.74, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 30, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 10, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10881, + "OrderID": 10493, "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 2.84, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 10.64, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 73, - "UnitPrice": 15, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, "Quantity": 10, - "Discount": 0 + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10882, - "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 3, - "Freight": 23.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10500, + "EmployeeID": 6, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-17T00:00:00", + "ShipVia": 1, + "Freight": 42.68, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 25, - "Discount": 0 + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 20, - "Discount": 0.16 - }, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10610, + "EmployeeID": 8, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 1, + "Freight": 26.78, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 32, - "Discount": 0.16 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10883, + "OrderID": 10631, "EmployeeID": 8, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 3, - "Freight": 0.53, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-15T00:00:00", + "ShipVia": 1, + "Freight": 0.87, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 8, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10884, - "EmployeeID": 4, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", - "ShipVia": 2, - "Freight": 90.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10787, + "EmployeeID": 2, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 249.93, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 21, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, "Discount": 0.06 + } + ] + }, + { + "OrderID": 10832, + "EmployeeID": 2, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 43.26, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0.2 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 3, + "Discount": 0 } ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 10000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10885, - "EmployeeID": 6, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", + "OrderID": 10923, + "EmployeeID": 7, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 3, - "Freight": 5.64, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 40000, - "ShipCountry": "Belgium", + "Freight": 68.26, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 - }, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 11051, + "EmployeeID": 7, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-09-25T00:00:00", + "ShipVia": 3, + "Freight": 2.79, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 25, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", + "CustomerID": "PICCO", + "Company": "Piccolo und mehr", + "ContactName": "Georg Pipps", + "ContactTitle": "Sales Manager", + "Address": "Geislweg 14", + "City": "Salzburg", + "PostalCode": 5020, + "Country": "Austria", + "Phone": "6562-9722", + "Fax": "6562-9723", "Orders": [ { - "OrderID": 10886, - "EmployeeID": 1, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 1, - "Freight": 4.99, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10353, + "EmployeeID": 7, + "OrderDate": "1996-11-13T00:00:00", + "RequiredDate": "1996-12-11T00:00:00", + "ShippedDate": "1996-11-25T00:00:00", + "ShipVia": 3, + "Freight": 360.63, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 40, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10887, - "EmployeeID": 8, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", + "OrderID": 10392, + "EmployeeID": 2, + "OrderDate": "1996-12-24T00:00:00", + "RequiredDate": "1997-01-21T00:00:00", + "ShippedDate": "1997-01-01T00:00:00", "ShipVia": 3, - "Freight": 1.25, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "Freight": 122.46, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10888, - "EmployeeID": 1, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", + "OrderID": 10427, + "EmployeeID": 4, + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", "ShipVia": 2, - "Freight": 51.87, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 31.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10889, - "EmployeeID": 9, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 3, - "Freight": 280.61, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10489, + "EmployeeID": 6, + "OrderDate": "1997-03-28T00:00:00", + "RequiredDate": "1997-04-25T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", + "ShipVia": 2, + "Freight": 5.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10890, - "EmployeeID": 7, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 32.76, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10530, + "EmployeeID": 3, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", + "ShipVia": 2, + "Freight": 339.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 17, "UnitPrice": 39, - "Quantity": 15, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10891, + "OrderID": 10597, "EmployeeID": 7, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 20.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", + "ShipVia": 3, + "Freight": 35.12, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10892, - "EmployeeID": 4, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 120.27, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 45000, - "ShipCountry": "Belgium", + "OrderID": 10686, + "EmployeeID": 2, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-08T00:00:00", + "ShipVia": 1, + "Freight": 96.5, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10893, - "EmployeeID": 9, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 2, - "Freight": 77.78, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10747, + "EmployeeID": 6, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-26T00:00:00", + "ShipVia": 1, + "Freight": 117.33, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 24, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 35, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10844, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", + "ShipVia": 2, + "Freight": 25.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10894, - "EmployeeID": 1, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 1, - "Freight": 116.13, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11053, + "EmployeeID": 2, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 28, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 120, - "Discount": 0.06 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 25, + "Discount": 0.2 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "AROUT", + "Company": "Around the Horn", + "ContactName": "Thomas Hardy", + "ContactTitle": "Sales Representative", + "Address": "120 Hanover Sq.", + "City": "London", + "PostalCode": 12000, + "Country": "UK", + "Phone": "(171) 555-7788", + "Fax": "(171) 555-6750", "Orders": [ { - "OrderID": 10895, - "EmployeeID": 3, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 1, - "Freight": 162.75, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10355, + "EmployeeID": 6, + "OrderDate": "1996-11-15T00:00:00", + "RequiredDate": "1996-12-13T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 41.95, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 31000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 110, + "UnitPrice": 3.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 45, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10383, + "EmployeeID": 8, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-18T00:00:00", + "ShipVia": 3, + "Freight": 34.24, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 19000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 91, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 100, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 11000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10896, - "EmployeeID": 7, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 32.45, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 28000, - "ShipCountry": "Belgium", + "OrderID": 10453, + "EmployeeID": 1, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", + "ShipVia": 2, + "Freight": 25.36, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 48, + "UnitPrice": 10.2, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 16, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10897, - "EmployeeID": 3, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-25T00:00:00", + "OrderID": 10558, + "EmployeeID": 1, + "OrderDate": "1997-06-04T00:00:00", + "RequiredDate": "1997-07-02T00:00:00", + "ShippedDate": "1997-06-10T00:00:00", "ShipVia": 2, - "Freight": 603.54, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 72.97, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 35000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 80, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 36, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10898, + "OrderID": 10707, "EmployeeID": 4, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 1.27, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 3, + "Freight": 21.74, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10899, - "EmployeeID": 5, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", + "OrderID": 10741, + "EmployeeID": 4, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 1.21, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 10.96, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 27000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10900, + "OrderID": 10743, "EmployeeID": 1, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", "ShipVia": 2, - "Freight": 1.66, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 28, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10901, - "EmployeeID": 4, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", - "ShipVia": 1, - "Freight": 62.09, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10768, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 2, + "Freight": 146.32, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 }, { "ProductID": 71, "UnitPrice": 21.5, - "Quantity": 30, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 39000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10902, - "EmployeeID": 1, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 1, - "Freight": 44.15, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 11000, - "ShipCountry": "Sweden", + "OrderID": 10793, + "EmployeeID": 3, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", + "ShipVia": 3, + "Freight": 4.52, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10903, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 36.71, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10864, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 2, + "Freight": 3.04, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10904, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 162.95, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10920, + "EmployeeID": 4, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", + "ShipVia": 2, + "Freight": 29.61, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 35000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 35, + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10905, + "OrderID": 10953, "EmployeeID": 9, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-25T00:00:00", "ShipVia": 2, - "Freight": 13.72, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10906, - "EmployeeID": 4, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 3, - "Freight": 26.29, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 11016, + "EmployeeID": 9, + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 2, + "Freight": 33.8, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 20000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 16, + "Discount": 0 } ] } ] }, { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", + "CustomerID": "SEVES", + "Company": "Seven Seas Imports", + "ContactName": "Hari Kumar", + "ContactTitle": "Sales Manager", + "Address": "90 Wadhurst Rd.", + "City": "London", + "PostalCode": 23000, + "Country": "UK", + "Phone": "(171) 555-1717", + "Fax": "(171) 555-5646", "Orders": [ { - "OrderID": 10907, - "EmployeeID": 6, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-25T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", + "OrderID": 10359, + "EmployeeID": 5, + "OrderDate": "1996-11-21T00:00:00", + "RequiredDate": "1996-12-19T00:00:00", + "ShippedDate": "1996-11-26T00:00:00", "ShipVia": 3, - "Freight": 9.19, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 288.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 43000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 14, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 56, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 70, + "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10908, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 32.96, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10377, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 22.21, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 20, - "Discount": 0.06 + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 14, - "Discount": 0.06 + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10909, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-10T00:00:00", - "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10388, + "EmployeeID": 2, + "OrderDate": "1996-12-19T00:00:00", + "RequiredDate": "1997-01-16T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", + "ShipVia": 1, + "Freight": 34.86, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 43000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 12, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 7.6, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 5, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10910, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 38.11, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10472, + "EmployeeID": 8, + "OrderDate": "1997-03-12T00:00:00", + "RequiredDate": "1997-04-09T00:00:00", + "ShippedDate": "1997-03-19T00:00:00", + "ShipVia": 1, + "Freight": 4.2, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 21000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 10, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 80, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10911, - "EmployeeID": 3, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", - "ShipVia": 1, - "Freight": 38.19, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10523, + "EmployeeID": 7, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 2, + "Freight": 77.63, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 16000, + "ShipCountry": "UK", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, { "ProductID": 17, "UnitPrice": 39, - "Quantity": 12, - "Discount": 0 + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 67, - "UnitPrice": 14, + "ProductID": 20, + "UnitPrice": 81, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 6, + "Discount": 0.1 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10912, - "EmployeeID": 2, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10547, + "EmployeeID": 3, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", "ShipVia": 2, - "Freight": 580.91, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 178.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 60, - "Discount": 0.25 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10913, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 1, - "Freight": 33.05, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10800, + "EmployeeID": 1, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 3, + "Freight": 137.44, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 41000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 7, + "Discount": 0.1 } ] }, { - "OrderID": 10914, + "OrderID": 10804, "EmployeeID": 6, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 1, - "Freight": 21.19, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 25, - "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10915, - "EmployeeID": 2, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 2, - "Freight": 3.51, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 27.33, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 38000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 10, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 4, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10916, - "EmployeeID": 1, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 2, - "Freight": 63.77, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10869, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 143.28, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 48000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 6, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 6, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 20, "Discount": 0 } @@ -30789,172 +20867,169 @@ ] }, { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", + "CustomerID": "DRACD", + "Company": "Drachenblut Delikatessen", + "ContactName": "Sven Ottlieb", + "ContactTitle": "Order Administrator", + "Address": "Walserweg 21", + "City": "Aachen", + "PostalCode": 52066, + "Country": "Germany", + "Phone": "0241-039123", + "Fax": "0241-059428", "Orders": [ { - "OrderID": 10917, + "OrderID": 10363, "EmployeeID": 4, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 2, - "Freight": 8.29, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1996-12-24T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", + "ShipVia": 3, + "Freight": 30.54, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 1, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 32000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10918, + "OrderID": 10391, "EmployeeID": 3, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-31T00:00:00", "ShipVia": 3, - "Freight": 48.83, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 45000, - "ShipCountry": "Canada", + "Freight": 5.45, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 18, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10919, - "EmployeeID": 2, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", + "OrderID": 10797, + "EmployeeID": 7, + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 2, - "Freight": 19.8, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 33.35, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 24, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10825, + "EmployeeID": 1, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 1, + "Freight": 79.25, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 24, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 53, + "UnitPrice": 32.8, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 41000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10920, - "EmployeeID": 4, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", + "OrderID": 11036, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 3, + "Freight": 149.47, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 11067, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", "ShipVia": 2, - "Freight": 29.61, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 35000, - "ShipCountry": "UK", + "Freight": 7.98, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 24, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, "Discount": 0 } ] @@ -30962,327 +21037,267 @@ ] }, { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", + "CustomerID": "EASTC", + "Company": "Eastern Connection", + "ContactName": "Ann Devon", + "ContactTitle": "Sales Agent", + "Address": "35 King George", + "City": "London", + "PostalCode": 46000, + "Country": "UK", + "Phone": "(171) 555-0297", + "Fax": "(171) 555-3373", "Orders": [ { - "OrderID": 10921, + "OrderID": 10364, "EmployeeID": 1, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", "ShipVia": 1, - "Freight": 176.48, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 71.97, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 10000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10922, - "EmployeeID": 5, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", + "OrderID": 10400, + "EmployeeID": 1, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", "ShipVia": 3, - "Freight": 62.74, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 83.93, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 25000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 15, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 35, + "UnitPrice": 14.4, "Quantity": 35, "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10923, + "OrderID": 10532, "EmployeeID": 7, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderDate": "1997-05-09T00:00:00", + "RequiredDate": "1997-06-06T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", "ShipVia": 3, - "Freight": 68.26, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 74.46, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 23000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, + "ProductID": 66, + "UnitPrice": 17, "Quantity": 24, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 28000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10924, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 2, - "Freight": 151.52, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 35000, - "ShipCountry": "Sweden", + "OrderID": 10726, + "EmployeeID": 4, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 16.56, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 24000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 6, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10925, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderID": 10987, + "EmployeeID": 8, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", "ShipVia": 1, - "Freight": 2.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 185.48, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 12, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 20, + "Discount": 0 + } + ] + }, { - "OrderID": 10926, + "OrderID": 11024, "EmployeeID": 4, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 3, - "Freight": 39.92, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 74.36, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 23000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 2, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ + }, { - "OrderID": 10927, - "EmployeeID": 4, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 19.79, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "OrderID": 11047, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 46.62, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 14000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11056, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 2, + "Freight": 278.96, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 17000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 } ] @@ -31290,837 +21305,693 @@ ] }, { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", + "CustomerID": "ANTON", + "Company": "Antonio Moreno Taquería", + "ContactName": "Antonio Moreno", + "ContactTitle": "Owner", + "Address": "Mataderos 2312", + "City": "México D.F.", + "PostalCode": 5023, + "Country": "Mexico", + "Phone": "(5) 555-3932", "Orders": [ { - "OrderID": 10928, - "EmployeeID": 1, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 10365, + "EmployeeID": 3, + "OrderDate": "1996-11-27T00:00:00", + "RequiredDate": "1996-12-25T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 22, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 24, "Discount": 0 + } + ] + }, + { + "OrderID": 10507, + "EmployeeID": 7, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-04-22T00:00:00", + "ShipVia": 1, + "Freight": 47.45, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0 + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10929, - "EmployeeID": 6, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", + "OrderID": 10535, + "EmployeeID": 4, + "OrderDate": "1997-05-13T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-21T00:00:00", "ShipVia": 1, - "Freight": 33.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 15.64, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 49, - "Discount": 0 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 5, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 14000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10930, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10573, + "EmployeeID": 7, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-20T00:00:00", "ShipVia": 3, - "Freight": 15.55, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 17000, - "ShipCountry": "Belgium", + "Freight": 84.84, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 36, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 25, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 53, + "UnitPrice": 32.8, "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10931, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 2, - "Freight": 13.6, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10677, + "EmployeeID": 1, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 3, + "Freight": 4.03, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 42, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 30, "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10932, - "EmployeeID": 8, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", - "ShipVia": 1, - "Freight": 134.64, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10682, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 2, + "Freight": 36.13, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, + "ProductID": 33, + "UnitPrice": 2.5, "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 14, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 16, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 4, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.1 + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 27000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10933, - "EmployeeID": 6, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 3, - "Freight": 54.15, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40624, - "ShipPostalCode": 44000, - "ShipCountry": "UK", + "OrderID": 10856, + "EmployeeID": 3, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 58.43, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 2, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] } ], - "Fax": "(198) 555-8888" + "Fax": "(5) 555-3932" }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "CustomerID": "GALED", + "Company": "Galería del gastrónomo", + "ContactName": "Eduardo Saavedra", + "ContactTitle": "Marketing Manager", + "Address": "Rambla de Cataluña, 23", + "City": "Barcelona", + "PostalCode": 8022, + "Country": "Spain", + "Phone": "(93) 203 4560", + "Fax": "(93) 203 4561", "Orders": [ { - "OrderID": 10934, - "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", - "ShipVia": 3, - "Freight": 32.01, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10366, + "EmployeeID": 8, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-30T00:00:00", + "ShipVia": 2, + "Freight": 10.14, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10935, + "OrderID": 10426, "EmployeeID": 4, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 47.59, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-02-06T00:00:00", + "ShipVia": 1, + "Freight": 18.69, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 8, - "Discount": 0.25 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10936, + "OrderID": 10568, "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 2, - "Freight": 33.68, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1997-06-13T00:00:00", + "RequiredDate": "1997-07-11T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 3, + "Freight": 6.54, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 5, + "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10937, - "EmployeeID": 7, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderID": 10887, + "EmployeeID": 8, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", "ShipVia": 3, - "Freight": 31.51, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 1.25, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 34, + "ProductID": 25, "UnitPrice": 14, - "Quantity": 20, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10938, - "EmployeeID": 3, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 31.89, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10928, + "EmployeeID": 1, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 1.36, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 49, - "Discount": 0.25 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "VAFFE", + "Company": "Vaffeljernet", + "ContactName": "Palle Ibsen", + "ContactTitle": "Sales Manager", + "Address": "Smagsloget 45", + "City": "Århus", + "PostalCode": 8200, + "Country": "Denmark", + "Phone": "86 21 32 43", + "Fax": "86 22 33 44", "Orders": [ { - "OrderID": 10939, - "EmployeeID": 2, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 2, - "Freight": 76.33, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10367, + "EmployeeID": 7, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1996-12-26T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 13.55, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10940, + "OrderID": 10399, "EmployeeID": 8, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderDate": "1996-12-31T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", "ShipVia": 3, - "Freight": 19.77, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 27.36, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 8, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10941, - "EmployeeID": 7, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 400.81, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10465, + "EmployeeID": 1, + "OrderDate": "1997-03-05T00:00:00", + "RequiredDate": "1997-04-02T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 3, + "Freight": 145.04, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 44, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 45, + "UnitPrice": 7.6, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.1 + }, + { + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10591, + "EmployeeID": 1, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-07-21T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 55.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 80, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 50, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10942, - "EmployeeID": 9, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 17.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10602, + "EmployeeID": 8, + "OrderDate": "1997-07-17T00:00:00", + "RequiredDate": "1997-08-14T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", + "ShipVia": 2, + "Freight": 2.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 28, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 5, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 15000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10943, + "OrderID": 10688, "EmployeeID": 4, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", "ShipVia": 2, - "Freight": 2.17, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", + "Freight": 299.09, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 15, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 21, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 15, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 14, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 44000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10944, + "OrderID": 10744, "EmployeeID": 6, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 3, - "Freight": 52.92, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 69.19, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10769, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 1, + "Freight": 65.06, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10945, - "EmployeeID": 4, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-04-09T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10921, + "EmployeeID": 1, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 1, - "Freight": 10.22, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 176.48, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 40, "Discount": 0 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { "OrderID": 10946, "EmployeeID": 1, @@ -32154,1106 +22025,1060 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 39000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10947, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "OrderID": 10994, + "EmployeeID": 2, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-04-09T00:00:00", + "ShipVia": 3, + "Freight": 65.53, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { "ProductID": 59, "UnitPrice": 55, - "Quantity": 4, - "Discount": 0 + "Quantity": 18, + "Discount": 0.06 } ] } - ], - "Fax": "(171) 555-1212" + ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "CustomerID": "QUEEN", + "Company": "Queen Cozinha", + "ContactName": "Lúcia Carvalho", + "ContactTitle": "Marketing Assistant", + "Address": "Alameda dos Canàrios, 891", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5487, + "Country": "Brazil", + "Phone": "(11) 555-1189", "Orders": [ { - "OrderID": 10948, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 3, - "Freight": 23.39, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10372, + "EmployeeID": 5, + "OrderDate": "1996-12-04T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 890.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 9, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 40, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 70, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 42, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10406, + "EmployeeID": 7, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-13T00:00:00", + "ShipVia": 1, + "Freight": 108.04, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 42, + "Discount": 0.1 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 2, + "Discount": 0.1 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 17000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10949, + "OrderID": 10487, "EmployeeID": 2, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-17T00:00:00", - "ShipVia": 3, - "Freight": 74.44, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 34000, - "ShipCountry": "Canada", + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-03-28T00:00:00", + "ShipVia": 2, + "Freight": 71.07, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 12, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 30, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10637, + "EmployeeID": 6, + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 201.29, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 25, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 60, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10950, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-13T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10659, + "EmployeeID": 7, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 2, - "Freight": 2.5, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 105.81, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 24, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10704, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", + "ShipVia": 1, + "Freight": 4.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { "ProductID": 4, "UnitPrice": 22, - "Quantity": 5, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10951, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", + "OrderID": 10728, + "EmployeeID": 4, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-11-11T00:00:00", "ShipVia": 2, - "Freight": 30.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 58.33, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, + "ProductID": 30, + "UnitPrice": 25.89, "Quantity": 15, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, + "ProductID": 40, + "UnitPrice": 18.4, "Quantity": 6, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10952, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "OrderID": 10786, + "EmployeeID": 8, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-16T00:00:00", + "ShippedDate": "1997-12-23T00:00:00", "ShipVia": 1, - "Freight": 40.42, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 110.87, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 2, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0.2 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, + "Discount": 0.2 } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 36000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10953, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-25T00:00:00", + ] + }, + { + "OrderID": 10868, + "EmployeeID": 7, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 37000, - "ShipCountry": "UK", + "Freight": 191.27, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 42, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10954, - "EmployeeID": 5, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 10913, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 1, - "Freight": 27.91, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", + "Freight": 33.05, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 17000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10955, + "OrderID": 10961, "EmployeeID": 8, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 20000, - "ShipCountry": "Sweden", + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", + "ShipVia": 1, + "Freight": 104.47, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10956, - "EmployeeID": 6, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 11068, + "EmployeeID": 8, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-11-01T00:00:00", "ShipVia": 2, - "Freight": 44.65, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "Freight": 81.75, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.16 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 14, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 36, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 8, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 28, + "Discount": 0.16 } ] } - ] + ], + "Fax": "(11) 555-1189" }, { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10957, - "EmployeeID": 8, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "CustomerID": "WOLZA", + "Company": "Wolski Zajazd", + "ContactName": "Zbyszek Piestrzeniewicz", + "ContactTitle": "Owner", + "Address": "ul. Filtrowa 68", + "City": "Warszawa", + "PostalCode": 12000, + "Country": "Poland", + "Phone": "(26) 642-7012", + "Fax": "(26) 642-7012", + "Orders": [ + { + "OrderID": 10374, + "EmployeeID": 1, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", "ShipVia": 3, - "Freight": 105.36, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 3.94, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 31, + "UnitPrice": 10, "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 8, + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10958, - "EmployeeID": 7, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "OrderID": 10611, + "EmployeeID": 6, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 49.56, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 80.65, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 20, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 6, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 5, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10959, - "EmployeeID": 6, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", - "ShipVia": 2, - "Freight": 4.98, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 10792, + "EmployeeID": 1, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 3, + "Freight": 23.79, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10960, - "EmployeeID": 3, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 2.08, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10870, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", + "ShipVia": 3, + "Freight": 12.04, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 24, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10961, - "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", - "ShipVia": 1, - "Freight": 104.47, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, - "Discount": 0.06 - }, + "OrderID": 10906, + "EmployeeID": 4, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", + "ShipVia": 3, + "Freight": 26.29, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 60, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 15, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10962, + "OrderID": 10998, "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", "ShipVia": 2, - "Freight": 275.79, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 20.31, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 77, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 74, + "UnitPrice": 10, "Quantity": 20, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 9, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 44, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10963, - "EmployeeID": 9, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", - "ShipVia": 3, - "Freight": 2.7, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 11044, + "EmployeeID": 4, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 8.72, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0 } ] } ] }, { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", + "CustomerID": "HUNGC", + "Company": "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", "Orders": [ { - "OrderID": 10964, + "OrderID": 10375, "EmployeeID": 3, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "OrderDate": "1996-12-06T00:00:00", + "RequiredDate": "1997-01-03T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", "ShipVia": 2, - "Freight": 87.38, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 20.12, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 6, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10394, + "EmployeeID": 1, + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 3, + "Freight": 30.34, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10965, - "EmployeeID": 6, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", - "ShipVia": 3, - "Freight": 144.38, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "OrderID": 10415, + "EmployeeID": 3, + "OrderDate": "1997-01-15T00:00:00", + "RequiredDate": "1997-02-12T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "ShipVia": 1, + "Freight": 0.2, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 16, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10966, + "OrderID": 10600, "EmployeeID": 4, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-13T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", "ShipVia": 1, - "Freight": 27.19, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 45.13, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 - }, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10660, + "EmployeeID": 8, + "OrderDate": "1997-09-08T00:00:00", + "RequiredDate": "1997-10-06T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 1, + "Freight": 111.29, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 21, + "Discount": 0 } ] } - ], - "Fax": "0452-076545" + ] }, { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", + "CustomerID": "SANTG", + "Company": "Santé Gourmet", + "ContactName": "Jonas Bergulfsen", + "ContactTitle": "Owner", + "Address": "Erling Skakkes gate 78", + "City": "Stavern", + "PostalCode": 4110, + "Country": "Norway", + "Phone": "07-98 92 35", + "Fax": "07-98 92 47", "Orders": [ { - "OrderID": 10967, - "EmployeeID": 2, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10387, + "EmployeeID": 1, + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-15T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", "ShipVia": 2, - "Freight": 62.22, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 93.63, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, "Quantity": 12, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10968, - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-01T00:00:00", - "ShipVia": 3, - "Freight": 74.6, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10520, + "EmployeeID": 7, + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 1, + "Freight": 13.37, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 30, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 4, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10969, - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", + "OrderID": 10639, + "EmployeeID": 7, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-08-27T00:00:00", + "ShipVia": 3, + "Freight": 38.64, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10831, + "EmployeeID": 3, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 2, - "Freight": 0.21, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 72.19, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ + }, { - "OrderID": 10970, - "EmployeeID": 9, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 1, - "Freight": 16.16, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", + "OrderID": 10909, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-10T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10971, + "OrderID": 11015, "EmployeeID": 2, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 2, - "Freight": 121.82, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 4.62, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] @@ -33261,462 +23086,321 @@ ] }, { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", + "CustomerID": "BOTTM", + "Company": "Bottom-Dollar Markets", + "ContactName": "Elizabeth Lincoln", + "ContactTitle": "Accounting Manager", + "Address": "23 Tsawassen Blvd.", + "City": "Tsawassen", + "Region": "BC", + "PostalCode": 14000, + "Country": "Canada", + "Phone": "(604) 555-4729", + "Fax": "(604) 555-3745", "Orders": [ { - "OrderID": 10972, + "OrderID": 10389, "EmployeeID": 4, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", + "OrderDate": "1996-12-20T00:00:00", + "RequiredDate": "1997-01-17T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", "ShipVia": 2, - "Freight": 0.02, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "Freight": 47.42, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 28000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 7, - "Discount": 0 - } - ] - }, - { - "OrderID": 10973, - "EmployeeID": 6, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 2, - "Freight": 15.17, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10974, + "OrderID": 10410, "EmployeeID": 3, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderDate": "1997-01-10T00:00:00", + "RequiredDate": "1997-02-07T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", "ShipVia": 3, - "Freight": 12.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 2.4, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 19000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10975, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-22T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 3, - "Freight": 32.27, + "OrderID": 10431, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 44.17, "ShipName": "Bottom-Dollar Markets", "ShipAddress": "23 Tsawassen Blvd.", "ShipCity": "Tsawassen", "ShipRegion": "BC", - "ShipPostalCode": 45000, + "ShipPostalCode": 49000, "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 16, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 50, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10976, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderID": 10492, + "EmployeeID": 3, + "OrderDate": "1997-04-01T00:00:00", + "RequiredDate": "1997-04-29T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 1, - "Freight": 37.97, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 62.89, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 41000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10977, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10742, + "EmployeeID": 3, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-12-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 208.5, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", + "Freight": 243.73, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 17000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 46000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10978, - "EmployeeID": 9, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", - "ShipVia": 2, - "Freight": 32.82, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", + "OrderID": 10918, + "EmployeeID": 3, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 48.83, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", "ShipPostalCode": 45000, - "ShipCountry": "Belgium", + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.16 - }, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 25, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10944, + "EmployeeID": 6, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 52.92, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, + "Discount": 0.25 }, { "ProductID": 44, "UnitPrice": 19.45, - "Quantity": 6, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10979, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-03-31T00:00:00", - "ShipVia": 2, - "Freight": 353.07, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, "Quantity": 18, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 12, + "ProductID": 56, "UnitPrice": 38, - "Quantity": 20, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10949, + "EmployeeID": 2, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-17T00:00:00", + "ShipVia": 3, + "Freight": 74.44, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 34000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 80, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 30, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 24, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 35, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 21000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10980, - "EmployeeID": 4, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 1, - "Freight": 1.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "OrderID": 10975, + "EmployeeID": 1, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-22T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 32.27, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 45000, + "ShipCountry": "Canada", "OrderDetails": [ + { + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 16, + "Discount": 0 + }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10981, - "EmployeeID": 1, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 193.37, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 16000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { "OrderID": 10982, "EmployeeID": 2, @@ -33745,588 +23429,513 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10983, - "EmployeeID": 2, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 2, - "Freight": 657.54, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11027, + "EmployeeID": 1, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 52.52, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 11000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 21, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11045, + "EmployeeID": 6, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-05-23T00:00:00", + "ShipVia": 2, + "Freight": 70.58, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 36000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 84, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 24, "Discount": 0 } ] }, { - "OrderID": 10984, - "EmployeeID": 1, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderID": 11048, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", "ShipVia": 3, - "Freight": 211.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 24.12, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 15000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 55, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 42, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "LINOD", + "Company": "LINO-Delicateses", + "ContactName": "Felipe Izquierdo", + "ContactTitle": "Owner", + "Address": "Ave. 5 de Mayo Porlamar", + "City": "Sao Paulo", + "Region": "Nueva Esparta", + "PostalCode": 4980, + "Country": "Venezuela", + "Phone": "(8) 34-56-12", + "Fax": "(8) 34-93-93", "Orders": [ { - "OrderID": 10985, - "EmployeeID": 2, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10405, + "EmployeeID": 1, + "OrderDate": "1997-01-06T00:00:00", + "RequiredDate": "1997-02-03T00:00:00", + "ShippedDate": "1997-01-22T00:00:00", "ShipVia": 1, - "Freight": 91.51, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 34.82, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 36, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 + } + ] + }, + { + "OrderID": 10485, + "EmployeeID": 4, + "OrderDate": "1997-03-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-31T00:00:00", + "ShipVia": 2, + "Freight": 64.45, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 35, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 60, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10986, - "EmployeeID": 8, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 2, - "Freight": 217.86, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10638, + "EmployeeID": 3, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", + "ShipVia": 1, + "Freight": 158.44, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 16000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10987, - "EmployeeID": 8, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 1, - "Freight": 185.48, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 32000, - "ShipCountry": "UK", + "OrderID": 10697, + "EmployeeID": 3, + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-05T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", + "ShipVia": 1, + "Freight": 45.52, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0.25 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 9, + "Discount": 0.25 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10988, - "EmployeeID": 3, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 61.14, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10729, + "EmployeeID": 8, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 3, + "Freight": 141.06, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 50, + "UnitPrice": 16.25, "Quantity": 40, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10989, - "EmployeeID": 2, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10811, + "EmployeeID": 8, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", "ShipVia": 1, - "Freight": 34.76, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 31.22, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 40, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10990, - "EmployeeID": 2, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", + "OrderID": 10838, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 3, - "Freight": 117.61, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 59.28, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 65, - "Discount": 0 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 60, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 66, - "Discount": 0.16 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10991, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 1, - "Freight": 38.51, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10840, + "EmployeeID": 4, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", + "ShipVia": 2, + "Freight": 2.71, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.2 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 76, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 90, + "Quantity": 10, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10992, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 4.27, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "OrderID": 10919, + "EmployeeID": 2, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 2, + "Freight": 19.8, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 2, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 50000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10993, - "EmployeeID": 7, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 3, - "Freight": 8.81, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "OrderID": 10954, + "EmployeeID": 5, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 1, + "Freight": 27.91, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 28, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 25, + "Discount": 0.16 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10994, + "OrderID": 11014, "EmployeeID": 2, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-04-09T00:00:00", + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", "ShipVia": 3, - "Freight": 65.53, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 23.6, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 28, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10995, + "OrderID": 11039, "EmployeeID": 1, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 3, - "Freight": 46, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-05-25T00:00:00", + "ShipVia": 2, + "Freight": 65, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 28, "Discount": 0 } ] @@ -34334,935 +23943,905 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "FOLIG", + "Company": "Folies gourmandes", + "ContactName": "Martine Rancé", + "ContactTitle": "Sales Associate", + "Address": "184, chaussée de Tournai", + "City": "Lille", + "PostalCode": 59000, + "Country": "France", + "Phone": "20.16.10.16", + "Fax": "20.16.10.17", "Orders": [ { - "OrderID": 10996, - "EmployeeID": 4, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 1.12, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10408, + "EmployeeID": 8, + "OrderDate": "1997-01-08T00:00:00", + "RequiredDate": "1997-02-05T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 11.26, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10997, - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10480, + "EmployeeID": 6, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", "ShipVia": 2, - "Freight": 73.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 1.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10998, - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 2, - "Freight": 20.31, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10634, + "EmployeeID": 4, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 487.38, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 7, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 30, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10999, - "EmployeeID": 6, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-01T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10763, + "EmployeeID": 3, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 3, + "Freight": 37.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10789, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", "ShipVia": 2, - "Freight": 96.35, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 100.6, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 35, + "UnitPrice": 18, "Quantity": 15, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 21, - "Discount": 0.06 + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "OCEAN", + "Company": "Océano Atlántico Ltda.", + "ContactName": "Yvonne Moncada", + "ContactTitle": "Sales Agent", + "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5333", + "Fax": "(1) 135-5535", "Orders": [ { - "OrderID": 11000, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", - "ShipVia": 3, - "Freight": 55.12, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10409, + "EmployeeID": 3, + "OrderDate": "1997-01-09T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 29.83, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 - }, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10531, + "EmployeeID": 7, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", + "ShipVia": 1, + "Freight": 8.12, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 30000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 11001, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", + "OrderID": 10898, + "EmployeeID": 4, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", "ShipVia": 2, - "Freight": 197.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 30000, - "ShipCountry": "Sweden", + "Freight": 1.27, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 5, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10958, + "EmployeeID": 7, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 2, + "Freight": 49.56, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 25, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 25, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11002, - "EmployeeID": 4, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", - "ShipVia": 1, - "Freight": 141.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10986, + "EmployeeID": 8, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 217.86, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 56, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, + "ProductID": 20, + "UnitPrice": 81, "Quantity": 15, - "Discount": 0.16 + "Discount": 0 }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0.16 + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 40, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "THECR", - "Company": "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": "FRANS", + "Company": "Franchi S.p.A.", + "ContactName": "Paolo Accorti", + "ContactTitle": "Sales Representative", + "Address": "Via Monte Bianco 34", + "City": "Torino", + "PostalCode": 10100, + "Country": "Italy", + "Phone": "011-4988260", + "Fax": "011-4988261", "Orders": [ { - "OrderID": 11003, - "EmployeeID": 3, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 3, - "Freight": 14.91, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "OrderID": 10422, + "EmployeeID": 2, + "OrderDate": "1997-01-22T00:00:00", + "RequiredDate": "1997-02-19T00:00:00", + "ShippedDate": "1997-01-31T00:00:00", + "ShipVia": 1, + "Freight": 3.02, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 2, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10710, + "EmployeeID": 1, + "OrderDate": "1997-10-20T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 1, + "Freight": 4.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 10, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 37000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 11004, + "OrderID": 10753, "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", "ShipVia": 1, - "Freight": 44.84, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 33000, - "ShipCountry": "Belgium", + "Freight": 7.7, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 6, + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 11005, - "EmployeeID": 2, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10807, + "EmployeeID": 4, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 1.36, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 2, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 1, + "Discount": 0 + } + ] + }, + { + "OrderID": 11026, + "EmployeeID": 4, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", + "ShipVia": 1, + "Freight": 47.09, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 51, + "UnitPrice": 53, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11006, - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", + "OrderID": 11060, + "EmployeeID": 2, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", "ShipVia": 2, - "Freight": 25.19, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 10.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0 } ] } - ], - "Fax": "(503) 555-7555" + ] }, { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", + "CustomerID": "GOURL", + "Company": "Gourmet Lanchonetes", + "ContactName": "André Fonseca", + "ContactTitle": "Sales Associate", + "Address": "Av. Brasil, 442", + "City": "Campinas", + "Region": "SP", + "PostalCode": 4876, + "Country": "Brazil", + "Phone": "(11) 555-9482", "Orders": [ { - "OrderID": 11007, - "EmployeeID": 8, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 2, - "Freight": 202.24, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10423, + "EmployeeID": 6, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", + "ShipVia": 3, + "Freight": 24.5, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 20, "Discount": 0 + } + ] + }, + { + "OrderID": 10652, + "EmployeeID": 4, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 2, + "Freight": 7.14, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 2, + "Discount": 0.25 }, { "ProductID": 42, "UnitPrice": 14, - "Quantity": 14, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11008, - "EmployeeID": 7, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-05-09T00:00:00", - "ShipVia": 3, - "Freight": 79.46, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10685, + "EmployeeID": 4, + "OrderDate": "1997-09-29T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 33.75, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 90, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 21, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 11009, - "EmployeeID": 2, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 59.11, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10709, + "EmployeeID": 1, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-11-20T00:00:00", + "ShipVia": 3, + "Freight": 210.8, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 9, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11010, + "OrderID": 10734, "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 2, - "Freight": 28.71, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-12T00:00:00", + "ShipVia": 3, + "Freight": 1.63, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 11011, - "EmployeeID": 3, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10777, + "EmployeeID": 7, + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 2, + "Freight": 3.01, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10790, + "EmployeeID": 6, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", "ShipVia": 1, - "Freight": 1.21, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 28.23, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 3, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 11012, - "EmployeeID": 1, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 3, - "Freight": 242.95, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10959, + "EmployeeID": 6, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 4.98, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 - }, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 11049, + "EmployeeID": 3, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 8.34, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 36, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, + "Discount": 0.2 } ] } - ] + ], + "Fax": "(11) 555-9482" }, { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", + "CustomerID": "CONSH", + "Company": "Consolidated Holdings", + "ContactName": "Elizabeth Brown", + "ContactTitle": "Sales Representative", + "Address": "Berkeley Gardens 12 Brewery", + "City": "London", + "PostalCode": 38000, + "Country": "UK", + "Phone": "(171) 555-2282", + "Fax": "(171) 555-9199", "Orders": [ { - "OrderID": 11013, - "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 32.99, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10435, + "EmployeeID": 8, + "OrderDate": "1997-02-04T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 9.21, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 10, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 4, + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10462, + "EmployeeID": 2, + "OrderDate": "1997-03-03T00:00:00", + "RequiredDate": "1997-03-31T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 1, + "Freight": 6.17, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 50000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 2, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 11014, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", - "ShipVia": 3, - "Freight": 23.6, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 28, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 11015, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10848, + "EmployeeID": 7, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 2, - "Freight": 4.62, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 38.24, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 36000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 3, "Discount": 0 } ] @@ -35270,158 +24849,141 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", + "CustomerID": "RANCH", + "Company": "Rancho grande", + "ContactName": "Sergio Gutiérrez", "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 42000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Address": "Av. del Libertador 900", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 123-5555", + "Fax": "(1) 123-5556", "Orders": [ { - "OrderID": 11016, - "EmployeeID": 9, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10448, + "EmployeeID": 4, + "OrderDate": "1997-02-17T00:00:00", + "RequiredDate": "1997-03-17T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", "ShipVia": 2, - "Freight": 33.8, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 20000, - "ShipCountry": "UK", + "Freight": 38.82, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 16, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11017, - "EmployeeID": 9, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10716, + "EmployeeID": 4, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-27T00:00:00", "ShipVia": 2, - "Freight": 754.26, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 22.57, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 3, + "ProductID": 21, "UnitPrice": 10, - "Quantity": 25, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 110, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11018, - "EmployeeID": 4, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10828, + "EmployeeID": 9, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 90.85, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 10916, + "EmployeeID": 1, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 2, - "Freight": 11.65, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 63.77, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { "OrderID": 11019, "EmployeeID": 6, @@ -35453,139 +25015,60 @@ ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 11020, - "EmployeeID": 2, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", - "ShipVia": 2, - "Freight": 43.3, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "LAZYK", + "Company": "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", "Orders": [ { - "OrderID": 11021, - "EmployeeID": 3, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 1, - "Freight": 297.18, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10482, + "EmployeeID": 1, + "OrderDate": "1997-03-21T00:00:00", + "RequiredDate": "1997-04-18T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 7.48, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 11, - "Discount": 0.25 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 63, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 44, - "Discount": 0.25 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 11022, - "EmployeeID": 9, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10545, + "EmployeeID": 8, + "OrderDate": "1997-05-22T00:00:00", + "RequiredDate": "1997-06-19T00:00:00", + "ShippedDate": "1997-06-26T00:00:00", "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 11.92, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 } ] @@ -35593,460 +25076,323 @@ ] }, { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", + "CustomerID": "LAUGB", + "Company": "Laughing Bacchus Wine Cellars", + "ContactName": "Yoshi Tannamuri", + "ContactTitle": "Marketing Assistant", + "Address": "1900 Oak St.", + "City": "Vancouver", + "Region": "BC", "PostalCode": 19000, - "Country": "UK", - "Phone": "(171) 555-1212", + "Country": "Canada", + "Phone": "(604) 555-3392", + "Fax": "(604) 555-7293", "Orders": [ { - "OrderID": 11023, - "EmployeeID": 1, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 123.83, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 36000, - "ShipCountry": "UK", + "OrderID": 10495, + "EmployeeID": 3, + "OrderDate": "1997-04-03T00:00:00", + "RequiredDate": "1997-05-01T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", + "ShipVia": 3, + "Freight": 4.65, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 20000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 4, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 16000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11024, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 1, - "Freight": 74.36, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 23000, - "ShipCountry": "UK", + "OrderID": 10620, + "EmployeeID": 2, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", + "ShipVia": 3, + "Freight": 0.94, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 31000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 50, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 11025, - "EmployeeID": 6, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10810, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 3, - "Freight": 29.17, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 4.33, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 48000, + "ShipCountry": "Canada", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.1 - }, { "ProductID": 13, "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.1 + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", + "CustomerID": "BLAUS", + "Company": "Blauer See Delikatessen", + "ContactName": "Hanna Moos", "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", + "Address": "Forsterstr. 57", + "City": "Mannheim", + "PostalCode": 68306, + "Country": "Germany", + "Phone": "0621-08460", + "Fax": "0621-08924", "Orders": [ { - "OrderID": 11026, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", - "ShipVia": 1, - "Freight": 47.09, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10501, + "EmployeeID": 9, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 3, + "Freight": 8.85, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 49000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11027, - "EmployeeID": 1, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10509, + "EmployeeID": 4, + "OrderDate": "1997-04-17T00:00:00", + "RequiredDate": "1997-05-15T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 1, - "Freight": 52.52, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 11000, - "ShipCountry": "Canada", + "Freight": 0.15, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 11028, - "EmployeeID": 2, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", - "ShipVia": 1, - "Freight": 29.59, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10582, + "EmployeeID": 3, + "OrderDate": "1997-06-27T00:00:00", + "RequiredDate": "1997-07-25T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 27.71, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 24, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 14, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 11029, - "EmployeeID": 4, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 47.84, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10614, + "EmployeeID": 8, + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 3, + "Freight": 1.93, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 12, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11030, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", + "OrderID": 10853, + "EmployeeID": 9, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", "ShipVia": 2, - "Freight": 830.75, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 53.83, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 100, - "Discount": 0.25 - }, - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 70, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 100, - "Discount": 0.25 } ] }, { - "OrderID": 11031, + "OrderID": 10956, "EmployeeID": 6, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 227.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 44.65, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 45, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 80, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 21, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11032, - "EmployeeID": 2, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 11058, + "EmployeeID": 9, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShippedDate": "1998-08-27T00:00:00", "ShipVia": 3, - "Freight": 606.19, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 31.14, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 35, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 25, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, "Discount": 0 } ] @@ -36054,145 +25400,97 @@ ] }, { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", + "CustomerID": "NORTS", + "Company": "North/South", + "ContactName": "Simon Crowther", + "ContactTitle": "Sales Associate", + "Address": "South House 300 Queensbridge", + "City": "London", + "PostalCode": 13000, + "Country": "UK", + "Phone": "(171) 555-7733", + "Fax": "(171) 555-2530", "Orders": [ { - "OrderID": 11033, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 10517, + "EmployeeID": 3, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 3, - "Freight": 84.74, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 70, - "Discount": 0.1 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 36, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ - { - "OrderID": 11034, - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 40.32, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 32.07, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 19000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 12, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 23000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 11035, + "OrderID": 10752, "EmployeeID": 2, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 0.17, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 30000, - "ShipCountry": "Belgium", + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", + "ShipVia": 3, + "Freight": 1.39, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 1, "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 60, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 3, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11057, + "EmployeeID": 3, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 4.13, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 47000, + "ShipCountry": "UK", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] @@ -36200,181 +25498,175 @@ ] }, { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", + "CustomerID": "CACTU", + "Company": "Cactus Comidas para llevar", + "ContactName": "Patricio Simpson", + "ContactTitle": "Sales Agent", + "Address": "Cerrito 333", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5555", + "Fax": "(1) 135-4892", "Orders": [ { - "OrderID": 11036, + "OrderID": 10521, "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", - "ShipVia": 3, - "Freight": 149.47, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 17.22, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 11037, - "EmployeeID": 7, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 3.2, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10782, + "EmployeeID": 9, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 1.1, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 1, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 11038, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", - "ShipVia": 2, - "Freight": 29.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 44000, - "ShipCountry": "Belgium", + "OrderID": 10819, + "EmployeeID": 2, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", + "ShipVia": 3, + "Freight": 19.76, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 7, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 2, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10881, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 2.84, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 11039, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-05-25T00:00:00", - "ShipVia": 2, - "Freight": 65, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10937, + "EmployeeID": 7, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 31.51, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { "ProductID": 28, "UnitPrice": 45.6, - "Quantity": 20, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 24, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11054, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShippedDate": "1998-05-26T00:00:00", + "ShipVia": 1, + "Freight": 0.33, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 60, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 28, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] @@ -36394,13 +25686,48 @@ "Phone": "(503) 555-7555", "Orders": [ { - "OrderID": 11040, - "EmployeeID": 4, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-05-20T00:00:00", - "ShipVia": 3, - "Freight": 18.84, + "OrderID": 10528, + "EmployeeID": 6, + "OrderDate": "1997-05-06T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 3.35, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.2 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 10589, + "EmployeeID": 8, + "OrderDate": "1997-07-04T00:00:00", + "RequiredDate": "1997-08-01T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 4.42, "ShipName": "Great Lakes Food Market", "ShipAddress": "2732 Baker Blvd.", "ShipCity": "Eugene", @@ -36409,590 +25736,476 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 11041, - "EmployeeID": 3, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", + "OrderID": 10616, + "EmployeeID": 1, + "OrderDate": "1997-07-31T00:00:00", + "RequiredDate": "1997-08-28T00:00:00", + "ShippedDate": "1997-08-05T00:00:00", "ShipVia": 2, - "Freight": 48.22, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 116.53, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 11042, - "EmployeeID": 2, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10656, + "EmployeeID": 6, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 1, - "Freight": 29.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 57.15, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, + "Discount": 0.1 + }, { "ProductID": 44, "UnitPrice": 19.45, - "Quantity": 15, - "Discount": 0 + "Quantity": 28, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 4, - "Discount": 0 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.1 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 11043, - "EmployeeID": 5, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", - "ShipVia": 2, - "Freight": 8.8, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "OrderID": 10681, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 76.13, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 11044, + "OrderID": 10816, "EmployeeID": 4, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 1, - "Freight": 8.72, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-02-03T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 2, + "Freight": 719.78, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10936, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 33.68, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 31000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11045, - "EmployeeID": 6, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-05-23T00:00:00", + "OrderID": 11006, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", "ShipVia": 2, - "Freight": 70.58, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", + "Freight": 25.19, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 24, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 2, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 11046, - "EmployeeID": 8, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 71.64, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 11040, + "EmployeeID": 4, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-05-20T00:00:00", + "ShipVia": 3, + "Freight": 18.84, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, + "ProductID": 21, + "UnitPrice": 10, "Quantity": 20, - "Discount": 0.06 - }, + "Discount": 0 + } + ] + }, + { + "OrderID": 11061, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-06-11T00:00:00", + "ShippedDate": "1998-06-11T00:00:00", + "ShipVia": 3, + "Freight": 14.01, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, + "ProductID": 60, + "UnitPrice": 34, "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 18, - "Discount": 0.06 + "Discount": 0 } ] } - ] + ], + "Fax": "(503) 555-7555" }, { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", + "CustomerID": "MAISD", + "Company": "Maison Dewey", + "ContactName": "Catherine Dewey", "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", + "Address": "Rue Joseph-Bens 532", + "City": "Bruxelles", + "PostalCode": 11000, + "Country": "Belgium", + "Phone": "(02) 201 24 67", + "Fax": "(02) 201 24 68", "Orders": [ { - "OrderID": 11047, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 3, - "Freight": 46.62, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 14000, - "ShipCountry": "UK", + "OrderID": 10529, + "EmployeeID": 5, + "OrderDate": "1997-05-07T00:00:00", + "RequiredDate": "1997-06-04T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 66.69, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 26000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 48000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11048, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", + "OrderID": 10649, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-09-25T00:00:00", + "ShippedDate": "1997-08-29T00:00:00", "ShipVia": 3, - "Freight": 24.12, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 15000, - "ShipCountry": "Canada", + "Freight": 6.2, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 47000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 42, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 11049, - "EmployeeID": 3, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10760, + "EmployeeID": 4, + "OrderDate": "1997-12-01T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1997-12-10T00:00:00", "ShipVia": 1, - "Freight": 8.34, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 155.64, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.25 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 35000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 11050, - "EmployeeID": 8, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10892, + "EmployeeID": 4, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", "ShipVia": 2, - "Freight": 59.41, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 11000, - "ShipCountry": "Sweden", + "Freight": 120.27, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 45000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 11051, + "OrderID": 10896, "EmployeeID": 7, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-09-25T00:00:00", + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", "ShipVia": 3, - "Freight": 2.79, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 11052, - "EmployeeID": 3, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 1, - "Freight": 67.26, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 32.45, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 28000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 16, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 11053, - "EmployeeID": 2, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", + "OrderID": 10978, + "EmployeeID": 9, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 32.82, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 45000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 11054, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", - "ShippedDate": "1998-05-26T00:00:00", + "OrderID": 11004, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 1, - "Freight": 0.33, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 44.84, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 33000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 10, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 } ] @@ -37000,187 +26213,119 @@ ] }, { - "CustomerID": "HILAA", - "Company": "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": "TRAIH", + "Company": "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", "Orders": [ { - "OrderID": 11055, - "EmployeeID": 7, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10574, + "EmployeeID": 4, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 120.92, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 37.6, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 35000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11056, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10577, + "EmployeeID": 9, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 278.96, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 17000, - "ShipCountry": "UK", + "Freight": 25.41, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 40, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 14000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ - { - "OrderID": 11057, - "EmployeeID": 3, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 3, - "Freight": 4.13, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 47000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 11058, - "EmployeeID": 9, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShippedDate": "1998-08-27T00:00:00", - "ShipVia": 3, - "Freight": 31.14, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10822, + "EmployeeID": 6, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", + "ShipVia": 3, + "Freight": 7, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 3, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 4, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 6, "Discount": 0 } ] @@ -37188,413 +26333,370 @@ ] }, { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", + "CustomerID": "LETSS", + "Company": "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", "Orders": [ { - "OrderID": 11059, - "EmployeeID": 2, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-06-10T00:00:00", - "ShippedDate": "1998-06-15T00:00:00", + "OrderID": 10579, + "EmployeeID": 1, + "OrderDate": "1997-06-25T00:00:00", + "RequiredDate": "1997-07-23T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 2, - "Freight": 85.8, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 13.73, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 12, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 11060, - "EmployeeID": 2, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10719, + "EmployeeID": 8, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 10.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "Freight": 51.44, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 3, + "Discount": 0.25 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 40, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11061, - "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-06-11T00:00:00", - "ShippedDate": "1998-06-11T00:00:00", - "ShipVia": 3, - "Freight": 14.01, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, + "OrderID": 10735, + "EmployeeID": 6, + "OrderDate": "1997-11-10T00:00:00", + "RequiredDate": "1997-12-08T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 45.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.1 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11062, + "OrderID": 10884, "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-06-28T00:00:00", + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", "ShipVia": 2, - "Freight": 29.93, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 90.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 21, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, "Quantity": 12, - "Discount": 0.2 + "Discount": 0.06 } ] } - ] + ], + "Fax": "(415) 555-5938" }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "WILMK", + "Company": "Wilman Kala", + "ContactName": "Matti Karttunen", + "ContactTitle": "Owner/Marketing Assistant", + "Address": "Keskuskatu 45", + "City": "Helsinki", + "PostalCode": 21240, + "Country": "Finland", + "Phone": "90-224 8858", + "Fax": "90-224 8858", "Orders": [ { - "OrderID": 11063, - "EmployeeID": 3, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 81.73, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10615, + "EmployeeID": 2, + "OrderDate": "1997-07-30T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 3, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10673, + "EmployeeID": 2, + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 22.76, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11064, - "EmployeeID": 1, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10695, + "EmployeeID": 7, + "OrderDate": "1997-10-07T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", "ShipVia": 1, - "Freight": 30.09, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 16.72, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 77, - "Discount": 0.1 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.1 - }, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10873, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 0.82, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 55, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11065, - "EmployeeID": 8, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-29T00:00:00", - "ShipVia": 1, - "Freight": 12.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10879, + "EmployeeID": 3, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 8.5, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11066, - "EmployeeID": 7, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 2, - "Freight": 44.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10910, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 3, + "Freight": 38.11, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 42, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 35, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 11067, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 7.98, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderID": 11005, + "EmployeeID": 2, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, "Discount": 0 } ] @@ -37602,85 +26704,113 @@ ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", + "CustomerID": "THECR", + "Company": "The Cracker Box", + "ContactName": "Liu Wong", "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", + "Address": "55 Grizzly Peak Rd.", + "City": "Butte", + "Region": "MT", + "PostalCode": 59801, + "Country": "USA", + "Phone": "(406) 555-5834", + "Fax": "(406) 555-8083", "Orders": [ { - "OrderID": 11068, - "EmployeeID": 8, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-11-01T00:00:00", + "OrderID": 10624, + "EmployeeID": 4, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", "ShipVia": 2, - "Freight": 81.75, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 94.8, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 28, "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.16 + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 11069, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 15.67, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10775, + "EmployeeID": 7, + "OrderDate": "1997-12-12T00:00:00", + "RequiredDate": "1998-01-09T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 20.25, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 11003, + "EmployeeID": 3, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 3, + "Freight": 14.91, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 10, "Discount": 0 } ] @@ -37688,507 +26818,503 @@ ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", + "CustomerID": "ALFKI", + "Company": "Alfreds Futterkiste", + "ContactName": "Maria Anders", "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, + "Address": "Obere Str. 57", + "City": "Berlin", + "PostalCode": 12209, "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "Phone": "030-0074321", + "Fax": "030-0076545", "Orders": [ { - "OrderID": 11070, - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-02T00:00:00", + "OrderID": 10643, + "EmployeeID": 6, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", "ShipVia": 1, - "Freight": 136, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "Freight": 29.46, + "ShipName": "Alfreds Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 15, + "Discount": 0.25 + }, + { + "ProductID": 39, "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.16 + "Quantity": 21, + "Discount": 0.25 }, { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 2, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10692, + "EmployeeID": 4, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-10-31T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", + "ShipVia": 2, + "Freight": 61.02, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 20, - "Discount": 0.16 - }, + "Discount": 0 + } + ] + }, + { + "OrderID": 10702, + "EmployeeID": 4, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 1, + "Freight": 23.94, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11071, + "OrderID": 10835, "EmployeeID": 1, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-10T00:00:00", - "ShipVia": 1, - "Freight": 0.93, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 3, + "Freight": 69.53, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10952, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", + "ShipVia": 1, + "Freight": 40.42, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 16, "Discount": 0.06 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 11011, + "EmployeeID": 3, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 1, + "Freight": 1.21, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 40, "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "FRANR", + "Company": "France restauration", + "ContactName": "Carine Schmitt", + "ContactTitle": "Marketing Manager", + "Address": "54, rue Royale", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.32.21.21", + "Fax": "40.32.21.20", "Orders": [ { - "OrderID": 11072, - "EmployeeID": 4, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-08-02T00:00:00", - "ShipVia": 2, - "Freight": 258.64, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10671, + "EmployeeID": 1, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-09-24T00:00:00", + "ShipVia": 1, + "Freight": 30.34, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 22, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 130, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 11073, - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-15T00:00:00", - "ShipVia": 2, - "Freight": 24.95, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10860, + "EmployeeID": 3, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 3, + "Freight": 19.26, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 11074, - "EmployeeID": 7, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-06-03T00:00:00", + "OrderID": 10971, + "EmployeeID": 2, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", "ShipVia": 2, - "Freight": 18.44, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 121.82, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 14, - "Discount": 0.06 + "Discount": 0 } ] } ] }, { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", + "CustomerID": "SPECD", + "Company": "Spécialités du monde", + "ContactName": "Dominique Perrier", + "ContactTitle": "Marketing Manager", + "Address": "25, rue Lauriston", + "City": "Paris", + "PostalCode": 75016, + "Country": "France", + "Phone": "(1) 47.55.60.10", + "Fax": "(1) 47.55.60.20", "Orders": [ { - "OrderID": 11075, - "EmployeeID": 8, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-05-03T00:00:00", - "ShipVia": 2, - "Freight": 6.19, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10738, + "EmployeeID": 2, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 1, + "Freight": 2.91, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0.16 - }, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10907, + "EmployeeID": 6, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-25T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 9.19, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 14, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 11076, - "EmployeeID": 4, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-06-08T00:00:00", + "OrderID": 10964, + "EmployeeID": 3, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 2, - "Freight": 38.28, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, + "Freight": 87.38, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 69, + "UnitPrice": 36, "Quantity": 10, - "Discount": 0.25 + "Discount": 0 + } + ] + }, + { + "OrderID": 11043, + "EmployeeID": 5, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 8.8, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "LACOR", + "Company": "La corne de abondance", + "ContactName": "Daniel Tonini", + "ContactTitle": "Sales Representative", + "Address": "67, avenue de Europe", + "City": "Versailles", + "PostalCode": 78000, + "Country": "France", + "Phone": "30.59.84.10", + "Fax": "30.59.85.11", "Orders": [ { - "OrderID": 11077, - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-07-03T00:00:00", - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10858, + "EmployeeID": 2, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", + "ShipVia": 1, + "Freight": 52.51, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 24, - "Discount": 0.2 - }, - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 1, - "Discount": 0.02 - }, { "ProductID": 7, "UnitPrice": 30, - "Quantity": 1, - "Discount": 0.06 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 2, - "Discount": 0.1 - }, - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 1, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 2, - "Discount": 0.06 + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 4, "Discount": 0 - }, - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 2, - "Discount": 0.04 - }, + } + ] + }, + { + "OrderID": 10927, + "EmployeeID": 4, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 19.79, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { "ProductID": 20, "UnitPrice": 81, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 3, + "Quantity": 5, "Discount": 0 }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 3, - "Discount": 0.02 - }, { "ProductID": 52, "UnitPrice": 7, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 2, - "Discount": 0.04 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 1, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 2, - "Discount": 0.0099999998 - }, + } + ] + }, + { + "OrderID": 10972, + "EmployeeID": 4, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 2, + "Freight": 0.02, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 4, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 7, "Discount": 0 } ] diff --git a/samples/grids/hierarchical-grid/multi-column-headers-styling/src/HierarchicalCustomers.json b/samples/grids/hierarchical-grid/multi-column-headers-styling/src/HierarchicalCustomers.json index 75c7bc037d..43b2853953 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-styling/src/HierarchicalCustomers.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-styling/src/HierarchicalCustomers.json @@ -44,6 +44,112 @@ "Discount": 0 } ] + }, + { + "OrderID": 10274, + "EmployeeID": 6, + "OrderDate": "1996-08-06T00:00:00", + "RequiredDate": "1996-09-03T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 1, + "Freight": 6.01, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 7, + "Discount": 0 + } + ] + }, + { + "OrderID": 10295, + "EmployeeID": 2, + "OrderDate": "1996-09-02T00:00:00", + "RequiredDate": "1996-09-30T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", + "ShipVia": 2, + "Freight": 1.15, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 10737, + "EmployeeID": 2, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 7.79, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10739, + "EmployeeID": 3, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-17T00:00:00", + "ShipVia": 3, + "Freight": 11.08, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 18, + "Discount": 0 + } + ] } ] }, @@ -86,251 +192,155 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10250, - "EmployeeID": 4, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-12T00:00:00", + "OrderID": 10438, + "EmployeeID": 3, + "OrderDate": "1997-02-06T00:00:00", + "RequiredDate": "1997-03-06T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", "ShipVia": 2, - "Freight": 65.83, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 8.24, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 15, - "Discount": 0.16 + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10251, - "EmployeeID": 3, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", + "OrderID": 10446, + "EmployeeID": 6, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-02-19T00:00:00", "ShipVia": 1, - "Freight": 41.34, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 14.68, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 + }, + { + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 44000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10252, - "EmployeeID": 4, - "OrderDate": "1996-07-09T00:00:00", - "RequiredDate": "1996-08-06T00:00:00", - "ShippedDate": "1996-07-11T00:00:00", + "OrderID": 10548, + "EmployeeID": 3, + "OrderDate": "1997-05-26T00:00:00", + "RequiredDate": "1997-06-23T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", "ShipVia": 2, - "Freight": 51.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 22000, - "ShipCountry": "Belgium", + "Freight": 1.43, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 40, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Fax": "0452-076546", - "Orders": [ + }, { - "OrderID": 10254, - "EmployeeID": 5, - "OrderDate": "1996-07-11T00:00:00", - "RequiredDate": "1996-08-08T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderID": 10608, + "EmployeeID": 4, + "OrderDate": "1997-07-23T00:00:00", + "RequiredDate": "1997-08-20T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 22.98, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 27.79, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 21, - "Discount": 0.16 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10255, - "EmployeeID": 9, - "OrderDate": "1996-07-12T00:00:00", - "RequiredDate": "1996-08-09T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", - "ShipVia": 3, - "Freight": 148.33, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10967, + "EmployeeID": 2, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 62.22, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 25, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 40, "Discount": 0 } ] @@ -338,2105 +348,1447 @@ ] }, { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, + "CustomerID": "HANAR", + "Company": "Hanari Carnes", + "ContactName": "Mario Pontes", + "ContactTitle": "Accounting Manager", + "Address": "Rua do Paço, 67", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 5454, "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", + "Phone": "(21) 555-0091", + "Fax": "(21) 555-8765", "Orders": [ { - "OrderID": 10256, - "EmployeeID": 3, - "OrderDate": "1996-07-15T00:00:00", - "RequiredDate": "1996-08-12T00:00:00", - "ShippedDate": "1996-07-17T00:00:00", + "OrderID": 10250, + "EmployeeID": 4, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-12T00:00:00", "ShipVia": 2, - "Freight": 13.97, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, + "Freight": 65.83, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10257, - "EmployeeID": 4, - "OrderDate": "1996-07-16T00:00:00", - "RequiredDate": "1996-08-13T00:00:00", - "ShippedDate": "1996-07-22T00:00:00", - "ShipVia": 3, - "Freight": 81.91, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10258, - "EmployeeID": 1, - "OrderDate": "1996-07-17T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderID": 10541, + "EmployeeID": 2, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-05-29T00:00:00", "ShipVia": 1, - "Freight": 140.51, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 68.65, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.1 }, { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 65, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 4, + "Discount": 0.1 }, { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 9, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "CENTC", - "Company": "Centro comercial Moctezuma", - "ContactName": "Francisco Chang", - "ContactTitle": "Marketing Manager", - "Address": "Sierras de Granada 9993", - "City": "México D.F.", - "PostalCode": 5022, - "Country": "Mexico", - "Phone": "(5) 555-3392", - "Fax": "(5) 555-7293", - "Orders": [ + }, { - "OrderID": 10259, + "OrderID": 10645, "EmployeeID": 4, - "OrderDate": "1996-07-18T00:00:00", - "RequiredDate": "1996-08-15T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", - "ShipVia": 3, - "Freight": 3.25, - "ShipName": "Centro comercial Moctezuma", - "ShipAddress": "Sierras de Granada 9993", - "ShipCity": "México D.F.", - "ShipPostalCode": 5022, - "ShipCountry": "Mexico", + "OrderDate": "1997-08-26T00:00:00", + "RequiredDate": "1997-09-23T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", + "ShipVia": 1, + "Freight": 12.41, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 1, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10260, - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-29T00:00:00", + "OrderID": 10690, + "EmployeeID": 1, + "OrderDate": "1997-10-02T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", "ShipVia": 1, - "Freight": 55.09, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 15.8, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 16, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, "Discount": 0.25 - }, + } + ] + }, + { + "OrderID": 10770, + "EmployeeID": 8, + "OrderDate": "1997-12-09T00:00:00", + "RequiredDate": "1998-01-06T00:00:00", + "ShippedDate": "1997-12-17T00:00:00", + "ShipVia": 3, + "Freight": 5.32, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 21, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10261, + "OrderID": 10783, "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-30T00:00:00", + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", "ShipVia": 2, - "Freight": 3.05, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 124.98, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", "ShipCity": "Sao Paulo", "ShipRegion": "RJ", - "ShipPostalCode": 2389, + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 20, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 20, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10262, - "EmployeeID": 8, - "OrderDate": "1996-07-22T00:00:00", - "RequiredDate": "1996-08-19T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", - "ShipVia": 3, - "Freight": 48.29, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10886, + "EmployeeID": 1, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", + "ShipVia": 1, + "Freight": 4.99, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 15, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 2, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10263, - "EmployeeID": 9, - "OrderDate": "1996-07-23T00:00:00", - "RequiredDate": "1996-08-20T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", + "OrderID": 10903, + "EmployeeID": 3, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 3, - "Freight": 146.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 36.71, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 33000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10264, - "EmployeeID": 6, - "OrderDate": "1996-07-24T00:00:00", - "RequiredDate": "1996-08-21T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", + "OrderID": 10922, + "EmployeeID": 5, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", "ShipVia": 3, - "Freight": 3.67, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 27000, - "ShipCountry": "Sweden", + "Freight": 62.74, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 35, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10265, - "EmployeeID": 2, - "OrderDate": "1996-07-25T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", + "OrderID": 10925, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 1, - "Freight": 55.28, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 2.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10266, - "EmployeeID": 3, - "OrderDate": "1996-07-26T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", - "ShipVia": 3, - "Freight": 25.73, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10981, + "EmployeeID": 1, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 193.37, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10267, - "EmployeeID": 4, - "OrderDate": "1996-07-29T00:00:00", - "RequiredDate": "1996-08-26T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", - "ShipVia": 1, - "Freight": 208.58, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 11022, + "EmployeeID": 9, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10268, - "EmployeeID": 8, - "OrderDate": "1996-07-30T00:00:00", - "RequiredDate": "1996-08-27T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 3, - "Freight": 66.29, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", + "OrderID": 11052, + "EmployeeID": 3, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 67.26, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 10, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 4, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "WHITC", - "Company": "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": "VICTE", + "Company": "Victuailles en stock", + "ContactName": "Mary Saveley", + "ContactTitle": "Sales Agent", + "Address": "2, rue du Commerce", + "City": "Lyon", + "PostalCode": 69004, + "Country": "France", + "Phone": "78.32.54.86", + "Fax": "78.32.54.87", "Orders": [ { - "OrderID": 10269, - "EmployeeID": 5, - "OrderDate": "1996-07-31T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", + "OrderID": 10251, + "EmployeeID": 3, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", "ShipVia": 1, - "Freight": 4.56, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 41.34, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 15, "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10270, - "EmployeeID": 1, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 1, - "Freight": 136.54, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 30, - "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 25, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10271, - "EmployeeID": 6, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", + "OrderID": 10334, + "EmployeeID": 8, + "OrderDate": "1996-10-21T00:00:00", + "RequiredDate": "1996-11-18T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", "ShipVia": 2, - "Freight": 4.54, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 8.56, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 24, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10272, - "EmployeeID": 6, - "OrderDate": "1996-08-02T00:00:00", - "RequiredDate": "1996-08-30T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", + "OrderID": 10450, + "EmployeeID": 8, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-19T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", "ShipVia": 2, - "Freight": 98.03, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 7.23, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, "Quantity": 6, - "Discount": 0 + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10459, + "EmployeeID": 4, + "OrderDate": "1997-02-27T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 25.09, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0.06 }, { "ProductID": 72, "UnitPrice": 27.8, - "Quantity": 24, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10273, - "EmployeeID": 3, - "OrderDate": "1996-08-05T00:00:00", - "RequiredDate": "1996-09-02T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", + "OrderID": 10478, + "EmployeeID": 2, + "OrderDate": "1997-03-18T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-26T00:00:00", "ShipVia": 3, - "Freight": 76.07, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 4.81, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 10, "UnitPrice": 24.8, - "Quantity": 24, - "Discount": 0.06 - }, - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2, "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 60, - "Discount": 0.06 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 33, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10274, - "EmployeeID": 6, - "OrderDate": "1996-08-06T00:00:00", - "RequiredDate": "1996-09-03T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 1, - "Freight": 6.01, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, + "OrderID": 10546, + "EmployeeID": 1, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-05-27T00:00:00", + "ShipVia": 3, + "Freight": 194.72, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 20, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 7, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10275, - "EmployeeID": 1, - "OrderDate": "1996-08-07T00:00:00", - "RequiredDate": "1996-09-04T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", - "ShipVia": 1, - "Freight": 26.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10806, + "EmployeeID": 3, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 2, + "Freight": 22.11, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 6, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10276, - "EmployeeID": 8, - "OrderDate": "1996-08-08T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-14T00:00:00", - "ShipVia": 3, - "Freight": 13.84, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 15, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Fax": "0342-023177", - "Orders": [ + }, { - "OrderID": 10277, - "EmployeeID": 2, - "OrderDate": "1996-08-09T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-08-13T00:00:00", + "OrderID": 10814, + "EmployeeID": 3, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", "ShipVia": 3, - "Freight": 125.77, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 130.94, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, + "Discount": 0.16 + }, + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 8, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 14000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10278, - "EmployeeID": 8, - "OrderDate": "1996-08-12T00:00:00", - "RequiredDate": "1996-09-09T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", + "OrderID": 10843, + "EmployeeID": 4, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", "ShipVia": 2, - "Freight": 92.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "Freight": 9.26, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 16, - "Discount": 0 - }, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 4, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10850, + "EmployeeID": 1, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 49.19, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 15, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 8, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 4, + "Discount": 0.16 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10279, - "EmployeeID": 8, - "OrderDate": "1996-08-13T00:00:00", - "RequiredDate": "1996-09-10T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 2, - "Freight": 25.83, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 27000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "SUPRD", + "Company": "Suprêmes délices", + "ContactName": "Pascale Cartrain", + "ContactTitle": "Accounting Manager", + "Address": "Boulevard Tirou, 255", + "City": "Charleroi", + "PostalCode": 44000, + "Country": "Belgium", + "Phone": "(071) 23 67 22 20", + "Fax": "(071) 23 67 22 21", "Orders": [ { - "OrderID": 10280, - "EmployeeID": 2, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-09-11T00:00:00", - "ShippedDate": "1996-09-12T00:00:00", - "ShipVia": 1, - "Freight": 8.98, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", + "OrderID": 10252, + "EmployeeID": 4, + "OrderDate": "1996-07-09T00:00:00", + "RequiredDate": "1996-08-06T00:00:00", + "ShippedDate": "1996-07-11T00:00:00", + "ShipVia": 2, + "Freight": 51.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 22000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 20, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 25, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10281, + "OrderID": 10302, "EmployeeID": 4, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-08-28T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 2.94, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderDate": "1996-09-10T00:00:00", + "RequiredDate": "1996-10-08T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 20000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 1, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 6, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 12, "Discount": 0 } ] }, { - "OrderID": 10282, - "EmployeeID": 4, - "OrderDate": "1996-08-15T00:00:00", - "RequiredDate": "1996-09-12T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10458, + "EmployeeID": 7, + "OrderDate": "1997-02-26T00:00:00", + "RequiredDate": "1997-03-26T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 147.06, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 16000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 6, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10283, - "EmployeeID": 3, - "OrderDate": "1996-08-16T00:00:00", - "RequiredDate": "1996-09-13T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", - "ShipVia": 3, - "Freight": 84.81, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 15, - "UnitPrice": 12.4, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 35, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 3, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10284, - "EmployeeID": 4, - "OrderDate": "1996-08-19T00:00:00", - "RequiredDate": "1996-09-16T00:00:00", - "ShippedDate": "1996-08-27T00:00:00", - "ShipVia": 1, - "Freight": 76.56, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10463, + "EmployeeID": 5, + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-06T00:00:00", + "ShipVia": 3, + "Freight": 14.78, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 21000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 44, - "UnitPrice": 15.5, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 21, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 67, + "ProductID": 42, "UnitPrice": 11.2, - "Quantity": 5, - "Discount": 0.25 + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10285, - "EmployeeID": 1, - "OrderDate": "1996-08-20T00:00:00", - "RequiredDate": "1996-09-17T00:00:00", - "ShippedDate": "1996-08-26T00:00:00", - "ShipVia": 2, - "Freight": 76.83, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10475, + "EmployeeID": 9, + "OrderDate": "1997-03-14T00:00:00", + "RequiredDate": "1997-04-11T00:00:00", + "ShippedDate": "1997-04-04T00:00:00", + "ShipVia": 1, + "Freight": 68.52, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, + "Discount": 0.16 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 36, - "Discount": 0.2 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 42, + "Discount": 0.16 } ] }, { - "OrderID": 10286, - "EmployeeID": 8, - "OrderDate": "1996-08-21T00:00:00", - "RequiredDate": "1996-09-18T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", + "OrderID": 10767, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", "ShipVia": 3, - "Freight": 229.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 1.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 44000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 100, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10287, - "EmployeeID": 8, - "OrderDate": "1996-08-22T00:00:00", - "RequiredDate": "1996-09-19T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", - "ShipVia": 3, - "Freight": 12.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10841, + "EmployeeID": 5, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", + "ShipVia": 2, + "Freight": 424.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 27000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, "Quantity": 15, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10288, - "EmployeeID": 4, - "OrderDate": "1996-08-23T00:00:00", - "RequiredDate": "1996-09-20T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", - "ShipVia": 1, - "Freight": 7.45, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10846, + "EmployeeID": 2, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 56.46, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 15000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 22000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10289, - "EmployeeID": 7, - "OrderDate": "1996-08-26T00:00:00", - "RequiredDate": "1996-09-23T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", + "OrderID": 10885, + "EmployeeID": 6, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 3, - "Freight": 22.77, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "Freight": 5.64, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 40000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 8, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, "Quantity": 30, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 9, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 25, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10290, - "EmployeeID": 8, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", - "ShipVia": 1, - "Freight": 79.7, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderID": 10930, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 3, + "Freight": 15.55, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 17000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 15, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 15, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.2 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 11035, + "EmployeeID": 2, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 0.17, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 30000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10291, - "EmployeeID": 6, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-04T00:00:00", + "OrderID": 11038, + "EmployeeID": 1, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", "ShipVia": 2, - "Freight": 6.4, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 29.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 44000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, + "Discount": 0 } ] } ] }, { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10292, - "EmployeeID": 1, - "OrderDate": "1996-08-28T00:00:00", - "RequiredDate": "1996-09-25T00:00:00", - "ShippedDate": "1996-09-02T00:00:00", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", + "CustomerID": "CHOPS", + "Company": "Chop-suey Chinese", + "ContactName": "Yang Wang", "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", + "Address": "Hauptstr. 29", + "City": "Bern", + "PostalCode": 3012, + "Country": "Switzerland", + "Phone": "0452-076545", + "Fax": "0452-076546", "Orders": [ { - "OrderID": 10293, - "EmployeeID": 1, - "OrderDate": "1996-08-29T00:00:00", - "RequiredDate": "1996-09-26T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 3, - "Freight": 21.18, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10254, + "EmployeeID": 5, + "OrderDate": "1996-07-11T00:00:00", + "RequiredDate": "1996-08-08T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 2, + "Freight": 22.98, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 12, - "Discount": 0 - }, { "ProductID": 24, "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0 + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 5, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 21, + "Discount": 0.16 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10294, - "EmployeeID": 4, - "OrderDate": "1996-08-30T00:00:00", - "RequiredDate": "1996-09-27T00:00:00", - "ShippedDate": "1996-09-05T00:00:00", + "OrderID": 10370, + "EmployeeID": 6, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-27T00:00:00", "ShipVia": 2, - "Freight": 147.26, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 1.17, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { "ProductID": 1, "UnitPrice": 14.4, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, "Quantity": 15, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 21, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ - { - "OrderID": 10295, - "EmployeeID": 2, - "OrderDate": "1996-09-02T00:00:00", - "RequiredDate": "1996-09-30T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", - "ShipVia": 2, - "Freight": 1.15, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 4, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10296, + "OrderID": 10519, "EmployeeID": 6, - "OrderDate": "1996-09-03T00:00:00", - "RequiredDate": "1996-10-01T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 1, - "Freight": 0.12, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderDate": "1997-04-28T00:00:00", + "RequiredDate": "1997-05-26T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 91.76, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10297, - "EmployeeID": 5, - "OrderDate": "1996-09-04T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", - "ShipVia": 2, - "Freight": 5.74, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10731, + "EmployeeID": 7, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 1, + "Freight": 96.65, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10298, - "EmployeeID": 6, - "OrderDate": "1996-09-05T00:00:00", - "RequiredDate": "1996-10-03T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 2, - "Freight": 168.22, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10746, + "EmployeeID": 1, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 3, + "Freight": 31.43, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10299, + "OrderID": 10966, "EmployeeID": 4, - "OrderDate": "1996-09-06T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-13T00:00:00", - "ShipVia": 2, - "Freight": 29.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 27.19, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10300, - "EmployeeID": 2, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", - "ShipVia": 2, - "Freight": 17.68, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 11029, + "EmployeeID": 4, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 47.84, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10301, - "EmployeeID": 8, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", + "OrderID": 11041, + "EmployeeID": 3, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", "ShipVia": 2, - "Freight": 45.08, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 48.22, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 30, "Discount": 0 } ] @@ -2444,1691 +1796,1226 @@ ] }, { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 27000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", + "CustomerID": "RICSU", + "Company": "Richter Supermarkt", + "ContactName": "Michael Holz", + "ContactTitle": "Sales Manager", + "Address": "Grenzacherweg 237", + "City": "Genève", + "PostalCode": 1203, + "Country": "Switzerland", + "Phone": "0897-034214", + "Fax": "0897-034215", "Orders": [ { - "OrderID": 10302, - "EmployeeID": 4, - "OrderDate": "1996-09-10T00:00:00", - "RequiredDate": "1996-10-08T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 20000, - "ShipCountry": "Belgium", + "OrderID": 10255, + "EmployeeID": 9, + "OrderDate": "1996-07-12T00:00:00", + "RequiredDate": "1996-08-09T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", + "ShipVia": 3, + "Freight": 148.33, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 40, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 28, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 12, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10303, - "EmployeeID": 7, - "OrderDate": "1996-09-11T00:00:00", - "RequiredDate": "1996-10-09T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", + "OrderID": 10419, + "EmployeeID": 4, + "OrderDate": "1997-01-20T00:00:00", + "RequiredDate": "1997-02-17T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", "ShipVia": 2, - "Freight": 107.83, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 137.35, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10304, + "OrderID": 10537, "EmployeeID": 1, - "OrderDate": "1996-09-12T00:00:00", - "RequiredDate": "1996-10-10T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", - "ShipVia": 2, - "Freight": 63.79, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", + "ShipVia": 1, + "Freight": 78.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 10, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ - { - "OrderID": 10305, - "EmployeeID": 8, - "OrderDate": "1996-09-13T00:00:00", - "RequiredDate": "1996-10-11T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 3, - "Freight": 257.62, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10306, - "EmployeeID": 1, - "OrderDate": "1996-09-16T00:00:00", - "RequiredDate": "1996-10-14T00:00:00", - "ShippedDate": "1996-09-23T00:00:00", - "ShipVia": 3, - "Freight": 7.56, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10666, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", + "ShipVia": 2, + "Freight": 232.42, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, + "ProductID": 65, + "UnitPrice": 21.05, "Quantity": 10, "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 5, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10307, - "EmployeeID": 2, - "OrderDate": "1996-09-17T00:00:00", - "RequiredDate": "1996-10-15T00:00:00", - "ShippedDate": "1996-09-25T00:00:00", - "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10751, + "EmployeeID": 3, + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-12-03T00:00:00", + "ShipVia": 3, + "Freight": 130.79, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ - { - "OrderID": 10308, - "EmployeeID": 7, - "OrderDate": "1996-09-18T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-24T00:00:00", - "ShipVia": 3, - "Freight": 1.61, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 1, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 5, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10309, + "OrderID": 10758, "EmployeeID": 3, - "OrderDate": "1996-09-19T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", - "ShipVia": 1, - "Freight": 47.3, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-04T00:00:00", + "ShipVia": 3, + "Freight": 138.17, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, + "ProductID": 26, + "UnitPrice": 31.23, "Quantity": 20, "Discount": 0 }, { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 20, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 3, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10310, - "EmployeeID": 8, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-18T00:00:00", - "ShippedDate": "1996-09-27T00:00:00", + "OrderID": 10931, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 17.52, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "Freight": 13.6, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 10, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 42, + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 5, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10311, - "EmployeeID": 1, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-26T00:00:00", - "ShipVia": 3, - "Freight": 24.69, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10951, + "EmployeeID": 9, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 2, + "Freight": 30.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 11.2, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 6, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10312, - "EmployeeID": 2, - "OrderDate": "1996-09-23T00:00:00", - "RequiredDate": "1996-10-21T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", - "ShipVia": 2, - "Freight": 40.26, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 11033, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 84.74, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 4, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 24, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 36, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11075, + "EmployeeID": 8, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-05-03T00:00:00", + "ShipVia": 2, + "Freight": 6.19, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 20, - "Discount": 0 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "WELLI", + "Company": "Wellington Importadora", + "ContactName": "Paula Parente", + "ContactTitle": "Sales Manager", + "Address": "Rua do Mercado, 12", + "City": "Resende", + "Region": "SP", + "PostalCode": 8737, + "Country": "Brazil", + "Phone": "(14) 555-8122", + "Fax": "(14) 555-8123", "Orders": [ { - "OrderID": 10313, - "EmployeeID": 2, - "OrderDate": "1996-09-24T00:00:00", - "RequiredDate": "1996-10-22T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderID": 10256, + "EmployeeID": 3, + "OrderDate": "1996-07-15T00:00:00", + "RequiredDate": "1996-08-12T00:00:00", + "ShippedDate": "1996-07-17T00:00:00", "ShipVia": 2, - "Freight": 1.96, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 13.97, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10314, - "EmployeeID": 1, - "OrderDate": "1996-09-25T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", - "ShipVia": 2, - "Freight": 74.16, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10420, + "EmployeeID": 3, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 1, + "Freight": 44.12, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 40, + "ProductID": 9, + "UnitPrice": 77.6, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 2, "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 25, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 26000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10315, - "EmployeeID": 4, - "OrderDate": "1996-09-26T00:00:00", - "RequiredDate": "1996-10-24T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", + "OrderID": 10585, + "EmployeeID": 7, + "OrderDate": "1997-07-01T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", + "ShipVia": 1, + "Freight": 13.41, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10644, + "EmployeeID": 3, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", "ShipVia": 2, - "Freight": 41.76, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 80379, - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "Freight": 0.14, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 14, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 70, + "ProductID": 46, "UnitPrice": 12, - "Quantity": 30, - "Discount": 0 + "Quantity": 21, + "Discount": 0.1 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10316, - "EmployeeID": 1, - "OrderDate": "1996-09-27T00:00:00", - "RequiredDate": "1996-10-25T00:00:00", - "ShippedDate": "1996-10-08T00:00:00", - "ShipVia": 3, - "Freight": 150.15, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10803, + "EmployeeID": 4, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-06T00:00:00", + "ShipVia": 1, + "Freight": 55.23, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 24, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 70, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 15, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10317, - "EmployeeID": 6, - "OrderDate": "1996-09-30T00:00:00", - "RequiredDate": "1996-10-28T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", + "OrderID": 10809, + "EmployeeID": 7, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 4.87, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, + "ProductID": 52, + "UnitPrice": 7, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10318, - "EmployeeID": 8, - "OrderDate": "1996-10-01T00:00:00", - "RequiredDate": "1996-10-29T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderID": 10900, + "EmployeeID": 1, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 2, - "Freight": 4.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 30676, - "ShipPostalCode": 36000, - "ShipCountry": "UK", + "Freight": 1.66, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, - "Discount": 0 - }, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10905, + "EmployeeID": 9, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 13.72, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.06 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10319, - "EmployeeID": 7, - "OrderDate": "1996-10-02T00:00:00", - "RequiredDate": "1996-10-30T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", + "OrderID": 10935, + "EmployeeID": 4, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 3, - "Freight": 64.5, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 47.59, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 8, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 14, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 30, - "Discount": 0 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 8, + "Discount": 0.25 } ] } ] }, { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", + "CustomerID": "HILAA", + "Company": "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", "Orders": [ { - "OrderID": 10320, - "EmployeeID": 5, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-18T00:00:00", + "OrderID": 10257, + "EmployeeID": 4, + "OrderDate": "1996-07-16T00:00:00", + "RequiredDate": "1996-08-13T00:00:00", + "ShippedDate": "1996-07-22T00:00:00", "ShipVia": 3, - "Freight": 34.57, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 81.91, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10321, - "EmployeeID": 3, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-31T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", - "ShipVia": 2, - "Freight": 3.43, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 20137, - "ShipPostalCode": 41000, - "ShipCountry": "UK", + "OrderID": 10395, + "EmployeeID": 6, + "OrderDate": "1996-12-26T00:00:00", + "RequiredDate": "1997-01-23T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 1, + "Freight": 184.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 10, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 28, + "Discount": 0.1 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 70, + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10322, - "EmployeeID": 7, - "OrderDate": "1996-10-04T00:00:00", - "RequiredDate": "1996-11-01T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", + "OrderID": 10476, + "EmployeeID": 8, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", "ShipVia": 3, - "Freight": 0.4, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 4.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10323, - "EmployeeID": 4, - "OrderDate": "1996-10-07T00:00:00", - "RequiredDate": "1996-11-04T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 1, - "Freight": 4.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10486, + "EmployeeID": 1, + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "ShipVia": 2, + "Freight": 30.53, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 12.4, + "ProductID": 11, + "UnitPrice": 16.8, "Quantity": 5, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 4, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 16, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10324, - "EmployeeID": 9, - "OrderDate": "1996-10-08T00:00:00", - "RequiredDate": "1996-11-05T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", - "ShipVia": 1, - "Freight": 214.27, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10490, + "EmployeeID": 7, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-03T00:00:00", + "ShipVia": 2, + "Freight": 210.19, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.16 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 68, + "UnitPrice": 10, "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 80, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 36, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10325, - "EmployeeID": 1, - "OrderDate": "1996-10-09T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 3, - "Freight": 64.86, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10498, + "EmployeeID": 8, + "OrderDate": "1997-04-07T00:00:00", + "RequiredDate": "1997-05-05T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", + "ShipVia": 2, + "Freight": 29.75, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 9, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 4, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ + }, { - "OrderID": 10326, - "EmployeeID": 4, - "OrderDate": "1996-10-10T00:00:00", - "RequiredDate": "1996-11-07T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 2, - "Freight": 77.92, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", + "OrderID": 10552, + "EmployeeID": 2, + "OrderDate": "1997-05-29T00:00:00", + "RequiredDate": "1997-06-26T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 1, + "Freight": 83.22, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 16, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 18, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 50, + "UnitPrice": 7.75, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 43000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10327, - "EmployeeID": 2, - "OrderDate": "1996-10-11T00:00:00", - "RequiredDate": "1996-11-08T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", + "OrderID": 10601, + "EmployeeID": 7, + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", "ShipVia": 1, - "Freight": 63.36, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 17000, - "ShipCountry": "Sweden", + "Freight": 58.3, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10328, + "OrderID": 10613, "EmployeeID": 4, - "OrderDate": "1996-10-14T00:00:00", - "RequiredDate": "1996-11-11T00:00:00", - "ShippedDate": "1996-10-17T00:00:00", - "ShipVia": 3, - "Freight": 87.03, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 2, + "Freight": 8.11, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 40, "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10329, + "OrderID": 10641, "EmployeeID": 4, - "OrderDate": "1996-10-15T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", "ShipVia": 2, - "Freight": 191.67, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 179.61, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, - "Discount": 0.06 - }, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, + "Discount": 0 + } + ] + }, + { + "OrderID": 10705, + "EmployeeID": 9, + "OrderDate": "1997-10-15T00:00:00", + "RequiredDate": "1997-11-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 3.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 4, + "Discount": 0 + } + ] + }, { - "OrderID": 10330, + "OrderID": 10796, "EmployeeID": 3, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", "ShipVia": 1, - "Freight": 12.75, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, + "Freight": 26.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, "ShipCountry": "Venezuela", "OrderDetails": [ { "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 50, - "Discount": 0.16 + "UnitPrice": 31.23, + "Quantity": 21, + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10331, - "EmployeeID": 9, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-27T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", - "ShipVia": 1, - "Freight": 10.19, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 20000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10332, - "EmployeeID": 3, - "OrderDate": "1996-10-17T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", - "ShipVia": 2, - "Freight": 52.84, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 28000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 40, - "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 35, "Discount": 0.2 }, { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 16, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 24, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10333, - "EmployeeID": 5, - "OrderDate": "1996-10-18T00:00:00", - "RequiredDate": "1996-11-15T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", - "ShipVia": 3, - "Freight": 0.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10863, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 30.26, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10334, - "EmployeeID": 8, - "OrderDate": "1996-10-21T00:00:00", - "RequiredDate": "1996-11-18T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", - "ShipVia": 2, - "Freight": 8.56, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10901, + "EmployeeID": 4, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", + "ShipVia": 1, + "Freight": 62.09, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 8, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10335, - "EmployeeID": 7, - "OrderDate": "1996-10-22T00:00:00", - "RequiredDate": "1996-11-19T00:00:00", - "ShippedDate": "1996-10-24T00:00:00", - "ShipVia": 2, - "Freight": 42.11, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10957, + "EmployeeID": 8, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 105.36, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 7, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10960, + "EmployeeID": 3, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 2.08, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 48, - "Discount": 0.2 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10336, - "EmployeeID": 7, - "OrderDate": "1996-10-23T00:00:00", - "RequiredDate": "1996-11-20T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", - "ShipVia": 2, - "Freight": 15.51, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10976, + "EmployeeID": 1, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 1, + "Freight": 37.97, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10337, - "EmployeeID": 4, - "OrderDate": "1996-10-24T00:00:00", - "RequiredDate": "1996-11-21T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", - "ShipVia": 3, - "Freight": 108.26, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 11055, + "EmployeeID": 7, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", + "ShipVia": 2, + "Freight": 120.92, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 24, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, + "ProductID": 51, + "UnitPrice": 53, "Quantity": 20, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] @@ -4136,625 +3023,475 @@ ] }, { - "CustomerID": "OLDWO", - "Company": "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": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", "Orders": [ { - "OrderID": 10338, - "EmployeeID": 4, - "OrderDate": "1996-10-25T00:00:00", - "RequiredDate": "1996-11-22T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", - "ShipVia": 3, - "Freight": 84.21, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 20, - "Discount": 0 + "OrderID": 10258, + "EmployeeID": 1, + "OrderDate": "1996-07-17T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 1, + "Freight": 140.51, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 50, + "Discount": 0.2 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 15, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 65, + "Discount": 0.2 + }, + { + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 40000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10339, - "EmployeeID": 2, - "OrderDate": "1996-10-28T00:00:00", - "RequiredDate": "1996-11-25T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 15.66, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "OrderID": 10263, + "EmployeeID": 9, + "OrderDate": "1996-07-23T00:00:00", + "RequiredDate": "1996-08-20T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 146.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 10, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 28, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 36, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10340, + "OrderID": 10351, "EmployeeID": 1, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 166.31, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 162.33, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 20, "Discount": 0.06 }, { "ProductID": 41, "UnitPrice": 7.7, - "Quantity": 12, + "Quantity": 13, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 77, "Discount": 0.06 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 40, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 10, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10341, - "EmployeeID": 7, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", - "ShipVia": 3, - "Freight": 26.78, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10368, + "EmployeeID": 2, + "OrderDate": "1996-11-29T00:00:00", + "RequiredDate": "1996-12-27T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 101.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 8, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 13, + "Discount": 0.1 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10342, + "OrderID": 10382, "EmployeeID": 4, - "OrderDate": "1996-10-30T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 54.83, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 24, - "Discount": 0.2 + "OrderDate": "1996-12-13T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1996-12-16T00:00:00", + "ShipVia": 1, + "Freight": 94.77, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 32, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 56, - "Discount": 0.2 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10343, - "EmployeeID": 4, - "OrderDate": "1996-10-31T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-11-06T00:00:00", + "OrderID": 10390, + "EmployeeID": 6, + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-26T00:00:00", "ShipVia": 1, - "Freight": 110.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 126.38, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 68, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 4, - "Discount": 0.06 + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 76, + "ProductID": 35, "UnitPrice": 14.4, - "Quantity": 15, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 45, "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10344, - "EmployeeID": 4, - "OrderDate": "1996-11-01T00:00:00", - "RequiredDate": "1996-11-29T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", + "OrderID": 10402, + "EmployeeID": 8, + "OrderDate": "1997-01-02T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", "ShipVia": 2, - "Freight": 23.29, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 67.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 35, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 65, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10345, - "EmployeeID": 2, - "OrderDate": "1996-11-04T00:00:00", - "RequiredDate": "1996-12-02T00:00:00", - "ShippedDate": "1996-11-11T00:00:00", - "ShipVia": 2, - "Freight": 249.06, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10430, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-03T00:00:00", + "ShipVia": 1, + "Freight": 458.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 80, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 9, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10346, + "OrderID": 10442, "EmployeeID": 3, - "OrderDate": "1996-11-05T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 142.08, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderDate": "1997-02-11T00:00:00", + "RequiredDate": "1997-03-11T00:00:00", + "ShippedDate": "1997-02-18T00:00:00", + "ShipVia": 2, + "Freight": 47.94, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 36, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 80, + "Discount": 0 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10347, - "EmployeeID": 4, - "OrderDate": "1996-11-06T00:00:00", - "RequiredDate": "1996-12-04T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 3.1, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10514, + "EmployeeID": 3, + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 2, + "Freight": 789.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 39, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 4, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 39, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0.16 + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10348, - "EmployeeID": 4, - "OrderDate": "1996-11-07T00:00:00", - "RequiredDate": "1996-12-05T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", - "ShipVia": 2, - "Freight": 0.78, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10571, + "EmployeeID": 8, + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 3, + "Freight": 26.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 11, "Discount": 0.16 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 25, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10349, - "EmployeeID": 7, - "OrderDate": "1996-11-08T00:00:00", - "RequiredDate": "1996-12-06T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", + "OrderID": 10595, + "EmployeeID": 2, + "OrderDate": "1997-07-10T00:00:00", + "RequiredDate": "1997-08-07T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", "ShipVia": 1, - "Freight": 8.63, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 96.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10350, - "EmployeeID": 6, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", - "ShipVia": 2, - "Freight": 64.19, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.25 + }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 120, + "Discount": 0.25 }, { "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 18, - "Discount": 0.1 + "UnitPrice": 36, + "Quantity": 65, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10351, - "EmployeeID": 1, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 162.33, + "OrderID": 10633, + "EmployeeID": 7, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-18T00:00:00", + "ShipVia": 3, + "Freight": 477.9, "ShipName": "Ernst Handel", "ShipAddress": "Kirchgasse 6", "ShipCity": "Graz", @@ -4762,1247 +3499,992 @@ "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 13, + "UnitPrice": 6, "Quantity": 13, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 77, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 80, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10352, - "EmployeeID": 3, - "OrderDate": "1996-11-12T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-18T00:00:00", - "ShipVia": 3, - "Freight": 1.3, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10667, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 78.09, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 14, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10353, - "EmployeeID": 7, - "OrderDate": "1996-11-13T00:00:00", - "RequiredDate": "1996-12-11T00:00:00", - "ShippedDate": "1996-11-25T00:00:00", - "ShipVia": 3, - "Freight": 360.63, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, + "OrderID": 10698, + "EmployeeID": 4, + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-17T00:00:00", + "ShipVia": 1, + "Freight": 272.47, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 11, - "UnitPrice": 16.8, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.06 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 12, - "Discount": 0.2 + "Discount": 0.06 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 65, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 8, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10354, - "EmployeeID": 8, - "OrderDate": "1996-11-14T00:00:00", - "RequiredDate": "1996-12-12T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", + "OrderID": 10764, + "EmployeeID": 6, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", "ShipVia": 3, - "Freight": 53.8, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 145.45, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 4, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 130, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 12000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10355, - "EmployeeID": 6, - "OrderDate": "1996-11-15T00:00:00", - "RequiredDate": "1996-12-13T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 41.95, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 31000, - "ShipCountry": "UK", + "OrderID": 10771, + "EmployeeID": 9, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 2, + "Freight": 11.19, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10356, - "EmployeeID": 6, - "OrderDate": "1996-11-18T00:00:00", - "RequiredDate": "1996-12-16T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 2, - "Freight": 36.71, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10773, + "EmployeeID": 1, + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1998-01-08T00:00:00", + "ShippedDate": "1997-12-16T00:00:00", + "ShipVia": 3, + "Freight": 96.43, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 33, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 12, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 70, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 7, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10357, + "OrderID": 10776, "EmployeeID": 1, - "OrderDate": "1996-11-19T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1998-01-12T00:00:00", + "ShippedDate": "1997-12-18T00:00:00", "ShipVia": 3, - "Freight": 34.88, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 351.53, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 16, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 8, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10358, - "EmployeeID": 5, - "OrderDate": "1996-11-20T00:00:00", - "RequiredDate": "1996-12-18T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 1, - "Freight": 19.64, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 12, "Discount": 0.06 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 27, "Discount": 0.06 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 120, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10359, - "EmployeeID": 5, - "OrderDate": "1996-11-21T00:00:00", - "RequiredDate": "1996-12-19T00:00:00", - "ShippedDate": "1996-11-26T00:00:00", - "ShipVia": 3, - "Freight": 288.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 43000, - "ShipCountry": "UK", + "OrderID": 10795, + "EmployeeID": 8, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-20T00:00:00", + "ShipVia": 2, + "Freight": 126.66, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 56, - "Discount": 0.06 - }, - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 70, - "Discount": 0.06 + "UnitPrice": 17.45, + "Quantity": 65, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10360, - "EmployeeID": 4, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 3, - "Freight": 131.7, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10836, + "EmployeeID": 7, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 1, + "Freight": 411.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 52, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 35, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 10, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 35, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 28, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10361, - "EmployeeID": 1, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", + "OrderID": 10854, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-05T00:00:00", "ShipVia": 2, - "Freight": 183.17, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 100.22, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 54, - "Discount": 0.1 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 100, + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 55, - "Discount": 0.1 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 65, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10362, + "OrderID": 10895, "EmployeeID": 3, - "OrderDate": "1996-11-25T00:00:00", - "RequiredDate": "1996-12-23T00:00:00", - "ShippedDate": "1996-11-28T00:00:00", + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 1, - "Freight": 96.04, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 162.75, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 50, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 110, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 20, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 91, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 100, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10363, - "EmployeeID": 4, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1996-12-24T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", + "OrderID": 10968, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-01T00:00:00", "ShipVia": 3, - "Freight": 30.54, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 74.6, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 12, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 12, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 46000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10364, - "EmployeeID": 1, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", - "ShipVia": 1, - "Freight": 71.97, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 10000, - "ShipCountry": "UK", + "OrderID": 10979, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-03-31T00:00:00", + "ShipVia": 2, + "Freight": 353.07, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 30, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 5, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10365, - "EmployeeID": 3, - "OrderDate": "1996-11-27T00:00:00", - "RequiredDate": "1996-12-25T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 2, - "Freight": 22, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 24, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 80, "Discount": 0 - } - ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ - { - "OrderID": 10366, - "EmployeeID": 8, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1996-12-30T00:00:00", - "ShipVia": 2, - "Freight": 10.14, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", - "OrderDetails": [ + }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 5, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10367, - "EmployeeID": 7, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1996-12-26T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 10990, + "EmployeeID": 2, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", "ShipVia": 3, - "Freight": 13.55, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 117.61, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 36, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 65, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 18, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 60, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 65, + "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 66, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10368, - "EmployeeID": 2, - "OrderDate": "1996-11-29T00:00:00", - "RequiredDate": "1996-12-27T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 2, - "Freight": 101.95, + "OrderID": 11008, + "EmployeeID": 7, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-05-09T00:00:00", + "ShipVia": 3, + "Freight": 79.46, "ShipName": "Ernst Handel", "ShipAddress": "Kirchgasse 6", "ShipCity": "Graz", "ShipPostalCode": 8010, "ShipCountry": "Austria", "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 5, - "Discount": 0.1 - }, { "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 13, - "Discount": 0.1 + "UnitPrice": 45.6, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 90, + "Discount": 0.06 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 21, + "Discount": 0 + } + ] + }, { - "OrderID": 10369, - "EmployeeID": 8, - "OrderDate": "1996-12-02T00:00:00", - "RequiredDate": "1996-12-30T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", + "OrderID": 11017, + "EmployeeID": 9, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 2, - "Freight": 195.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 754.26, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 20, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 110, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10370, - "EmployeeID": 6, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-27T00:00:00", + "OrderID": 11072, + "EmployeeID": 4, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-08-02T00:00:00", "ShipVia": 2, - "Freight": 1.17, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 258.64, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 22, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 130, + "Discount": 0 } ] } - ], - "Fax": "0452-076545" + ] }, { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", + "CustomerID": "CENTC", + "Company": "Centro comercial Moctezuma", + "ContactName": "Francisco Chang", + "ContactTitle": "Marketing Manager", + "Address": "Sierras de Granada 9993", + "City": "México D.F.", + "PostalCode": 5022, + "Country": "Mexico", + "Phone": "(5) 555-3392", + "Fax": "(5) 555-7293", "Orders": [ { - "OrderID": 10371, - "EmployeeID": 1, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", - "ShipVia": 1, - "Freight": 0.45, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10259, + "EmployeeID": 4, + "OrderDate": "1996-07-18T00:00:00", + "RequiredDate": "1996-08-15T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", + "ShipVia": 3, + "Freight": 3.25, + "ShipName": "Centro comercial Moctezuma", + "ShipAddress": "Sierras de Granada 9993", + "ShipCity": "México D.F.", + "ShipPostalCode": 5022, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 1, + "Discount": 0 } ] } ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", + "CustomerID": "OTTIK", + "Company": "Ottilies Käseladen", + "ContactName": "Henriette Pfalzheim", + "ContactTitle": "Owner", + "Address": "Mehrheimerstr. 369", + "City": "Köln", + "PostalCode": 50739, + "Country": "Germany", + "Phone": "0221-0644327", + "Fax": "0221-0765721", "Orders": [ { - "OrderID": 10372, - "EmployeeID": 5, - "OrderDate": "1996-12-04T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 2, - "Freight": 890.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10260, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-29T00:00:00", + "ShipVia": 1, + "Freight": 55.09, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 12, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 16, "Discount": 0.25 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 70, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, "Discount": 0.25 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 42, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 21, "Discount": 0.25 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10373, - "EmployeeID": 4, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-11T00:00:00", - "ShipVia": 3, - "Freight": 124.12, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10407, + "EmployeeID": 2, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-04T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", + "ShipVia": 2, + "Freight": 91.48, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 80, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10374, - "EmployeeID": 1, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 3, - "Freight": 3.94, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 10.6, + "ProductID": 71, + "UnitPrice": 17.2, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10375, - "EmployeeID": 3, - "OrderDate": "1996-12-06T00:00:00", - "RequiredDate": "1997-01-03T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", + "OrderID": 10508, + "EmployeeID": 1, + "OrderDate": "1997-04-16T00:00:00", + "RequiredDate": "1997-05-14T00:00:00", + "ShippedDate": "1997-05-13T00:00:00", "ShipVia": 2, - "Freight": 20.12, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "Freight": 4.99, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, + "ProductID": 39, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 10000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10376, - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 2, - "Freight": 20.39, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 39000, - "ShipCountry": "Canada", + "OrderID": 10554, + "EmployeeID": 4, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 3, + "Freight": 120.97, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 42, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 11000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10377, - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 22.21, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", - "OrderDetails": [ + }, { - "ProductID": 28, - "UnitPrice": 36.4, + "ProductID": 23, + "UnitPrice": 9, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.06 }, { - "ProductID": 39, - "UnitPrice": 14.4, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 13000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10378, - "EmployeeID": 5, - "OrderDate": "1996-12-10T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-19T00:00:00", + "OrderID": 10580, + "EmployeeID": 4, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-01T00:00:00", "ShipVia": 3, - "Freight": 5.44, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 49000, - "ShipCountry": "Sweden", + "Freight": 75.89, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 6, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 30, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10684, + "EmployeeID": 3, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 1, + "Freight": 145.63, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10766, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 157.55, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10833, + "EmployeeID": 6, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 2, + "Freight": 71.49, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 9, + "Discount": 0.1 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 9, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10999, + "EmployeeID": 6, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-01T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 96.35, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 21, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 11020, + "EmployeeID": 2, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 2, + "Freight": 43.3, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 24, + "Discount": 0.16 } ] } @@ -6022,13 +4504,13 @@ "Fax": "(21) 555-4545", "Orders": [ { - "OrderID": 10379, - "EmployeeID": 2, - "OrderDate": "1996-12-11T00:00:00", - "RequiredDate": "1997-01-08T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 1, - "Freight": 45.03, + "OrderID": 10261, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-30T00:00:00", + "ShipVia": 2, + "Freight": 3.05, "ShipName": "Que Delícia", "ShipAddress": "Rua da Panificadora, 12", "ShipCity": "Sao Paulo", @@ -6037,1063 +4519,811 @@ "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 16, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 35, + "UnitPrice": 14.4, "Quantity": 20, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10380, - "EmployeeID": 8, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", - "ShipVia": 3, - "Freight": 35.03, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10291, + "EmployeeID": 6, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-04T00:00:00", + "ShipVia": 2, + "Freight": 6.4, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, + "ProductID": 13, + "UnitPrice": 4.8, "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 6, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 24, "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10381, - "EmployeeID": 3, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", + "OrderID": 10379, + "EmployeeID": 2, + "OrderDate": "1996-12-11T00:00:00", + "RequiredDate": "1997-01-08T00:00:00", "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 7.99, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "ShipVia": 1, + "Freight": 45.03, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 14, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 16, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10382, - "EmployeeID": 4, - "OrderDate": "1996-12-13T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1996-12-16T00:00:00", + "OrderID": 10421, + "EmployeeID": 8, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-03-04T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", "ShipVia": 1, - "Freight": 94.77, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 99.23, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 32, - "Discount": 0 - }, - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 9, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 4, + "Discount": 0.16 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 14, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 50, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 31000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10383, - "EmployeeID": 8, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-18T00:00:00", - "ShipVia": 3, - "Freight": 34.24, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 19000, - "ShipCountry": "UK", + "OrderID": 10587, + "EmployeeID": 1, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 1, + "Freight": 62.52, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, + "ProductID": 77, + "UnitPrice": 13, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 18000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10384, - "EmployeeID": 3, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 3, - "Freight": 168.64, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "OrderID": 10647, + "EmployeeID": 4, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 2, + "Freight": 45.54, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 28, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 15, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10385, - "EmployeeID": 1, - "OrderDate": "1996-12-17T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1996-12-23T00:00:00", + "OrderID": 10720, + "EmployeeID": 8, + "OrderDate": "1997-10-28T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 30.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 9.53, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10794, + "EmployeeID": 6, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 1, + "Freight": 21.49, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10386, - "EmployeeID": 9, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-25T00:00:00", - "ShipVia": 3, - "Freight": 13.99, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", + "OrderID": 10989, + "EmployeeID": 2, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 34.76, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 11, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, "Discount": 0 } ] } - ], - "Fax": "(11) 555-9857" + ] }, { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", + "ContactTitle": "Sales Associate", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", "Orders": [ { - "OrderID": 10387, - "EmployeeID": 1, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-15T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 2, - "Freight": 93.63, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10262, + "EmployeeID": 8, + "OrderDate": "1996-07-22T00:00:00", + "RequiredDate": "1996-08-19T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", + "ShipVia": 3, + "Freight": 48.29, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 17000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10388, - "EmployeeID": 2, - "OrderDate": "1996-12-19T00:00:00", - "RequiredDate": "1997-01-16T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 1, - "Freight": 34.86, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 43000, - "ShipCountry": "UK", + "OrderID": 10272, + "EmployeeID": 6, + "OrderDate": "1996-08-02T00:00:00", + "RequiredDate": "1996-08-30T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", + "ShipVia": 2, + "Freight": 98.03, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 7.6, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 40, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 14000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10389, + "OrderID": 10294, "EmployeeID": 4, - "OrderDate": "1996-12-20T00:00:00", - "RequiredDate": "1997-01-17T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", + "OrderDate": "1996-08-30T00:00:00", + "RequiredDate": "1996-09-27T00:00:00", + "ShippedDate": "1996-09-05T00:00:00", "ShipVia": 2, - "Freight": 47.42, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 28000, - "ShipCountry": "Canada", + "Freight": 147.26, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 16, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, + "ProductID": 17, + "UnitPrice": 31.2, "Quantity": 15, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 20, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10390, - "EmployeeID": 6, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-26T00:00:00", - "ShipVia": 1, - "Freight": 126.38, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10314, + "EmployeeID": 1, + "OrderDate": "1996-09-25T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 74.16, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0.1 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 32, + "UnitPrice": 25.6, "Quantity": 40, "Discount": 0.1 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 45, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 24, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 25, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10391, - "EmployeeID": 3, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-31T00:00:00", + "OrderID": 10316, + "EmployeeID": 1, + "OrderDate": "1996-09-27T00:00:00", + "RequiredDate": "1996-10-25T00:00:00", + "ShippedDate": "1996-10-08T00:00:00", "ShipVia": 3, - "Freight": 5.45, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 150.15, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 18, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 70, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10392, - "EmployeeID": 2, - "OrderDate": "1996-12-24T00:00:00", - "RequiredDate": "1997-01-21T00:00:00", - "ShippedDate": "1997-01-01T00:00:00", + "OrderID": 10346, + "EmployeeID": 3, + "OrderDate": "1996-11-05T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", "ShipVia": 3, - "Freight": 122.46, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 142.08, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 50, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10393, + "OrderID": 10401, "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 3, - "Freight": 126.56, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", + "ShipVia": 1, + "Freight": 12.51, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 42, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 7, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 70, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 32, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10394, - "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", + "OrderID": 10479, + "EmployeeID": 3, + "OrderDate": "1997-03-19T00:00:00", + "RequiredDate": "1997-04-16T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", "ShipVia": 3, - "Freight": 30.34, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "Freight": 708.95, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10395, - "EmployeeID": 6, - "OrderDate": "1996-12-26T00:00:00", - "RequiredDate": "1997-01-23T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 1, - "Freight": 184.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10564, + "EmployeeID": 4, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-08T00:00:00", + "ShippedDate": "1997-06-16T00:00:00", + "ShipVia": 3, + "Freight": 13.75, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 70, - "Discount": 0.1 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 8, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10396, + "OrderID": 10569, + "EmployeeID": 5, + "OrderDate": "1997-06-16T00:00:00", + "RequiredDate": "1997-07-14T00:00:00", + "ShippedDate": "1997-07-11T00:00:00", + "ShipVia": 1, + "Freight": 58.98, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10598, "EmployeeID": 1, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1997-01-06T00:00:00", + "OrderDate": "1997-07-14T00:00:00", + "RequiredDate": "1997-08-11T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", "ShipVia": 3, - "Freight": 135.35, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 44.42, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 50, "Discount": 0 }, { "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 21, + "UnitPrice": 21.5, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10397, + "OrderID": 10761, "EmployeeID": 5, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-24T00:00:00", - "ShippedDate": "1997-01-02T00:00:00", - "ShipVia": 1, - "Freight": 60.26, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 2, + "Freight": 18.66, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 42.4, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 18, - "Discount": 0.16 + "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10398, - "EmployeeID": 2, - "OrderDate": "1996-12-30T00:00:00", - "RequiredDate": "1997-01-27T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 89.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "OrderID": 10820, + "EmployeeID": 3, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 37.52, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 30, "Discount": 0 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10399, + "OrderID": 10852, "EmployeeID": 8, - "OrderDate": "1996-12-31T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", - "ShipVia": 3, - "Freight": 27.36, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 174.05, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 35, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 14, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10400, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderID": 10889, + "EmployeeID": 9, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 3, - "Freight": 83.93, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 25000, - "ShipCountry": "UK", + "Freight": 280.61, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 35, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10401, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", - "ShipVia": 1, - "Freight": 12.51, + "OrderID": 10988, + "EmployeeID": 3, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 61.14, "ShipName": "Rattlesnake Canyon Grocery", "ShipAddress": "2817 Milton Dr.", "ShipCity": "Albuquerque", @@ -7102,341 +5332,217 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 70, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11000, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 3, + "Freight": 55.12, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10402, - "EmployeeID": 8, - "OrderDate": "1997-01-02T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", + "OrderID": 11077, + "EmployeeID": 1, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-07-03T00:00:00", "ShipVia": 2, - "Freight": 67.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 8.53, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 60, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 24, + "Discount": 0.2 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 65, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 4, "Discount": 0 - } - ] - }, - { - "OrderID": 10403, - "EmployeeID": 4, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 73.79, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ + }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 1, + "Discount": 0 }, { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 70, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10404, - "EmployeeID": 2, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", - "ShipVia": 1, - "Freight": 155.97, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 1, + "Discount": 0.02 + }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 1, "Discount": 0.06 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 2, + "Discount": 0.1 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10405, - "EmployeeID": 1, - "OrderDate": "1997-01-06T00:00:00", - "RequiredDate": "1997-02-03T00:00:00", - "ShippedDate": "1997-01-22T00:00:00", - "ShipVia": 1, - "Freight": 34.82, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 50, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 1, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10406, - "EmployeeID": 7, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-13T00:00:00", - "ShipVia": 1, - "Freight": 108.04, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ + }, { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 10, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 1, + "Discount": 0.04 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 42, - "Discount": 0.1 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 2, + "Discount": 0.04 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 5, - "Discount": 0.1 + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 1, + "Discount": 0.04 }, { - "ProductID": 40, - "UnitPrice": 14.7, + "ProductID": 23, + "UnitPrice": 9, "Quantity": 2, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10407, - "EmployeeID": 2, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-04T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", - "ShipVia": 2, - "Freight": 91.48, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ + "Discount": 0 + }, { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 3, + "Discount": 0.02 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ - { - "OrderID": 10408, - "EmployeeID": 8, - "OrderDate": "1997-01-08T00:00:00", - "RequiredDate": "1997-02-05T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", - "ShipVia": 1, - "Freight": 11.26, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", - "OrderDetails": [ + }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 10, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 2, + "Discount": 0.04 + }, + { + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 2, + "Discount": 0.0099999998 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, "Discount": 0 } ] @@ -7444,1232 +5550,851 @@ ] }, { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ - { - "OrderID": 10409, - "EmployeeID": 3, - "OrderDate": "1997-01-09T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", - "ShipVia": 1, - "Freight": 29.83, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 43000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 33000, + "Country": "Sweden", + "Phone": "0695-34 67 21", + "Fax": "0695-34 67 22", "Orders": [ { - "OrderID": 10410, - "EmployeeID": 3, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", + "OrderID": 10264, + "EmployeeID": 6, + "OrderDate": "1996-07-24T00:00:00", + "RequiredDate": "1996-08-21T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", "ShipVia": 3, - "Freight": 2.4, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "Freight": 3.67, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 27000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 49, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 16, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 25, + "Discount": 0.16 } ] }, { - "OrderID": 10411, - "EmployeeID": 9, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-21T00:00:00", - "ShipVia": 3, - "Freight": 23.65, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10327, + "EmployeeID": 2, + "OrderDate": "1996-10-11T00:00:00", + "RequiredDate": "1996-11-08T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 63.36, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 17000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 25, "Discount": 0.2 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 40, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 50, "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10412, - "EmployeeID": 8, - "OrderDate": "1997-01-13T00:00:00", - "RequiredDate": "1997-02-10T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", - "ShipVia": 2, - "Freight": 3.77, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10378, + "EmployeeID": 5, + "OrderDate": "1996-12-10T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-19T00:00:00", + "ShipVia": 3, + "Freight": 5.44, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 49000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10413, + "OrderID": 10434, "EmployeeID": 3, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-02-13T00:00:00", "ShipVia": 2, - "Freight": 95.66, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 17.92, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 23000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0 }, { "ProductID": 76, "UnitPrice": 14.4, - "Quantity": 14, - "Discount": 0 + "Quantity": 18, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10414, - "EmployeeID": 2, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-17T00:00:00", - "ShipVia": 3, - "Freight": 21.48, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10460, + "EmployeeID": 8, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 1, + "Freight": 16.27, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 40000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 21, + "Discount": 0.25 }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 4, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10533, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-22T00:00:00", + "ShipVia": 1, + "Freight": 188.04, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 45000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 24, + "Discount": 0.06 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10415, - "EmployeeID": 3, - "OrderDate": "1997-01-15T00:00:00", - "RequiredDate": "1997-02-12T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", - "ShipVia": 1, - "Freight": 0.2, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "OrderID": 10561, + "EmployeeID": 2, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 2, + "Freight": 242.21, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 23000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 2, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10416, - "EmployeeID": 8, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 3, - "Freight": 22.72, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10703, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-10-20T00:00:00", + "ShipVia": 2, + "Freight": 152.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 28000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 20, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 10, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 20, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10417, - "EmployeeID": 4, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-28T00:00:00", - "ShipVia": 3, - "Freight": 70.29, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10762, + "EmployeeID": 3, + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 328.74, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 44000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 35, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10418, + "OrderID": 10774, "EmployeeID": 4, - "OrderDate": "1997-01-17T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", "ShipVia": 1, - "Freight": 17.55, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 48.2, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 55, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 16, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 2, + "Discount": 0.25 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 15, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10419, - "EmployeeID": 4, - "OrderDate": "1997-01-20T00:00:00", - "RequiredDate": "1997-02-17T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", - "ShipVia": 2, - "Freight": 137.35, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10824, + "EmployeeID": 8, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 1.23, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 39000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10420, - "EmployeeID": 3, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10880, + "EmployeeID": 7, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 1, - "Freight": 44.12, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 88.01, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 15000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 77.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.2 }, { "ProductID": 70, - "UnitPrice": 12, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.1 + "UnitPrice": 15, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10421, - "EmployeeID": 8, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-03-04T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10902, + "EmployeeID": 1, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", "ShipVia": 1, - "Freight": 99.23, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 44.15, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 11000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 4, - "Discount": 0.16 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 10, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 6, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10422, - "EmployeeID": 2, - "OrderDate": "1997-01-22T00:00:00", - "RequiredDate": "1997-02-19T00:00:00", - "ShippedDate": "1997-01-31T00:00:00", - "ShipVia": 1, - "Freight": 3.02, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10955, + "EmployeeID": 8, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 20000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 2, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10423, - "EmployeeID": 6, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", + "OrderID": 10977, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 3, - "Freight": 24.5, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 208.5, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 14, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 30000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10424, - "EmployeeID": 7, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-20T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 2, - "Freight": 370.61, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 22000, - "ShipCountry": "Canada", + "OrderID": 10980, + "EmployeeID": 4, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 1, + "Freight": 1.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0.2 - }, - { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 49, - "Discount": 0.2 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10425, - "EmployeeID": 6, - "OrderDate": "1997-01-24T00:00:00", - "RequiredDate": "1997-02-21T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 7.93, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10993, + "EmployeeID": 7, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 3, + "Freight": 8.81, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 50, "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 20, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10426, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-02-06T00:00:00", - "ShipVia": 1, - "Freight": 18.69, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 11001, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 2, + "Freight": 197.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 30000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 7, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10427, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 11050, + "EmployeeID": 8, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", "ShipVia": 2, - "Freight": 31.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 59.41, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 11000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 35, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", + "CustomerID": "BLONP", + "Company": "Blondesddsl père et fils", + "ContactName": "Frédérique Citeaux", + "ContactTitle": "Marketing Manager", + "Address": "24, place Kléber", + "City": "Strasbourg", + "PostalCode": 67000, + "Country": "France", + "Phone": "88.60.15.31", + "Fax": "88.60.15.32", "Orders": [ { - "OrderID": 10428, - "EmployeeID": 7, - "OrderDate": "1997-01-28T00:00:00", - "RequiredDate": "1997-02-25T00:00:00", - "ShippedDate": "1997-02-04T00:00:00", + "OrderID": 10265, + "EmployeeID": 2, + "OrderDate": "1996-07-25T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", "ShipVia": 1, - "Freight": 11.09, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 55.28, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10429, - "EmployeeID": 3, - "OrderDate": "1997-01-29T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderID": 10297, + "EmployeeID": 5, + "OrderDate": "1996-09-04T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", "ShipVia": 2, - "Freight": 56.63, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 5.74, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 40, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10430, + "OrderID": 10360, "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-03T00:00:00", - "ShipVia": 1, - "Freight": 458.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 131.7, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 50, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.2 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 28, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 47000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10431, - "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderID": 10436, + "EmployeeID": 3, + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-11T00:00:00", "ShipVia": 2, - "Freight": 44.17, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 49000, - "ShipCountry": "Canada", + "Freight": 156.66, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 47, - "UnitPrice": 7.6, + "ProductID": 64, + "UnitPrice": 26.6, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.1 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 24, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10432, + "OrderID": 10449, "EmployeeID": 3, - "OrderDate": "1997-01-31T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderDate": "1997-02-18T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-27T00:00:00", "ShipVia": 2, - "Freight": 4.34, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 53.3, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 10, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 40, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ - { - "OrderID": 10433, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", - "ShipVia": 3, - "Freight": 73.83, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", - "OrderDetails": [ + }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 28, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 23000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10434, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-02-13T00:00:00", - "ShipVia": 2, - "Freight": 17.92, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 23000, - "ShipCountry": "Sweden", + "OrderID": 10559, + "EmployeeID": 6, + "OrderDate": "1997-06-05T00:00:00", + "RequiredDate": "1997-07-03T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 1, + "Freight": 8.05, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 76, - "UnitPrice": 14.4, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 18, - "Discount": 0.16 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 38000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ + }, { - "OrderID": 10435, - "EmployeeID": 8, - "OrderDate": "1997-02-04T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", - "ShipVia": 2, - "Freight": 9.21, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "OrderID": 10566, + "EmployeeID": 9, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", + "ShipVia": 1, + "Freight": 88.4, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 10, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 18, + "Discount": 0.16 }, { - "ProductID": 72, - "UnitPrice": 27.8, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10436, - "EmployeeID": 3, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-11T00:00:00", - "ShipVia": 2, - "Freight": 156.66, + "OrderID": 10584, + "EmployeeID": 4, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 1, + "Freight": 59.14, "ShipName": "Blondel père et fils", "ShipAddress": "24, place Kléber", "ShipCity": "Strasbourg", @@ -8677,28 +6402,82 @@ "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10628, + "EmployeeID": 4, + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 30.36, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10679, + "EmployeeID": 8, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 27.94, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 40, - "Discount": 0.1 - }, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10826, + "EmployeeID": 6, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 1, + "Freight": 7.09, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, + "Discount": 0 } ] } @@ -8717,13 +6496,13 @@ "Fax": "981-443655", "Orders": [ { - "OrderID": 10437, - "EmployeeID": 8, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-12T00:00:00", - "ShipVia": 1, - "Freight": 19.97, + "OrderID": 10266, + "EmployeeID": 3, + "OrderDate": "1996-07-26T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 25.73, "ShipName": "Wartian Herkku", "ShipAddress": "Torikatu 38", "ShipCity": "Oulu", @@ -8731,669 +6510,449 @@ "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 12, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10438, - "EmployeeID": 3, - "OrderDate": "1997-02-06T00:00:00", - "RequiredDate": "1997-03-06T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 8.24, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "OrderID": 10270, + "EmployeeID": 1, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 1, + "Freight": 136.54, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 37000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10439, - "EmployeeID": 6, - "OrderDate": "1997-02-07T00:00:00", - "RequiredDate": "1997-03-07T00:00:00", - "ShippedDate": "1997-02-10T00:00:00", + "OrderID": 10320, + "EmployeeID": 5, + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-18T00:00:00", "ShipVia": 3, - "Freight": 4.07, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "Freight": 34.57, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 16, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10440, - "EmployeeID": 4, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-10T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 86.53, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10333, + "EmployeeID": 5, + "OrderDate": "1996-10-18T00:00:00", + "RequiredDate": "1996-11-15T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", + "ShipVia": 3, + "Freight": 0.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 45, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 49, - "Discount": 0.16 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 90, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 40, + "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10441, - "EmployeeID": 3, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-24T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10412, + "EmployeeID": 8, + "OrderDate": "1997-01-13T00:00:00", + "RequiredDate": "1997-02-10T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", "ShipVia": 2, - "Freight": 73.02, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 3.77, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 50, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10442, - "EmployeeID": 3, - "OrderDate": "1997-02-11T00:00:00", - "RequiredDate": "1997-03-11T00:00:00", - "ShippedDate": "1997-02-18T00:00:00", - "ShipVia": 2, - "Freight": 47.94, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10416, + "EmployeeID": 8, + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 3, + "Freight": 22.72, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 80, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 60, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10443, + "OrderID": 10437, "EmployeeID": 8, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-12T00:00:00", "ShipVia": 1, - "Freight": 13.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 19.97, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.2 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 12, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 15000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10444, - "EmployeeID": 3, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-21T00:00:00", - "ShipVia": 3, - "Freight": 3.5, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 22000, - "ShipCountry": "Sweden", + "OrderID": 10455, + "EmployeeID": 8, + "OrderDate": "1997-02-24T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 2, + "Freight": 180.45, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 15, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 8, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 71, + "UnitPrice": 17.2, "Quantity": 30, "Discount": 0 } ] }, { - "OrderID": 10445, - "EmployeeID": 3, - "OrderDate": "1997-02-13T00:00:00", - "RequiredDate": "1997-03-13T00:00:00", - "ShippedDate": "1997-02-20T00:00:00", - "ShipVia": 1, - "Freight": 9.3, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 18000, - "ShipCountry": "Sweden", + "OrderID": 10526, + "EmployeeID": 4, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-15T00:00:00", + "ShipVia": 2, + "Freight": 58.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0.16 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10446, - "EmployeeID": 6, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-02-19T00:00:00", - "ShipVia": 1, - "Freight": 14.68, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "OrderID": 10553, + "EmployeeID": 2, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-03T00:00:00", + "ShipVia": 2, + "Freight": 149.49, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 12, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 24, + "Discount": 0 }, { "ProductID": 31, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "UnitPrice": 12.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10447, - "EmployeeID": 4, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-03-07T00:00:00", + "OrderID": 10583, + "EmployeeID": 2, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 2, - "Freight": 68.66, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 7.28, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 40, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 35, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10448, + "OrderID": 10636, "EmployeeID": 4, - "OrderDate": "1997-02-17T00:00:00", - "RequiredDate": "1997-03-17T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", - "ShipVia": 2, - "Freight": 38.82, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 1.15, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 6, - "Discount": 0 - }, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0 + }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10449, - "EmployeeID": 3, - "OrderDate": "1997-02-18T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-27T00:00:00", - "ShipVia": 2, - "Freight": 53.3, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10750, + "EmployeeID": 9, + "OrderDate": "1997-11-21T00:00:00", + "RequiredDate": "1997-12-19T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 79.3, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 14, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 5, + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10450, - "EmployeeID": 8, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-19T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", - "ShipVia": 2, - "Freight": 7.23, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10781, + "EmployeeID": 2, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 3, + "Freight": 73.16, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0.2 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10451, - "EmployeeID": 4, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", + "OrderID": 11025, + "EmployeeID": 6, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", "ShipVia": 3, - "Freight": 189.09, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 29.17, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 - }, - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 28, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 55, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0.1 } ] @@ -9401,783 +6960,619 @@ ] }, { - "CustomerID": "SAVEA", - "Company": "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", + "CustomerID": "FRANK", + "Company": "Frankenversand", + "ContactName": "Peter Franken", + "ContactTitle": "Marketing Manager", + "Address": "Berliner Platz 43", + "City": "München", + "PostalCode": 80805, + "Country": "Germany", + "Phone": "089-0877310", + "Fax": "089-0877451", "Orders": [ { - "OrderID": 10452, - "EmployeeID": 8, - "OrderDate": "1997-02-20T00:00:00", - "RequiredDate": "1997-03-20T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", + "OrderID": 10267, + "EmployeeID": 4, + "OrderDate": "1996-07-29T00:00:00", + "RequiredDate": "1996-08-26T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", "ShipVia": 1, - "Freight": 140.26, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 208.58, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 100, - "Discount": 0.06 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 46000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10453, - "EmployeeID": 1, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", - "ShipVia": 2, - "Freight": 25.36, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 40000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10454, + "OrderID": 10337, "EmployeeID": 4, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-25T00:00:00", + "OrderDate": "1996-10-24T00:00:00", + "RequiredDate": "1996-11-21T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", "ShipVia": 3, - "Freight": 2.74, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 108.26, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10455, - "EmployeeID": 8, - "OrderDate": "1997-02-24T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 10342, + "EmployeeID": 4, + "OrderDate": "1996-10-30T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", "ShipVia": 2, - "Freight": 180.45, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 54.83, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 24, + "Discount": 0.2 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 50, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 56, + "Discount": 0.2 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 25, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10456, - "EmployeeID": 8, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 8.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10396, + "EmployeeID": 1, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1997-01-06T00:00:00", + "ShipVia": 3, + "Freight": 135.35, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 23, + "UnitPrice": 7.2, "Quantity": 40, - "Discount": 0.16 + "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, "Quantity": 21, - "Discount": 0.16 + "Discount": 0 } ] }, { - "OrderID": 10457, - "EmployeeID": 2, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-03-25T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", - "ShipVia": 1, - "Freight": 11.57, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10488, + "EmployeeID": 8, + "OrderDate": "1997-03-27T00:00:00", + "RequiredDate": "1997-04-24T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 59, "UnitPrice": 44, - "Quantity": 36, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0.2 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 45000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10458, - "EmployeeID": 7, - "OrderDate": "1997-02-26T00:00:00", - "RequiredDate": "1997-03-26T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", - "ShipVia": 3, - "Freight": 147.06, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 16000, - "ShipCountry": "Belgium", + "OrderID": 10560, + "EmployeeID": 8, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 1, + "Freight": 36.65, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, + "ProductID": 30, + "UnitPrice": 25.89, "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0 + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10459, - "EmployeeID": 4, - "OrderDate": "1997-02-27T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", + "OrderID": 10623, + "EmployeeID": 8, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", "ShipVia": 2, - "Freight": 25.09, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 97.18, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 3, "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 19000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10460, - "EmployeeID": 8, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 10653, + "EmployeeID": 1, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", "ShipVia": 1, - "Freight": 16.27, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 40000, - "ShipCountry": "Sweden", + "Freight": 93.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10461, - "EmployeeID": 1, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-05T00:00:00", - "ShipVia": 3, - "Freight": 148.61, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10670, + "EmployeeID": 4, + "OrderDate": "1997-09-16T00:00:00", + "RequiredDate": "1997-10-14T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 1, + "Freight": 203.48, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 32, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 28, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 60, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 38000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ - { - "OrderID": 10462, - "EmployeeID": 2, - "OrderDate": "1997-03-03T00:00:00", - "RequiredDate": "1997-03-31T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 1, - "Freight": 6.17, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 50000, - "ShipCountry": "UK", - "OrderDetails": [ + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 25, + "Discount": 0 + }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 1, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 21, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 34000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10463, + "OrderID": 10675, "EmployeeID": 5, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-06T00:00:00", - "ShipVia": 3, - "Freight": 14.78, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 21000, - "ShipCountry": "Belgium", + "OrderDate": "1997-09-19T00:00:00", + "RequiredDate": "1997-10-17T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", + "ShipVia": 2, + "Freight": 31.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 21, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 50, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10464, - "EmployeeID": 4, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10717, + "EmployeeID": 1, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 2, - "Freight": 89, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 59.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 16, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 32, + "Discount": 0.06 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 3, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 25, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10791, + "EmployeeID": 6, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-01T00:00:00", + "ShipVia": 2, + "Freight": 16.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 14, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 27.2, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10465, + "OrderID": 10859, "EmployeeID": 1, - "OrderDate": "1997-03-05T00:00:00", - "RequiredDate": "1997-04-02T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 3, - "Freight": 145.04, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 76.1, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0 + "UnitPrice": 4.5, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 45, - "UnitPrice": 7.6, + "ProductID": 64, + "UnitPrice": 33.25, "Quantity": 30, - "Discount": 0.1 + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10929, + "EmployeeID": 6, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 1, + "Freight": 33.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 50, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 77, "UnitPrice": 13, - "Quantity": 25, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10466, - "EmployeeID": 4, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-13T00:00:00", - "ShipVia": 1, - "Freight": 11.93, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderID": 11012, + "EmployeeID": 1, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 3, + "Freight": 242.95, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 36, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.06 } ] } - ], - "Fax": "(11) 555-7647" + ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "GROSR", + "Company": "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", "Orders": [ { - "OrderID": 10467, + "OrderID": 10268, "EmployeeID": 8, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderDate": "1996-07-30T00:00:00", + "RequiredDate": "1996-08-27T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 3, + "Freight": 66.29, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 12, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10468, - "EmployeeID": 3, - "OrderDate": "1997-03-07T00:00:00", - "RequiredDate": "1997-04-04T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", + "OrderID": 10785, + "EmployeeID": 1, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", "ShipVia": 3, - "Freight": 44.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 1.51, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 15, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 10, "Discount": 0 } ] } - ], - "Fax": "0555-09876" + ] }, { "CustomerID": "WHITC", @@ -10193,13 +7588,13 @@ "Fax": "(206) 555-4115", "Orders": [ { - "OrderID": 10469, - "EmployeeID": 1, - "OrderDate": "1997-03-10T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10269, + "EmployeeID": 5, + "OrderDate": "1996-07-31T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", "ShipVia": 1, - "Freight": 60.18, + "Freight": 4.56, "ShipName": "White Clover Markets", "ShipAddress": "1029 - 12th Ave. S.", "ShipCity": "Seattle", @@ -10208,525 +7603,464 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10470, + "OrderID": 10344, "EmployeeID": 4, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderDate": "1996-11-01T00:00:00", + "RequiredDate": "1996-11-29T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", "ShipVia": 2, - "Freight": 64.56, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 23.29, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 15, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 8, - "Discount": 0 + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10471, - "EmployeeID": 2, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 3, - "Freight": 45.59, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 25000, - "ShipCountry": "UK", + "OrderID": 10469, + "EmployeeID": 1, + "OrderDate": "1997-03-10T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 1, + "Freight": 60.18, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 2, + "Discount": 0.16 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 25000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10472, - "EmployeeID": 8, - "OrderDate": "1997-03-12T00:00:00", - "RequiredDate": "1997-04-09T00:00:00", - "ShippedDate": "1997-03-19T00:00:00", - "ShipVia": 1, - "Freight": 4.2, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 21000, - "ShipCountry": "UK", + "OrderID": 10483, + "EmployeeID": 7, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-25T00:00:00", + "ShipVia": 2, + "Freight": 15.28, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 80, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 35, "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 18, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10473, - "EmployeeID": 1, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", + "OrderID": 10504, + "EmployeeID": 4, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-18T00:00:00", "ShipVia": 3, - "Freight": 16.37, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 90698, - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "Freight": 59.13, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 12, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 12, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10474, - "EmployeeID": 5, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-04-10T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 2, - "Freight": 83.49, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 18.6, + "ProductID": 21, + "UnitPrice": 10, "Quantity": 12, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 18, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 21, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 25, "Discount": 0 + } + ] + }, + { + "OrderID": 10596, + "EmployeeID": 8, + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", + "ShipVia": 1, + "Freight": 16.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0.2 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 24, + "Discount": 0.2 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0 + "UnitPrice": 7.75, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 45000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10475, - "EmployeeID": 9, - "OrderDate": "1997-03-14T00:00:00", - "RequiredDate": "1997-04-11T00:00:00", - "ShippedDate": "1997-04-04T00:00:00", - "ShipVia": 1, - "Freight": 68.52, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", + "OrderID": 10693, + "EmployeeID": 3, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-10-10T00:00:00", + "ShipVia": 3, + "Freight": 139.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 13.6, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 60, "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 42, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10476, + "OrderID": 10696, "EmployeeID": 8, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", "ShipVia": 3, - "Freight": 4.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 102.55, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 2, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 70, + "ProductID": 46, "UnitPrice": 12, - "Quantity": 12, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10477, - "EmployeeID": 5, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", - "ShipVia": 2, - "Freight": 13.02, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10723, + "EmployeeID": 3, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-11-27T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", + "ShipVia": 1, + "Freight": 21.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, + "ProductID": 26, + "UnitPrice": 31.23, "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10740, + "EmployeeID": 4, + "OrderDate": "1997-11-13T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", + "ShipVia": 2, + "Freight": 81.88, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, + "Discount": 0.2 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10478, - "EmployeeID": 2, - "OrderDate": "1997-03-18T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-26T00:00:00", - "ShipVia": 3, - "Freight": 4.81, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10861, + "EmployeeID": 4, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-02-27T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 14.93, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 42, + "Discount": 0 + }, + { + "ProductID": 18, + "UnitPrice": 62.5, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10479, + "OrderID": 10904, "EmployeeID": 3, - "OrderDate": "1997-03-19T00:00:00", - "RequiredDate": "1997-04-16T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", "ShipVia": 3, - "Freight": 708.95, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, + "Freight": 162.95, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 30, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 28, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 35, + "Discount": 0 + } + ] + }, + { + "OrderID": 11032, + "EmployeeID": 2, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 606.19, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10480, - "EmployeeID": 6, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", + "OrderID": 11066, + "EmployeeID": 7, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 44.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 30, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 42, + "Discount": 0 + }, + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 35, "Discount": 0 } ] @@ -10734,413 +8068,287 @@ ] }, { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", + "CustomerID": "SPLIR", + "Company": "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", "Orders": [ { - "OrderID": 10481, - "EmployeeID": 8, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", + "OrderID": 10271, + "EmployeeID": 6, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-30T00:00:00", "ShipVia": 2, - "Freight": 64.33, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 4.54, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 33, + "UnitPrice": 2, "Quantity": 24, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10482, - "EmployeeID": 1, - "OrderDate": "1997-03-21T00:00:00", - "RequiredDate": "1997-04-18T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 7.48, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, + "OrderID": 10329, + "EmployeeID": 4, + "OrderDate": "1996-10-15T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 2, + "Freight": 191.67, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ - { - "OrderID": 10483, - "EmployeeID": 7, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-25T00:00:00", - "ShipVia": 2, - "Freight": 15.28, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", - "OrderDetails": [ + "Discount": 0.06 + }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 35, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, "Discount": 0.06 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 12, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 45000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10484, - "EmployeeID": 3, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-01T00:00:00", - "ShipVia": 3, - "Freight": 6.88, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10349, + "EmployeeID": 7, + "OrderDate": "1996-11-08T00:00:00", + "RequiredDate": "1996-12-06T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 1, + "Freight": 8.63, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 14, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10369, + "EmployeeID": 8, + "OrderDate": "1996-12-02T00:00:00", + "RequiredDate": "1996-12-30T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 195.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 3, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 18, + "Discount": 0.25 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10485, - "EmployeeID": 4, - "OrderDate": "1997-03-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-31T00:00:00", + "OrderID": 10385, + "EmployeeID": 1, + "OrderDate": "1996-12-17T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1996-12-23T00:00:00", "ShipVia": 2, - "Freight": 64.45, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 30.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 3, - "UnitPrice": 8, + "ProductID": 60, + "UnitPrice": 27.2, "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 30, - "Discount": 0.1 + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10486, - "EmployeeID": 1, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", + "OrderID": 10432, + "EmployeeID": 3, + "OrderDate": "1997-01-31T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", "ShipVia": 2, - "Freight": 30.53, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 4.34, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 25, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 16, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10487, - "EmployeeID": 2, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-03-28T00:00:00", + "OrderID": 10756, + "EmployeeID": 8, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-02T00:00:00", "ShipVia": 2, - "Freight": 71.07, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 73.21, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 5, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 21, + "Discount": 0.2 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.2 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.2 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10488, - "EmployeeID": 8, - "OrderDate": "1997-03-27T00:00:00", - "RequiredDate": "1997-04-24T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10821, + "EmployeeID": 1, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-15T00:00:00", + "ShipVia": 1, + "Freight": 36.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10489, - "EmployeeID": 6, - "OrderDate": "1997-03-28T00:00:00", - "RequiredDate": "1997-04-25T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 5.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10974, + "EmployeeID": 3, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 12.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 18, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 10, "Discount": 0 } ] @@ -11148,1159 +8356,813 @@ ] }, { - "CustomerID": "HILAA", - "Company": "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": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Fax": "0372-035189", "Orders": [ { - "OrderID": 10490, - "EmployeeID": 7, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-03T00:00:00", - "ShipVia": 2, - "Freight": 210.19, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10273, + "EmployeeID": 3, + "OrderDate": "1996-08-05T00:00:00", + "RequiredDate": "1996-09-02T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", + "ShipVia": 3, + "Freight": 76.07, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 24, + "Discount": 0.06 }, { - "ProductID": 68, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 36, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 33, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10491, - "EmployeeID": 8, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-08T00:00:00", - "ShipVia": 3, - "Freight": 16.96, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10285, + "EmployeeID": 1, + "OrderDate": "1996-08-20T00:00:00", + "RequiredDate": "1996-09-17T00:00:00", + "ShippedDate": "1996-08-26T00:00:00", + "ShipVia": 2, + "Freight": 76.83, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0.16 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 36, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 10000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10492, - "EmployeeID": 3, - "OrderDate": "1997-04-01T00:00:00", - "RequiredDate": "1997-04-29T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 1, - "Freight": 62.89, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderID": 10313, + "EmployeeID": 2, + "OrderDate": "1996-09-24T00:00:00", + "RequiredDate": "1996-10-22T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 1.96, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10345, + "EmployeeID": 2, + "OrderDate": "1996-11-04T00:00:00", + "RequiredDate": "1996-12-02T00:00:00", + "ShippedDate": "1996-11-11T00:00:00", + "ShipVia": 2, + "Freight": 249.06, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 80, + "Discount": 0 }, { "ProductID": 42, "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.06 + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10493, - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 10.64, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10361, + "EmployeeID": 1, + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 183.17, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 54, "Discount": 0.1 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 55, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10494, + "OrderID": 10418, "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 65.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderDate": "1997-01-17T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "ShipVia": 1, + "Freight": 17.55, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 60, "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 19000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ - { - "OrderID": 10495, - "EmployeeID": 3, - "OrderDate": "1997-04-03T00:00:00", - "RequiredDate": "1997-05-01T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 3, - "Freight": 4.65, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 20000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 10, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10496, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 2, - "Freight": 46.77, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10497, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 1, - "Freight": 36.21, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "OrderID": 10451, + "EmployeeID": 4, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 189.09, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 14, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 120, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 28, + "Discount": 0.1 }, { "ProductID": 77, "UnitPrice": 10.4, - "Quantity": 25, - "Discount": 0 + "Quantity": 55, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10498, - "EmployeeID": 8, - "OrderDate": "1997-04-07T00:00:00", - "RequiredDate": "1997-05-05T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 2, - "Freight": 29.75, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10515, + "EmployeeID": 2, + "OrderDate": "1997-04-23T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 1, + "Freight": 204.47, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 14, + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 16, + "Discount": 0.16 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 120, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10499, - "EmployeeID": 4, - "OrderDate": "1997-04-08T00:00:00", - "RequiredDate": "1997-05-06T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 102.02, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, + "Discount": 0.16 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 84, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10500, - "EmployeeID": 6, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-17T00:00:00", + "OrderID": 10527, + "EmployeeID": 7, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", "ShipVia": 1, - "Freight": 42.68, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 41.9, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10501, - "EmployeeID": 9, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", + "OrderID": 10540, + "EmployeeID": 3, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", "ShipVia": 3, - "Freight": 8.85, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, + "Freight": 1007.64, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10502, - "EmployeeID": 2, - "OrderDate": "1997-04-10T00:00:00", - "RequiredDate": "1997-05-08T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 69.32, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 21, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10503, - "EmployeeID": 6, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 16.74, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10549, + "EmployeeID": 5, + "OrderDate": "1997-05-27T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 171.24, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 70, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 55, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 100, + "Discount": 0.16 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 48, + "Discount": 0.16 + } + ] + }, { - "OrderID": 10504, - "EmployeeID": 4, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-18T00:00:00", + "OrderID": 10588, + "EmployeeID": 2, + "OrderDate": "1997-07-03T00:00:00", + "RequiredDate": "1997-07-31T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", "ShipVia": 3, - "Freight": 59.13, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 194.67, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 40, + "Discount": 0.2 }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 100, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10658, + "EmployeeID": 4, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 1, + "Freight": 364.15, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { "ProductID": 21, "UnitPrice": 10, - "Quantity": 12, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 25, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 55, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 70, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 21000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10505, - "EmployeeID": 3, - "OrderDate": "1997-04-14T00:00:00", - "RequiredDate": "1997-05-12T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 7.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 33000, - "ShipCountry": "Canada", + "OrderID": 10691, + "EmployeeID": 2, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-10-22T00:00:00", + "ShipVia": 2, + "Freight": 810.05, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 24, + "Discount": 0 + }, { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 3, + "Quantity": 48, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10506, - "EmployeeID": 9, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 21.19, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10694, + "EmployeeID": 8, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-11-03T00:00:00", + "ShippedDate": "1997-10-09T00:00:00", + "ShipVia": 3, + "Freight": 398.36, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 90, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 }, { "ProductID": 70, "UnitPrice": 15, - "Quantity": 14, - "Discount": 0.1 + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10507, - "EmployeeID": 7, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-04-22T00:00:00", - "ShipVia": 1, - "Freight": 47.45, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 15, - "Discount": 0.16 - }, + "OrderID": 10721, + "EmployeeID": 5, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-11-26T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", + "ShipVia": 3, + "Freight": 48.92, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 50, + "Discount": 0.06 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10508, - "EmployeeID": 1, - "OrderDate": "1997-04-16T00:00:00", - "RequiredDate": "1997-05-14T00:00:00", - "ShippedDate": "1997-05-13T00:00:00", - "ShipVia": 2, - "Freight": 4.99, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, + "OrderID": 10745, + "EmployeeID": 9, + "OrderDate": "1997-11-18T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 1, + "Freight": 3.52, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 7, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10509, - "EmployeeID": 4, - "OrderDate": "1997-04-17T00:00:00", - "RequiredDate": "1997-05-15T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 0.15, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, + "OrderID": 10765, + "EmployeeID": 3, + "OrderDate": "1997-12-04T00:00:00", + "RequiredDate": "1998-01-01T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 3, + "Freight": 42.74, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 80, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10510, - "EmployeeID": 6, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", - "ShipVia": 3, - "Freight": 367.63, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10788, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 42.7, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 36, - "Discount": 0.1 + "Quantity": 40, + "Discount": 0.06 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10511, - "EmployeeID": 4, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 350.64, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10845, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 212.98, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10512, - "EmployeeID": 7, - "OrderDate": "1997-04-21T00:00:00", - "RequiredDate": "1997-05-19T00:00:00", - "ShippedDate": "1997-04-24T00:00:00", - "ShipVia": 2, - "Freight": 3.53, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.16 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 9, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 42, + "Discount": 0.1 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 48, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10513, - "EmployeeID": 7, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-06-03T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", + "OrderID": 10865, + "EmployeeID": 2, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", "ShipVia": 1, - "Freight": 105.65, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, + "Freight": 348.14, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.2 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10514, - "EmployeeID": 3, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", - "ShipVia": 2, - "Freight": 789.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10878, + "EmployeeID": 4, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 46.69, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 20, "UnitPrice": 81, - "Quantity": 39, - "Discount": 0 - }, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10938, + "EmployeeID": 3, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 31.89, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 35, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 70, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0.25 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 39, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 49, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10515, - "EmployeeID": 2, - "OrderDate": "1997-04-23T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 1, - "Freight": 204.47, + "OrderID": 10962, + "EmployeeID": 8, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 275.79, "ShipName": "QUICK-Stop", "ShipAddress": "Taucherstraße 10", "ShipCity": "Cunewalde", @@ -12308,131 +9170,135 @@ "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 16, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, + "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 77, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 120, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0.16 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 84, - "Discount": 0.16 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 44, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10516, - "EmployeeID": 2, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 62.78, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10991, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 1, + "Freight": 38.51, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.2 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 80, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 20, + "Discount": 0.2 }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 90, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10996, + "EmployeeID": 4, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 1.12, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { "ProductID": 42, "UnitPrice": 14, - "Quantity": 20, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 13000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ + }, { - "OrderID": 10517, + "OrderID": 11021, "EmployeeID": 3, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 3, - "Freight": 32.07, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 19000, - "ShipCountry": "UK", + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 1, + "Freight": 297.18, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 11, + "Discount": 0.25 + }, + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 4, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 63, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 44, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, "Discount": 0 } ] @@ -12440,347 +9306,299 @@ ] }, { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", + "CustomerID": "MAGAA", + "Company": "Magazzini Alimentari Riuniti", + "ContactName": "Giovanni Rovelli", + "ContactTitle": "Marketing Manager", + "Address": "Via Ludovico il Moro 22", + "City": "Bergamo", + "PostalCode": 24100, + "Country": "Italy", + "Phone": "035-640230", + "Fax": "035-640231", "Orders": [ { - "OrderID": 10518, - "EmployeeID": 4, - "OrderDate": "1997-04-25T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-05-05T00:00:00", - "ShipVia": 2, - "Freight": 218.15, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10275, + "EmployeeID": 1, + "OrderDate": "1996-08-07T00:00:00", + "RequiredDate": "1996-09-04T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", + "ShipVia": 1, + "Freight": 26.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 6, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10300, + "EmployeeID": 2, + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 17.68, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 9, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10519, - "EmployeeID": 6, - "OrderDate": "1997-04-28T00:00:00", - "RequiredDate": "1997-05-26T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 91.76, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10404, + "EmployeeID": 2, + "OrderDate": "1997-01-03T00:00:00", + "RequiredDate": "1997-01-31T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", + "ShipVia": 1, + "Freight": 155.97, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 42, + "UnitPrice": 11.2, "Quantity": 40, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10520, - "EmployeeID": 7, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 1, - "Freight": 13.37, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10467, + "EmployeeID": 8, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 8, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 5, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10521, + "OrderID": 10635, "EmployeeID": 8, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 17.22, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-08-18T00:00:00", + "RequiredDate": "1997-09-15T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 47.46, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10522, - "EmployeeID": 4, - "OrderDate": "1997-04-30T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-06T00:00:00", - "ShipVia": 1, - "Freight": 45.33, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10754, + "EmployeeID": 6, + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 3, + "Freight": 2.38, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.2 - }, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10784, + "EmployeeID": 4, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 70.09, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 24, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 10000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10523, + "OrderID": 10818, "EmployeeID": 7, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 2, - "Freight": 77.63, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 16000, - "ShipCountry": "UK", + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", + "ShipVia": 3, + "Freight": 65.48, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0.1 + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 37000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10524, - "EmployeeID": 1, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", + "OrderID": 10939, + "EmployeeID": 2, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 2, - "Freight": 244.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 12000, - "ShipCountry": "Sweden", + "Freight": 76.33, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 10, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 60, - "Discount": 0 - }, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10950, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-13T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 2.5, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 5, "Discount": 0 } ] @@ -12788,1370 +9606,1092 @@ ] }, { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", + "CustomerID": "TORTU", + "Company": "Tortuga Restaurante", + "ContactName": "Miguel Angel Paolino", "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", + "Address": "Avda. Azteca 123", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 555-2933", + "Fax": "(5) 555-2934", "Orders": [ { - "OrderID": 10525, - "EmployeeID": 1, - "OrderDate": "1997-05-02T00:00:00", - "RequiredDate": "1997-05-30T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 11.06, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10276, + "EmployeeID": 8, + "OrderDate": "1996-08-08T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-14T00:00:00", + "ShipVia": 3, + "Freight": 13.84, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10526, - "EmployeeID": 4, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-15T00:00:00", - "ShipVia": 2, - "Freight": 58.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10293, + "EmployeeID": 1, + "OrderDate": "1996-08-29T00:00:00", + "RequiredDate": "1996-09-26T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", + "ShipVia": 3, + "Freight": 21.18, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 24, + "UnitPrice": 3.6, "Quantity": 10, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10527, - "EmployeeID": 7, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", - "ShipVia": 1, - "Freight": 41.9, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.1 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10528, - "EmployeeID": 6, - "OrderDate": "1997-05-06T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", + "OrderID": 10304, + "EmployeeID": 1, + "OrderDate": "1996-09-12T00:00:00", + "RequiredDate": "1996-10-10T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", "ShipVia": 2, - "Freight": 3.35, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 63.79, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 3, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 9, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 11000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10529, - "EmployeeID": 5, - "OrderDate": "1997-05-07T00:00:00", - "RequiredDate": "1997-06-04T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", - "ShipVia": 2, - "Freight": 66.69, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 26000, - "ShipCountry": "Belgium", + "OrderID": 10319, + "EmployeeID": 7, + "OrderDate": "1996-10-02T00:00:00", + "RequiredDate": "1996-10-30T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 3, + "Freight": 64.5, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 14, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10530, - "EmployeeID": 3, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", + "OrderID": 10518, + "EmployeeID": 4, + "OrderDate": "1997-04-25T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-05-05T00:00:00", "ShipVia": 2, - "Freight": 339.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 218.15, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 25, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 10576, + "EmployeeID": 3, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", + "ShipVia": 3, + "Freight": 18.56, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 20, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10531, - "EmployeeID": 7, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", - "ShipVia": 1, - "Freight": 8.12, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10676, + "EmployeeID": 2, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-29T00:00:00", + "ShipVia": 2, + "Freight": 2.01, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 2, "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10532, - "EmployeeID": 7, - "OrderDate": "1997-05-09T00:00:00", - "RequiredDate": "1997-06-06T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", + "OrderID": 10842, + "EmployeeID": 1, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 3, - "Freight": 74.46, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 23000, - "ShipCountry": "UK", + "Freight": 54.42, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 11, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 24, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 5, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 21000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10533, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-22T00:00:00", - "ShipVia": 1, - "Freight": 188.04, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 45000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 73, + "ProductID": 70, "UnitPrice": 15, - "Quantity": 24, - "Discount": 0.06 + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10534, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-14T00:00:00", + "OrderID": 10915, + "EmployeeID": 2, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", "ShipVia": 2, - "Freight": 27.94, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 3.51, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 17, + "UnitPrice": 39, "Quantity": 10, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 54, "UnitPrice": 7.45, "Quantity": 10, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10535, - "EmployeeID": 4, - "OrderDate": "1997-05-13T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-21T00:00:00", - "ShipVia": 1, - "Freight": 15.64, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", + "OrderID": 11069, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 15.67, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", "ShipCity": "México D.F.", - "ShipPostalCode": 5023, + "ShipPostalCode": 5033, "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 } ] } - ], - "Fax": "(5) 555-3932" + ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, + "CustomerID": "MORGK", + "Company": "Morgenstern Gesundkost", + "ContactName": "Alexander Feuer", + "ContactTitle": "Marketing Assistant", + "Address": "Heerstr. 22", + "City": "Leipzig", + "PostalCode": 4179, "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "Phone": "0342-023176", + "Fax": "0342-023177", "Orders": [ { - "OrderID": 10536, - "EmployeeID": 3, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-06-11T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 2, - "Freight": 58.88, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "OrderID": 10277, + "EmployeeID": 2, + "OrderDate": "1996-08-09T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-08-13T00:00:00", + "ShipVia": 3, + "Freight": 125.77, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 20, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 12, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, - "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10537, - "EmployeeID": 1, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", + "OrderID": 10575, + "EmployeeID": 5, + "OrderDate": "1997-06-20T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 1, - "Freight": 78.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 127.34, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 6, "Discount": 0 }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 20, - "Discount": 0 - }, { "ProductID": 72, "UnitPrice": 34.8, - "Quantity": 21, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 9, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 44000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10538, - "EmployeeID": 9, - "OrderDate": "1997-05-15T00:00:00", - "RequiredDate": "1997-06-12T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", + "OrderID": 10699, + "EmployeeID": 3, + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", "ShipVia": 3, - "Freight": 4.87, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 27000, - "ShipCountry": "UK", + "Freight": 0.58, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 1, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 12, "Discount": 0 } ] }, { - "OrderID": 10539, - "EmployeeID": 6, - "OrderDate": "1997-05-16T00:00:00", - "RequiredDate": "1997-06-13T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 3, - "Freight": 12.36, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 39000, - "ShipCountry": "UK", + "OrderID": 10779, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 2, + "Freight": 58.13, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 8, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10945, + "EmployeeID": 4, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-04-09T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 10.22, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 6, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 } ] } - ], - "Fax": "(171) 555-1212" + ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10540, - "EmployeeID": 3, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 3, - "Freight": 1007.64, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 14000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", + "Orders": [ + { + "OrderID": 10278, + "EmployeeID": 8, + "OrderDate": "1996-08-12T00:00:00", + "RequiredDate": "1996-09-09T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 92.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 35, + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10541, + "OrderID": 10280, "EmployeeID": 2, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-05-29T00:00:00", + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-09-11T00:00:00", + "ShippedDate": "1996-09-12T00:00:00", "ShipVia": 1, - "Freight": 68.65, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 8.98, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.1 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 4, - "Discount": 0.1 + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 36, - "Discount": 0.1 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10542, - "EmployeeID": 1, - "OrderDate": "1997-05-20T00:00:00", - "RequiredDate": "1997-06-17T00:00:00", - "ShippedDate": "1997-05-26T00:00:00", + "OrderID": 10384, + "EmployeeID": 3, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", "ShipVia": 3, - "Freight": 10.95, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 168.64, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 24, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10543, - "EmployeeID": 8, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 48.17, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10444, + "EmployeeID": 3, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-21T00:00:00", + "ShipVia": 3, + "Freight": 3.5, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 22000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10544, - "EmployeeID": 4, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 24.91, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10524, + "EmployeeID": 1, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", + "ShipVia": 2, + "Freight": 244.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 12000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 7, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 7, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10545, - "EmployeeID": 8, - "OrderDate": "1997-05-22T00:00:00", - "RequiredDate": "1997-06-19T00:00:00", - "ShippedDate": "1997-06-26T00:00:00", + "OrderID": 10572, + "EmployeeID": 3, + "OrderDate": "1997-06-18T00:00:00", + "RequiredDate": "1997-07-16T00:00:00", + "ShippedDate": "1997-06-25T00:00:00", "ShipVia": 2, - "Freight": 11.92, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, - "ShipCountry": "USA", + "Freight": 116.43, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 40000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 32, + "UnitPrice": 32, "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10546, + "OrderID": 10626, "EmployeeID": 1, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-05-27T00:00:00", - "ShipVia": 3, - "Freight": 194.72, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-08T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 2, + "Freight": 138.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 34000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 10, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 27000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10547, - "EmployeeID": 3, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", - "ShipVia": 2, - "Freight": 178.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10654, + "EmployeeID": 5, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 1, + "Freight": 55.26, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 12000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 60, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10548, - "EmployeeID": 3, - "OrderDate": "1997-05-26T00:00:00", - "RequiredDate": "1997-06-23T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", + "OrderID": 10672, + "EmployeeID": 9, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", "ShipVia": 2, - "Freight": 1.43, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 95.75, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 50000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10549, - "EmployeeID": 5, - "OrderDate": "1997-05-27T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 171.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10689, + "EmployeeID": 1, + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-29T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", + "ShipVia": 2, + "Freight": 13.42, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 16000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 55, - "Discount": 0.16 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 100, - "Discount": 0.16 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 48, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10550, - "EmployeeID": 7, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-06-25T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", + "OrderID": 10733, + "EmployeeID": 1, + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-10T00:00:00", "ShipVia": 3, - "Freight": 4.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 110.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 34000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 16, + "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0.1 - }, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10778, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", + "ShipVia": 1, + "Freight": 6.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 39000, + "ShipCountry": "Sweden", + "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 10, - "Discount": 0.1 + "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10551, - "EmployeeID": 4, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", + "OrderID": 10837, + "EmployeeID": 9, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 3, - "Freight": 72.95, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 13.32, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 17000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, + "ProductID": 47, + "UnitPrice": 9.5, "Quantity": 40, - "Discount": 0 + "Discount": 0.25 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10552, - "EmployeeID": 2, - "OrderDate": "1997-05-29T00:00:00", - "RequiredDate": "1997-06-26T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 1, - "Freight": 83.22, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10857, + "EmployeeID": 8, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 2, + "Freight": 188.85, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 18, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.25 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10553, - "EmployeeID": 2, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-03T00:00:00", + "OrderID": 10866, + "EmployeeID": 5, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-03T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 109.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 37000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 6, + "Discount": 0.25 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 40, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10875, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", "ShipVia": 2, - "Freight": 149.49, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 32.37, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 18000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 14, - "Discount": 0 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0.1 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 24, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10924, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 2, + "Freight": 151.52, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 35000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 30, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 35, - "UnitPrice": 18, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 6, "Discount": 0 } @@ -14160,169 +10700,261 @@ ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, + "CustomerID": "LEHMS", + "Company": "Lehmanns Marktstand", + "ContactName": "Renate Messner", + "ContactTitle": "Sales Representative", + "Address": "Magazinweg 7", + "City": "Frankfurt a.M.", + "PostalCode": 60528, "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", + "Phone": "069-0245984", + "Fax": "069-0245874", "Orders": [ { - "OrderID": 10554, + "OrderID": 10279, + "EmployeeID": 8, + "OrderDate": "1996-08-13T00:00:00", + "RequiredDate": "1996-09-10T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 25.83, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10284, "EmployeeID": 4, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 3, - "Freight": 120.97, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, + "OrderDate": "1996-08-19T00:00:00", + "RequiredDate": "1996-09-16T00:00:00", + "ShippedDate": "1996-08-27T00:00:00", + "ShipVia": 1, + "Freight": 76.56, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 60, + "UnitPrice": 27.2, "Quantity": 20, - "Discount": 0.06 + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, + "ProductID": 67, + "UnitPrice": 11.2, + "Quantity": 5, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10343, + "EmployeeID": 4, + "OrderDate": "1996-10-31T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-11-06T00:00:00", + "ShipVia": 1, + "Freight": 110.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 4, "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10555, - "EmployeeID": 6, - "OrderDate": "1997-06-02T00:00:00", - "RequiredDate": "1997-06-30T00:00:00", - "ShippedDate": "1997-06-04T00:00:00", - "ShipVia": 3, - "Freight": 252.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10497, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", + "ShipVia": 1, + "Freight": 36.21, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10522, + "EmployeeID": 4, + "OrderDate": "1997-04-30T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-06T00:00:00", + "ShipVia": 1, + "Freight": 45.33, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0.2 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 18, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, "Discount": 0.2 + } + ] + }, + { + "OrderID": 10534, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-14T00:00:00", + "ShipVia": 2, + "Freight": 27.94, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 40, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10556, - "EmployeeID": 2, - "OrderDate": "1997-06-03T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 9.8, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10536, + "EmployeeID": 3, + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-06-11T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 2, + "Freight": 58.88, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 15, + "Discount": 0.25 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { "OrderID": 10557, "EmployeeID": 9, @@ -14350,418 +10982,349 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10558, - "EmployeeID": 1, - "OrderDate": "1997-06-04T00:00:00", - "RequiredDate": "1997-07-02T00:00:00", - "ShippedDate": "1997-06-10T00:00:00", - "ShipVia": 2, - "Freight": 72.97, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 35000, - "ShipCountry": "UK", + "OrderID": 10592, + "EmployeeID": 3, + "OrderDate": "1997-07-08T00:00:00", + "RequiredDate": "1997-08-05T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 32.1, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 15, + "UnitPrice": 15.5, "Quantity": 25, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 5, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10772, + "EmployeeID": 3, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 91.28, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10862, + "EmployeeID": 8, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 53.23, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 18, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 3, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10559, - "EmployeeID": 6, - "OrderDate": "1997-06-05T00:00:00", - "RequiredDate": "1997-07-03T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 8.05, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10891, + "EmployeeID": 7, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 2, + "Freight": 20.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, "Discount": 0.06 - }, + } + ] + }, + { + "OrderID": 10934, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 3, + "Freight": 32.01, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10560, - "EmployeeID": 8, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", + "OrderID": 11070, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-02T00:00:00", "ShipVia": 1, - "Freight": 36.65, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, + "Freight": 136, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 2, + "UnitPrice": 19, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10561, - "EmployeeID": 2, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", - "ShipVia": 2, - "Freight": 242.21, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 23000, - "ShipCountry": "Sweden", + "CustomerID": "ROMEY", + "Company": "Romero y tomillo", + "ContactName": "Alejandra Camino", + "ContactTitle": "Accounting Manager", + "Address": "Gran Vía, 1", + "City": "Madrid", + "PostalCode": 28001, + "Country": "Spain", + "Phone": "(91) 745 6200", + "Fax": "(91) 745 6210", + "Orders": [ + { + "OrderID": 10281, + "EmployeeID": 4, + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-08-28T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 2.94, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 50, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 6, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10562, - "EmployeeID": 1, - "OrderDate": "1997-06-09T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-12T00:00:00", - "ShipVia": 1, - "Freight": 22.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 20, - "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10563, - "EmployeeID": 2, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-06-24T00:00:00", - "ShipVia": 2, - "Freight": 60.43, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10282, + "EmployeeID": 4, + "OrderDate": "1996-08-15T00:00:00", + "RequiredDate": "1996-09-12T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 70, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10564, - "EmployeeID": 4, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-08T00:00:00", - "ShippedDate": "1997-06-16T00:00:00", + "OrderID": 10306, + "EmployeeID": 1, + "OrderDate": "1996-09-16T00:00:00", + "RequiredDate": "1996-10-14T00:00:00", + "ShippedDate": "1996-09-23T00:00:00", "ShipVia": 3, - "Freight": 13.75, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 7.56, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 38000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10565, - "EmployeeID": 8, - "OrderDate": "1997-06-11T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", + "OrderID": 10917, + "EmployeeID": 4, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", "ShipVia": 2, - "Freight": 7.15, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 21000, - "ShipCountry": "Canada", + "Freight": 8.29, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 1, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10566, - "EmployeeID": 9, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", + "OrderID": 11013, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 1, - "Freight": 88.4, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 32.99, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 18, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 2, "Discount": 0 } ] @@ -14769,1433 +11332,1162 @@ ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "LILAS", + "Company": "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", "Orders": [ { - "OrderID": 10567, - "EmployeeID": 1, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-17T00:00:00", - "ShipVia": 1, - "Freight": 33.97, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10283, + "EmployeeID": 3, + "OrderDate": "1996-08-16T00:00:00", + "RequiredDate": "1996-09-13T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", + "ShipVia": 3, + "Freight": 84.81, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 60, - "Discount": 0.2 + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ - { - "OrderID": 10568, - "EmployeeID": 3, - "OrderDate": "1997-06-13T00:00:00", - "RequiredDate": "1997-07-11T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 3, - "Freight": 6.54, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", - "OrderDetails": [ + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 35, + "Discount": 0 + }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 5, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10569, - "EmployeeID": 5, - "OrderDate": "1997-06-16T00:00:00", - "RequiredDate": "1997-07-14T00:00:00", - "ShippedDate": "1997-07-11T00:00:00", + "OrderID": 10296, + "EmployeeID": 6, + "OrderDate": "1996-09-03T00:00:00", + "RequiredDate": "1996-10-01T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 1, - "Freight": 58.98, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 0.12, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 16, + "UnitPrice": 13.9, "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 22000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10570, + "OrderID": 10330, "EmployeeID": 3, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-19T00:00:00", - "ShipVia": 3, - "Freight": 188.99, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", + "ShipVia": 1, + "Freight": 12.75, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10571, - "EmployeeID": 8, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", + "OrderID": 10357, + "EmployeeID": 1, + "OrderDate": "1996-11-19T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", "ShipVia": 3, - "Freight": 26.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 34.88, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 11, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10572, + "OrderID": 10381, "EmployeeID": 3, - "OrderDate": "1997-06-18T00:00:00", - "RequiredDate": "1997-07-16T00:00:00", - "ShippedDate": "1997-06-25T00:00:00", - "ShipVia": 2, - "Freight": 116.43, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 40000, - "ShipCountry": "Sweden", + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 7.99, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, - "Discount": 0.1 - }, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 14, + "Discount": 0 + } + ] + }, + { + "OrderID": 10461, + "EmployeeID": 1, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-05T00:00:00", + "ShipVia": 3, + "Freight": 148.61, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 28, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10573, - "EmployeeID": 7, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-20T00:00:00", - "ShipVia": 3, - "Freight": 84.84, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10499, + "EmployeeID": 4, + "OrderDate": "1997-04-08T00:00:00", + "RequiredDate": "1997-05-06T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 2, + "Freight": 102.02, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 40, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 49, + "UnitPrice": 20, "Quantity": 25, "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "TRAIH", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10574, - "EmployeeID": 4, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10543, + "EmployeeID": 8, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", "ShipVia": 2, - "Freight": 37.6, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", + "Freight": 48.17, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 2, - "Discount": 0 - }, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10780, + "EmployeeID": 2, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-25T00:00:00", + "ShipVia": 1, + "Freight": 42.13, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 6, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10575, + "OrderID": 10823, "EmployeeID": 5, - "OrderDate": "1997-06-20T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 1, - "Freight": 127.34, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 163.97, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 6, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10576, - "EmployeeID": 3, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10899, + "EmployeeID": 5, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", "ShipVia": 3, - "Freight": 18.56, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 1.21, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, - "Discount": 0 + "Quantity": 8, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10577, - "EmployeeID": 9, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10997, + "EmployeeID": 8, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 25.41, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", + "Freight": 73.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 46, + "UnitPrice": 12, "Quantity": 20, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10578, - "EmployeeID": 4, - "OrderDate": "1997-06-24T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", - "ShipVia": 3, - "Freight": 29.6, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 31000, - "ShipCountry": "UK", + "OrderID": 11065, + "EmployeeID": 8, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-29T00:00:00", + "ShipVia": 1, + "Freight": 12.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 6, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, + "Discount": 0.25 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10579, + "OrderID": 11071, "EmployeeID": 1, - "OrderDate": "1997-06-25T00:00:00", - "RequiredDate": "1997-07-23T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 2, - "Freight": 13.73, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-10T00:00:00", + "ShipVia": 1, + "Freight": 0.93, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 10, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 21, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0.06 } ] } - ], - "Fax": "(415) 555-5938" + ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", + "CustomerID": "RICAR", + "Company": "Ricardo Adocicados", + "ContactName": "Janete Limeira", + "ContactTitle": "Sales Associate", + "Address": "Av. Copacabana, 267", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-3412", + "Fax": "(21) 555-3413", "Orders": [ { - "OrderID": 10580, - "EmployeeID": 4, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-01T00:00:00", + "OrderID": 10287, + "EmployeeID": 8, + "OrderDate": "1996-08-22T00:00:00", + "RequiredDate": "1996-09-19T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", "ShipVia": 3, - "Freight": 75.89, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 12.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10581, - "EmployeeID": 3, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-02T00:00:00", - "ShipVia": 1, - "Freight": 3.01, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", + "OrderID": 10299, + "EmployeeID": 4, + "OrderDate": "1996-09-06T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-13T00:00:00", + "ShipVia": 2, + "Freight": 29.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10582, - "EmployeeID": 3, - "OrderDate": "1997-06-27T00:00:00", - "RequiredDate": "1997-07-25T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 10447, + "EmployeeID": 4, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-03-07T00:00:00", "ShipVia": 2, - "Freight": 27.71, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "Freight": 68.66, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 4, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 14, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10583, - "EmployeeID": 2, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", + "OrderID": 10481, + "EmployeeID": 8, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", "ShipVia": 2, - "Freight": 7.28, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 64.33, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 24, "Discount": 0 }, { "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.16 + "UnitPrice": 27.2, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10563, + "EmployeeID": 2, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-06-24T00:00:00", + "ShipVia": 2, + "Freight": 60.43, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 70, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10584, + "OrderID": 10622, "EmployeeID": 4, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 1, - "Freight": 59.14, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderDate": "1997-08-06T00:00:00", + "RequiredDate": "1997-09-03T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 3, + "Freight": 50.97, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 31, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 68, "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.06 + "Quantity": 18, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10585, - "EmployeeID": 7, - "OrderDate": "1997-07-01T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 1, - "Freight": 13.41, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, + "OrderID": 10648, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-09T00:00:00", + "ShipVia": 2, + "Freight": 14.25, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 22, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10586, - "EmployeeID": 9, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 1, - "Freight": 0.48, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10813, + "EmployeeID": 1, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 1, + "Freight": 47.38, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 12, + "Discount": 0.2 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10587, - "EmployeeID": 1, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", + "OrderID": 10851, + "EmployeeID": 5, + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-23T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", "ShipVia": 1, - "Freight": 62.52, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 160.55, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", "ShipCity": "Sao Paulo", "ShipRegion": "RJ", "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, + "Discount": 0.06 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10588, - "EmployeeID": 2, - "OrderDate": "1997-07-03T00:00:00", - "RequiredDate": "1997-07-31T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 3, - "Freight": 194.67, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10877, + "EmployeeID": 1, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 1, + "Freight": 38.06, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 100, - "Discount": 0.2 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10589, - "EmployeeID": 8, - "OrderDate": "1997-07-04T00:00:00", - "RequiredDate": "1997-08-01T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 11059, + "EmployeeID": 2, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-06-10T00:00:00", + "ShippedDate": "1998-06-15T00:00:00", "ShipVia": 2, - "Freight": 4.42, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 85.8, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 30, "Discount": 0 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 43000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10590, - "EmployeeID": 4, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 3, - "Freight": 44.77, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 40000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0 } ] } ] }, { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10591, - "EmployeeID": 1, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-07-21T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", + "CustomerID": "REGGC", + "Company": "Reggiani Caseifici", + "ContactName": "Maurizio Moroni", + "ContactTitle": "Sales Associate", + "Address": "Strada Provinciale 124", + "City": "Reggio Emilia", + "PostalCode": 42100, + "Country": "Italy", + "Phone": "0522-556721", + "Fax": "0522-556722", + "Orders": [ + { + "OrderID": 10288, + "EmployeeID": 4, + "OrderDate": "1996-08-23T00:00:00", + "RequiredDate": "1996-09-20T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", "ShipVia": 1, - "Freight": 55.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 7.45, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 54, + "UnitPrice": 5.9, "Quantity": 10, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 50, - "Discount": 0 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10592, - "EmployeeID": 3, - "OrderDate": "1997-07-08T00:00:00", - "RequiredDate": "1997-08-05T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", + "OrderID": 10428, + "EmployeeID": 7, + "OrderDate": "1997-01-28T00:00:00", + "RequiredDate": "1997-02-25T00:00:00", + "ShippedDate": "1997-02-04T00:00:00", "ShipVia": 1, - "Freight": 32.1, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 11.09, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 25, - "Discount": 0.06 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0 } ] }, { - "OrderID": 10593, - "EmployeeID": 7, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-08-13T00:00:00", - "ShipVia": 2, - "Freight": 174.2, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10443, + "EmployeeID": 8, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 1, + "Freight": 13.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10594, - "EmployeeID": 3, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", - "ShipVia": 2, - "Freight": 5.24, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10562, + "EmployeeID": 1, + "OrderDate": "1997-06-09T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-12T00:00:00", + "ShipVia": 1, + "Freight": 22.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 24, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10595, - "EmployeeID": 2, - "OrderDate": "1997-07-10T00:00:00", - "RequiredDate": "1997-08-07T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 10586, + "EmployeeID": 9, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", "ShipVia": 1, - "Freight": 96.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 0.48, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 120, - "Discount": 0.25 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 65, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10596, - "EmployeeID": 8, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", - "ShipVia": 1, - "Freight": 16.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10655, + "EmployeeID": 1, + "OrderDate": "1997-09-03T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 4.41, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, "Discount": 0.2 + } + ] + }, + { + "OrderID": 10727, + "EmployeeID": 2, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-12-01T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 89.9, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 24, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10597, - "EmployeeID": 7, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", - "ShipVia": 3, - "Freight": 35.12, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10812, + "EmployeeID": 5, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", + "ShipVia": 1, + "Freight": 59.78, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 16, + "Discount": 0.1 }, { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, "Quantity": 20, "Discount": 0 + } + ] + }, + { + "OrderID": 10908, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 32.96, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 14, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10598, - "EmployeeID": 1, - "OrderDate": "1997-07-14T00:00:00", - "RequiredDate": "1997-08-11T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", + "OrderID": 10942, + "EmployeeID": 9, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 3, - "Freight": 44.42, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 17.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 50, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 28, + "Discount": 0 + } + ] + }, + { + "OrderID": 11010, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 28.71, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, "Discount": 0 } ] - } + }, + { + "OrderID": 11062, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-06-28T00:00:00", + "ShipVia": 2, + "Freight": 29.93, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 12, + "Discount": 0.2 + } + ] + } ] }, { @@ -16205,1875 +12497,1438 @@ "ContactTitle": "Sales Representative", "Address": "Fauntleroy Circus", "City": "London", - "PostalCode": 20000, + "PostalCode": 22000, "Country": "UK", "Phone": "(171) 555-1212", "Orders": [ { - "OrderID": 10599, - "EmployeeID": 6, - "OrderDate": "1997-07-15T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", + "OrderID": 10289, + "EmployeeID": 7, + "OrderDate": "1996-08-26T00:00:00", + "RequiredDate": "1996-09-23T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", "ShipVia": 3, - "Freight": 29.98, + "Freight": 22.77, "ShipName": "Best Beverages", "ShipAddress": "Fauntleroy Circus", "ShipCity": "London", - "ShipPostalCode": 14000, + "ShipPostalCode": 22000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10600, - "EmployeeID": 4, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-13T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", - "ShipVia": 1, - "Freight": 45.13, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "OrderID": 10471, + "EmployeeID": 2, + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 3, + "Freight": 45.59, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 25000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 4, + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10601, - "EmployeeID": 7, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", - "ShipVia": 1, - "Freight": 58.3, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10484, + "EmployeeID": 3, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-01T00:00:00", + "ShipVia": 3, + "Freight": 6.88, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 60, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10602, - "EmployeeID": 8, - "OrderDate": "1997-07-17T00:00:00", - "RequiredDate": "1997-08-14T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", - "ShipVia": 2, - "Freight": 2.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10603, - "EmployeeID": 8, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", - "ShipVia": 2, - "Freight": 48.77, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10538, + "EmployeeID": 9, + "OrderDate": "1997-05-15T00:00:00", + "RequiredDate": "1997-06-12T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 3, + "Freight": 4.87, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 27000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 48, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 1, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10604, - "EmployeeID": 1, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", - "ShipVia": 1, - "Freight": 7.46, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10578, + "EmployeeID": 4, + "OrderDate": "1997-06-24T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 3, + "Freight": 29.6, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 31000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 6, + "Discount": 0 + } + ] + }, + { + "OrderID": 10599, + "EmployeeID": 6, + "OrderDate": "1997-07-15T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", + "ShipVia": 3, + "Freight": 29.98, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 14000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 10, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 32000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10605, - "EmployeeID": 1, - "OrderDate": "1997-07-21T00:00:00", - "RequiredDate": "1997-08-18T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", + "OrderID": 10943, + "EmployeeID": 4, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 379.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", + "Freight": 2.17, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 21, + "Discount": 0 }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10947, + "EmployeeID": 3, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", + "OrderDetails": [ { "ProductID": 59, "UnitPrice": 55, - "Quantity": 20, - "Discount": 0.06 - }, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11023, + "EmployeeID": 1, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 123.83, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 36000, + "ShipCountry": "UK", + "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0 } ] } - ] + ], + "Fax": "(171) 555-1212" }, { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", + "CustomerID": "COMMI", + "Company": "Comércio Mineiro", + "ContactName": "Pedro Afonso", + "ContactTitle": "Sales Associate", + "Address": "Av. dos Lusíadas, 23", "City": "Sao Paulo", "Region": "SP", - "PostalCode": 5634, + "PostalCode": 5432, "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", + "Phone": "(11) 555-7647", "Orders": [ { - "OrderID": 10606, - "EmployeeID": 4, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-31T00:00:00", - "ShipVia": 3, - "Freight": 79.4, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", + "OrderID": 10290, + "EmployeeID": 8, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", + "ShipVia": 1, + "Freight": 79.7, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", "ShipCity": "Sao Paulo", "ShipRegion": "SP", - "ShipPostalCode": 5634, + "ShipPostalCode": 5432, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 5, + "UnitPrice": 17, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10607, - "EmployeeID": 5, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", - "ShipVia": 1, - "Freight": 200.24, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 100, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10466, + "EmployeeID": 4, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-13T00:00:00", + "ShipVia": 1, + "Freight": 11.93, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 42, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 12, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10608, + "OrderID": 10494, "EmployeeID": 4, - "OrderDate": "1997-07-23T00:00:00", - "RequiredDate": "1997-08-20T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", "ShipVia": 2, - "Freight": 27.79, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 65.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10609, - "EmployeeID": 7, - "OrderDate": "1997-07-24T00:00:00", - "RequiredDate": "1997-08-21T00:00:00", - "ShippedDate": "1997-07-30T00:00:00", + "OrderID": 10969, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", "ShipVia": 2, - "Freight": 1.85, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 0.21, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 3, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11042, + "EmployeeID": 2, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 29.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, "Discount": 0 } ] } - ] + ], + "Fax": "(11) 555-7647" }, { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", + "CustomerID": "TRADH", + "Company": "Tradição Hipermercados", + "ContactName": "Anabela Domingues", + "ContactTitle": "Sales Representative", + "Address": "Av. Inês de Castro, 414", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5634, + "Country": "Brazil", + "Phone": "(11) 555-2167", + "Fax": "(11) 555-2168", "Orders": [ { - "OrderID": 10610, - "EmployeeID": 8, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", - "ShipVia": 1, - "Freight": 26.78, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10292, + "EmployeeID": 1, + "OrderDate": "1996-08-28T00:00:00", + "RequiredDate": "1996-09-25T00:00:00", + "ShippedDate": "1996-09-02T00:00:00", + "ShipVia": 2, + "Freight": 1.35, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10611, - "EmployeeID": 6, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderID": 10496, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", "ShipVia": 2, - "Freight": 80.65, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 46.77, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10606, + "EmployeeID": 4, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-31T00:00:00", + "ShipVia": 3, + "Freight": 79.4, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10612, - "EmployeeID": 1, - "OrderDate": "1997-07-28T00:00:00", - "RequiredDate": "1997-08-25T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderID": 10830, + "EmployeeID": 4, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", "ShipVia": 2, - "Freight": 544.08, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 81.83, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 55, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 18, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 28, "Discount": 0 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 40, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 80, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 24, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10613, - "EmployeeID": 4, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 8.11, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10834, + "EmployeeID": 1, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 3, + "Freight": 29.78, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 8, + "Discount": 0.06 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10839, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-22T00:00:00", + "ShipVia": 3, + "Freight": 35.43, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "PostalCode": 48637, + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", "Orders": [ { - "OrderID": 10614, - "EmployeeID": 8, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 3, - "Freight": 1.93, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10298, + "EmployeeID": 6, + "OrderDate": "1996-09-05T00:00:00", + "RequiredDate": "1996-10-03T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", + "ShipVia": 2, + "Freight": 168.22, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 14, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 8, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 5, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10615, - "EmployeeID": 2, - "OrderDate": "1997-07-30T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", - "ShipVia": 3, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10309, + "EmployeeID": 3, + "OrderDate": "1996-09-19T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 1, + "Freight": 47.3, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ - { - "OrderID": 10616, - "EmployeeID": 1, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-05T00:00:00", - "ShipVia": 2, - "Freight": 116.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, + "Discount": 0 }, { "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "UnitPrice": 17.2, + "Quantity": 3, + "Discount": 0 } ] }, { - "OrderID": 10617, - "EmployeeID": 4, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-04T00:00:00", + "OrderID": 10335, + "EmployeeID": 7, + "OrderDate": "1996-10-22T00:00:00", + "RequiredDate": "1996-11-19T00:00:00", + "ShippedDate": "1996-10-24T00:00:00", "ShipVia": 2, - "Freight": 18.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 42.11, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 28000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10618, - "EmployeeID": 1, - "OrderDate": "1997-08-01T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", - "ShipVia": 1, - "Freight": 154.68, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 30000, - "ShipCountry": "Canada", - "OrderDetails": [ + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 7, + "Discount": 0.2 + }, { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 70, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 48, + "Discount": 0.2 } ] }, { - "OrderID": 10619, - "EmployeeID": 3, - "OrderDate": "1997-08-04T00:00:00", - "RequiredDate": "1997-09-01T00:00:00", - "ShippedDate": "1997-08-07T00:00:00", + "OrderID": 10373, + "EmployeeID": 4, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-11T00:00:00", "ShipVia": 3, - "Freight": 91.05, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 21000, - "ShipCountry": "Canada", + "Freight": 124.12, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 42, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 80, + "Discount": 0.2 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 49000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ + }, { - "OrderID": 10620, - "EmployeeID": 2, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", + "OrderID": 10380, + "EmployeeID": 8, + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", "ShipVia": 3, - "Freight": 0.94, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 31000, - "ShipCountry": "Canada", + "Freight": 35.03, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 21000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10621, - "EmployeeID": 4, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", - "ShipVia": 2, - "Freight": 23.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 50269, - "ShipPostalCode": 39000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 10, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 6, + "Discount": 0.1 }, { "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10622, - "EmployeeID": 4, - "OrderDate": "1997-08-06T00:00:00", - "RequiredDate": "1997-09-03T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", - "ShipVia": 3, - "Freight": 50.97, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10429, + "EmployeeID": 3, + "OrderDate": "1997-01-29T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 56.63, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, - "Discount": 0.2 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10623, - "EmployeeID": 8, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", + "OrderID": 10503, + "EmployeeID": 6, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", "ShipVia": 2, - "Freight": 97.18, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 16.74, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { "ProductID": 14, "UnitPrice": 23.25, - "Quantity": 21, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 3, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10624, - "EmployeeID": 4, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 2, - "Freight": 94.8, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "OrderID": 10516, + "EmployeeID": 2, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 62.78, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 6, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 80, + "Discount": 0.1 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10625, - "EmployeeID": 3, - "OrderDate": "1997-08-08T00:00:00", - "RequiredDate": "1997-09-05T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", + "OrderID": 10567, + "EmployeeID": 1, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-17T00:00:00", "ShipVia": 1, - "Freight": 43.9, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 33.97, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 5, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 19000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10626, - "EmployeeID": 1, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-08T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 2, - "Freight": 138.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 34000, - "ShipCountry": "Sweden", + "OrderID": 10646, + "EmployeeID": 9, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 142.33, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.25 }, { "ProductID": 71, "UnitPrice": 21.5, - "Quantity": 20, - "Discount": 0 + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10627, - "EmployeeID": 8, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10661, + "EmployeeID": 7, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", "ShipVia": 3, - "Freight": 107.46, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 17.55, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 49, + "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10628, - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 3, - "Freight": 30.36, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10687, + "EmployeeID": 9, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-30T00:00:00", + "ShipVia": 2, + "Freight": 296.43, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ - { - "OrderID": 10629, - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 3, - "Freight": 85.46, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", - "OrderDetails": [ + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 50, + "Discount": 0.25 + }, { "ProductID": 29, "UnitPrice": 123.79, - "Quantity": 20, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 9, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0.25 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10630, - "EmployeeID": 1, - "OrderDate": "1997-08-13T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 2, - "Freight": 32.35, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10701, + "EmployeeID": 6, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-10-27T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 3, + "Freight": 220.31, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.16 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0.16 }, { "ProductID": 76, "UnitPrice": 18, "Quantity": 35, - "Discount": 0 + "Discount": 0.16 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10631, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-15T00:00:00", + "OrderID": 10712, + "EmployeeID": 3, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", "ShipVia": 1, - "Freight": 0.87, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 89.93, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10632, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 1, - "Freight": 41.38, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10736, + "EmployeeID": 9, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 44.1, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10633, - "EmployeeID": 7, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-18T00:00:00", - "ShipVia": 3, - "Freight": 477.9, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10897, + "EmployeeID": 3, + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-25T00:00:00", + "ShipVia": 2, + "Freight": 603.54, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 80, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 13, - "Discount": 0.16 - }, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 36, + "Discount": 0 + } + ] + }, + { + "OrderID": 10912, + "EmployeeID": 2, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 580.91, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 80, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10634, - "EmployeeID": 4, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", - "ShipVia": 3, - "Freight": 487.38, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "OrderID": 10985, + "EmployeeID": 2, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 91.51, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 36, + "Discount": 0.1 }, { "ProductID": 18, "UnitPrice": 62.5, - "Quantity": 50, - "Discount": 0 + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 15, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 35, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11063, + "EmployeeID": 3, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 81.73, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 2, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "WANDK", + "Company": "Die Wandernde Kuh", + "ContactName": "Rita Müller", + "ContactTitle": "Sales Representative", + "Address": "Adenauerallee 900", + "City": "Stuttgart", + "PostalCode": 70563, + "Country": "Germany", + "Phone": "0711-020361", + "Fax": "0711-035428", "Orders": [ { - "OrderID": 10635, + "OrderID": 10301, "EmployeeID": 8, - "OrderDate": "1997-08-18T00:00:00", - "RequiredDate": "1997-09-15T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", - "ShipVia": 3, - "Freight": 47.46, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", + "ShipVia": 2, + "Freight": 45.08, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 40, + "UnitPrice": 14.7, "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 15, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10636, - "EmployeeID": 4, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 1.15, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10312, + "EmployeeID": 2, + "OrderDate": "1996-09-23T00:00:00", + "RequiredDate": "1996-10-21T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 40.26, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 6, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10637, - "EmployeeID": 6, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 201.29, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10348, + "EmployeeID": 4, + "OrderDate": "1996-11-07T00:00:00", + "RequiredDate": "1996-12-05T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 2, + "Freight": 0.78, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 50, - "UnitPrice": 16.25, + "ProductID": 23, + "UnitPrice": 7.2, "Quantity": 25, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10638, - "EmployeeID": 3, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", - "ShipVia": 1, - "Freight": 158.44, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10356, + "EmployeeID": 6, + "OrderDate": "1996-11-18T00:00:00", + "RequiredDate": "1996-12-16T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", + "ShipVia": 2, + "Freight": 36.71, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 60, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10639, + "OrderID": 10513, "EmployeeID": 7, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-08-27T00:00:00", - "ShipVia": 3, - "Freight": 38.64, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ - { - "OrderID": 10640, - "EmployeeID": 4, - "OrderDate": "1997-08-21T00:00:00", - "RequiredDate": "1997-09-18T00:00:00", - "ShippedDate": "1997-08-28T00:00:00", + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-06-03T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", "ShipVia": 1, - "Freight": 23.55, + "Freight": 105.65, "ShipName": "Die Wandernde Kuh", "ShipAddress": "Adenauerallee 900", "ShipCity": "Stuttgart", @@ -18081,996 +13936,833 @@ "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, "Quantity": 15, - "Discount": 0.25 + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10641, - "EmployeeID": 4, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 2, - "Freight": 179.61, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10632, + "EmployeeID": 8, + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 1, + "Freight": 41.38, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 19, - "Quantity": 50, - "Discount": 0 + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10642, - "EmployeeID": 7, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-09-05T00:00:00", - "ShipVia": 3, - "Freight": 41.89, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10640, + "EmployeeID": 4, + "OrderDate": "1997-08-21T00:00:00", + "RequiredDate": "1997-09-18T00:00:00", + "ShippedDate": "1997-08-28T00:00:00", + "ShipVia": 1, + "Freight": 23.55, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10643, - "EmployeeID": 6, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", - "ShipVia": 1, - "Freight": 29.46, - "ShipName": "Alfreds Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, + "OrderID": 10651, + "EmployeeID": 8, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 20.6, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0.25 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 2, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 20, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10644, - "EmployeeID": 3, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", + "OrderID": 10668, + "EmployeeID": 1, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", "ShipVia": 2, - "Freight": 0.14, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 47.22, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, "Quantity": 4, "Discount": 0.1 }, { - "ProductID": 43, - "UnitPrice": 46, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 15, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11046, + "EmployeeID": 8, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 71.64, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 12, + "UnitPrice": 38, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0.1 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 18, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", + "CustomerID": "GODOS", + "Company": "Godos Cocina Típica", + "ContactName": "José Pedro Freyre", + "ContactTitle": "Sales Manager", + "Address": "C/ Romero, 33", + "City": "Sevilla", + "PostalCode": 41101, + "Country": "Spain", + "Phone": "(95) 555 82 82", "Orders": [ { - "OrderID": 10645, - "EmployeeID": 4, - "OrderDate": "1997-08-26T00:00:00", - "RequiredDate": "1997-09-23T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", - "ShipVia": 1, - "Freight": 12.41, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10303, + "EmployeeID": 7, + "OrderDate": "1996-09-11T00:00:00", + "RequiredDate": "1996-10-09T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 107.83, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 10, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10646, - "EmployeeID": 9, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", + "OrderID": 10550, + "EmployeeID": 7, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-06-25T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", "ShipVia": 3, - "Freight": 142.33, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 4.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10647, + "OrderID": 10629, "EmployeeID": 4, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 2, - "Freight": 45.54, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 85.46, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10648, + "OrderID": 10872, "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-09T00:00:00", + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", "ShipVia": 2, - "Freight": 14.25, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 175.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, "Quantity": 15, - "Discount": 0.16 + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 28000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10649, + "OrderID": 10874, "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-09-25T00:00:00", - "ShippedDate": "1997-08-29T00:00:00", - "ShipVia": 3, - "Freight": 6.2, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 47000, - "ShipCountry": "Belgium", + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", + "ShipVia": 2, + "Freight": 19.58, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10888, + "EmployeeID": 1, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", + "ShipVia": 2, + "Freight": 51.87, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, "Quantity": 20, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10650, - "EmployeeID": 5, - "OrderDate": "1997-08-29T00:00:00", - "RequiredDate": "1997-09-26T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 3, - "Freight": 176.81, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10911, + "EmployeeID": 3, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", + "ShipVia": 1, + "Freight": 38.19, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10651, - "EmployeeID": 8, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 2, - "Freight": 20.6, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10948, + "EmployeeID": 3, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", + "ShipVia": 3, + "Freight": 23.39, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10652, - "EmployeeID": 4, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", - "ShipVia": 2, - "Freight": 7.14, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 11009, + "EmployeeID": 2, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 59.11, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 2, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 18, "Discount": 0.25 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10653, - "EmployeeID": 1, - "OrderDate": "1997-09-02T00:00:00", - "RequiredDate": "1997-09-30T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", + "OrderID": 11037, + "EmployeeID": 7, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", "ShipVia": 1, - "Freight": 93.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 3.2, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 4, + "Discount": 0 } ] } - ] + ], + "Fax": "(95) 555 82 82" }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 33000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "OLDWO", + "Company": "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", "Orders": [ { - "OrderID": 10654, - "EmployeeID": 5, - "OrderDate": "1997-09-02T00:00:00", - "RequiredDate": "1997-09-30T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 1, - "Freight": 55.26, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 12000, - "ShipCountry": "Sweden", + "OrderID": 10305, + "EmployeeID": 8, + "OrderDate": "1996-09-13T00:00:00", + "RequiredDate": "1996-10-11T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 3, + "Freight": 257.62, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 12, + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 25, "Discount": 0.1 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 25, "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10655, - "EmployeeID": 1, - "OrderDate": "1997-09-03T00:00:00", - "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 2, - "Freight": 4.41, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10656, - "EmployeeID": 6, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", - "ShipVia": 1, - "Freight": 57.15, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, + "OrderID": 10338, + "EmployeeID": 4, + "OrderDate": "1996-10-25T00:00:00", + "RequiredDate": "1996-11-22T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", + "ShipVia": 3, + "Freight": 84.21, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0.1 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10657, - "EmployeeID": 2, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", + "OrderID": 10441, + "EmployeeID": 3, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-24T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 352.69, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "Freight": 73.02, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, + "ProductID": 27, + "UnitPrice": 35.1, "Quantity": 50, "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, + } + ] + }, + { + "OrderID": 10594, + "EmployeeID": 3, + "OrderDate": "1997-07-09T00:00:00", + "RequiredDate": "1997-08-06T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 2, + "Freight": 5.24, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, "Quantity": 24, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 45, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10680, + "EmployeeID": 1, + "OrderDate": "1997-09-24T00:00:00", + "RequiredDate": "1997-10-22T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 1, + "Freight": 26.61, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 10, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, + "Discount": 0.25 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 45, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.25 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10658, - "EmployeeID": 4, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", - "ShipVia": 1, - "Freight": 364.15, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10706, + "EmployeeID": 8, + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-11-13T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 3, + "Freight": 135.63, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 55, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10808, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 45.53, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10659, - "EmployeeID": 7, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", - "ShipVia": 2, - "Freight": 105.81, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10855, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 170.97, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, + "Discount": 0 + }, { "ProductID": 31, "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0.06 + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 24, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10660, - "EmployeeID": 8, - "OrderDate": "1997-09-08T00:00:00", - "RequiredDate": "1997-10-06T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", - "ShipVia": 1, - "Freight": 111.29, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "OrderID": 10965, + "EmployeeID": 6, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", + "ShipVia": 3, + "Freight": 144.38, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10661, - "EmployeeID": 7, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", - "ShipVia": 3, - "Freight": 17.55, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 11034, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 40.32, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 49, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 6, + "Discount": 0 } ] } @@ -19090,13 +14782,13 @@ "Fax": "(503) 555-9646", "Orders": [ { - "OrderID": 10662, - "EmployeeID": 3, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", + "OrderID": 10307, + "EmployeeID": 2, + "OrderDate": "1996-09-17T00:00:00", + "RequiredDate": "1996-10-15T00:00:00", + "ShippedDate": "1996-09-25T00:00:00", "ShipVia": 2, - "Freight": 1.28, + "Freight": 0.56, "ShipName": "Lonesome Pine Restaurant", "ShipAddress": "89 Chiaroscuro Rd.", "ShipCity": "Portland", @@ -19105,132 +14797,50 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10663, - "EmployeeID": 2, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-09-24T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", - "ShipVia": 2, - "Freight": 113.15, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10664, - "EmployeeID": 1, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 3, - "Freight": 1.27, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10317, + "EmployeeID": 6, + "OrderDate": "1996-09-30T00:00:00", + "RequiredDate": "1996-10-28T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10665, - "EmployeeID": 1, - "OrderDate": "1997-09-11T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-17T00:00:00", - "ShipVia": 2, - "Freight": 26.31, + "OrderID": 10544, + "EmployeeID": 4, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 24.91, "ShipName": "Lonesome Pine Restaurant", "ShipAddress": "89 Chiaroscuro Rd.", "ShipCity": "Portland", @@ -19239,249 +14849,292 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 1, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 7, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10662, + "EmployeeID": 3, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 2, + "Freight": 1.28, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10666, - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", + "OrderID": 10665, + "EmployeeID": 1, + "OrderDate": "1997-09-11T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-17T00:00:00", "ShipVia": 2, - "Freight": 232.42, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 26.31, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10667, - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", + "OrderID": 10867, + "EmployeeID": 6, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", "ShipVia": 1, - "Freight": 78.09, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 1.93, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 45, - "Discount": 0.2 - }, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10883, + "EmployeeID": 8, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 3, + "Freight": 0.53, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 14, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10668, - "EmployeeID": 1, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", + "OrderID": 11018, + "EmployeeID": 4, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", "ShipVia": 2, - "Freight": 47.22, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 11.65, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", + "CustomerID": "ANATR", + "Company": "Ana Trujillo Emparedados y helados", + "ContactName": "Ana Trujillo", "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", + "Address": "Avda. de la Constitución 2222", + "City": "México D.F.", + "PostalCode": 5021, + "Country": "Mexico", + "Phone": "(5) 555-4729", + "Fax": "(5) 555-3745", "Orders": [ { - "OrderID": 10669, - "EmployeeID": 2, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", - "ShipVia": 1, - "Freight": 24.39, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - } + "OrderID": 10308, + "EmployeeID": 7, + "OrderDate": "1996-09-18T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-24T00:00:00", + "ShipVia": 3, + "Freight": 1.61, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 5, + "Discount": 0 + } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10670, - "EmployeeID": 4, - "OrderDate": "1997-09-16T00:00:00", - "RequiredDate": "1997-10-14T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", + "OrderID": 10625, + "EmployeeID": 3, + "OrderDate": "1997-08-08T00:00:00", + "RequiredDate": "1997-09-05T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", "ShipVia": 1, - "Freight": 203.48, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 43.9, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 32, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 60, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 25, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10759, + "EmployeeID": 3, + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 3, + "Freight": 11.99, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10926, + "EmployeeID": 4, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 39.92, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 25, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, "Discount": 0 } ] @@ -19489,1902 +15142,1343 @@ ] }, { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", + "CustomerID": "THEBI", + "Company": "The Big Cheese", + "ContactName": "Liz Nixon", "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", + "Address": "89 Jefferson Way Suite 2", + "City": "Portland", + "Region": "OR", + "PostalCode": 97201, + "Country": "USA", + "Phone": "(503) 555-3612", "Orders": [ { - "OrderID": 10671, - "EmployeeID": 1, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-09-24T00:00:00", - "ShipVia": 1, - "Freight": 30.34, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10310, + "EmployeeID": 8, + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-18T00:00:00", + "ShippedDate": "1996-09-27T00:00:00", + "ShipVia": 2, + "Freight": 17.52, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 16, - "UnitPrice": 17.45, + "UnitPrice": 13.9, "Quantity": 10, "Discount": 0 }, { "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, + "UnitPrice": 39.4, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10672, - "EmployeeID": 9, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", + "OrderID": 10708, + "EmployeeID": 6, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 95.75, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 50000, - "ShipCountry": "Sweden", + "Freight": 2.96, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10673, + "OrderID": 10805, "EmployeeID": 2, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 1, - "Freight": 22.76, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 237.34, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 42, + "ProductID": 34, "UnitPrice": 14, - "Quantity": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 35000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10674, - "EmployeeID": 4, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 2, - "Freight": 0.9, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60699, - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10992, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 4.27, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 5, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 2, "Discount": 0 } ] } ], - "Fax": "(198) 555-8888" + "Fax": "(503) 555-3612" }, { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", + "CustomerID": "DUMON", + "Company": "Du monde entier", + "ContactName": "Janine Labrune", + "ContactTitle": "Owner", + "Address": "67, rue des Cinquante Otages", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.67.88.88", + "Fax": "40.67.89.89", "Orders": [ { - "OrderID": 10675, - "EmployeeID": 5, - "OrderDate": "1997-09-19T00:00:00", - "RequiredDate": "1997-10-17T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", - "ShipVia": 2, - "Freight": 31.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10311, + "EmployeeID": 1, + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-26T00:00:00", + "ShipVia": 3, + "Freight": 24.69, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 7, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10676, - "EmployeeID": 2, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-29T00:00:00", + "OrderID": 10609, + "EmployeeID": 7, + "OrderDate": "1997-07-24T00:00:00", + "RequiredDate": "1997-08-21T00:00:00", + "ShippedDate": "1997-07-30T00:00:00", "ShipVia": 2, - "Freight": 2.01, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 1.85, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10677, - "EmployeeID": 1, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", - "ShipVia": 3, - "Freight": 4.03, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10683, + "EmployeeID": 2, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 1, + "Freight": 4.4, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 9, + "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10678, + "OrderID": 10890, "EmployeeID": 7, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", - "ShipVia": 3, - "Freight": 388.98, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 32.76, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 100, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 120, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, + "Quantity": 14, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", + "CustomerID": "ISLAT", + "Company": "Island Trading", + "ContactName": "Helen Bennett", "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", + "Address": "Garden House Crowther Way", + "City": "Cowes", + "Region": "Northeast", + "PostalCode": 26000, + "Country": "UK", + "Phone": "(198) 555-8888", "Orders": [ { - "OrderID": 10679, - "EmployeeID": 8, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 3, - "Freight": 27.94, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10315, + "EmployeeID": 4, + "OrderDate": "1996-09-26T00:00:00", + "RequiredDate": "1996-10-24T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 41.76, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 80379, + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10680, - "EmployeeID": 1, - "OrderDate": "1997-09-24T00:00:00", - "RequiredDate": "1997-10-22T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", - "ShipVia": 1, - "Freight": 26.61, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10318, + "EmployeeID": 8, + "OrderDate": "1996-10-01T00:00:00", + "RequiredDate": "1996-10-29T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 4.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 30676, + "ShipPostalCode": 36000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0.25 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 20, - "Discount": 0.25 + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10681, + "OrderID": 10321, "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 3, - "Freight": 76.13, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-31T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 2, + "Freight": 3.43, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 20137, + "ShipPostalCode": 41000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 28, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10682, - "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 2, - "Freight": 36.13, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10473, + "EmployeeID": 1, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", + "ShipVia": 3, + "Freight": 16.37, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 90698, + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 4, + "UnitPrice": 2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 12, "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10683, - "EmployeeID": 2, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 1, - "Freight": 4.4, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10621, + "EmployeeID": 4, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 2, + "Freight": 23.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 50269, + "ShipPostalCode": 39000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 9, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10684, - "EmployeeID": 3, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 1, - "Freight": 145.63, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ + }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 20, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10685, + "OrderID": 10674, "EmployeeID": 4, - "OrderDate": "1997-09-29T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", "ShipVia": 2, - "Freight": 33.75, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 0.9, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60699, + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10749, + "EmployeeID": 4, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 61.53, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 30222, + "ShipPostalCode": 50000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 15, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10686, + "OrderID": 10798, "EmployeeID": 2, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-08T00:00:00", + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 1, - "Freight": 96.5, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 2.33, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60634, + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10687, + "OrderID": 10829, "EmployeeID": 9, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-30T00:00:00", - "ShipVia": 2, - "Freight": 296.43, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-10T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 1, + "Freight": 154.72, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 50889, + "ShipPostalCode": 16000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, "Quantity": 10, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, - "Discount": 0.25 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10688, - "EmployeeID": 4, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", - "ShipVia": 2, - "Freight": 299.09, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderID": 10933, + "EmployeeID": 6, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 3, + "Freight": 54.15, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40624, + "ShipPostalCode": 44000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 14, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, "Discount": 0 } ] } - ] + ], + "Fax": "(198) 555-8888" }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "PERIC", + "Company": "Pericles Comidas clásicas", + "ContactName": "Guillermo Fernández", + "ContactTitle": "Sales Representative", + "Address": "Calle Dr. Jorge Cash 321", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 552-3745", + "Fax": "(5) 545-3745", "Orders": [ { - "OrderID": 10689, - "EmployeeID": 1, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-29T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", - "ShipVia": 2, - "Freight": 13.42, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 16000, - "ShipCountry": "Sweden", + "OrderID": 10322, + "EmployeeID": 7, + "OrderDate": "1996-10-04T00:00:00", + "RequiredDate": "1996-11-01T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 3, + "Freight": 0.4, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10690, - "EmployeeID": 1, - "OrderDate": "1997-10-02T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", - "ShipVia": 1, - "Freight": 15.8, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10354, + "EmployeeID": 8, + "OrderDate": "1996-11-14T00:00:00", + "RequiredDate": "1996-12-12T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 3, + "Freight": 53.8, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.25 - }, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 12, + "Discount": 0 + }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10691, - "EmployeeID": 2, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-10-22T00:00:00", + "OrderID": 10474, + "EmployeeID": 5, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-04-10T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", "ShipVia": 2, - "Freight": 810.05, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 83.49, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 40, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 40, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 24, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 48, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10692, - "EmployeeID": 4, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-10-31T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", - "ShipVia": 2, - "Freight": 61.02, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "OrderID": 10502, + "EmployeeID": 2, + "OrderDate": "1997-04-10T00:00:00", + "RequiredDate": "1997-05-08T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", + "ShipVia": 1, + "Freight": 69.32, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10693, - "EmployeeID": 3, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-10-10T00:00:00", + "OrderID": 10995, + "EmployeeID": 1, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", "ShipVia": 3, - "Freight": 139.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 46, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 6, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 60, - "Discount": 0.16 - }, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11073, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-15T00:00:00", + "ShipVia": 2, + "Freight": 24.95, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, + "CustomerID": "KOENE", + "Company": "Königlich Essen", + "ContactName": "Philip Cramer", + "ContactTitle": "Sales Associate", + "Address": "Maubelstr. 90", + "City": "Brandenburg", + "PostalCode": 14776, "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "Phone": "0555-09876", "Orders": [ { - "OrderID": 10694, - "EmployeeID": 8, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-11-03T00:00:00", - "ShippedDate": "1997-10-09T00:00:00", - "ShipVia": 3, - "Freight": 398.36, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10323, + "EmployeeID": 4, + "OrderDate": "1996-10-07T00:00:00", + "RequiredDate": "1996-11-04T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 4.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 90, + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10695, - "EmployeeID": 7, - "OrderDate": "1997-10-07T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 1, - "Freight": 16.72, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10325, + "EmployeeID": 1, + "OrderDate": "1996-10-09T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 3, + "Freight": 64.86, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 10, "Quantity": 4, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10696, + "OrderID": 10456, "EmployeeID": 8, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 3, - "Freight": 102.55, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderDate": "1997-02-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 8.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 18, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 21, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10697, + "OrderID": 10468, "EmployeeID": 3, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-05T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 1, - "Freight": 45.52, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderDate": "1997-03-07T00:00:00", + "RequiredDate": "1997-04-04T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 44.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 9, - "Discount": 0.25 - }, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10506, + "EmployeeID": 9, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 21.19, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 18, + "Discount": 0.1 }, { "ProductID": 70, "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.25 + "Quantity": 14, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10698, - "EmployeeID": 4, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-17T00:00:00", - "ShipVia": 1, - "Freight": 272.47, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10542, + "EmployeeID": 1, + "OrderDate": "1997-05-20T00:00:00", + "RequiredDate": "1997-06-17T00:00:00", + "ShippedDate": "1997-05-26T00:00:00", + "ShipVia": 3, + "Freight": 10.95, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 11, "UnitPrice": 21, "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 65, "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 24, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10699, - "EmployeeID": 3, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", - "ShipVia": 3, - "Freight": 0.58, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, + "OrderID": 10630, + "EmployeeID": 1, + "OrderDate": "1997-08-13T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 2, + "Freight": 32.35, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10700, - "EmployeeID": 3, - "OrderDate": "1997-10-10T00:00:00", - "RequiredDate": "1997-11-07T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", - "ShipVia": 1, - "Freight": 65.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10718, + "EmployeeID": 1, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 3, + "Freight": 170.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0.2 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 40, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.2 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10701, - "EmployeeID": 6, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-10-27T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", + "OrderID": 10799, + "EmployeeID": 9, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 3, - "Freight": 220.31, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 30.76, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 20, "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10702, - "EmployeeID": 4, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", - "ShipVia": 1, - "Freight": 23.94, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0 + "OrderID": 10817, + "EmployeeID": 3, + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 306.07, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 15, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10703, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-10-20T00:00:00", + "OrderID": 10849, + "EmployeeID": 9, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 2, - "Freight": 152.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 28000, - "ShipCountry": "Sweden", + "Freight": 0.56, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 49, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 18, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10704, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", - "ShipVia": 1, - "Freight": 4.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10893, + "EmployeeID": 9, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 2, + "Freight": 77.78, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 6, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, "Discount": 0 }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 35, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 48, - "UnitPrice": 12.75, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 24, "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10705, - "EmployeeID": 9, - "OrderDate": "1997-10-15T00:00:00", - "RequiredDate": "1997-11-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 2, - "Freight": 3.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ + }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 4, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10706, - "EmployeeID": 8, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-11-13T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", - "ShipVia": 3, - "Freight": 135.63, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 11028, + "EmployeeID": 2, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 1, + "Freight": 29.59, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { "ProductID": 59, "UnitPrice": 55, - "Quantity": 8, + "Quantity": 24, "Discount": 0 } ] } - ] + ], + "Fax": "0555-09876" }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", + "CustomerID": "SAVEA", + "Company": "Save-a-lot Markets", + "ContactName": "Jose Pavarotti", "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 10000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Address": "187 Suffolk Ln.", + "City": "Boise", + "Region": "ID", + "PostalCode": 83720, + "Country": "USA", + "Phone": "(208) 555-8097", "Orders": [ { - "OrderID": 10707, - "EmployeeID": 4, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", - "ShipVia": 3, - "Freight": 21.74, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 28000, - "ShipCountry": "UK", + "OrderID": 10324, + "EmployeeID": 9, + "OrderDate": "1996-10-08T00:00:00", + "RequiredDate": "1996-11-05T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", + "ShipVia": 1, + "Freight": 214.27, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 16, + "UnitPrice": 13.9, "Quantity": 21, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 40, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 70, + "Discount": 0.16 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 28, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 40, "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ - { - "OrderID": 10708, - "EmployeeID": 6, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 2.96, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 4, - "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 80, + "Discount": 0.16 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10709, + "OrderID": 10393, "EmployeeID": 1, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-11-20T00:00:00", + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", "ShipVia": 3, - "Freight": 210.8, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 126.56, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 40, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 28, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 42, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ - { - "OrderID": 10710, - "EmployeeID": 1, - "OrderDate": "1997-10-20T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", - "ShipVia": 1, - "Freight": 4.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", - "OrderDetails": [ + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 7, + "Discount": 0.25 + }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 70, + "Discount": 0.25 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 32, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10711, - "EmployeeID": 5, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 2, - "Freight": 52.41, + "OrderID": 10398, + "EmployeeID": 2, + "OrderDate": "1996-12-30T00:00:00", + "RequiredDate": "1997-01-27T00:00:00", + "ShippedDate": "1997-01-09T00:00:00", + "ShipVia": 3, + "Freight": 89.16, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21393,92 +16487,68 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 42, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 55, + "UnitPrice": 19.2, "Quantity": 120, - "Discount": 0 + "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10712, - "EmployeeID": 3, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", - "ShipVia": 1, - "Freight": 89.93, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10440, + "EmployeeID": 4, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-10T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 86.53, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 45, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 49, + "Discount": 0.16 + }, + { + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 24, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 90, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10713, - "EmployeeID": 1, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-24T00:00:00", + "OrderID": 10452, + "EmployeeID": 8, + "OrderDate": "1997-02-20T00:00:00", + "RequiredDate": "1997-03-20T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", "ShipVia": 1, - "Freight": 167.05, + "Freight": 140.26, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21487,39 +16557,56 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0 - }, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 100, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10510, + "EmployeeID": 6, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", + "ShipVia": 3, + "Freight": 367.63, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 110, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 24, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 36, + "Discount": 0.1 } ] }, { - "OrderID": 10714, - "EmployeeID": 5, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", + "OrderID": 10555, + "EmployeeID": 6, + "OrderDate": "1997-06-02T00:00:00", + "RequiredDate": "1997-06-30T00:00:00", + "ShippedDate": "1997-06-04T00:00:00", "ShipVia": 3, - "Freight": 24.49, + "Freight": 252.49, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21528,382 +16615,291 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 14, + "UnitPrice": 23.25, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.2 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 27, - "Discount": 0.25 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 18, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, + "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10715, - "EmployeeID": 3, - "OrderDate": "1997-10-23T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 1, - "Freight": 63.2, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10603, + "EmployeeID": 8, + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 2, + "Freight": 48.77, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 21, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 48, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10716, - "EmployeeID": 4, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", - "ShipVia": 2, - "Freight": 22.57, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10607, + "EmployeeID": 5, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 1, + "Freight": 200.24, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 7, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 100, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10717, - "EmployeeID": 1, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 2, - "Freight": 59.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 32, - "Discount": 0.06 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 42, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10718, + "OrderID": 10612, "EmployeeID": 1, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 3, - "Freight": 170.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderDate": "1997-07-28T00:00:00", + "RequiredDate": "1997-08-25T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 2, + "Freight": 544.08, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, "Quantity": 40, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 80, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10719, + "OrderID": 10627, "EmployeeID": 8, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 51.44, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 107.46, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 12, - "Discount": 0.25 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 3, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, + "Discount": 0.16 } ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10720, - "EmployeeID": 8, - "OrderDate": "1997-10-28T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", + "OrderID": 10657, + "EmployeeID": 2, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", "ShipVia": 2, - "Freight": 9.53, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 352.69, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 8, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10721, - "EmployeeID": 5, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-11-26T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", + "OrderID": 10678, + "EmployeeID": 7, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", "ShipVia": 3, - "Freight": 48.92, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 388.98, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 100, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 120, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10722, - "EmployeeID": 8, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-04T00:00:00", + "OrderID": 10700, + "EmployeeID": 3, + "OrderDate": "1997-10-10T00:00:00", + "RequiredDate": "1997-11-07T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", "ShipVia": 1, - "Freight": 74.58, + "Freight": 65.1, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21912,1506 +16908,1248 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 3, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.2 }, { "ProductID": 68, "UnitPrice": 12.5, - "Quantity": 45, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10711, + "EmployeeID": 5, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 2, + "Freight": 52.41, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 42, "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 120, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10723, - "EmployeeID": 3, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-11-27T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", + "OrderID": 10713, + "EmployeeID": 1, + "OrderDate": "1997-10-22T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-24T00:00:00", "ShipVia": 1, - "Freight": 21.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, + "Freight": 167.05, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0 + }, { "ProductID": 26, "UnitPrice": 31.23, - "Quantity": 15, + "Quantity": 30, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 26000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10724, - "EmployeeID": 8, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 57.75, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 20000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 110, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10725, - "EmployeeID": 4, - "OrderDate": "1997-10-31T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 3, - "Freight": 10.83, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10722, + "EmployeeID": 8, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-04T00:00:00", + "ShipVia": 1, + "Freight": 74.58, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 43000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10726, - "EmployeeID": 4, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", + "OrderID": 10748, + "EmployeeID": 3, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", "ShipVia": 1, - "Freight": 16.56, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 24000, - "ShipCountry": "UK", + "Freight": 232.55, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 44, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10727, - "EmployeeID": 2, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-12-01T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", + "OrderID": 10757, + "EmployeeID": 6, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", "ShipVia": 1, - "Freight": 89.9, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 8.19, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 59, "UnitPrice": 55, - "Quantity": 10, - "Discount": 0.06 + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 24, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10728, - "EmployeeID": 4, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-11-11T00:00:00", - "ShipVia": 2, - "Freight": 58.33, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10815, + "EmployeeID": 2, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 3, + "Freight": 14.62, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10847, + "EmployeeID": 4, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 3, + "Freight": 487.57, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.2 }, { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 19, + "UnitPrice": 9.2, "Quantity": 12, - "Discount": 0 + "Discount": 0.2 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 60, + "Discount": 0.2 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 36, + "Discount": 0.2 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "Quantity": 45, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 55, + "Discount": 0.2 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10729, - "EmployeeID": 8, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", + "OrderID": 10882, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 3, - "Freight": 141.06, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 23.1, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 50, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 40, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 32, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10730, - "EmployeeID": 5, - "OrderDate": "1997-11-05T00:00:00", - "RequiredDate": "1997-12-03T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", + "OrderID": 10894, + "EmployeeID": 1, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 1, - "Freight": 20.12, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 116.13, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 28, "Discount": 0.06 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 3, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 50, "Discount": 0.06 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 120, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10731, + "OrderID": 10941, "EmployeeID": 7, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", - "ShipVia": 1, - "Freight": 96.65, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 2, + "Freight": 400.81, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 44, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 30, - "Discount": 0.06 + "Discount": 0.25 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 80, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10732, - "EmployeeID": 3, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", - "ShipVia": 1, - "Freight": 16.97, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10983, + "EmployeeID": 2, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", + "ShipVia": 2, + "Freight": 657.54, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 84, + "Discount": 0.16 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 30000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10733, - "EmployeeID": 1, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-10T00:00:00", - "ShipVia": 3, - "Freight": 110.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 34000, - "ShipCountry": "Sweden", + "OrderID": 11002, + "EmployeeID": 4, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 1, + "Freight": 141.16, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 16, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 56, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 25, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.16 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10734, - "EmployeeID": 2, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-12T00:00:00", - "ShipVia": 3, - "Freight": 1.63, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 11030, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 2, + "Freight": 830.75, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 100, + "Discount": 0.25 + }, + { + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 100, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11064, + "EmployeeID": 1, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 30.09, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 77, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 55, "Discount": 0 } ] } ], - "Fax": "(11) 555-9482" + "Fax": "(208) 555-8097" }, { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", + "CustomerID": "BOLID", + "Company": "Bólido Comidas preparadas", + "ContactName": "Martín Sommer", "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", + "Address": "C/ Araquil, 67", + "City": "Madrid", + "PostalCode": 28023, + "Country": "Spain", + "Phone": "(91) 555 22 82", + "Fax": "(91) 555 91 99", "Orders": [ { - "OrderID": 10735, - "EmployeeID": 6, - "OrderDate": "1997-11-10T00:00:00", - "RequiredDate": "1997-12-08T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderID": 10326, + "EmployeeID": 4, + "OrderDate": "1996-10-10T00:00:00", + "RequiredDate": "1996-11-07T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", "ShipVia": 2, - "Freight": 45.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "Freight": 77.92, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10736, - "EmployeeID": 9, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 2, - "Freight": 44.1, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 40, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 16, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, + "UnitPrice": 6.2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10737, - "EmployeeID": 2, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10801, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", "ShipVia": 2, - "Freight": 7.79, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 97.09, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 4, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 10738, - "EmployeeID": 2, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10970, + "EmployeeID": 9, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", "ShipVia": 1, - "Freight": 2.91, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 16.16, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 40, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", + "CustomerID": "FURIB", + "Company": "Furia Bacalhau e Frutos do Mar", + "ContactName": "Lino Rodriguez", + "ContactTitle": "Sales Manager", + "Address": "Jardim das rosas n. 32", + "City": "Lisboa", + "PostalCode": 1675, + "Country": "Portugal", + "Phone": "(1) 354-2534", + "Fax": "(1) 354-2535", "Orders": [ { - "OrderID": 10739, - "EmployeeID": 3, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-17T00:00:00", + "OrderID": 10328, + "EmployeeID": 4, + "OrderDate": "1996-10-14T00:00:00", + "RequiredDate": "1996-11-11T00:00:00", + "ShippedDate": "1996-10-17T00:00:00", "ShipVia": 3, - "Freight": 11.08, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 87.03, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 18, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 40, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, + "Discount": 0 + } + ] + }, { - "OrderID": 10740, + "OrderID": 10352, + "EmployeeID": 3, + "OrderDate": "1996-11-12T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-18T00:00:00", + "ShipVia": 3, + "Freight": 1.3, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 20, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10464, "EmployeeID": 4, - "OrderDate": "1997-11-13T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 81.88, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 89, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 16, "Discount": 0.2 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, - "Discount": 0.2 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10741, - "EmployeeID": 4, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10491, + "EmployeeID": 8, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-08T00:00:00", "ShipVia": 3, - "Freight": 10.96, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 27000, - "ShipCountry": "UK", + "Freight": 16.96, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 44, + "UnitPrice": 15.5, "Quantity": 15, - "Discount": 0.2 + "Discount": 0.16 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 17000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10742, - "EmployeeID": 3, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-12-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10551, + "EmployeeID": 4, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", "ShipVia": 3, - "Freight": 243.73, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 17000, - "ShipCountry": "Canada", + "Freight": 72.95, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 41000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10743, + "OrderID": 10604, "EmployeeID": 1, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", + "ShipVia": 1, + "Freight": 7.46, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 28, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10744, - "EmployeeID": 6, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", - "ShipVia": 1, - "Freight": 69.19, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 6, + "Discount": 0.1 + }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10745, - "EmployeeID": 9, - "OrderDate": "1997-11-18T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 1, - "Freight": 3.52, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10664, + "EmployeeID": 1, + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 3, + "Freight": 1.27, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 24, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 45, - "Discount": 0 - }, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10963, + "EmployeeID": 9, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 3, + "Freight": 2.7, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", + "CustomerID": "BONAP", + "Company": "Bon app", + "ContactName": "Laurence Lebihan", "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", "Orders": [ { - "OrderID": 10746, - "EmployeeID": 1, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 3, - "Freight": 31.43, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10331, + "EmployeeID": 9, + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-27T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", + "ShipVia": 1, + "Freight": 10.19, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 15, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10340, + "EmployeeID": 1, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 166.31, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 9, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, + "ProductID": 43, + "UnitPrice": 36.8, "Quantity": 40, - "Discount": 0 + "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10747, - "EmployeeID": 6, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-26T00:00:00", + "OrderID": 10362, + "EmployeeID": 3, + "OrderDate": "1996-11-25T00:00:00", + "RequiredDate": "1996-12-23T00:00:00", + "ShippedDate": "1996-11-28T00:00:00", "ShipVia": 1, - "Freight": 117.33, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 96.04, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 9, - "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10748, - "EmployeeID": 3, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", - "ShipVia": 1, - "Freight": 232.55, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 44, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 14000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10749, + "OrderID": 10470, "EmployeeID": 4, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 61.53, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 30222, - "ShipPostalCode": 50000, - "ShipCountry": "UK", + "Freight": 64.56, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 15, + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 6, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10750, - "EmployeeID": 9, - "OrderDate": "1997-11-21T00:00:00", - "RequiredDate": "1997-12-19T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", - "ShipVia": 1, - "Freight": 79.3, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10511, + "EmployeeID": 4, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 350.64, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, "Discount": 0.16 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 50, "Discount": 0.16 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10751, - "EmployeeID": 3, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-12-03T00:00:00", - "ShipVia": 3, - "Freight": 130.79, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10525, + "EmployeeID": 1, + "OrderDate": "1997-05-02T00:00:00", + "RequiredDate": "1997-05-30T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 2, + "Freight": 11.06, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 30, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 73, - "UnitPrice": 15, + "ProductID": 40, + "UnitPrice": 18.4, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 36000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ + }, { - "OrderID": 10752, + "OrderID": 10663, "EmployeeID": 2, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", - "ShipVia": 3, - "Freight": 1.39, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-09-24T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 113.15, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 3, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10753, + "OrderID": 10715, "EmployeeID": 3, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", + "OrderDate": "1997-10-23T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 1, - "Freight": 7.7, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "Freight": 63.2, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 4, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10754, - "EmployeeID": 6, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 3, - "Freight": 2.38, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10730, + "EmployeeID": 5, + "OrderDate": "1997-11-05T00:00:00", + "RequiredDate": "1997-12-03T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 1, + "Freight": 20.12, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10732, + "EmployeeID": 3, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", + "ShipVia": 1, + "Freight": 16.97, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { "OrderID": 10755, "EmployeeID": 4, @@ -23451,247 +18189,195 @@ "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10756, - "EmployeeID": 8, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-02T00:00:00", + "OrderID": 10827, + "EmployeeID": 1, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", "ShipVia": 2, - "Freight": 73.21, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 63.54, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10757, - "EmployeeID": 6, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 1, - "Freight": 8.19, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10871, + "EmployeeID": 9, + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 112.27, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 50, + "Discount": 0.06 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 7, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 30, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10876, + "EmployeeID": 7, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 60.42, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 21, "Discount": 0 }, { "ProductID": 64, "UnitPrice": 33.25, - "Quantity": 24, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10758, - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-04T00:00:00", - "ShipVia": 3, - "Freight": 138.17, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10932, + "EmployeeID": 8, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", + "ShipVia": 1, + "Freight": 134.64, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 60, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 14, + "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 16, "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10759, - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", + "OrderID": 10940, + "EmployeeID": 8, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", "ShipVia": 3, - "Freight": 11.99, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 19.77, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10760, + "OrderID": 11076, "EmployeeID": 4, - "OrderDate": "1997-12-01T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1997-12-10T00:00:00", - "ShipVia": 1, - "Freight": 155.64, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-06-08T00:00:00", + "ShipVia": 2, + "Freight": 38.28, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 12, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, "Discount": 0.25 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 40, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, "Discount": 0.25 } ] @@ -23699,4607 +18385,398 @@ ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "MEREP", + "Company": "Mère Paillarde", + "ContactName": "Jean Fresnière", + "ContactTitle": "Marketing Assistant", + "Address": "43 rue St. Laurent", + "City": "Montréal", + "Region": "Québec", + "PostalCode": 20000, + "Country": "Canada", + "Phone": "(514) 555-8054", + "Fax": "(514) 555-8055", "Orders": [ { - "OrderID": 10761, - "EmployeeID": 5, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", + "OrderID": 10332, + "EmployeeID": 3, + "OrderDate": "1996-10-17T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", "ShipVia": 2, - "Freight": 18.66, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 52.84, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 28000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 18, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 16, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 13000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10762, - "EmployeeID": 3, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 1, - "Freight": 328.74, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 44000, - "ShipCountry": "Sweden", + "OrderID": 10339, + "EmployeeID": 2, + "OrderDate": "1996-10-28T00:00:00", + "RequiredDate": "1996-11-25T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", + "ShipVia": 2, + "Freight": 15.66, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 16, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 28, "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10763, - "EmployeeID": 3, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", - "ShipVia": 3, - "Freight": 37.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "OrderID": 10376, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 2, + "Freight": 20.39, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 39000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 21, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "Quantity": 42, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10424, + "EmployeeID": 7, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-20T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 2, + "Freight": 370.61, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 22000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 6, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 49, + "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10764, + "OrderID": 10439, "EmployeeID": 6, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", + "OrderDate": "1997-02-07T00:00:00", + "RequiredDate": "1997-03-07T00:00:00", + "ShippedDate": "1997-02-10T00:00:00", "ShipVia": 3, - "Freight": 145.45, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 130, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10765, - "EmployeeID": 3, - "OrderDate": "1997-12-04T00:00:00", - "RequiredDate": "1998-01-01T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 3, - "Freight": 42.74, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 80, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10766, - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 1, - "Freight": 157.55, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 28000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10767, - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 3, - "Freight": 1.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 44000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 22000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10768, - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 2, - "Freight": 146.32, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10769, - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 65.06, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10770, - "EmployeeID": 8, - "OrderDate": "1997-12-09T00:00:00", - "RequiredDate": "1998-01-06T00:00:00", - "ShippedDate": "1997-12-17T00:00:00", - "ShipVia": 3, - "Freight": 5.32, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10771, - "EmployeeID": 9, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 2, - "Freight": 11.19, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10772, - "EmployeeID": 3, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 2, - "Freight": 91.28, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10773, - "EmployeeID": 1, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1998-01-08T00:00:00", - "ShippedDate": "1997-12-16T00:00:00", - "ShipVia": 3, - "Freight": 96.43, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 33, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 70, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 7, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10774, - "EmployeeID": 4, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 48.2, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 2, - "Discount": 0.25 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "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", - "Orders": [ - { - "OrderID": 10775, - "EmployeeID": 7, - "OrderDate": "1997-12-12T00:00:00", - "RequiredDate": "1998-01-09T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 20.25, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10776, - "EmployeeID": 1, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1998-01-12T00:00:00", - "ShippedDate": "1997-12-18T00:00:00", - "ShipVia": 3, - "Freight": 351.53, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 27, - "Discount": 0.06 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 120, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 10777, - "EmployeeID": 7, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 2, - "Freight": 3.01, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 11000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10778, - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 1, - "Freight": 6.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 39000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ - { - "OrderID": 10779, - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 2, - "Freight": 58.13, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0 - } - ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10780, - "EmployeeID": 2, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-25T00:00:00", - "ShipVia": 1, - "Freight": 42.13, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10781, - "EmployeeID": 2, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 3, - "Freight": 73.16, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0.2 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10782, - "EmployeeID": 9, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 1.1, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 1, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10783, - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 2, - "Freight": 124.98, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10784, - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 70.09, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.16 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "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", - "Orders": [ - { - "OrderID": 10785, - "EmployeeID": 1, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 3, - "Freight": 1.51, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10786, - "EmployeeID": 8, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-16T00:00:00", - "ShippedDate": "1997-12-23T00:00:00", - "ShipVia": 1, - "Freight": 110.87, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 42, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10787, - "EmployeeID": 2, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 249.93, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10788, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 42.7, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ - { - "OrderID": 10789, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 2, - "Freight": 100.6, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 10790, - "EmployeeID": 6, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 28.23, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 3, - "Discount": 0.16 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.16 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10791, - "EmployeeID": 6, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-01T00:00:00", - "ShipVia": 2, - "Freight": 16.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10792, - "EmployeeID": 1, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 3, - "Freight": 23.79, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 19000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10793, - "EmployeeID": 3, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", - "ShipVia": 3, - "Freight": 4.52, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 32000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ - { - "OrderID": 10794, - "EmployeeID": 6, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 1, - "Freight": 21.49, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10795, - "EmployeeID": 8, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-20T00:00:00", - "ShipVia": 2, - "Freight": 126.66, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 65, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 35, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10796, - "EmployeeID": 3, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 1, - "Freight": 26.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 24, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ - { - "OrderID": 10797, - "EmployeeID": 7, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 2, - "Freight": 33.35, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10798, - "EmployeeID": 2, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 1, - "Freight": 2.33, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60634, - "ShipPostalCode": 40000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10799, - "EmployeeID": 9, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 3, - "Freight": 30.76, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10800, - "EmployeeID": 1, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 3, - "Freight": 137.44, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 41000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 7, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ - { - "OrderID": 10801, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 2, - "Freight": 97.09, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ - { - "OrderID": 10802, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 2, - "Freight": 257.26, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 5, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ - { - "OrderID": 10803, - "EmployeeID": 4, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-06T00:00:00", - "ShipVia": 1, - "Freight": 55.23, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 24, - "Discount": 0.06 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10804, - "EmployeeID": 6, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 2, - "Freight": 27.33, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 38000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 36, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 4, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ - { - "OrderID": 10805, - "EmployeeID": 2, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 3, - "Freight": 237.34, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10806, - "EmployeeID": 3, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 2, - "Freight": 22.11, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ - { - "OrderID": 10807, - "EmployeeID": 4, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 1, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ - { - "OrderID": 10808, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 3, - "Freight": 45.53, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ - { - "OrderID": 10809, - "EmployeeID": 7, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 1, - "Freight": 4.87, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 28000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ - { - "OrderID": 10810, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 3, - "Freight": 4.33, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 48000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10811, - "EmployeeID": 8, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", - "ShipVia": 1, - "Freight": 31.22, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10812, - "EmployeeID": 5, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 1, - "Freight": 59.78, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.1 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ - { - "OrderID": 10813, - "EmployeeID": 1, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 1, - "Freight": 47.38, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0.2 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10814, - "EmployeeID": 3, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 130.94, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 8, - "Discount": 0.16 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10815, - "EmployeeID": 2, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 14.62, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ - { - "OrderID": 10816, - "EmployeeID": 4, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-02-03T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 2, - "Freight": 719.78, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10817, - "EmployeeID": 3, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 306.07, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 25, - "Discount": 0.16 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10818, - "EmployeeID": 7, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 3, - "Freight": 65.48, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10819, - "EmployeeID": 2, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 19.76, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10820, - "EmployeeID": 3, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 37.52, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ - { - "OrderID": 10821, - "EmployeeID": 1, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-15T00:00:00", - "ShipVia": 1, - "Freight": 36.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "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", - "Orders": [ - { - "OrderID": 10822, - "EmployeeID": 6, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 7, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10823, - "EmployeeID": 5, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 163.97, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 29000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10824, - "EmployeeID": 8, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 1.23, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 39000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ - { - "OrderID": 10825, - "EmployeeID": 1, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 1, - "Freight": 79.25, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10826, - "EmployeeID": 6, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", - "ShipVia": 1, - "Freight": 7.09, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10827, - "EmployeeID": 1, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", - "ShipVia": 2, - "Freight": 63.54, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ - { - "OrderID": 10828, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 1, - "Freight": 90.85, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10829, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-10T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 1, - "Freight": 154.72, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 50889, - "ShipPostalCode": 16000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10830, - "EmployeeID": 4, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 2, - "Freight": 81.83, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ - { - "OrderID": 10831, - "EmployeeID": 3, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 2, - "Freight": 72.19, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10832, - "EmployeeID": 2, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 43.26, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 3, - "Discount": 0.2 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0.2 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10833, - "EmployeeID": 6, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 2, - "Freight": 71.49, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 9, - "Discount": 0.1 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 9, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10834, - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 3, - "Freight": 29.78, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 8, - "Discount": 0.06 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ - { - "OrderID": 10835, - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 3, - "Freight": 69.53, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10836, - "EmployeeID": 7, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 1, - "Freight": 411.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 52, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 47000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10837, - "EmployeeID": 9, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 13.32, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 17000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10838, - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 59.28, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10839, - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-22T00:00:00", - "ShipVia": 3, - "Freight": 35.43, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10840, - "EmployeeID": 4, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", - "ShipVia": 2, - "Freight": 2.71, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 6, - "Discount": 0.2 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 22000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10841, - "EmployeeID": 5, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 2, - "Freight": 424.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 27000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10842, - "EmployeeID": 1, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 3, - "Freight": 54.42, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10843, - "EmployeeID": 4, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 9.26, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 4, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10844, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 25.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10845, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 212.98, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.1 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 42, - "Discount": 0.1 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 60, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 48, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 15000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10846, - "EmployeeID": 2, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 56.46, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 15000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10847, - "EmployeeID": 4, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 3, - "Freight": 487.57, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.2 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.2 - }, - { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 60, - "Discount": 0.2 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 36, - "Discount": 0.2 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 45, - "Discount": 0.2 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 55, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 43000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ - { - "OrderID": 10848, - "EmployeeID": 7, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 2, - "Freight": 38.24, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 36000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10849, - "EmployeeID": 9, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 49, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 18, - "Discount": 0.16 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10850, - "EmployeeID": 1, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 49.19, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 4, - "Discount": 0.16 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ - { - "OrderID": 10851, - "EmployeeID": 5, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-23T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", - "ShipVia": 1, - "Freight": 160.55, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 4.07, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0.06 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.06 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10852, - "EmployeeID": 8, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 174.05, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 39, + "ProductID": 64, + "UnitPrice": 26.6, "Quantity": 6, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 50, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10853, - "EmployeeID": 9, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", - "ShipVia": 2, - "Freight": 53.83, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10505, + "EmployeeID": 3, + "OrderDate": "1997-04-14T00:00:00", + "RequiredDate": "1997-05-12T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 7.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 33000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10854, - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-05T00:00:00", + "OrderID": 10565, + "EmployeeID": 8, + "OrderDate": "1997-06-11T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", "ShipVia": 2, - "Freight": 100.22, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 7.15, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 21000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 100, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 18, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10855, + "OrderID": 10570, "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 1, - "Freight": 170.97, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 14, - "Discount": 0 + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-19T00:00:00", + "ShipVia": 3, + "Freight": 188.99, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0.06 }, { "ProductID": 56, "UnitPrice": 38, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "Quantity": 60, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10856, - "EmployeeID": 3, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 2, - "Freight": 58.43, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10590, + "EmployeeID": 4, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 3, + "Freight": 44.77, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 20, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 60, + "Discount": 0.06 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 48000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10857, - "EmployeeID": 8, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", + "OrderID": 10605, + "EmployeeID": 1, + "OrderDate": "1997-07-21T00:00:00", + "RequiredDate": "1997-08-18T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", "ShipVia": 2, - "Freight": 188.85, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", + "Freight": 379.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.25 + "Discount": 0.06 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ - { - "OrderID": 10858, - "EmployeeID": 2, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", - "ShipVia": 1, - "Freight": 52.51, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 5, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 10, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10859, + "OrderID": 10618, "EmployeeID": 1, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", - "ShipVia": 2, - "Freight": 76.1, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderDate": "1997-08-01T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 1, + "Freight": 154.68, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 30000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, { - "OrderID": 10860, - "EmployeeID": 3, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 3, - "Freight": 19.26, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10724, + "EmployeeID": 8, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 2, + "Freight": 57.75, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 20000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] @@ -28307,2480 +18784,2081 @@ ] }, { - "CustomerID": "WHITC", - "Company": "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": "PRINI", + "Company": "Princesa Isabel Vinhos", + "ContactName": "Isabel de Castro", + "ContactTitle": "Sales Representative", + "Address": "Estrada da saúde n. 58", + "City": "Lisboa", + "PostalCode": 1756, + "Country": "Portugal", + "Phone": "(1) 356-5634", "Orders": [ { - "OrderID": 10861, - "EmployeeID": 4, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-02-27T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", + "OrderID": 10336, + "EmployeeID": 7, + "OrderDate": "1996-10-23T00:00:00", + "RequiredDate": "1996-11-20T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", "ShipVia": 2, - "Freight": 14.93, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 15.51, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 42, - "Discount": 0 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, - "Discount": 0 - }, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 18, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10397, + "EmployeeID": 5, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-24T00:00:00", + "ShippedDate": "1997-01-02T00:00:00", + "ShipVia": 1, + "Freight": 60.26, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ { "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 35, - "Discount": 0 - }, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10433, + "EmployeeID": 3, + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 73.83, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10862, - "EmployeeID": 8, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderID": 10477, + "EmployeeID": 5, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", "ShipVia": 2, - "Freight": 53.23, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 13.02, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 25, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10863, - "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", + "OrderID": 11007, + "EmployeeID": 8, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 30.26, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 202.24, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 14, + "Discount": 0 } ] } - ] + ], + "Fax": "(1) 356-5634" }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 31000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "CustomerID": "SIMOB", + "Company": "Simons bistro", + "ContactName": "Jytte Petersen", + "ContactTitle": "Owner", + "Address": "Vinbæltet 34", + "City": "Kobenhavn", + "PostalCode": 1734, + "Country": "Denmark", + "Phone": "31 12 34 56", + "Fax": "31 13 35 57", "Orders": [ { - "OrderID": 10864, + "OrderID": 10341, + "EmployeeID": 7, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", + "ShipVia": 3, + "Freight": 26.78, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10417, "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 2, - "Freight": 3.04, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 37000, - "ShipCountry": "UK", + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-28T00:00:00", + "ShipVia": 3, + "Freight": 70.29, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 2, + "Discount": 0.25 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 36, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10865, + "OrderID": 10556, "EmployeeID": 2, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderDate": "1997-06-03T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", "ShipVia": 1, - "Freight": 348.14, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 9.8, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10642, + "EmployeeID": 7, + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-09-05T00:00:00", + "ShipVia": 3, + "Freight": 41.89, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 48000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10866, - "EmployeeID": 5, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-03T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderID": 10669, + "EmployeeID": 2, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", "ShipVia": 1, - "Freight": 109.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 37000, - "ShipCountry": "Sweden", + "Freight": 24.39, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 2, + "ProductID": 36, "UnitPrice": 19, - "Quantity": 21, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10802, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 2, + "Freight": 257.26, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, "Discount": 0.25 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 6, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 60, "Discount": 0.25 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 40, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 5, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10867, - "EmployeeID": 6, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 1, - "Freight": 1.93, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 11074, + "EmployeeID": 7, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-06-03T00:00:00", + "ShipVia": 2, + "Freight": 18.44, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", + "CustomerID": "FAMIA", + "Company": "Familia Arquibaldo", + "ContactName": "Aria Cruz", "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", + "Address": "Rua Orós, 92", "City": "Sao Paulo", "Region": "SP", - "PostalCode": 5487, + "PostalCode": 5442, "Country": "Brazil", - "Phone": "(11) 555-1189", + "Phone": "(11) 555-9857", "Orders": [ { - "OrderID": 10868, - "EmployeeID": 7, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 2, - "Freight": 191.27, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", + "OrderID": 10347, + "EmployeeID": 4, + "OrderDate": "1996-11-06T00:00:00", + "RequiredDate": "1996-12-04T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 3.1, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", "ShipCity": "Sao Paulo", "ShipRegion": "SP", - "ShipPostalCode": 5487, + "ShipPostalCode": 5442, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 42, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 29000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10869, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 1, - "Freight": 143.28, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 48000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 11, - "UnitPrice": 21, + "ProductID": 25, + "UnitPrice": 11.2, "Quantity": 10, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, + "ProductID": 39, + "UnitPrice": 14.4, "Quantity": 50, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10870, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", - "ShipVia": 3, - "Freight": 12.04, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 2, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10871, + "OrderID": 10386, "EmployeeID": 9, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 2, - "Freight": 112.27, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-25T00:00:00", + "ShipVia": 3, + "Freight": 13.99, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10414, + "EmployeeID": 2, + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-17T00:00:00", + "ShipVia": 3, + "Freight": 21.48, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, "Discount": 0.06 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10872, - "EmployeeID": 5, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", + "OrderID": 10512, + "EmployeeID": 7, + "OrderDate": "1997-04-21T00:00:00", + "RequiredDate": "1997-05-19T00:00:00", + "ShippedDate": "1997-04-24T00:00:00", "ShipVia": 2, - "Freight": 175.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 3.53, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 10, - "Discount": 0.06 + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 12, + "Discount": 0.16 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10873, - "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", + "OrderID": 10581, + "EmployeeID": 3, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-02T00:00:00", "ShipVia": 1, - "Freight": 0.82, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 3.01, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10874, + "OrderID": 10650, "EmployeeID": 5, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 2, - "Freight": 19.58, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderDate": "1997-08-29T00:00:00", + "RequiredDate": "1997-09-26T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 176.81, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 34000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10875, + "OrderID": 10725, "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 2, - "Freight": 32.37, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 18000, - "ShipCountry": "Sweden", + "OrderDate": "1997-10-31T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 3, + "Freight": 10.83, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 25, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 21, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 15, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] } - ] + ], + "Fax": "(11) 555-9857" }, { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, + "CustomerID": "LAMAI", + "Company": "La maison de Asie", + "ContactName": "Annette Roulet", + "ContactTitle": "Sales Manager", + "Address": "1 rue Alsace-Lorraine", + "City": "Toulouse", + "PostalCode": 31000, "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", + "Phone": "61.77.61.10", + "Fax": "61.77.61.11", "Orders": [ { - "OrderID": 10876, - "EmployeeID": 7, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 3, - "Freight": 60.42, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, + "OrderID": 10350, + "EmployeeID": 6, + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 64.19, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 18, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10877, - "EmployeeID": 1, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", + "OrderID": 10358, + "EmployeeID": 5, + "OrderDate": "1996-11-20T00:00:00", + "RequiredDate": "1996-12-18T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", "ShipVia": 1, - "Freight": 38.06, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 19.64, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10878, - "EmployeeID": 4, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderID": 10371, + "EmployeeID": 1, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", "ShipVia": 1, - "Freight": 46.69, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 0.45, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 6, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10879, + "OrderID": 10413, "EmployeeID": 3, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 3, - "Freight": 8.5, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 2, + "Freight": 95.66, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 14, + "Discount": 0 + } + ] + }, + { + "OrderID": 10425, + "EmployeeID": 6, + "OrderDate": "1997-01-24T00:00:00", + "RequiredDate": "1997-02-21T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 2, + "Freight": 7.93, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, + "ProductID": 55, + "UnitPrice": 19.2, "Quantity": 10, - "Discount": 0 + "Discount": 0.25 }, { "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 43000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10880, - "EmployeeID": 7, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 88.01, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 15000, - "ShipCountry": "Sweden", + "OrderID": 10454, + "EmployeeID": 4, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-25T00:00:00", + "ShipVia": 3, + "Freight": 2.74, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 30, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 10, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10881, + "OrderID": 10493, "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 2.84, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 10.64, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 73, - "UnitPrice": 15, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, "Quantity": 10, - "Discount": 0 + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10882, - "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 3, - "Freight": 23.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10500, + "EmployeeID": 6, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-17T00:00:00", + "ShipVia": 1, + "Freight": 42.68, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 25, - "Discount": 0 + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 20, - "Discount": 0.16 - }, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10610, + "EmployeeID": 8, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 1, + "Freight": 26.78, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 32, - "Discount": 0.16 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10883, + "OrderID": 10631, "EmployeeID": 8, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 3, - "Freight": 0.53, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-15T00:00:00", + "ShipVia": 1, + "Freight": 0.87, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 8, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10884, - "EmployeeID": 4, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", - "ShipVia": 2, - "Freight": 90.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10787, + "EmployeeID": 2, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 249.93, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 21, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, "Discount": 0.06 + } + ] + }, + { + "OrderID": 10832, + "EmployeeID": 2, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 43.26, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0.2 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 3, + "Discount": 0 } ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 10000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10885, - "EmployeeID": 6, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", + "OrderID": 10923, + "EmployeeID": 7, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 3, - "Freight": 5.64, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 40000, - "ShipCountry": "Belgium", + "Freight": 68.26, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 - }, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 11051, + "EmployeeID": 7, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-09-25T00:00:00", + "ShipVia": 3, + "Freight": 2.79, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 25, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", + "CustomerID": "PICCO", + "Company": "Piccolo und mehr", + "ContactName": "Georg Pipps", + "ContactTitle": "Sales Manager", + "Address": "Geislweg 14", + "City": "Salzburg", + "PostalCode": 5020, + "Country": "Austria", + "Phone": "6562-9722", + "Fax": "6562-9723", "Orders": [ { - "OrderID": 10886, - "EmployeeID": 1, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 1, - "Freight": 4.99, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10353, + "EmployeeID": 7, + "OrderDate": "1996-11-13T00:00:00", + "RequiredDate": "1996-12-11T00:00:00", + "ShippedDate": "1996-11-25T00:00:00", + "ShipVia": 3, + "Freight": 360.63, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 40, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10887, - "EmployeeID": 8, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", + "OrderID": 10392, + "EmployeeID": 2, + "OrderDate": "1996-12-24T00:00:00", + "RequiredDate": "1997-01-21T00:00:00", + "ShippedDate": "1997-01-01T00:00:00", "ShipVia": 3, - "Freight": 1.25, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "Freight": 122.46, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10888, - "EmployeeID": 1, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", + "OrderID": 10427, + "EmployeeID": 4, + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", "ShipVia": 2, - "Freight": 51.87, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 31.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10889, - "EmployeeID": 9, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 3, - "Freight": 280.61, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10489, + "EmployeeID": 6, + "OrderDate": "1997-03-28T00:00:00", + "RequiredDate": "1997-04-25T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", + "ShipVia": 2, + "Freight": 5.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10890, - "EmployeeID": 7, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 32.76, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10530, + "EmployeeID": 3, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", + "ShipVia": 2, + "Freight": 339.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 17, "UnitPrice": 39, - "Quantity": 15, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10891, + "OrderID": 10597, "EmployeeID": 7, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 20.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", + "ShipVia": 3, + "Freight": 35.12, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10892, - "EmployeeID": 4, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 120.27, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 45000, - "ShipCountry": "Belgium", + "OrderID": 10686, + "EmployeeID": 2, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-08T00:00:00", + "ShipVia": 1, + "Freight": 96.5, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10893, - "EmployeeID": 9, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 2, - "Freight": 77.78, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10747, + "EmployeeID": 6, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-26T00:00:00", + "ShipVia": 1, + "Freight": 117.33, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 24, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 35, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10844, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", + "ShipVia": 2, + "Freight": 25.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10894, - "EmployeeID": 1, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 1, - "Freight": 116.13, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11053, + "EmployeeID": 2, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 28, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 120, - "Discount": 0.06 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 25, + "Discount": 0.2 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "AROUT", + "Company": "Around the Horn", + "ContactName": "Thomas Hardy", + "ContactTitle": "Sales Representative", + "Address": "120 Hanover Sq.", + "City": "London", + "PostalCode": 12000, + "Country": "UK", + "Phone": "(171) 555-7788", + "Fax": "(171) 555-6750", "Orders": [ { - "OrderID": 10895, - "EmployeeID": 3, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 1, - "Freight": 162.75, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10355, + "EmployeeID": 6, + "OrderDate": "1996-11-15T00:00:00", + "RequiredDate": "1996-12-13T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 41.95, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 31000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 110, + "UnitPrice": 3.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 45, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10383, + "EmployeeID": 8, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-18T00:00:00", + "ShipVia": 3, + "Freight": 34.24, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 19000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 91, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 100, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 11000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10896, - "EmployeeID": 7, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 32.45, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 28000, - "ShipCountry": "Belgium", + "OrderID": 10453, + "EmployeeID": 1, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", + "ShipVia": 2, + "Freight": 25.36, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 48, + "UnitPrice": 10.2, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 16, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10897, - "EmployeeID": 3, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-25T00:00:00", + "OrderID": 10558, + "EmployeeID": 1, + "OrderDate": "1997-06-04T00:00:00", + "RequiredDate": "1997-07-02T00:00:00", + "ShippedDate": "1997-06-10T00:00:00", "ShipVia": 2, - "Freight": 603.54, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 72.97, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 35000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 80, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 36, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10898, + "OrderID": 10707, "EmployeeID": 4, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 1.27, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 3, + "Freight": 21.74, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10899, - "EmployeeID": 5, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", + "OrderID": 10741, + "EmployeeID": 4, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 1.21, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 10.96, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 27000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10900, + "OrderID": 10743, "EmployeeID": 1, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", "ShipVia": 2, - "Freight": 1.66, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 28, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10901, - "EmployeeID": 4, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", - "ShipVia": 1, - "Freight": 62.09, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10768, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 2, + "Freight": 146.32, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 }, { "ProductID": 71, "UnitPrice": 21.5, - "Quantity": 30, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 39000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10902, - "EmployeeID": 1, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 1, - "Freight": 44.15, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 11000, - "ShipCountry": "Sweden", + "OrderID": 10793, + "EmployeeID": 3, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", + "ShipVia": 3, + "Freight": 4.52, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10903, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 36.71, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10864, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 2, + "Freight": 3.04, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10904, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 162.95, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10920, + "EmployeeID": 4, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", + "ShipVia": 2, + "Freight": 29.61, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 35000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 35, + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10905, + "OrderID": 10953, "EmployeeID": 9, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-25T00:00:00", "ShipVia": 2, - "Freight": 13.72, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10906, - "EmployeeID": 4, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 3, - "Freight": 26.29, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 11016, + "EmployeeID": 9, + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 2, + "Freight": 33.8, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 20000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 16, + "Discount": 0 } ] } ] }, { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", + "CustomerID": "SEVES", + "Company": "Seven Seas Imports", + "ContactName": "Hari Kumar", + "ContactTitle": "Sales Manager", + "Address": "90 Wadhurst Rd.", + "City": "London", + "PostalCode": 23000, + "Country": "UK", + "Phone": "(171) 555-1717", + "Fax": "(171) 555-5646", "Orders": [ { - "OrderID": 10907, - "EmployeeID": 6, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-25T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", + "OrderID": 10359, + "EmployeeID": 5, + "OrderDate": "1996-11-21T00:00:00", + "RequiredDate": "1996-12-19T00:00:00", + "ShippedDate": "1996-11-26T00:00:00", "ShipVia": 3, - "Freight": 9.19, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 288.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 43000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 14, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 56, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 70, + "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10908, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 32.96, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10377, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 22.21, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 20, - "Discount": 0.06 + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 14, - "Discount": 0.06 + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10909, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-10T00:00:00", - "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10388, + "EmployeeID": 2, + "OrderDate": "1996-12-19T00:00:00", + "RequiredDate": "1997-01-16T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", + "ShipVia": 1, + "Freight": 34.86, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 43000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 12, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 7.6, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 5, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10910, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 38.11, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10472, + "EmployeeID": 8, + "OrderDate": "1997-03-12T00:00:00", + "RequiredDate": "1997-04-09T00:00:00", + "ShippedDate": "1997-03-19T00:00:00", + "ShipVia": 1, + "Freight": 4.2, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 21000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 10, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 80, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10911, - "EmployeeID": 3, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", - "ShipVia": 1, - "Freight": 38.19, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10523, + "EmployeeID": 7, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 2, + "Freight": 77.63, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 16000, + "ShipCountry": "UK", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, { "ProductID": 17, "UnitPrice": 39, - "Quantity": 12, - "Discount": 0 + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 67, - "UnitPrice": 14, + "ProductID": 20, + "UnitPrice": 81, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 6, + "Discount": 0.1 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10912, - "EmployeeID": 2, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10547, + "EmployeeID": 3, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", "ShipVia": 2, - "Freight": 580.91, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 178.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 60, - "Discount": 0.25 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10913, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 1, - "Freight": 33.05, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10800, + "EmployeeID": 1, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 3, + "Freight": 137.44, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 41000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 7, + "Discount": 0.1 } ] }, { - "OrderID": 10914, + "OrderID": 10804, "EmployeeID": 6, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 1, - "Freight": 21.19, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 25, - "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10915, - "EmployeeID": 2, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 2, - "Freight": 3.51, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 27.33, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 38000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 10, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 4, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10916, - "EmployeeID": 1, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 2, - "Freight": 63.77, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10869, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 143.28, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 48000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 6, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 6, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 20, "Discount": 0 } @@ -30789,172 +20867,169 @@ ] }, { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", + "CustomerID": "DRACD", + "Company": "Drachenblut Delikatessen", + "ContactName": "Sven Ottlieb", + "ContactTitle": "Order Administrator", + "Address": "Walserweg 21", + "City": "Aachen", + "PostalCode": 52066, + "Country": "Germany", + "Phone": "0241-039123", + "Fax": "0241-059428", "Orders": [ { - "OrderID": 10917, + "OrderID": 10363, "EmployeeID": 4, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 2, - "Freight": 8.29, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1996-12-24T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", + "ShipVia": 3, + "Freight": 30.54, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 1, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 32000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10918, + "OrderID": 10391, "EmployeeID": 3, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-31T00:00:00", "ShipVia": 3, - "Freight": 48.83, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 45000, - "ShipCountry": "Canada", + "Freight": 5.45, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 18, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10919, - "EmployeeID": 2, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", + "OrderID": 10797, + "EmployeeID": 7, + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 2, - "Freight": 19.8, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 33.35, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 24, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10825, + "EmployeeID": 1, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 1, + "Freight": 79.25, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 24, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 53, + "UnitPrice": 32.8, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 41000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10920, - "EmployeeID": 4, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", + "OrderID": 11036, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 3, + "Freight": 149.47, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 11067, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", "ShipVia": 2, - "Freight": 29.61, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 35000, - "ShipCountry": "UK", + "Freight": 7.98, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 24, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, "Discount": 0 } ] @@ -30962,327 +21037,267 @@ ] }, { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", + "CustomerID": "EASTC", + "Company": "Eastern Connection", + "ContactName": "Ann Devon", + "ContactTitle": "Sales Agent", + "Address": "35 King George", + "City": "London", + "PostalCode": 46000, + "Country": "UK", + "Phone": "(171) 555-0297", + "Fax": "(171) 555-3373", "Orders": [ { - "OrderID": 10921, + "OrderID": 10364, "EmployeeID": 1, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", "ShipVia": 1, - "Freight": 176.48, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 71.97, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 10000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10922, - "EmployeeID": 5, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", + "OrderID": 10400, + "EmployeeID": 1, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", "ShipVia": 3, - "Freight": 62.74, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 83.93, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 25000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 15, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 35, + "UnitPrice": 14.4, "Quantity": 35, "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10923, + "OrderID": 10532, "EmployeeID": 7, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderDate": "1997-05-09T00:00:00", + "RequiredDate": "1997-06-06T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", "ShipVia": 3, - "Freight": 68.26, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 74.46, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 23000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, + "ProductID": 66, + "UnitPrice": 17, "Quantity": 24, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 28000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10924, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 2, - "Freight": 151.52, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 35000, - "ShipCountry": "Sweden", + "OrderID": 10726, + "EmployeeID": 4, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 16.56, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 24000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 6, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10925, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderID": 10987, + "EmployeeID": 8, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", "ShipVia": 1, - "Freight": 2.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 185.48, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 12, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 20, + "Discount": 0 + } + ] + }, { - "OrderID": 10926, + "OrderID": 11024, "EmployeeID": 4, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 3, - "Freight": 39.92, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 74.36, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 23000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 2, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ + }, { - "OrderID": 10927, - "EmployeeID": 4, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 19.79, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "OrderID": 11047, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 46.62, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 14000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11056, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 2, + "Freight": 278.96, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 17000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 } ] @@ -31290,837 +21305,693 @@ ] }, { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", + "CustomerID": "ANTON", + "Company": "Antonio Moreno Taquería", + "ContactName": "Antonio Moreno", + "ContactTitle": "Owner", + "Address": "Mataderos 2312", + "City": "México D.F.", + "PostalCode": 5023, + "Country": "Mexico", + "Phone": "(5) 555-3932", "Orders": [ { - "OrderID": 10928, - "EmployeeID": 1, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 10365, + "EmployeeID": 3, + "OrderDate": "1996-11-27T00:00:00", + "RequiredDate": "1996-12-25T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 22, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 24, "Discount": 0 + } + ] + }, + { + "OrderID": 10507, + "EmployeeID": 7, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-04-22T00:00:00", + "ShipVia": 1, + "Freight": 47.45, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0 + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10929, - "EmployeeID": 6, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", + "OrderID": 10535, + "EmployeeID": 4, + "OrderDate": "1997-05-13T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-21T00:00:00", "ShipVia": 1, - "Freight": 33.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 15.64, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 49, - "Discount": 0 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 5, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 14000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10930, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10573, + "EmployeeID": 7, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-20T00:00:00", "ShipVia": 3, - "Freight": 15.55, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 17000, - "ShipCountry": "Belgium", + "Freight": 84.84, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 36, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 25, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 53, + "UnitPrice": 32.8, "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10931, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 2, - "Freight": 13.6, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10677, + "EmployeeID": 1, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 3, + "Freight": 4.03, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 42, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 30, "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10932, - "EmployeeID": 8, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", - "ShipVia": 1, - "Freight": 134.64, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10682, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 2, + "Freight": 36.13, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, + "ProductID": 33, + "UnitPrice": 2.5, "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 14, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 16, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 4, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.1 + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 27000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10933, - "EmployeeID": 6, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 3, - "Freight": 54.15, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40624, - "ShipPostalCode": 44000, - "ShipCountry": "UK", + "OrderID": 10856, + "EmployeeID": 3, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 58.43, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 2, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] } ], - "Fax": "(198) 555-8888" + "Fax": "(5) 555-3932" }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "CustomerID": "GALED", + "Company": "Galería del gastrónomo", + "ContactName": "Eduardo Saavedra", + "ContactTitle": "Marketing Manager", + "Address": "Rambla de Cataluña, 23", + "City": "Barcelona", + "PostalCode": 8022, + "Country": "Spain", + "Phone": "(93) 203 4560", + "Fax": "(93) 203 4561", "Orders": [ { - "OrderID": 10934, - "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", - "ShipVia": 3, - "Freight": 32.01, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10366, + "EmployeeID": 8, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-30T00:00:00", + "ShipVia": 2, + "Freight": 10.14, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10935, + "OrderID": 10426, "EmployeeID": 4, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 47.59, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-02-06T00:00:00", + "ShipVia": 1, + "Freight": 18.69, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 8, - "Discount": 0.25 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10936, + "OrderID": 10568, "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 2, - "Freight": 33.68, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1997-06-13T00:00:00", + "RequiredDate": "1997-07-11T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 3, + "Freight": 6.54, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 5, + "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10937, - "EmployeeID": 7, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderID": 10887, + "EmployeeID": 8, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", "ShipVia": 3, - "Freight": 31.51, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 1.25, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 34, + "ProductID": 25, "UnitPrice": 14, - "Quantity": 20, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10938, - "EmployeeID": 3, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 31.89, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10928, + "EmployeeID": 1, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 1.36, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 49, - "Discount": 0.25 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "VAFFE", + "Company": "Vaffeljernet", + "ContactName": "Palle Ibsen", + "ContactTitle": "Sales Manager", + "Address": "Smagsloget 45", + "City": "Århus", + "PostalCode": 8200, + "Country": "Denmark", + "Phone": "86 21 32 43", + "Fax": "86 22 33 44", "Orders": [ { - "OrderID": 10939, - "EmployeeID": 2, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 2, - "Freight": 76.33, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10367, + "EmployeeID": 7, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1996-12-26T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 13.55, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10940, + "OrderID": 10399, "EmployeeID": 8, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderDate": "1996-12-31T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", "ShipVia": 3, - "Freight": 19.77, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 27.36, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 8, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10941, - "EmployeeID": 7, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 400.81, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10465, + "EmployeeID": 1, + "OrderDate": "1997-03-05T00:00:00", + "RequiredDate": "1997-04-02T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 3, + "Freight": 145.04, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 44, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 45, + "UnitPrice": 7.6, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.1 + }, + { + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10591, + "EmployeeID": 1, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-07-21T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 55.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 80, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 50, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10942, - "EmployeeID": 9, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 17.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10602, + "EmployeeID": 8, + "OrderDate": "1997-07-17T00:00:00", + "RequiredDate": "1997-08-14T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", + "ShipVia": 2, + "Freight": 2.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 28, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 5, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 15000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10943, + "OrderID": 10688, "EmployeeID": 4, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", "ShipVia": 2, - "Freight": 2.17, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", + "Freight": 299.09, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 15, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 21, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 15, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 14, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 44000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10944, + "OrderID": 10744, "EmployeeID": 6, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 3, - "Freight": 52.92, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 69.19, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10769, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 1, + "Freight": 65.06, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10945, - "EmployeeID": 4, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-04-09T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10921, + "EmployeeID": 1, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 1, - "Freight": 10.22, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 176.48, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 40, "Discount": 0 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { "OrderID": 10946, "EmployeeID": 1, @@ -32154,1106 +22025,1060 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 39000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10947, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "OrderID": 10994, + "EmployeeID": 2, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-04-09T00:00:00", + "ShipVia": 3, + "Freight": 65.53, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { "ProductID": 59, "UnitPrice": 55, - "Quantity": 4, - "Discount": 0 + "Quantity": 18, + "Discount": 0.06 } ] } - ], - "Fax": "(171) 555-1212" + ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "CustomerID": "QUEEN", + "Company": "Queen Cozinha", + "ContactName": "Lúcia Carvalho", + "ContactTitle": "Marketing Assistant", + "Address": "Alameda dos Canàrios, 891", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5487, + "Country": "Brazil", + "Phone": "(11) 555-1189", "Orders": [ { - "OrderID": 10948, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 3, - "Freight": 23.39, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10372, + "EmployeeID": 5, + "OrderDate": "1996-12-04T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 890.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 9, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 40, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 70, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 42, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10406, + "EmployeeID": 7, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-13T00:00:00", + "ShipVia": 1, + "Freight": 108.04, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 42, + "Discount": 0.1 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 2, + "Discount": 0.1 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 17000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10949, + "OrderID": 10487, "EmployeeID": 2, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-17T00:00:00", - "ShipVia": 3, - "Freight": 74.44, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 34000, - "ShipCountry": "Canada", + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-03-28T00:00:00", + "ShipVia": 2, + "Freight": 71.07, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 12, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 30, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10637, + "EmployeeID": 6, + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 201.29, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 25, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 60, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10950, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-13T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10659, + "EmployeeID": 7, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 2, - "Freight": 2.5, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 105.81, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 24, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10704, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", + "ShipVia": 1, + "Freight": 4.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { "ProductID": 4, "UnitPrice": 22, - "Quantity": 5, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10951, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", + "OrderID": 10728, + "EmployeeID": 4, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-11-11T00:00:00", "ShipVia": 2, - "Freight": 30.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 58.33, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, + "ProductID": 30, + "UnitPrice": 25.89, "Quantity": 15, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, + "ProductID": 40, + "UnitPrice": 18.4, "Quantity": 6, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10952, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "OrderID": 10786, + "EmployeeID": 8, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-16T00:00:00", + "ShippedDate": "1997-12-23T00:00:00", "ShipVia": 1, - "Freight": 40.42, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 110.87, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 2, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0.2 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, + "Discount": 0.2 } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 36000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10953, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-25T00:00:00", + ] + }, + { + "OrderID": 10868, + "EmployeeID": 7, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 37000, - "ShipCountry": "UK", + "Freight": 191.27, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 42, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10954, - "EmployeeID": 5, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 10913, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 1, - "Freight": 27.91, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", + "Freight": 33.05, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 17000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10955, + "OrderID": 10961, "EmployeeID": 8, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 20000, - "ShipCountry": "Sweden", + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", + "ShipVia": 1, + "Freight": 104.47, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10956, - "EmployeeID": 6, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 11068, + "EmployeeID": 8, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-11-01T00:00:00", "ShipVia": 2, - "Freight": 44.65, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "Freight": 81.75, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.16 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 14, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 36, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 8, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 28, + "Discount": 0.16 } ] } - ] + ], + "Fax": "(11) 555-1189" }, { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10957, - "EmployeeID": 8, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "CustomerID": "WOLZA", + "Company": "Wolski Zajazd", + "ContactName": "Zbyszek Piestrzeniewicz", + "ContactTitle": "Owner", + "Address": "ul. Filtrowa 68", + "City": "Warszawa", + "PostalCode": 12000, + "Country": "Poland", + "Phone": "(26) 642-7012", + "Fax": "(26) 642-7012", + "Orders": [ + { + "OrderID": 10374, + "EmployeeID": 1, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", "ShipVia": 3, - "Freight": 105.36, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 3.94, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 31, + "UnitPrice": 10, "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 8, + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10958, - "EmployeeID": 7, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "OrderID": 10611, + "EmployeeID": 6, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 49.56, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 80.65, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 20, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 6, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 5, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10959, - "EmployeeID": 6, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", - "ShipVia": 2, - "Freight": 4.98, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 10792, + "EmployeeID": 1, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 3, + "Freight": 23.79, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10960, - "EmployeeID": 3, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 2.08, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10870, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", + "ShipVia": 3, + "Freight": 12.04, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 24, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10961, - "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", - "ShipVia": 1, - "Freight": 104.47, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, - "Discount": 0.06 - }, + "OrderID": 10906, + "EmployeeID": 4, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", + "ShipVia": 3, + "Freight": 26.29, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 60, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 15, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10962, + "OrderID": 10998, "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", "ShipVia": 2, - "Freight": 275.79, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 20.31, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 77, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 74, + "UnitPrice": 10, "Quantity": 20, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 9, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 44, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10963, - "EmployeeID": 9, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", - "ShipVia": 3, - "Freight": 2.7, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 11044, + "EmployeeID": 4, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 8.72, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0 } ] } ] }, { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", + "CustomerID": "HUNGC", + "Company": "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", "Orders": [ { - "OrderID": 10964, + "OrderID": 10375, "EmployeeID": 3, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "OrderDate": "1996-12-06T00:00:00", + "RequiredDate": "1997-01-03T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", "ShipVia": 2, - "Freight": 87.38, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 20.12, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 6, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10394, + "EmployeeID": 1, + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 3, + "Freight": 30.34, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10965, - "EmployeeID": 6, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", - "ShipVia": 3, - "Freight": 144.38, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "OrderID": 10415, + "EmployeeID": 3, + "OrderDate": "1997-01-15T00:00:00", + "RequiredDate": "1997-02-12T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "ShipVia": 1, + "Freight": 0.2, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 16, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10966, + "OrderID": 10600, "EmployeeID": 4, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-13T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", "ShipVia": 1, - "Freight": 27.19, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 45.13, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 - }, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10660, + "EmployeeID": 8, + "OrderDate": "1997-09-08T00:00:00", + "RequiredDate": "1997-10-06T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 1, + "Freight": 111.29, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 21, + "Discount": 0 } ] } - ], - "Fax": "0452-076545" + ] }, { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", + "CustomerID": "SANTG", + "Company": "Santé Gourmet", + "ContactName": "Jonas Bergulfsen", + "ContactTitle": "Owner", + "Address": "Erling Skakkes gate 78", + "City": "Stavern", + "PostalCode": 4110, + "Country": "Norway", + "Phone": "07-98 92 35", + "Fax": "07-98 92 47", "Orders": [ { - "OrderID": 10967, - "EmployeeID": 2, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10387, + "EmployeeID": 1, + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-15T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", "ShipVia": 2, - "Freight": 62.22, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 93.63, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, "Quantity": 12, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10968, - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-01T00:00:00", - "ShipVia": 3, - "Freight": 74.6, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10520, + "EmployeeID": 7, + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 1, + "Freight": 13.37, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 30, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 4, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10969, - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", + "OrderID": 10639, + "EmployeeID": 7, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-08-27T00:00:00", + "ShipVia": 3, + "Freight": 38.64, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10831, + "EmployeeID": 3, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 2, - "Freight": 0.21, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 72.19, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ + }, { - "OrderID": 10970, - "EmployeeID": 9, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 1, - "Freight": 16.16, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", + "OrderID": 10909, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-10T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10971, + "OrderID": 11015, "EmployeeID": 2, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 2, - "Freight": 121.82, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 4.62, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] @@ -33261,462 +23086,321 @@ ] }, { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", + "CustomerID": "BOTTM", + "Company": "Bottom-Dollar Markets", + "ContactName": "Elizabeth Lincoln", + "ContactTitle": "Accounting Manager", + "Address": "23 Tsawassen Blvd.", + "City": "Tsawassen", + "Region": "BC", + "PostalCode": 14000, + "Country": "Canada", + "Phone": "(604) 555-4729", + "Fax": "(604) 555-3745", "Orders": [ { - "OrderID": 10972, + "OrderID": 10389, "EmployeeID": 4, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", + "OrderDate": "1996-12-20T00:00:00", + "RequiredDate": "1997-01-17T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", "ShipVia": 2, - "Freight": 0.02, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "Freight": 47.42, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 28000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 7, - "Discount": 0 - } - ] - }, - { - "OrderID": 10973, - "EmployeeID": 6, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 2, - "Freight": 15.17, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10974, + "OrderID": 10410, "EmployeeID": 3, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderDate": "1997-01-10T00:00:00", + "RequiredDate": "1997-02-07T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", "ShipVia": 3, - "Freight": 12.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 2.4, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 19000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10975, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-22T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 3, - "Freight": 32.27, + "OrderID": 10431, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 44.17, "ShipName": "Bottom-Dollar Markets", "ShipAddress": "23 Tsawassen Blvd.", "ShipCity": "Tsawassen", "ShipRegion": "BC", - "ShipPostalCode": 45000, + "ShipPostalCode": 49000, "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 16, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 50, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10976, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderID": 10492, + "EmployeeID": 3, + "OrderDate": "1997-04-01T00:00:00", + "RequiredDate": "1997-04-29T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 1, - "Freight": 37.97, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 62.89, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 41000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10977, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10742, + "EmployeeID": 3, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-12-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 208.5, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", + "Freight": 243.73, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 17000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 46000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10978, - "EmployeeID": 9, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", - "ShipVia": 2, - "Freight": 32.82, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", + "OrderID": 10918, + "EmployeeID": 3, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 48.83, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", "ShipPostalCode": 45000, - "ShipCountry": "Belgium", + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.16 - }, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 25, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10944, + "EmployeeID": 6, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 52.92, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, + "Discount": 0.25 }, { "ProductID": 44, "UnitPrice": 19.45, - "Quantity": 6, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10979, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-03-31T00:00:00", - "ShipVia": 2, - "Freight": 353.07, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, "Quantity": 18, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 12, + "ProductID": 56, "UnitPrice": 38, - "Quantity": 20, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10949, + "EmployeeID": 2, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-17T00:00:00", + "ShipVia": 3, + "Freight": 74.44, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 34000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 80, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 30, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 24, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 35, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 21000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10980, - "EmployeeID": 4, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 1, - "Freight": 1.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "OrderID": 10975, + "EmployeeID": 1, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-22T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 32.27, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 45000, + "ShipCountry": "Canada", "OrderDetails": [ + { + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 16, + "Discount": 0 + }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10981, - "EmployeeID": 1, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 193.37, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 16000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { "OrderID": 10982, "EmployeeID": 2, @@ -33745,588 +23429,513 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10983, - "EmployeeID": 2, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 2, - "Freight": 657.54, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11027, + "EmployeeID": 1, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 52.52, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 11000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 21, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11045, + "EmployeeID": 6, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-05-23T00:00:00", + "ShipVia": 2, + "Freight": 70.58, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 36000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 84, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 24, "Discount": 0 } ] }, { - "OrderID": 10984, - "EmployeeID": 1, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderID": 11048, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", "ShipVia": 3, - "Freight": 211.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 24.12, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 15000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 55, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 42, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "LINOD", + "Company": "LINO-Delicateses", + "ContactName": "Felipe Izquierdo", + "ContactTitle": "Owner", + "Address": "Ave. 5 de Mayo Porlamar", + "City": "Sao Paulo", + "Region": "Nueva Esparta", + "PostalCode": 4980, + "Country": "Venezuela", + "Phone": "(8) 34-56-12", + "Fax": "(8) 34-93-93", "Orders": [ { - "OrderID": 10985, - "EmployeeID": 2, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10405, + "EmployeeID": 1, + "OrderDate": "1997-01-06T00:00:00", + "RequiredDate": "1997-02-03T00:00:00", + "ShippedDate": "1997-01-22T00:00:00", "ShipVia": 1, - "Freight": 91.51, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 34.82, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 36, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 + } + ] + }, + { + "OrderID": 10485, + "EmployeeID": 4, + "OrderDate": "1997-03-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-31T00:00:00", + "ShipVia": 2, + "Freight": 64.45, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 35, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 60, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10986, - "EmployeeID": 8, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 2, - "Freight": 217.86, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10638, + "EmployeeID": 3, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", + "ShipVia": 1, + "Freight": 158.44, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 16000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10987, - "EmployeeID": 8, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 1, - "Freight": 185.48, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 32000, - "ShipCountry": "UK", + "OrderID": 10697, + "EmployeeID": 3, + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-05T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", + "ShipVia": 1, + "Freight": 45.52, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0.25 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 9, + "Discount": 0.25 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10988, - "EmployeeID": 3, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 61.14, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10729, + "EmployeeID": 8, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 3, + "Freight": 141.06, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 50, + "UnitPrice": 16.25, "Quantity": 40, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10989, - "EmployeeID": 2, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10811, + "EmployeeID": 8, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", "ShipVia": 1, - "Freight": 34.76, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 31.22, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 40, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10990, - "EmployeeID": 2, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", + "OrderID": 10838, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 3, - "Freight": 117.61, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 59.28, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 65, - "Discount": 0 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 60, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 66, - "Discount": 0.16 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10991, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 1, - "Freight": 38.51, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10840, + "EmployeeID": 4, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", + "ShipVia": 2, + "Freight": 2.71, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.2 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 76, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 90, + "Quantity": 10, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10992, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 4.27, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "OrderID": 10919, + "EmployeeID": 2, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 2, + "Freight": 19.8, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 2, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 50000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10993, - "EmployeeID": 7, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 3, - "Freight": 8.81, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "OrderID": 10954, + "EmployeeID": 5, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 1, + "Freight": 27.91, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 28, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 25, + "Discount": 0.16 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10994, + "OrderID": 11014, "EmployeeID": 2, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-04-09T00:00:00", + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", "ShipVia": 3, - "Freight": 65.53, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 23.6, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 28, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10995, + "OrderID": 11039, "EmployeeID": 1, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 3, - "Freight": 46, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-05-25T00:00:00", + "ShipVia": 2, + "Freight": 65, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 28, "Discount": 0 } ] @@ -34334,935 +23943,905 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "FOLIG", + "Company": "Folies gourmandes", + "ContactName": "Martine Rancé", + "ContactTitle": "Sales Associate", + "Address": "184, chaussée de Tournai", + "City": "Lille", + "PostalCode": 59000, + "Country": "France", + "Phone": "20.16.10.16", + "Fax": "20.16.10.17", "Orders": [ { - "OrderID": 10996, - "EmployeeID": 4, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 1.12, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10408, + "EmployeeID": 8, + "OrderDate": "1997-01-08T00:00:00", + "RequiredDate": "1997-02-05T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 11.26, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10997, - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10480, + "EmployeeID": 6, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", "ShipVia": 2, - "Freight": 73.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 1.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10998, - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 2, - "Freight": 20.31, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10634, + "EmployeeID": 4, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 487.38, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 7, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 30, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10999, - "EmployeeID": 6, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-01T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10763, + "EmployeeID": 3, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 3, + "Freight": 37.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10789, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", "ShipVia": 2, - "Freight": 96.35, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 100.6, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 35, + "UnitPrice": 18, "Quantity": 15, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 21, - "Discount": 0.06 + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "OCEAN", + "Company": "Océano Atlántico Ltda.", + "ContactName": "Yvonne Moncada", + "ContactTitle": "Sales Agent", + "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5333", + "Fax": "(1) 135-5535", "Orders": [ { - "OrderID": 11000, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", - "ShipVia": 3, - "Freight": 55.12, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10409, + "EmployeeID": 3, + "OrderDate": "1997-01-09T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 29.83, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 - }, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10531, + "EmployeeID": 7, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", + "ShipVia": 1, + "Freight": 8.12, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 30000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 11001, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", + "OrderID": 10898, + "EmployeeID": 4, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", "ShipVia": 2, - "Freight": 197.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 30000, - "ShipCountry": "Sweden", + "Freight": 1.27, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 5, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10958, + "EmployeeID": 7, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 2, + "Freight": 49.56, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 25, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 25, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11002, - "EmployeeID": 4, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", - "ShipVia": 1, - "Freight": 141.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10986, + "EmployeeID": 8, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 217.86, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 56, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, + "ProductID": 20, + "UnitPrice": 81, "Quantity": 15, - "Discount": 0.16 + "Discount": 0 }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0.16 + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 40, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "THECR", - "Company": "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": "FRANS", + "Company": "Franchi S.p.A.", + "ContactName": "Paolo Accorti", + "ContactTitle": "Sales Representative", + "Address": "Via Monte Bianco 34", + "City": "Torino", + "PostalCode": 10100, + "Country": "Italy", + "Phone": "011-4988260", + "Fax": "011-4988261", "Orders": [ { - "OrderID": 11003, - "EmployeeID": 3, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 3, - "Freight": 14.91, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "OrderID": 10422, + "EmployeeID": 2, + "OrderDate": "1997-01-22T00:00:00", + "RequiredDate": "1997-02-19T00:00:00", + "ShippedDate": "1997-01-31T00:00:00", + "ShipVia": 1, + "Freight": 3.02, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 2, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10710, + "EmployeeID": 1, + "OrderDate": "1997-10-20T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 1, + "Freight": 4.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 10, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 37000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 11004, + "OrderID": 10753, "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", "ShipVia": 1, - "Freight": 44.84, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 33000, - "ShipCountry": "Belgium", + "Freight": 7.7, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 6, + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 11005, - "EmployeeID": 2, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10807, + "EmployeeID": 4, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 1.36, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 2, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 1, + "Discount": 0 + } + ] + }, + { + "OrderID": 11026, + "EmployeeID": 4, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", + "ShipVia": 1, + "Freight": 47.09, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 51, + "UnitPrice": 53, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11006, - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", + "OrderID": 11060, + "EmployeeID": 2, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", "ShipVia": 2, - "Freight": 25.19, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 10.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0 } ] } - ], - "Fax": "(503) 555-7555" + ] }, { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", + "CustomerID": "GOURL", + "Company": "Gourmet Lanchonetes", + "ContactName": "André Fonseca", + "ContactTitle": "Sales Associate", + "Address": "Av. Brasil, 442", + "City": "Campinas", + "Region": "SP", + "PostalCode": 4876, + "Country": "Brazil", + "Phone": "(11) 555-9482", "Orders": [ { - "OrderID": 11007, - "EmployeeID": 8, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 2, - "Freight": 202.24, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10423, + "EmployeeID": 6, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", + "ShipVia": 3, + "Freight": 24.5, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 20, "Discount": 0 + } + ] + }, + { + "OrderID": 10652, + "EmployeeID": 4, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 2, + "Freight": 7.14, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 2, + "Discount": 0.25 }, { "ProductID": 42, "UnitPrice": 14, - "Quantity": 14, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11008, - "EmployeeID": 7, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-05-09T00:00:00", - "ShipVia": 3, - "Freight": 79.46, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10685, + "EmployeeID": 4, + "OrderDate": "1997-09-29T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 33.75, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 90, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 21, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 11009, - "EmployeeID": 2, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 59.11, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10709, + "EmployeeID": 1, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-11-20T00:00:00", + "ShipVia": 3, + "Freight": 210.8, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 9, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11010, + "OrderID": 10734, "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 2, - "Freight": 28.71, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-12T00:00:00", + "ShipVia": 3, + "Freight": 1.63, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 11011, - "EmployeeID": 3, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10777, + "EmployeeID": 7, + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 2, + "Freight": 3.01, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10790, + "EmployeeID": 6, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", "ShipVia": 1, - "Freight": 1.21, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 28.23, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 3, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 11012, - "EmployeeID": 1, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 3, - "Freight": 242.95, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10959, + "EmployeeID": 6, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 4.98, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 - }, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 11049, + "EmployeeID": 3, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 8.34, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 36, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, + "Discount": 0.2 } ] } - ] + ], + "Fax": "(11) 555-9482" }, { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", + "CustomerID": "CONSH", + "Company": "Consolidated Holdings", + "ContactName": "Elizabeth Brown", + "ContactTitle": "Sales Representative", + "Address": "Berkeley Gardens 12 Brewery", + "City": "London", + "PostalCode": 38000, + "Country": "UK", + "Phone": "(171) 555-2282", + "Fax": "(171) 555-9199", "Orders": [ { - "OrderID": 11013, - "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 32.99, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10435, + "EmployeeID": 8, + "OrderDate": "1997-02-04T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 9.21, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 10, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 4, + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10462, + "EmployeeID": 2, + "OrderDate": "1997-03-03T00:00:00", + "RequiredDate": "1997-03-31T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 1, + "Freight": 6.17, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 50000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 2, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 11014, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", - "ShipVia": 3, - "Freight": 23.6, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 28, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 11015, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10848, + "EmployeeID": 7, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 2, - "Freight": 4.62, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 38.24, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 36000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 3, "Discount": 0 } ] @@ -35270,158 +24849,141 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", + "CustomerID": "RANCH", + "Company": "Rancho grande", + "ContactName": "Sergio Gutiérrez", "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 42000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Address": "Av. del Libertador 900", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 123-5555", + "Fax": "(1) 123-5556", "Orders": [ { - "OrderID": 11016, - "EmployeeID": 9, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10448, + "EmployeeID": 4, + "OrderDate": "1997-02-17T00:00:00", + "RequiredDate": "1997-03-17T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", "ShipVia": 2, - "Freight": 33.8, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 20000, - "ShipCountry": "UK", + "Freight": 38.82, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 16, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11017, - "EmployeeID": 9, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10716, + "EmployeeID": 4, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-27T00:00:00", "ShipVia": 2, - "Freight": 754.26, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 22.57, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 3, + "ProductID": 21, "UnitPrice": 10, - "Quantity": 25, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 110, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11018, - "EmployeeID": 4, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10828, + "EmployeeID": 9, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 90.85, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 10916, + "EmployeeID": 1, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 2, - "Freight": 11.65, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 63.77, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { "OrderID": 11019, "EmployeeID": 6, @@ -35453,139 +25015,60 @@ ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 11020, - "EmployeeID": 2, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", - "ShipVia": 2, - "Freight": 43.3, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "LAZYK", + "Company": "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", "Orders": [ { - "OrderID": 11021, - "EmployeeID": 3, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 1, - "Freight": 297.18, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10482, + "EmployeeID": 1, + "OrderDate": "1997-03-21T00:00:00", + "RequiredDate": "1997-04-18T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 7.48, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 11, - "Discount": 0.25 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 63, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 44, - "Discount": 0.25 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 11022, - "EmployeeID": 9, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10545, + "EmployeeID": 8, + "OrderDate": "1997-05-22T00:00:00", + "RequiredDate": "1997-06-19T00:00:00", + "ShippedDate": "1997-06-26T00:00:00", "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 11.92, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 } ] @@ -35593,460 +25076,323 @@ ] }, { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", + "CustomerID": "LAUGB", + "Company": "Laughing Bacchus Wine Cellars", + "ContactName": "Yoshi Tannamuri", + "ContactTitle": "Marketing Assistant", + "Address": "1900 Oak St.", + "City": "Vancouver", + "Region": "BC", "PostalCode": 19000, - "Country": "UK", - "Phone": "(171) 555-1212", + "Country": "Canada", + "Phone": "(604) 555-3392", + "Fax": "(604) 555-7293", "Orders": [ { - "OrderID": 11023, - "EmployeeID": 1, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 123.83, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 36000, - "ShipCountry": "UK", + "OrderID": 10495, + "EmployeeID": 3, + "OrderDate": "1997-04-03T00:00:00", + "RequiredDate": "1997-05-01T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", + "ShipVia": 3, + "Freight": 4.65, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 20000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 4, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 16000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11024, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 1, - "Freight": 74.36, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 23000, - "ShipCountry": "UK", + "OrderID": 10620, + "EmployeeID": 2, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", + "ShipVia": 3, + "Freight": 0.94, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 31000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 50, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 11025, - "EmployeeID": 6, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10810, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 3, - "Freight": 29.17, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 4.33, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 48000, + "ShipCountry": "Canada", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.1 - }, { "ProductID": 13, "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.1 + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", + "CustomerID": "BLAUS", + "Company": "Blauer See Delikatessen", + "ContactName": "Hanna Moos", "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", + "Address": "Forsterstr. 57", + "City": "Mannheim", + "PostalCode": 68306, + "Country": "Germany", + "Phone": "0621-08460", + "Fax": "0621-08924", "Orders": [ { - "OrderID": 11026, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", - "ShipVia": 1, - "Freight": 47.09, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10501, + "EmployeeID": 9, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 3, + "Freight": 8.85, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 49000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11027, - "EmployeeID": 1, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10509, + "EmployeeID": 4, + "OrderDate": "1997-04-17T00:00:00", + "RequiredDate": "1997-05-15T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 1, - "Freight": 52.52, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 11000, - "ShipCountry": "Canada", + "Freight": 0.15, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 11028, - "EmployeeID": 2, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", - "ShipVia": 1, - "Freight": 29.59, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10582, + "EmployeeID": 3, + "OrderDate": "1997-06-27T00:00:00", + "RequiredDate": "1997-07-25T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 27.71, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 24, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 14, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 11029, - "EmployeeID": 4, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 47.84, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10614, + "EmployeeID": 8, + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 3, + "Freight": 1.93, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 12, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11030, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", + "OrderID": 10853, + "EmployeeID": 9, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", "ShipVia": 2, - "Freight": 830.75, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 53.83, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 100, - "Discount": 0.25 - }, - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 70, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 100, - "Discount": 0.25 } ] }, { - "OrderID": 11031, + "OrderID": 10956, "EmployeeID": 6, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 227.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 44.65, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 45, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 80, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 21, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11032, - "EmployeeID": 2, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 11058, + "EmployeeID": 9, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShippedDate": "1998-08-27T00:00:00", "ShipVia": 3, - "Freight": 606.19, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 31.14, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 35, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 25, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, "Discount": 0 } ] @@ -36054,145 +25400,97 @@ ] }, { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", + "CustomerID": "NORTS", + "Company": "North/South", + "ContactName": "Simon Crowther", + "ContactTitle": "Sales Associate", + "Address": "South House 300 Queensbridge", + "City": "London", + "PostalCode": 13000, + "Country": "UK", + "Phone": "(171) 555-7733", + "Fax": "(171) 555-2530", "Orders": [ { - "OrderID": 11033, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 10517, + "EmployeeID": 3, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 3, - "Freight": 84.74, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 70, - "Discount": 0.1 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 36, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ - { - "OrderID": 11034, - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 40.32, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 32.07, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 19000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 12, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 23000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 11035, + "OrderID": 10752, "EmployeeID": 2, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 0.17, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 30000, - "ShipCountry": "Belgium", + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", + "ShipVia": 3, + "Freight": 1.39, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 1, "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 60, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 3, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11057, + "EmployeeID": 3, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 4.13, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 47000, + "ShipCountry": "UK", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] @@ -36200,181 +25498,175 @@ ] }, { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", + "CustomerID": "CACTU", + "Company": "Cactus Comidas para llevar", + "ContactName": "Patricio Simpson", + "ContactTitle": "Sales Agent", + "Address": "Cerrito 333", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5555", + "Fax": "(1) 135-4892", "Orders": [ { - "OrderID": 11036, + "OrderID": 10521, "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", - "ShipVia": 3, - "Freight": 149.47, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 17.22, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 11037, - "EmployeeID": 7, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 3.2, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10782, + "EmployeeID": 9, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 1.1, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 1, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 11038, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", - "ShipVia": 2, - "Freight": 29.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 44000, - "ShipCountry": "Belgium", + "OrderID": 10819, + "EmployeeID": 2, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", + "ShipVia": 3, + "Freight": 19.76, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 7, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 2, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10881, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 2.84, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 11039, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-05-25T00:00:00", - "ShipVia": 2, - "Freight": 65, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10937, + "EmployeeID": 7, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 31.51, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { "ProductID": 28, "UnitPrice": 45.6, - "Quantity": 20, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 24, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11054, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShippedDate": "1998-05-26T00:00:00", + "ShipVia": 1, + "Freight": 0.33, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 60, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 28, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] @@ -36394,13 +25686,48 @@ "Phone": "(503) 555-7555", "Orders": [ { - "OrderID": 11040, - "EmployeeID": 4, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-05-20T00:00:00", - "ShipVia": 3, - "Freight": 18.84, + "OrderID": 10528, + "EmployeeID": 6, + "OrderDate": "1997-05-06T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 3.35, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.2 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 10589, + "EmployeeID": 8, + "OrderDate": "1997-07-04T00:00:00", + "RequiredDate": "1997-08-01T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 4.42, "ShipName": "Great Lakes Food Market", "ShipAddress": "2732 Baker Blvd.", "ShipCity": "Eugene", @@ -36409,590 +25736,476 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 11041, - "EmployeeID": 3, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", + "OrderID": 10616, + "EmployeeID": 1, + "OrderDate": "1997-07-31T00:00:00", + "RequiredDate": "1997-08-28T00:00:00", + "ShippedDate": "1997-08-05T00:00:00", "ShipVia": 2, - "Freight": 48.22, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 116.53, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 11042, - "EmployeeID": 2, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10656, + "EmployeeID": 6, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 1, - "Freight": 29.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 57.15, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, + "Discount": 0.1 + }, { "ProductID": 44, "UnitPrice": 19.45, - "Quantity": 15, - "Discount": 0 + "Quantity": 28, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 4, - "Discount": 0 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.1 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 11043, - "EmployeeID": 5, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", - "ShipVia": 2, - "Freight": 8.8, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "OrderID": 10681, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 76.13, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 11044, + "OrderID": 10816, "EmployeeID": 4, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 1, - "Freight": 8.72, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-02-03T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 2, + "Freight": 719.78, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10936, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 33.68, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 31000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11045, - "EmployeeID": 6, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-05-23T00:00:00", + "OrderID": 11006, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", "ShipVia": 2, - "Freight": 70.58, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", + "Freight": 25.19, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 24, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 2, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 11046, - "EmployeeID": 8, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 71.64, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 11040, + "EmployeeID": 4, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-05-20T00:00:00", + "ShipVia": 3, + "Freight": 18.84, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, + "ProductID": 21, + "UnitPrice": 10, "Quantity": 20, - "Discount": 0.06 - }, + "Discount": 0 + } + ] + }, + { + "OrderID": 11061, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-06-11T00:00:00", + "ShippedDate": "1998-06-11T00:00:00", + "ShipVia": 3, + "Freight": 14.01, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, + "ProductID": 60, + "UnitPrice": 34, "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 18, - "Discount": 0.06 + "Discount": 0 } ] } - ] + ], + "Fax": "(503) 555-7555" }, { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", + "CustomerID": "MAISD", + "Company": "Maison Dewey", + "ContactName": "Catherine Dewey", "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", + "Address": "Rue Joseph-Bens 532", + "City": "Bruxelles", + "PostalCode": 11000, + "Country": "Belgium", + "Phone": "(02) 201 24 67", + "Fax": "(02) 201 24 68", "Orders": [ { - "OrderID": 11047, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 3, - "Freight": 46.62, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 14000, - "ShipCountry": "UK", + "OrderID": 10529, + "EmployeeID": 5, + "OrderDate": "1997-05-07T00:00:00", + "RequiredDate": "1997-06-04T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 66.69, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 26000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 48000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11048, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", + "OrderID": 10649, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-09-25T00:00:00", + "ShippedDate": "1997-08-29T00:00:00", "ShipVia": 3, - "Freight": 24.12, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 15000, - "ShipCountry": "Canada", + "Freight": 6.2, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 47000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 42, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 11049, - "EmployeeID": 3, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10760, + "EmployeeID": 4, + "OrderDate": "1997-12-01T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1997-12-10T00:00:00", "ShipVia": 1, - "Freight": 8.34, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 155.64, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.25 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 35000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 11050, - "EmployeeID": 8, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10892, + "EmployeeID": 4, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", "ShipVia": 2, - "Freight": 59.41, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 11000, - "ShipCountry": "Sweden", + "Freight": 120.27, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 45000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 11051, + "OrderID": 10896, "EmployeeID": 7, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-09-25T00:00:00", + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", "ShipVia": 3, - "Freight": 2.79, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 11052, - "EmployeeID": 3, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 1, - "Freight": 67.26, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 32.45, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 28000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 16, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 11053, - "EmployeeID": 2, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", + "OrderID": 10978, + "EmployeeID": 9, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 32.82, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 45000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 11054, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", - "ShippedDate": "1998-05-26T00:00:00", + "OrderID": 11004, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 1, - "Freight": 0.33, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 44.84, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 33000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 10, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 } ] @@ -37000,187 +26213,119 @@ ] }, { - "CustomerID": "HILAA", - "Company": "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": "TRAIH", + "Company": "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", "Orders": [ { - "OrderID": 11055, - "EmployeeID": 7, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10574, + "EmployeeID": 4, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 120.92, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 37.6, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 35000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11056, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10577, + "EmployeeID": 9, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 278.96, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 17000, - "ShipCountry": "UK", + "Freight": 25.41, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 40, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 14000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ - { - "OrderID": 11057, - "EmployeeID": 3, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 3, - "Freight": 4.13, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 47000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 11058, - "EmployeeID": 9, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShippedDate": "1998-08-27T00:00:00", - "ShipVia": 3, - "Freight": 31.14, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10822, + "EmployeeID": 6, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", + "ShipVia": 3, + "Freight": 7, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 3, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 4, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 6, "Discount": 0 } ] @@ -37188,413 +26333,370 @@ ] }, { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", + "CustomerID": "LETSS", + "Company": "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", "Orders": [ { - "OrderID": 11059, - "EmployeeID": 2, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-06-10T00:00:00", - "ShippedDate": "1998-06-15T00:00:00", + "OrderID": 10579, + "EmployeeID": 1, + "OrderDate": "1997-06-25T00:00:00", + "RequiredDate": "1997-07-23T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 2, - "Freight": 85.8, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 13.73, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 12, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 11060, - "EmployeeID": 2, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10719, + "EmployeeID": 8, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 10.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "Freight": 51.44, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 3, + "Discount": 0.25 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 40, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11061, - "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-06-11T00:00:00", - "ShippedDate": "1998-06-11T00:00:00", - "ShipVia": 3, - "Freight": 14.01, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, + "OrderID": 10735, + "EmployeeID": 6, + "OrderDate": "1997-11-10T00:00:00", + "RequiredDate": "1997-12-08T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 45.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.1 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11062, + "OrderID": 10884, "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-06-28T00:00:00", + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", "ShipVia": 2, - "Freight": 29.93, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 90.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 21, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, "Quantity": 12, - "Discount": 0.2 + "Discount": 0.06 } ] } - ] + ], + "Fax": "(415) 555-5938" }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "WILMK", + "Company": "Wilman Kala", + "ContactName": "Matti Karttunen", + "ContactTitle": "Owner/Marketing Assistant", + "Address": "Keskuskatu 45", + "City": "Helsinki", + "PostalCode": 21240, + "Country": "Finland", + "Phone": "90-224 8858", + "Fax": "90-224 8858", "Orders": [ { - "OrderID": 11063, - "EmployeeID": 3, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 81.73, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10615, + "EmployeeID": 2, + "OrderDate": "1997-07-30T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 3, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10673, + "EmployeeID": 2, + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 22.76, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11064, - "EmployeeID": 1, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10695, + "EmployeeID": 7, + "OrderDate": "1997-10-07T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", "ShipVia": 1, - "Freight": 30.09, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 16.72, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 77, - "Discount": 0.1 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.1 - }, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10873, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 0.82, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 55, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11065, - "EmployeeID": 8, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-29T00:00:00", - "ShipVia": 1, - "Freight": 12.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10879, + "EmployeeID": 3, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 8.5, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11066, - "EmployeeID": 7, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 2, - "Freight": 44.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10910, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 3, + "Freight": 38.11, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 42, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 35, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 11067, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 7.98, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderID": 11005, + "EmployeeID": 2, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, "Discount": 0 } ] @@ -37602,85 +26704,113 @@ ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", + "CustomerID": "THECR", + "Company": "The Cracker Box", + "ContactName": "Liu Wong", "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", + "Address": "55 Grizzly Peak Rd.", + "City": "Butte", + "Region": "MT", + "PostalCode": 59801, + "Country": "USA", + "Phone": "(406) 555-5834", + "Fax": "(406) 555-8083", "Orders": [ { - "OrderID": 11068, - "EmployeeID": 8, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-11-01T00:00:00", + "OrderID": 10624, + "EmployeeID": 4, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", "ShipVia": 2, - "Freight": 81.75, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 94.8, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 28, "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.16 + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 11069, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 15.67, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10775, + "EmployeeID": 7, + "OrderDate": "1997-12-12T00:00:00", + "RequiredDate": "1998-01-09T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 20.25, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 11003, + "EmployeeID": 3, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 3, + "Freight": 14.91, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 10, "Discount": 0 } ] @@ -37688,507 +26818,503 @@ ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", + "CustomerID": "ALFKI", + "Company": "Alfreds Futterkiste", + "ContactName": "Maria Anders", "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, + "Address": "Obere Str. 57", + "City": "Berlin", + "PostalCode": 12209, "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "Phone": "030-0074321", + "Fax": "030-0076545", "Orders": [ { - "OrderID": 11070, - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-02T00:00:00", + "OrderID": 10643, + "EmployeeID": 6, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", "ShipVia": 1, - "Freight": 136, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "Freight": 29.46, + "ShipName": "Alfreds Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 15, + "Discount": 0.25 + }, + { + "ProductID": 39, "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.16 + "Quantity": 21, + "Discount": 0.25 }, { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 2, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10692, + "EmployeeID": 4, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-10-31T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", + "ShipVia": 2, + "Freight": 61.02, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 20, - "Discount": 0.16 - }, + "Discount": 0 + } + ] + }, + { + "OrderID": 10702, + "EmployeeID": 4, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 1, + "Freight": 23.94, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11071, + "OrderID": 10835, "EmployeeID": 1, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-10T00:00:00", - "ShipVia": 1, - "Freight": 0.93, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 3, + "Freight": 69.53, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10952, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", + "ShipVia": 1, + "Freight": 40.42, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 16, "Discount": 0.06 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 11011, + "EmployeeID": 3, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 1, + "Freight": 1.21, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 40, "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "FRANR", + "Company": "France restauration", + "ContactName": "Carine Schmitt", + "ContactTitle": "Marketing Manager", + "Address": "54, rue Royale", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.32.21.21", + "Fax": "40.32.21.20", "Orders": [ { - "OrderID": 11072, - "EmployeeID": 4, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-08-02T00:00:00", - "ShipVia": 2, - "Freight": 258.64, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10671, + "EmployeeID": 1, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-09-24T00:00:00", + "ShipVia": 1, + "Freight": 30.34, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 22, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 130, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 11073, - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-15T00:00:00", - "ShipVia": 2, - "Freight": 24.95, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10860, + "EmployeeID": 3, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 3, + "Freight": 19.26, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 11074, - "EmployeeID": 7, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-06-03T00:00:00", + "OrderID": 10971, + "EmployeeID": 2, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", "ShipVia": 2, - "Freight": 18.44, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 121.82, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 14, - "Discount": 0.06 + "Discount": 0 } ] } ] }, { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", + "CustomerID": "SPECD", + "Company": "Spécialités du monde", + "ContactName": "Dominique Perrier", + "ContactTitle": "Marketing Manager", + "Address": "25, rue Lauriston", + "City": "Paris", + "PostalCode": 75016, + "Country": "France", + "Phone": "(1) 47.55.60.10", + "Fax": "(1) 47.55.60.20", "Orders": [ { - "OrderID": 11075, - "EmployeeID": 8, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-05-03T00:00:00", - "ShipVia": 2, - "Freight": 6.19, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10738, + "EmployeeID": 2, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 1, + "Freight": 2.91, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0.16 - }, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10907, + "EmployeeID": 6, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-25T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 9.19, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 14, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 11076, - "EmployeeID": 4, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-06-08T00:00:00", + "OrderID": 10964, + "EmployeeID": 3, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 2, - "Freight": 38.28, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, + "Freight": 87.38, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 69, + "UnitPrice": 36, "Quantity": 10, - "Discount": 0.25 + "Discount": 0 + } + ] + }, + { + "OrderID": 11043, + "EmployeeID": 5, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 8.8, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "LACOR", + "Company": "La corne de abondance", + "ContactName": "Daniel Tonini", + "ContactTitle": "Sales Representative", + "Address": "67, avenue de Europe", + "City": "Versailles", + "PostalCode": 78000, + "Country": "France", + "Phone": "30.59.84.10", + "Fax": "30.59.85.11", "Orders": [ { - "OrderID": 11077, - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-07-03T00:00:00", - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10858, + "EmployeeID": 2, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", + "ShipVia": 1, + "Freight": 52.51, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 24, - "Discount": 0.2 - }, - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 1, - "Discount": 0.02 - }, { "ProductID": 7, "UnitPrice": 30, - "Quantity": 1, - "Discount": 0.06 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 2, - "Discount": 0.1 - }, - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 1, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 2, - "Discount": 0.06 + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 4, "Discount": 0 - }, - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 2, - "Discount": 0.04 - }, + } + ] + }, + { + "OrderID": 10927, + "EmployeeID": 4, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 19.79, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { "ProductID": 20, "UnitPrice": 81, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 3, + "Quantity": 5, "Discount": 0 }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 3, - "Discount": 0.02 - }, { "ProductID": 52, "UnitPrice": 7, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 2, - "Discount": 0.04 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 1, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 2, - "Discount": 0.0099999998 - }, + } + ] + }, + { + "OrderID": 10972, + "EmployeeID": 4, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 2, + "Freight": 0.02, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 4, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 7, "Discount": 0 } ] diff --git a/samples/grids/hierarchical-grid/multi-column-headers-template/src/HierarchicalCustomers.json b/samples/grids/hierarchical-grid/multi-column-headers-template/src/HierarchicalCustomers.json index 75c7bc037d..43b2853953 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-template/src/HierarchicalCustomers.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-template/src/HierarchicalCustomers.json @@ -44,6 +44,112 @@ "Discount": 0 } ] + }, + { + "OrderID": 10274, + "EmployeeID": 6, + "OrderDate": "1996-08-06T00:00:00", + "RequiredDate": "1996-09-03T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 1, + "Freight": 6.01, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 7, + "Discount": 0 + } + ] + }, + { + "OrderID": 10295, + "EmployeeID": 2, + "OrderDate": "1996-09-02T00:00:00", + "RequiredDate": "1996-09-30T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", + "ShipVia": 2, + "Freight": 1.15, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 10737, + "EmployeeID": 2, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 7.79, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10739, + "EmployeeID": 3, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-17T00:00:00", + "ShipVia": 3, + "Freight": 11.08, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 18, + "Discount": 0 + } + ] } ] }, @@ -86,251 +192,155 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10250, - "EmployeeID": 4, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-12T00:00:00", + "OrderID": 10438, + "EmployeeID": 3, + "OrderDate": "1997-02-06T00:00:00", + "RequiredDate": "1997-03-06T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", "ShipVia": 2, - "Freight": 65.83, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 8.24, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 15, - "Discount": 0.16 + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10251, - "EmployeeID": 3, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", + "OrderID": 10446, + "EmployeeID": 6, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-02-19T00:00:00", "ShipVia": 1, - "Freight": 41.34, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 14.68, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 + }, + { + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 44000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10252, - "EmployeeID": 4, - "OrderDate": "1996-07-09T00:00:00", - "RequiredDate": "1996-08-06T00:00:00", - "ShippedDate": "1996-07-11T00:00:00", + "OrderID": 10548, + "EmployeeID": 3, + "OrderDate": "1997-05-26T00:00:00", + "RequiredDate": "1997-06-23T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", "ShipVia": 2, - "Freight": 51.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 22000, - "ShipCountry": "Belgium", + "Freight": 1.43, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 40, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Fax": "0452-076546", - "Orders": [ + }, { - "OrderID": 10254, - "EmployeeID": 5, - "OrderDate": "1996-07-11T00:00:00", - "RequiredDate": "1996-08-08T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderID": 10608, + "EmployeeID": 4, + "OrderDate": "1997-07-23T00:00:00", + "RequiredDate": "1997-08-20T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 22.98, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 27.79, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 21, - "Discount": 0.16 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10255, - "EmployeeID": 9, - "OrderDate": "1996-07-12T00:00:00", - "RequiredDate": "1996-08-09T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", - "ShipVia": 3, - "Freight": 148.33, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10967, + "EmployeeID": 2, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 62.22, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 25, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 40, "Discount": 0 } ] @@ -338,2105 +348,1447 @@ ] }, { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, + "CustomerID": "HANAR", + "Company": "Hanari Carnes", + "ContactName": "Mario Pontes", + "ContactTitle": "Accounting Manager", + "Address": "Rua do Paço, 67", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 5454, "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", + "Phone": "(21) 555-0091", + "Fax": "(21) 555-8765", "Orders": [ { - "OrderID": 10256, - "EmployeeID": 3, - "OrderDate": "1996-07-15T00:00:00", - "RequiredDate": "1996-08-12T00:00:00", - "ShippedDate": "1996-07-17T00:00:00", + "OrderID": 10250, + "EmployeeID": 4, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-12T00:00:00", "ShipVia": 2, - "Freight": 13.97, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, + "Freight": 65.83, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10257, - "EmployeeID": 4, - "OrderDate": "1996-07-16T00:00:00", - "RequiredDate": "1996-08-13T00:00:00", - "ShippedDate": "1996-07-22T00:00:00", - "ShipVia": 3, - "Freight": 81.91, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10258, - "EmployeeID": 1, - "OrderDate": "1996-07-17T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderID": 10541, + "EmployeeID": 2, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-05-29T00:00:00", "ShipVia": 1, - "Freight": 140.51, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 68.65, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.1 }, { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 65, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 4, + "Discount": 0.1 }, { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 9, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "CENTC", - "Company": "Centro comercial Moctezuma", - "ContactName": "Francisco Chang", - "ContactTitle": "Marketing Manager", - "Address": "Sierras de Granada 9993", - "City": "México D.F.", - "PostalCode": 5022, - "Country": "Mexico", - "Phone": "(5) 555-3392", - "Fax": "(5) 555-7293", - "Orders": [ + }, { - "OrderID": 10259, + "OrderID": 10645, "EmployeeID": 4, - "OrderDate": "1996-07-18T00:00:00", - "RequiredDate": "1996-08-15T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", - "ShipVia": 3, - "Freight": 3.25, - "ShipName": "Centro comercial Moctezuma", - "ShipAddress": "Sierras de Granada 9993", - "ShipCity": "México D.F.", - "ShipPostalCode": 5022, - "ShipCountry": "Mexico", + "OrderDate": "1997-08-26T00:00:00", + "RequiredDate": "1997-09-23T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", + "ShipVia": 1, + "Freight": 12.41, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 1, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10260, - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-29T00:00:00", + "OrderID": 10690, + "EmployeeID": 1, + "OrderDate": "1997-10-02T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", "ShipVia": 1, - "Freight": 55.09, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 15.8, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 16, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, "Discount": 0.25 - }, + } + ] + }, + { + "OrderID": 10770, + "EmployeeID": 8, + "OrderDate": "1997-12-09T00:00:00", + "RequiredDate": "1998-01-06T00:00:00", + "ShippedDate": "1997-12-17T00:00:00", + "ShipVia": 3, + "Freight": 5.32, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 21, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10261, + "OrderID": 10783, "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-30T00:00:00", + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", "ShipVia": 2, - "Freight": 3.05, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 124.98, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", "ShipCity": "Sao Paulo", "ShipRegion": "RJ", - "ShipPostalCode": 2389, + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 20, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 20, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10262, - "EmployeeID": 8, - "OrderDate": "1996-07-22T00:00:00", - "RequiredDate": "1996-08-19T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", - "ShipVia": 3, - "Freight": 48.29, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10886, + "EmployeeID": 1, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", + "ShipVia": 1, + "Freight": 4.99, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 15, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 2, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10263, - "EmployeeID": 9, - "OrderDate": "1996-07-23T00:00:00", - "RequiredDate": "1996-08-20T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", + "OrderID": 10903, + "EmployeeID": 3, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 3, - "Freight": 146.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 36.71, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 33000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10264, - "EmployeeID": 6, - "OrderDate": "1996-07-24T00:00:00", - "RequiredDate": "1996-08-21T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", + "OrderID": 10922, + "EmployeeID": 5, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", "ShipVia": 3, - "Freight": 3.67, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 27000, - "ShipCountry": "Sweden", + "Freight": 62.74, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 35, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10265, - "EmployeeID": 2, - "OrderDate": "1996-07-25T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", + "OrderID": 10925, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 1, - "Freight": 55.28, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 2.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10266, - "EmployeeID": 3, - "OrderDate": "1996-07-26T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", - "ShipVia": 3, - "Freight": 25.73, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10981, + "EmployeeID": 1, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 193.37, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10267, - "EmployeeID": 4, - "OrderDate": "1996-07-29T00:00:00", - "RequiredDate": "1996-08-26T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", - "ShipVia": 1, - "Freight": 208.58, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 11022, + "EmployeeID": 9, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10268, - "EmployeeID": 8, - "OrderDate": "1996-07-30T00:00:00", - "RequiredDate": "1996-08-27T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 3, - "Freight": 66.29, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", + "OrderID": 11052, + "EmployeeID": 3, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 67.26, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 10, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 4, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "WHITC", - "Company": "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": "VICTE", + "Company": "Victuailles en stock", + "ContactName": "Mary Saveley", + "ContactTitle": "Sales Agent", + "Address": "2, rue du Commerce", + "City": "Lyon", + "PostalCode": 69004, + "Country": "France", + "Phone": "78.32.54.86", + "Fax": "78.32.54.87", "Orders": [ { - "OrderID": 10269, - "EmployeeID": 5, - "OrderDate": "1996-07-31T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", + "OrderID": 10251, + "EmployeeID": 3, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", "ShipVia": 1, - "Freight": 4.56, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 41.34, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 15, "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10270, - "EmployeeID": 1, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 1, - "Freight": 136.54, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 30, - "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 25, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10271, - "EmployeeID": 6, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", + "OrderID": 10334, + "EmployeeID": 8, + "OrderDate": "1996-10-21T00:00:00", + "RequiredDate": "1996-11-18T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", "ShipVia": 2, - "Freight": 4.54, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 8.56, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 24, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10272, - "EmployeeID": 6, - "OrderDate": "1996-08-02T00:00:00", - "RequiredDate": "1996-08-30T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", + "OrderID": 10450, + "EmployeeID": 8, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-19T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", "ShipVia": 2, - "Freight": 98.03, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 7.23, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, "Quantity": 6, - "Discount": 0 + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10459, + "EmployeeID": 4, + "OrderDate": "1997-02-27T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 25.09, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0.06 }, { "ProductID": 72, "UnitPrice": 27.8, - "Quantity": 24, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10273, - "EmployeeID": 3, - "OrderDate": "1996-08-05T00:00:00", - "RequiredDate": "1996-09-02T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", + "OrderID": 10478, + "EmployeeID": 2, + "OrderDate": "1997-03-18T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-26T00:00:00", "ShipVia": 3, - "Freight": 76.07, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 4.81, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 10, "UnitPrice": 24.8, - "Quantity": 24, - "Discount": 0.06 - }, - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2, "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 60, - "Discount": 0.06 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 33, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10274, - "EmployeeID": 6, - "OrderDate": "1996-08-06T00:00:00", - "RequiredDate": "1996-09-03T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 1, - "Freight": 6.01, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, + "OrderID": 10546, + "EmployeeID": 1, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-05-27T00:00:00", + "ShipVia": 3, + "Freight": 194.72, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 20, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 7, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10275, - "EmployeeID": 1, - "OrderDate": "1996-08-07T00:00:00", - "RequiredDate": "1996-09-04T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", - "ShipVia": 1, - "Freight": 26.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10806, + "EmployeeID": 3, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 2, + "Freight": 22.11, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 6, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10276, - "EmployeeID": 8, - "OrderDate": "1996-08-08T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-14T00:00:00", - "ShipVia": 3, - "Freight": 13.84, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 15, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Fax": "0342-023177", - "Orders": [ + }, { - "OrderID": 10277, - "EmployeeID": 2, - "OrderDate": "1996-08-09T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-08-13T00:00:00", + "OrderID": 10814, + "EmployeeID": 3, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", "ShipVia": 3, - "Freight": 125.77, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 130.94, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, + "Discount": 0.16 + }, + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 8, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 14000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10278, - "EmployeeID": 8, - "OrderDate": "1996-08-12T00:00:00", - "RequiredDate": "1996-09-09T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", + "OrderID": 10843, + "EmployeeID": 4, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", "ShipVia": 2, - "Freight": 92.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "Freight": 9.26, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 16, - "Discount": 0 - }, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 4, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10850, + "EmployeeID": 1, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 49.19, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 15, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 8, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 4, + "Discount": 0.16 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10279, - "EmployeeID": 8, - "OrderDate": "1996-08-13T00:00:00", - "RequiredDate": "1996-09-10T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 2, - "Freight": 25.83, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 27000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "SUPRD", + "Company": "Suprêmes délices", + "ContactName": "Pascale Cartrain", + "ContactTitle": "Accounting Manager", + "Address": "Boulevard Tirou, 255", + "City": "Charleroi", + "PostalCode": 44000, + "Country": "Belgium", + "Phone": "(071) 23 67 22 20", + "Fax": "(071) 23 67 22 21", "Orders": [ { - "OrderID": 10280, - "EmployeeID": 2, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-09-11T00:00:00", - "ShippedDate": "1996-09-12T00:00:00", - "ShipVia": 1, - "Freight": 8.98, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", + "OrderID": 10252, + "EmployeeID": 4, + "OrderDate": "1996-07-09T00:00:00", + "RequiredDate": "1996-08-06T00:00:00", + "ShippedDate": "1996-07-11T00:00:00", + "ShipVia": 2, + "Freight": 51.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 22000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 20, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 25, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10281, + "OrderID": 10302, "EmployeeID": 4, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-08-28T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 2.94, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderDate": "1996-09-10T00:00:00", + "RequiredDate": "1996-10-08T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 20000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 1, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 6, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 12, "Discount": 0 } ] }, { - "OrderID": 10282, - "EmployeeID": 4, - "OrderDate": "1996-08-15T00:00:00", - "RequiredDate": "1996-09-12T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10458, + "EmployeeID": 7, + "OrderDate": "1997-02-26T00:00:00", + "RequiredDate": "1997-03-26T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 147.06, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 16000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 6, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10283, - "EmployeeID": 3, - "OrderDate": "1996-08-16T00:00:00", - "RequiredDate": "1996-09-13T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", - "ShipVia": 3, - "Freight": 84.81, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 15, - "UnitPrice": 12.4, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 35, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 3, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10284, - "EmployeeID": 4, - "OrderDate": "1996-08-19T00:00:00", - "RequiredDate": "1996-09-16T00:00:00", - "ShippedDate": "1996-08-27T00:00:00", - "ShipVia": 1, - "Freight": 76.56, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10463, + "EmployeeID": 5, + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-06T00:00:00", + "ShipVia": 3, + "Freight": 14.78, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 21000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 44, - "UnitPrice": 15.5, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 21, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 67, + "ProductID": 42, "UnitPrice": 11.2, - "Quantity": 5, - "Discount": 0.25 + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10285, - "EmployeeID": 1, - "OrderDate": "1996-08-20T00:00:00", - "RequiredDate": "1996-09-17T00:00:00", - "ShippedDate": "1996-08-26T00:00:00", - "ShipVia": 2, - "Freight": 76.83, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10475, + "EmployeeID": 9, + "OrderDate": "1997-03-14T00:00:00", + "RequiredDate": "1997-04-11T00:00:00", + "ShippedDate": "1997-04-04T00:00:00", + "ShipVia": 1, + "Freight": 68.52, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, + "Discount": 0.16 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 36, - "Discount": 0.2 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 42, + "Discount": 0.16 } ] }, { - "OrderID": 10286, - "EmployeeID": 8, - "OrderDate": "1996-08-21T00:00:00", - "RequiredDate": "1996-09-18T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", + "OrderID": 10767, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", "ShipVia": 3, - "Freight": 229.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 1.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 44000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 100, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10287, - "EmployeeID": 8, - "OrderDate": "1996-08-22T00:00:00", - "RequiredDate": "1996-09-19T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", - "ShipVia": 3, - "Freight": 12.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10841, + "EmployeeID": 5, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", + "ShipVia": 2, + "Freight": 424.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 27000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, "Quantity": 15, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10288, - "EmployeeID": 4, - "OrderDate": "1996-08-23T00:00:00", - "RequiredDate": "1996-09-20T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", - "ShipVia": 1, - "Freight": 7.45, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10846, + "EmployeeID": 2, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 56.46, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 15000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 22000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10289, - "EmployeeID": 7, - "OrderDate": "1996-08-26T00:00:00", - "RequiredDate": "1996-09-23T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", + "OrderID": 10885, + "EmployeeID": 6, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 3, - "Freight": 22.77, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "Freight": 5.64, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 40000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 8, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, "Quantity": 30, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 9, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 25, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10290, - "EmployeeID": 8, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", - "ShipVia": 1, - "Freight": 79.7, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderID": 10930, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 3, + "Freight": 15.55, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 17000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 15, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 15, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.2 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 11035, + "EmployeeID": 2, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 0.17, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 30000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10291, - "EmployeeID": 6, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-04T00:00:00", + "OrderID": 11038, + "EmployeeID": 1, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", "ShipVia": 2, - "Freight": 6.4, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 29.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 44000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, + "Discount": 0 } ] } ] }, { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10292, - "EmployeeID": 1, - "OrderDate": "1996-08-28T00:00:00", - "RequiredDate": "1996-09-25T00:00:00", - "ShippedDate": "1996-09-02T00:00:00", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", + "CustomerID": "CHOPS", + "Company": "Chop-suey Chinese", + "ContactName": "Yang Wang", "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", + "Address": "Hauptstr. 29", + "City": "Bern", + "PostalCode": 3012, + "Country": "Switzerland", + "Phone": "0452-076545", + "Fax": "0452-076546", "Orders": [ { - "OrderID": 10293, - "EmployeeID": 1, - "OrderDate": "1996-08-29T00:00:00", - "RequiredDate": "1996-09-26T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 3, - "Freight": 21.18, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10254, + "EmployeeID": 5, + "OrderDate": "1996-07-11T00:00:00", + "RequiredDate": "1996-08-08T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 2, + "Freight": 22.98, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 12, - "Discount": 0 - }, { "ProductID": 24, "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0 + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 5, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 21, + "Discount": 0.16 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10294, - "EmployeeID": 4, - "OrderDate": "1996-08-30T00:00:00", - "RequiredDate": "1996-09-27T00:00:00", - "ShippedDate": "1996-09-05T00:00:00", + "OrderID": 10370, + "EmployeeID": 6, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-27T00:00:00", "ShipVia": 2, - "Freight": 147.26, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 1.17, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { "ProductID": 1, "UnitPrice": 14.4, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, "Quantity": 15, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 21, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ - { - "OrderID": 10295, - "EmployeeID": 2, - "OrderDate": "1996-09-02T00:00:00", - "RequiredDate": "1996-09-30T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", - "ShipVia": 2, - "Freight": 1.15, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 4, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10296, + "OrderID": 10519, "EmployeeID": 6, - "OrderDate": "1996-09-03T00:00:00", - "RequiredDate": "1996-10-01T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 1, - "Freight": 0.12, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderDate": "1997-04-28T00:00:00", + "RequiredDate": "1997-05-26T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 91.76, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10297, - "EmployeeID": 5, - "OrderDate": "1996-09-04T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", - "ShipVia": 2, - "Freight": 5.74, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10731, + "EmployeeID": 7, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 1, + "Freight": 96.65, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10298, - "EmployeeID": 6, - "OrderDate": "1996-09-05T00:00:00", - "RequiredDate": "1996-10-03T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 2, - "Freight": 168.22, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10746, + "EmployeeID": 1, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 3, + "Freight": 31.43, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10299, + "OrderID": 10966, "EmployeeID": 4, - "OrderDate": "1996-09-06T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-13T00:00:00", - "ShipVia": 2, - "Freight": 29.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 27.19, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10300, - "EmployeeID": 2, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", - "ShipVia": 2, - "Freight": 17.68, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 11029, + "EmployeeID": 4, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 47.84, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10301, - "EmployeeID": 8, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", + "OrderID": 11041, + "EmployeeID": 3, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", "ShipVia": 2, - "Freight": 45.08, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 48.22, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 30, "Discount": 0 } ] @@ -2444,1691 +1796,1226 @@ ] }, { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 27000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", + "CustomerID": "RICSU", + "Company": "Richter Supermarkt", + "ContactName": "Michael Holz", + "ContactTitle": "Sales Manager", + "Address": "Grenzacherweg 237", + "City": "Genève", + "PostalCode": 1203, + "Country": "Switzerland", + "Phone": "0897-034214", + "Fax": "0897-034215", "Orders": [ { - "OrderID": 10302, - "EmployeeID": 4, - "OrderDate": "1996-09-10T00:00:00", - "RequiredDate": "1996-10-08T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 20000, - "ShipCountry": "Belgium", + "OrderID": 10255, + "EmployeeID": 9, + "OrderDate": "1996-07-12T00:00:00", + "RequiredDate": "1996-08-09T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", + "ShipVia": 3, + "Freight": 148.33, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 40, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 28, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 12, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10303, - "EmployeeID": 7, - "OrderDate": "1996-09-11T00:00:00", - "RequiredDate": "1996-10-09T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", + "OrderID": 10419, + "EmployeeID": 4, + "OrderDate": "1997-01-20T00:00:00", + "RequiredDate": "1997-02-17T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", "ShipVia": 2, - "Freight": 107.83, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 137.35, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10304, + "OrderID": 10537, "EmployeeID": 1, - "OrderDate": "1996-09-12T00:00:00", - "RequiredDate": "1996-10-10T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", - "ShipVia": 2, - "Freight": 63.79, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", + "ShipVia": 1, + "Freight": 78.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 10, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ - { - "OrderID": 10305, - "EmployeeID": 8, - "OrderDate": "1996-09-13T00:00:00", - "RequiredDate": "1996-10-11T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 3, - "Freight": 257.62, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10306, - "EmployeeID": 1, - "OrderDate": "1996-09-16T00:00:00", - "RequiredDate": "1996-10-14T00:00:00", - "ShippedDate": "1996-09-23T00:00:00", - "ShipVia": 3, - "Freight": 7.56, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10666, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", + "ShipVia": 2, + "Freight": 232.42, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, + "ProductID": 65, + "UnitPrice": 21.05, "Quantity": 10, "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 5, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10307, - "EmployeeID": 2, - "OrderDate": "1996-09-17T00:00:00", - "RequiredDate": "1996-10-15T00:00:00", - "ShippedDate": "1996-09-25T00:00:00", - "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10751, + "EmployeeID": 3, + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-12-03T00:00:00", + "ShipVia": 3, + "Freight": 130.79, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ - { - "OrderID": 10308, - "EmployeeID": 7, - "OrderDate": "1996-09-18T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-24T00:00:00", - "ShipVia": 3, - "Freight": 1.61, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 1, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 5, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10309, + "OrderID": 10758, "EmployeeID": 3, - "OrderDate": "1996-09-19T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", - "ShipVia": 1, - "Freight": 47.3, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-04T00:00:00", + "ShipVia": 3, + "Freight": 138.17, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, + "ProductID": 26, + "UnitPrice": 31.23, "Quantity": 20, "Discount": 0 }, { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 20, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 3, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10310, - "EmployeeID": 8, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-18T00:00:00", - "ShippedDate": "1996-09-27T00:00:00", + "OrderID": 10931, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 17.52, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "Freight": 13.6, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 10, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 42, + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 5, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10311, - "EmployeeID": 1, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-26T00:00:00", - "ShipVia": 3, - "Freight": 24.69, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10951, + "EmployeeID": 9, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 2, + "Freight": 30.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 11.2, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 6, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10312, - "EmployeeID": 2, - "OrderDate": "1996-09-23T00:00:00", - "RequiredDate": "1996-10-21T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", - "ShipVia": 2, - "Freight": 40.26, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 11033, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 84.74, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 4, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 24, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 36, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11075, + "EmployeeID": 8, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-05-03T00:00:00", + "ShipVia": 2, + "Freight": 6.19, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 20, - "Discount": 0 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "WELLI", + "Company": "Wellington Importadora", + "ContactName": "Paula Parente", + "ContactTitle": "Sales Manager", + "Address": "Rua do Mercado, 12", + "City": "Resende", + "Region": "SP", + "PostalCode": 8737, + "Country": "Brazil", + "Phone": "(14) 555-8122", + "Fax": "(14) 555-8123", "Orders": [ { - "OrderID": 10313, - "EmployeeID": 2, - "OrderDate": "1996-09-24T00:00:00", - "RequiredDate": "1996-10-22T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderID": 10256, + "EmployeeID": 3, + "OrderDate": "1996-07-15T00:00:00", + "RequiredDate": "1996-08-12T00:00:00", + "ShippedDate": "1996-07-17T00:00:00", "ShipVia": 2, - "Freight": 1.96, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 13.97, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10314, - "EmployeeID": 1, - "OrderDate": "1996-09-25T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", - "ShipVia": 2, - "Freight": 74.16, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10420, + "EmployeeID": 3, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 1, + "Freight": 44.12, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 40, + "ProductID": 9, + "UnitPrice": 77.6, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 2, "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 25, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 26000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10315, - "EmployeeID": 4, - "OrderDate": "1996-09-26T00:00:00", - "RequiredDate": "1996-10-24T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", + "OrderID": 10585, + "EmployeeID": 7, + "OrderDate": "1997-07-01T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", + "ShipVia": 1, + "Freight": 13.41, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10644, + "EmployeeID": 3, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", "ShipVia": 2, - "Freight": 41.76, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 80379, - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "Freight": 0.14, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 14, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 70, + "ProductID": 46, "UnitPrice": 12, - "Quantity": 30, - "Discount": 0 + "Quantity": 21, + "Discount": 0.1 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10316, - "EmployeeID": 1, - "OrderDate": "1996-09-27T00:00:00", - "RequiredDate": "1996-10-25T00:00:00", - "ShippedDate": "1996-10-08T00:00:00", - "ShipVia": 3, - "Freight": 150.15, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10803, + "EmployeeID": 4, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-06T00:00:00", + "ShipVia": 1, + "Freight": 55.23, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 24, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 70, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 15, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10317, - "EmployeeID": 6, - "OrderDate": "1996-09-30T00:00:00", - "RequiredDate": "1996-10-28T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", + "OrderID": 10809, + "EmployeeID": 7, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 4.87, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, + "ProductID": 52, + "UnitPrice": 7, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10318, - "EmployeeID": 8, - "OrderDate": "1996-10-01T00:00:00", - "RequiredDate": "1996-10-29T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderID": 10900, + "EmployeeID": 1, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 2, - "Freight": 4.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 30676, - "ShipPostalCode": 36000, - "ShipCountry": "UK", + "Freight": 1.66, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, - "Discount": 0 - }, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10905, + "EmployeeID": 9, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 13.72, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.06 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10319, - "EmployeeID": 7, - "OrderDate": "1996-10-02T00:00:00", - "RequiredDate": "1996-10-30T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", + "OrderID": 10935, + "EmployeeID": 4, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 3, - "Freight": 64.5, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 47.59, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 8, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 14, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 30, - "Discount": 0 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 8, + "Discount": 0.25 } ] } ] }, { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", + "CustomerID": "HILAA", + "Company": "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", "Orders": [ { - "OrderID": 10320, - "EmployeeID": 5, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-18T00:00:00", + "OrderID": 10257, + "EmployeeID": 4, + "OrderDate": "1996-07-16T00:00:00", + "RequiredDate": "1996-08-13T00:00:00", + "ShippedDate": "1996-07-22T00:00:00", "ShipVia": 3, - "Freight": 34.57, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 81.91, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10321, - "EmployeeID": 3, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-31T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", - "ShipVia": 2, - "Freight": 3.43, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 20137, - "ShipPostalCode": 41000, - "ShipCountry": "UK", + "OrderID": 10395, + "EmployeeID": 6, + "OrderDate": "1996-12-26T00:00:00", + "RequiredDate": "1997-01-23T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 1, + "Freight": 184.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 10, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 28, + "Discount": 0.1 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 70, + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10322, - "EmployeeID": 7, - "OrderDate": "1996-10-04T00:00:00", - "RequiredDate": "1996-11-01T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", + "OrderID": 10476, + "EmployeeID": 8, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", "ShipVia": 3, - "Freight": 0.4, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 4.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10323, - "EmployeeID": 4, - "OrderDate": "1996-10-07T00:00:00", - "RequiredDate": "1996-11-04T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 1, - "Freight": 4.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10486, + "EmployeeID": 1, + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "ShipVia": 2, + "Freight": 30.53, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 12.4, + "ProductID": 11, + "UnitPrice": 16.8, "Quantity": 5, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 4, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 16, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10324, - "EmployeeID": 9, - "OrderDate": "1996-10-08T00:00:00", - "RequiredDate": "1996-11-05T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", - "ShipVia": 1, - "Freight": 214.27, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10490, + "EmployeeID": 7, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-03T00:00:00", + "ShipVia": 2, + "Freight": 210.19, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.16 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 68, + "UnitPrice": 10, "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 80, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 36, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10325, - "EmployeeID": 1, - "OrderDate": "1996-10-09T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 3, - "Freight": 64.86, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10498, + "EmployeeID": 8, + "OrderDate": "1997-04-07T00:00:00", + "RequiredDate": "1997-05-05T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", + "ShipVia": 2, + "Freight": 29.75, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 9, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 4, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ + }, { - "OrderID": 10326, - "EmployeeID": 4, - "OrderDate": "1996-10-10T00:00:00", - "RequiredDate": "1996-11-07T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 2, - "Freight": 77.92, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", + "OrderID": 10552, + "EmployeeID": 2, + "OrderDate": "1997-05-29T00:00:00", + "RequiredDate": "1997-06-26T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 1, + "Freight": 83.22, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 16, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 18, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 50, + "UnitPrice": 7.75, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 43000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10327, - "EmployeeID": 2, - "OrderDate": "1996-10-11T00:00:00", - "RequiredDate": "1996-11-08T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", + "OrderID": 10601, + "EmployeeID": 7, + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", "ShipVia": 1, - "Freight": 63.36, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 17000, - "ShipCountry": "Sweden", + "Freight": 58.3, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10328, + "OrderID": 10613, "EmployeeID": 4, - "OrderDate": "1996-10-14T00:00:00", - "RequiredDate": "1996-11-11T00:00:00", - "ShippedDate": "1996-10-17T00:00:00", - "ShipVia": 3, - "Freight": 87.03, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 2, + "Freight": 8.11, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 40, "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10329, + "OrderID": 10641, "EmployeeID": 4, - "OrderDate": "1996-10-15T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", "ShipVia": 2, - "Freight": 191.67, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 179.61, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, - "Discount": 0.06 - }, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, + "Discount": 0 + } + ] + }, + { + "OrderID": 10705, + "EmployeeID": 9, + "OrderDate": "1997-10-15T00:00:00", + "RequiredDate": "1997-11-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 3.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 4, + "Discount": 0 + } + ] + }, { - "OrderID": 10330, + "OrderID": 10796, "EmployeeID": 3, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", "ShipVia": 1, - "Freight": 12.75, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, + "Freight": 26.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, "ShipCountry": "Venezuela", "OrderDetails": [ { "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 50, - "Discount": 0.16 + "UnitPrice": 31.23, + "Quantity": 21, + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10331, - "EmployeeID": 9, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-27T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", - "ShipVia": 1, - "Freight": 10.19, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 20000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10332, - "EmployeeID": 3, - "OrderDate": "1996-10-17T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", - "ShipVia": 2, - "Freight": 52.84, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 28000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 40, - "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 35, "Discount": 0.2 }, { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 16, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 24, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10333, - "EmployeeID": 5, - "OrderDate": "1996-10-18T00:00:00", - "RequiredDate": "1996-11-15T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", - "ShipVia": 3, - "Freight": 0.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10863, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 30.26, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10334, - "EmployeeID": 8, - "OrderDate": "1996-10-21T00:00:00", - "RequiredDate": "1996-11-18T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", - "ShipVia": 2, - "Freight": 8.56, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10901, + "EmployeeID": 4, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", + "ShipVia": 1, + "Freight": 62.09, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 8, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10335, - "EmployeeID": 7, - "OrderDate": "1996-10-22T00:00:00", - "RequiredDate": "1996-11-19T00:00:00", - "ShippedDate": "1996-10-24T00:00:00", - "ShipVia": 2, - "Freight": 42.11, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10957, + "EmployeeID": 8, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 105.36, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 7, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10960, + "EmployeeID": 3, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 2.08, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 48, - "Discount": 0.2 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10336, - "EmployeeID": 7, - "OrderDate": "1996-10-23T00:00:00", - "RequiredDate": "1996-11-20T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", - "ShipVia": 2, - "Freight": 15.51, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10976, + "EmployeeID": 1, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 1, + "Freight": 37.97, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10337, - "EmployeeID": 4, - "OrderDate": "1996-10-24T00:00:00", - "RequiredDate": "1996-11-21T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", - "ShipVia": 3, - "Freight": 108.26, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 11055, + "EmployeeID": 7, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", + "ShipVia": 2, + "Freight": 120.92, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 24, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, + "ProductID": 51, + "UnitPrice": 53, "Quantity": 20, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] @@ -4136,625 +3023,475 @@ ] }, { - "CustomerID": "OLDWO", - "Company": "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": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", "Orders": [ { - "OrderID": 10338, - "EmployeeID": 4, - "OrderDate": "1996-10-25T00:00:00", - "RequiredDate": "1996-11-22T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", - "ShipVia": 3, - "Freight": 84.21, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 20, - "Discount": 0 + "OrderID": 10258, + "EmployeeID": 1, + "OrderDate": "1996-07-17T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 1, + "Freight": 140.51, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 50, + "Discount": 0.2 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 15, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 65, + "Discount": 0.2 + }, + { + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 40000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10339, - "EmployeeID": 2, - "OrderDate": "1996-10-28T00:00:00", - "RequiredDate": "1996-11-25T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 15.66, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "OrderID": 10263, + "EmployeeID": 9, + "OrderDate": "1996-07-23T00:00:00", + "RequiredDate": "1996-08-20T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 146.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 10, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 28, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 36, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10340, + "OrderID": 10351, "EmployeeID": 1, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 166.31, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 162.33, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 20, "Discount": 0.06 }, { "ProductID": 41, "UnitPrice": 7.7, - "Quantity": 12, + "Quantity": 13, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 77, "Discount": 0.06 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 40, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 10, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10341, - "EmployeeID": 7, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", - "ShipVia": 3, - "Freight": 26.78, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10368, + "EmployeeID": 2, + "OrderDate": "1996-11-29T00:00:00", + "RequiredDate": "1996-12-27T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 101.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 8, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 13, + "Discount": 0.1 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10342, + "OrderID": 10382, "EmployeeID": 4, - "OrderDate": "1996-10-30T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 54.83, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 24, - "Discount": 0.2 + "OrderDate": "1996-12-13T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1996-12-16T00:00:00", + "ShipVia": 1, + "Freight": 94.77, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 32, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 56, - "Discount": 0.2 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10343, - "EmployeeID": 4, - "OrderDate": "1996-10-31T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-11-06T00:00:00", + "OrderID": 10390, + "EmployeeID": 6, + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-26T00:00:00", "ShipVia": 1, - "Freight": 110.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 126.38, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 68, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 4, - "Discount": 0.06 + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 76, + "ProductID": 35, "UnitPrice": 14.4, - "Quantity": 15, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 45, "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10344, - "EmployeeID": 4, - "OrderDate": "1996-11-01T00:00:00", - "RequiredDate": "1996-11-29T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", + "OrderID": 10402, + "EmployeeID": 8, + "OrderDate": "1997-01-02T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", "ShipVia": 2, - "Freight": 23.29, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 67.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 35, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 65, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10345, - "EmployeeID": 2, - "OrderDate": "1996-11-04T00:00:00", - "RequiredDate": "1996-12-02T00:00:00", - "ShippedDate": "1996-11-11T00:00:00", - "ShipVia": 2, - "Freight": 249.06, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10430, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-03T00:00:00", + "ShipVia": 1, + "Freight": 458.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 80, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 9, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10346, + "OrderID": 10442, "EmployeeID": 3, - "OrderDate": "1996-11-05T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 142.08, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderDate": "1997-02-11T00:00:00", + "RequiredDate": "1997-03-11T00:00:00", + "ShippedDate": "1997-02-18T00:00:00", + "ShipVia": 2, + "Freight": 47.94, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 36, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 80, + "Discount": 0 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10347, - "EmployeeID": 4, - "OrderDate": "1996-11-06T00:00:00", - "RequiredDate": "1996-12-04T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 3.1, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10514, + "EmployeeID": 3, + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 2, + "Freight": 789.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 39, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 4, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 39, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0.16 + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10348, - "EmployeeID": 4, - "OrderDate": "1996-11-07T00:00:00", - "RequiredDate": "1996-12-05T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", - "ShipVia": 2, - "Freight": 0.78, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10571, + "EmployeeID": 8, + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 3, + "Freight": 26.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 11, "Discount": 0.16 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 25, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10349, - "EmployeeID": 7, - "OrderDate": "1996-11-08T00:00:00", - "RequiredDate": "1996-12-06T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", + "OrderID": 10595, + "EmployeeID": 2, + "OrderDate": "1997-07-10T00:00:00", + "RequiredDate": "1997-08-07T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", "ShipVia": 1, - "Freight": 8.63, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 96.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10350, - "EmployeeID": 6, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", - "ShipVia": 2, - "Freight": 64.19, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.25 + }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 120, + "Discount": 0.25 }, { "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 18, - "Discount": 0.1 + "UnitPrice": 36, + "Quantity": 65, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10351, - "EmployeeID": 1, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 162.33, + "OrderID": 10633, + "EmployeeID": 7, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-18T00:00:00", + "ShipVia": 3, + "Freight": 477.9, "ShipName": "Ernst Handel", "ShipAddress": "Kirchgasse 6", "ShipCity": "Graz", @@ -4762,1247 +3499,992 @@ "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 13, + "UnitPrice": 6, "Quantity": 13, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 77, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 80, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10352, - "EmployeeID": 3, - "OrderDate": "1996-11-12T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-18T00:00:00", - "ShipVia": 3, - "Freight": 1.3, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10667, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 78.09, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 14, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10353, - "EmployeeID": 7, - "OrderDate": "1996-11-13T00:00:00", - "RequiredDate": "1996-12-11T00:00:00", - "ShippedDate": "1996-11-25T00:00:00", - "ShipVia": 3, - "Freight": 360.63, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, + "OrderID": 10698, + "EmployeeID": 4, + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-17T00:00:00", + "ShipVia": 1, + "Freight": 272.47, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 11, - "UnitPrice": 16.8, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.06 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 12, - "Discount": 0.2 + "Discount": 0.06 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 65, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 8, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10354, - "EmployeeID": 8, - "OrderDate": "1996-11-14T00:00:00", - "RequiredDate": "1996-12-12T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", + "OrderID": 10764, + "EmployeeID": 6, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", "ShipVia": 3, - "Freight": 53.8, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 145.45, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 4, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 130, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 12000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10355, - "EmployeeID": 6, - "OrderDate": "1996-11-15T00:00:00", - "RequiredDate": "1996-12-13T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 41.95, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 31000, - "ShipCountry": "UK", + "OrderID": 10771, + "EmployeeID": 9, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 2, + "Freight": 11.19, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10356, - "EmployeeID": 6, - "OrderDate": "1996-11-18T00:00:00", - "RequiredDate": "1996-12-16T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 2, - "Freight": 36.71, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10773, + "EmployeeID": 1, + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1998-01-08T00:00:00", + "ShippedDate": "1997-12-16T00:00:00", + "ShipVia": 3, + "Freight": 96.43, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 33, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 12, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 70, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 7, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10357, + "OrderID": 10776, "EmployeeID": 1, - "OrderDate": "1996-11-19T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1998-01-12T00:00:00", + "ShippedDate": "1997-12-18T00:00:00", "ShipVia": 3, - "Freight": 34.88, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 351.53, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 16, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 8, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10358, - "EmployeeID": 5, - "OrderDate": "1996-11-20T00:00:00", - "RequiredDate": "1996-12-18T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 1, - "Freight": 19.64, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 12, "Discount": 0.06 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 27, "Discount": 0.06 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 120, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10359, - "EmployeeID": 5, - "OrderDate": "1996-11-21T00:00:00", - "RequiredDate": "1996-12-19T00:00:00", - "ShippedDate": "1996-11-26T00:00:00", - "ShipVia": 3, - "Freight": 288.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 43000, - "ShipCountry": "UK", + "OrderID": 10795, + "EmployeeID": 8, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-20T00:00:00", + "ShipVia": 2, + "Freight": 126.66, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 56, - "Discount": 0.06 - }, - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 70, - "Discount": 0.06 + "UnitPrice": 17.45, + "Quantity": 65, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10360, - "EmployeeID": 4, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 3, - "Freight": 131.7, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10836, + "EmployeeID": 7, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 1, + "Freight": 411.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 52, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 35, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 10, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 35, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 28, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10361, - "EmployeeID": 1, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", + "OrderID": 10854, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-05T00:00:00", "ShipVia": 2, - "Freight": 183.17, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 100.22, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 54, - "Discount": 0.1 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 100, + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 55, - "Discount": 0.1 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 65, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10362, + "OrderID": 10895, "EmployeeID": 3, - "OrderDate": "1996-11-25T00:00:00", - "RequiredDate": "1996-12-23T00:00:00", - "ShippedDate": "1996-11-28T00:00:00", + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 1, - "Freight": 96.04, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 162.75, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 50, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 110, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 20, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 91, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 100, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10363, - "EmployeeID": 4, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1996-12-24T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", + "OrderID": 10968, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-01T00:00:00", "ShipVia": 3, - "Freight": 30.54, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 74.6, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 12, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 12, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 46000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10364, - "EmployeeID": 1, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", - "ShipVia": 1, - "Freight": 71.97, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 10000, - "ShipCountry": "UK", + "OrderID": 10979, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-03-31T00:00:00", + "ShipVia": 2, + "Freight": 353.07, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 30, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 5, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10365, - "EmployeeID": 3, - "OrderDate": "1996-11-27T00:00:00", - "RequiredDate": "1996-12-25T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 2, - "Freight": 22, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 24, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 80, "Discount": 0 - } - ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ - { - "OrderID": 10366, - "EmployeeID": 8, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1996-12-30T00:00:00", - "ShipVia": 2, - "Freight": 10.14, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", - "OrderDetails": [ + }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 5, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10367, - "EmployeeID": 7, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1996-12-26T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 10990, + "EmployeeID": 2, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", "ShipVia": 3, - "Freight": 13.55, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 117.61, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 36, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 65, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 18, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 60, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 65, + "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 66, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10368, - "EmployeeID": 2, - "OrderDate": "1996-11-29T00:00:00", - "RequiredDate": "1996-12-27T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 2, - "Freight": 101.95, + "OrderID": 11008, + "EmployeeID": 7, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-05-09T00:00:00", + "ShipVia": 3, + "Freight": 79.46, "ShipName": "Ernst Handel", "ShipAddress": "Kirchgasse 6", "ShipCity": "Graz", "ShipPostalCode": 8010, "ShipCountry": "Austria", "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 5, - "Discount": 0.1 - }, { "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 13, - "Discount": 0.1 + "UnitPrice": 45.6, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 90, + "Discount": 0.06 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 21, + "Discount": 0 + } + ] + }, { - "OrderID": 10369, - "EmployeeID": 8, - "OrderDate": "1996-12-02T00:00:00", - "RequiredDate": "1996-12-30T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", + "OrderID": 11017, + "EmployeeID": 9, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 2, - "Freight": 195.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 754.26, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 20, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 110, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10370, - "EmployeeID": 6, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-27T00:00:00", + "OrderID": 11072, + "EmployeeID": 4, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-08-02T00:00:00", "ShipVia": 2, - "Freight": 1.17, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 258.64, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 22, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 130, + "Discount": 0 } ] } - ], - "Fax": "0452-076545" + ] }, { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", + "CustomerID": "CENTC", + "Company": "Centro comercial Moctezuma", + "ContactName": "Francisco Chang", + "ContactTitle": "Marketing Manager", + "Address": "Sierras de Granada 9993", + "City": "México D.F.", + "PostalCode": 5022, + "Country": "Mexico", + "Phone": "(5) 555-3392", + "Fax": "(5) 555-7293", "Orders": [ { - "OrderID": 10371, - "EmployeeID": 1, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", - "ShipVia": 1, - "Freight": 0.45, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10259, + "EmployeeID": 4, + "OrderDate": "1996-07-18T00:00:00", + "RequiredDate": "1996-08-15T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", + "ShipVia": 3, + "Freight": 3.25, + "ShipName": "Centro comercial Moctezuma", + "ShipAddress": "Sierras de Granada 9993", + "ShipCity": "México D.F.", + "ShipPostalCode": 5022, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 1, + "Discount": 0 } ] } ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", + "CustomerID": "OTTIK", + "Company": "Ottilies Käseladen", + "ContactName": "Henriette Pfalzheim", + "ContactTitle": "Owner", + "Address": "Mehrheimerstr. 369", + "City": "Köln", + "PostalCode": 50739, + "Country": "Germany", + "Phone": "0221-0644327", + "Fax": "0221-0765721", "Orders": [ { - "OrderID": 10372, - "EmployeeID": 5, - "OrderDate": "1996-12-04T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 2, - "Freight": 890.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10260, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-29T00:00:00", + "ShipVia": 1, + "Freight": 55.09, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 12, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 16, "Discount": 0.25 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 70, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, "Discount": 0.25 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 42, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 21, "Discount": 0.25 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10373, - "EmployeeID": 4, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-11T00:00:00", - "ShipVia": 3, - "Freight": 124.12, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10407, + "EmployeeID": 2, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-04T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", + "ShipVia": 2, + "Freight": 91.48, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 80, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10374, - "EmployeeID": 1, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 3, - "Freight": 3.94, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 10.6, + "ProductID": 71, + "UnitPrice": 17.2, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10375, - "EmployeeID": 3, - "OrderDate": "1996-12-06T00:00:00", - "RequiredDate": "1997-01-03T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", + "OrderID": 10508, + "EmployeeID": 1, + "OrderDate": "1997-04-16T00:00:00", + "RequiredDate": "1997-05-14T00:00:00", + "ShippedDate": "1997-05-13T00:00:00", "ShipVia": 2, - "Freight": 20.12, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "Freight": 4.99, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, + "ProductID": 39, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 10000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10376, - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 2, - "Freight": 20.39, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 39000, - "ShipCountry": "Canada", + "OrderID": 10554, + "EmployeeID": 4, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 3, + "Freight": 120.97, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 42, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 11000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10377, - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 22.21, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", - "OrderDetails": [ + }, { - "ProductID": 28, - "UnitPrice": 36.4, + "ProductID": 23, + "UnitPrice": 9, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.06 }, { - "ProductID": 39, - "UnitPrice": 14.4, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 13000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10378, - "EmployeeID": 5, - "OrderDate": "1996-12-10T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-19T00:00:00", + "OrderID": 10580, + "EmployeeID": 4, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-01T00:00:00", "ShipVia": 3, - "Freight": 5.44, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 49000, - "ShipCountry": "Sweden", + "Freight": 75.89, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 6, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 30, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10684, + "EmployeeID": 3, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 1, + "Freight": 145.63, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10766, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 157.55, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10833, + "EmployeeID": 6, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 2, + "Freight": 71.49, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 9, + "Discount": 0.1 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 9, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10999, + "EmployeeID": 6, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-01T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 96.35, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 21, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 11020, + "EmployeeID": 2, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 2, + "Freight": 43.3, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 24, + "Discount": 0.16 } ] } @@ -6022,13 +4504,13 @@ "Fax": "(21) 555-4545", "Orders": [ { - "OrderID": 10379, - "EmployeeID": 2, - "OrderDate": "1996-12-11T00:00:00", - "RequiredDate": "1997-01-08T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 1, - "Freight": 45.03, + "OrderID": 10261, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-30T00:00:00", + "ShipVia": 2, + "Freight": 3.05, "ShipName": "Que Delícia", "ShipAddress": "Rua da Panificadora, 12", "ShipCity": "Sao Paulo", @@ -6037,1063 +4519,811 @@ "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 16, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 35, + "UnitPrice": 14.4, "Quantity": 20, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10380, - "EmployeeID": 8, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", - "ShipVia": 3, - "Freight": 35.03, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10291, + "EmployeeID": 6, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-04T00:00:00", + "ShipVia": 2, + "Freight": 6.4, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, + "ProductID": 13, + "UnitPrice": 4.8, "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 6, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 24, "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10381, - "EmployeeID": 3, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", + "OrderID": 10379, + "EmployeeID": 2, + "OrderDate": "1996-12-11T00:00:00", + "RequiredDate": "1997-01-08T00:00:00", "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 7.99, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "ShipVia": 1, + "Freight": 45.03, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 14, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 16, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10382, - "EmployeeID": 4, - "OrderDate": "1996-12-13T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1996-12-16T00:00:00", + "OrderID": 10421, + "EmployeeID": 8, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-03-04T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", "ShipVia": 1, - "Freight": 94.77, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 99.23, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 32, - "Discount": 0 - }, - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 9, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 4, + "Discount": 0.16 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 14, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 50, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 31000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10383, - "EmployeeID": 8, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-18T00:00:00", - "ShipVia": 3, - "Freight": 34.24, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 19000, - "ShipCountry": "UK", + "OrderID": 10587, + "EmployeeID": 1, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 1, + "Freight": 62.52, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, + "ProductID": 77, + "UnitPrice": 13, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 18000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10384, - "EmployeeID": 3, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 3, - "Freight": 168.64, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "OrderID": 10647, + "EmployeeID": 4, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 2, + "Freight": 45.54, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 28, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 15, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10385, - "EmployeeID": 1, - "OrderDate": "1996-12-17T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1996-12-23T00:00:00", + "OrderID": 10720, + "EmployeeID": 8, + "OrderDate": "1997-10-28T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 30.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 9.53, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10794, + "EmployeeID": 6, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 1, + "Freight": 21.49, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10386, - "EmployeeID": 9, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-25T00:00:00", - "ShipVia": 3, - "Freight": 13.99, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", + "OrderID": 10989, + "EmployeeID": 2, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 34.76, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 11, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, "Discount": 0 } ] } - ], - "Fax": "(11) 555-9857" + ] }, { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", + "ContactTitle": "Sales Associate", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", "Orders": [ { - "OrderID": 10387, - "EmployeeID": 1, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-15T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 2, - "Freight": 93.63, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10262, + "EmployeeID": 8, + "OrderDate": "1996-07-22T00:00:00", + "RequiredDate": "1996-08-19T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", + "ShipVia": 3, + "Freight": 48.29, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 17000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10388, - "EmployeeID": 2, - "OrderDate": "1996-12-19T00:00:00", - "RequiredDate": "1997-01-16T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 1, - "Freight": 34.86, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 43000, - "ShipCountry": "UK", + "OrderID": 10272, + "EmployeeID": 6, + "OrderDate": "1996-08-02T00:00:00", + "RequiredDate": "1996-08-30T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", + "ShipVia": 2, + "Freight": 98.03, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 7.6, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 40, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 14000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10389, + "OrderID": 10294, "EmployeeID": 4, - "OrderDate": "1996-12-20T00:00:00", - "RequiredDate": "1997-01-17T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", + "OrderDate": "1996-08-30T00:00:00", + "RequiredDate": "1996-09-27T00:00:00", + "ShippedDate": "1996-09-05T00:00:00", "ShipVia": 2, - "Freight": 47.42, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 28000, - "ShipCountry": "Canada", + "Freight": 147.26, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 16, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, + "ProductID": 17, + "UnitPrice": 31.2, "Quantity": 15, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 20, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10390, - "EmployeeID": 6, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-26T00:00:00", - "ShipVia": 1, - "Freight": 126.38, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10314, + "EmployeeID": 1, + "OrderDate": "1996-09-25T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 74.16, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0.1 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 32, + "UnitPrice": 25.6, "Quantity": 40, "Discount": 0.1 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 45, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 24, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 25, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10391, - "EmployeeID": 3, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-31T00:00:00", + "OrderID": 10316, + "EmployeeID": 1, + "OrderDate": "1996-09-27T00:00:00", + "RequiredDate": "1996-10-25T00:00:00", + "ShippedDate": "1996-10-08T00:00:00", "ShipVia": 3, - "Freight": 5.45, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 150.15, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 18, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 70, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10392, - "EmployeeID": 2, - "OrderDate": "1996-12-24T00:00:00", - "RequiredDate": "1997-01-21T00:00:00", - "ShippedDate": "1997-01-01T00:00:00", + "OrderID": 10346, + "EmployeeID": 3, + "OrderDate": "1996-11-05T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", "ShipVia": 3, - "Freight": 122.46, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 142.08, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 50, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10393, + "OrderID": 10401, "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 3, - "Freight": 126.56, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", + "ShipVia": 1, + "Freight": 12.51, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 42, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 7, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 70, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 32, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10394, - "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", + "OrderID": 10479, + "EmployeeID": 3, + "OrderDate": "1997-03-19T00:00:00", + "RequiredDate": "1997-04-16T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", "ShipVia": 3, - "Freight": 30.34, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "Freight": 708.95, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10395, - "EmployeeID": 6, - "OrderDate": "1996-12-26T00:00:00", - "RequiredDate": "1997-01-23T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 1, - "Freight": 184.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10564, + "EmployeeID": 4, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-08T00:00:00", + "ShippedDate": "1997-06-16T00:00:00", + "ShipVia": 3, + "Freight": 13.75, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 70, - "Discount": 0.1 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 8, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10396, + "OrderID": 10569, + "EmployeeID": 5, + "OrderDate": "1997-06-16T00:00:00", + "RequiredDate": "1997-07-14T00:00:00", + "ShippedDate": "1997-07-11T00:00:00", + "ShipVia": 1, + "Freight": 58.98, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10598, "EmployeeID": 1, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1997-01-06T00:00:00", + "OrderDate": "1997-07-14T00:00:00", + "RequiredDate": "1997-08-11T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", "ShipVia": 3, - "Freight": 135.35, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 44.42, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 50, "Discount": 0 }, { "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 21, + "UnitPrice": 21.5, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10397, + "OrderID": 10761, "EmployeeID": 5, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-24T00:00:00", - "ShippedDate": "1997-01-02T00:00:00", - "ShipVia": 1, - "Freight": 60.26, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 2, + "Freight": 18.66, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 42.4, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 18, - "Discount": 0.16 + "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10398, - "EmployeeID": 2, - "OrderDate": "1996-12-30T00:00:00", - "RequiredDate": "1997-01-27T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 89.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "OrderID": 10820, + "EmployeeID": 3, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 37.52, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 30, "Discount": 0 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10399, + "OrderID": 10852, "EmployeeID": 8, - "OrderDate": "1996-12-31T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", - "ShipVia": 3, - "Freight": 27.36, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 174.05, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 35, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 14, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10400, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderID": 10889, + "EmployeeID": 9, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 3, - "Freight": 83.93, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 25000, - "ShipCountry": "UK", + "Freight": 280.61, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 35, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10401, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", - "ShipVia": 1, - "Freight": 12.51, + "OrderID": 10988, + "EmployeeID": 3, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 61.14, "ShipName": "Rattlesnake Canyon Grocery", "ShipAddress": "2817 Milton Dr.", "ShipCity": "Albuquerque", @@ -7102,341 +5332,217 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 70, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11000, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 3, + "Freight": 55.12, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10402, - "EmployeeID": 8, - "OrderDate": "1997-01-02T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", + "OrderID": 11077, + "EmployeeID": 1, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-07-03T00:00:00", "ShipVia": 2, - "Freight": 67.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 8.53, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 60, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 24, + "Discount": 0.2 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 65, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 4, "Discount": 0 - } - ] - }, - { - "OrderID": 10403, - "EmployeeID": 4, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 73.79, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ + }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 1, + "Discount": 0 }, { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 70, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10404, - "EmployeeID": 2, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", - "ShipVia": 1, - "Freight": 155.97, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 1, + "Discount": 0.02 + }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 1, "Discount": 0.06 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 2, + "Discount": 0.1 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10405, - "EmployeeID": 1, - "OrderDate": "1997-01-06T00:00:00", - "RequiredDate": "1997-02-03T00:00:00", - "ShippedDate": "1997-01-22T00:00:00", - "ShipVia": 1, - "Freight": 34.82, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 50, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 1, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10406, - "EmployeeID": 7, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-13T00:00:00", - "ShipVia": 1, - "Freight": 108.04, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ + }, { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 10, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 1, + "Discount": 0.04 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 42, - "Discount": 0.1 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 2, + "Discount": 0.04 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 5, - "Discount": 0.1 + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 1, + "Discount": 0.04 }, { - "ProductID": 40, - "UnitPrice": 14.7, + "ProductID": 23, + "UnitPrice": 9, "Quantity": 2, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10407, - "EmployeeID": 2, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-04T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", - "ShipVia": 2, - "Freight": 91.48, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ + "Discount": 0 + }, { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 3, + "Discount": 0.02 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ - { - "OrderID": 10408, - "EmployeeID": 8, - "OrderDate": "1997-01-08T00:00:00", - "RequiredDate": "1997-02-05T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", - "ShipVia": 1, - "Freight": 11.26, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", - "OrderDetails": [ + }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 10, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 2, + "Discount": 0.04 + }, + { + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 2, + "Discount": 0.0099999998 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, "Discount": 0 } ] @@ -7444,1232 +5550,851 @@ ] }, { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ - { - "OrderID": 10409, - "EmployeeID": 3, - "OrderDate": "1997-01-09T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", - "ShipVia": 1, - "Freight": 29.83, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 43000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 33000, + "Country": "Sweden", + "Phone": "0695-34 67 21", + "Fax": "0695-34 67 22", "Orders": [ { - "OrderID": 10410, - "EmployeeID": 3, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", + "OrderID": 10264, + "EmployeeID": 6, + "OrderDate": "1996-07-24T00:00:00", + "RequiredDate": "1996-08-21T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", "ShipVia": 3, - "Freight": 2.4, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "Freight": 3.67, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 27000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 49, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 16, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 25, + "Discount": 0.16 } ] }, { - "OrderID": 10411, - "EmployeeID": 9, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-21T00:00:00", - "ShipVia": 3, - "Freight": 23.65, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10327, + "EmployeeID": 2, + "OrderDate": "1996-10-11T00:00:00", + "RequiredDate": "1996-11-08T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 63.36, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 17000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 25, "Discount": 0.2 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 40, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 50, "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10412, - "EmployeeID": 8, - "OrderDate": "1997-01-13T00:00:00", - "RequiredDate": "1997-02-10T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", - "ShipVia": 2, - "Freight": 3.77, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10378, + "EmployeeID": 5, + "OrderDate": "1996-12-10T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-19T00:00:00", + "ShipVia": 3, + "Freight": 5.44, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 49000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10413, + "OrderID": 10434, "EmployeeID": 3, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-02-13T00:00:00", "ShipVia": 2, - "Freight": 95.66, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 17.92, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 23000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0 }, { "ProductID": 76, "UnitPrice": 14.4, - "Quantity": 14, - "Discount": 0 + "Quantity": 18, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10414, - "EmployeeID": 2, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-17T00:00:00", - "ShipVia": 3, - "Freight": 21.48, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10460, + "EmployeeID": 8, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 1, + "Freight": 16.27, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 40000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 21, + "Discount": 0.25 }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 4, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10533, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-22T00:00:00", + "ShipVia": 1, + "Freight": 188.04, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 45000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 24, + "Discount": 0.06 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10415, - "EmployeeID": 3, - "OrderDate": "1997-01-15T00:00:00", - "RequiredDate": "1997-02-12T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", - "ShipVia": 1, - "Freight": 0.2, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "OrderID": 10561, + "EmployeeID": 2, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 2, + "Freight": 242.21, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 23000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 2, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10416, - "EmployeeID": 8, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 3, - "Freight": 22.72, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10703, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-10-20T00:00:00", + "ShipVia": 2, + "Freight": 152.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 28000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 20, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 10, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 20, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10417, - "EmployeeID": 4, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-28T00:00:00", - "ShipVia": 3, - "Freight": 70.29, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10762, + "EmployeeID": 3, + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 328.74, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 44000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 35, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10418, + "OrderID": 10774, "EmployeeID": 4, - "OrderDate": "1997-01-17T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", "ShipVia": 1, - "Freight": 17.55, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 48.2, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 55, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 16, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 2, + "Discount": 0.25 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 15, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10419, - "EmployeeID": 4, - "OrderDate": "1997-01-20T00:00:00", - "RequiredDate": "1997-02-17T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", - "ShipVia": 2, - "Freight": 137.35, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10824, + "EmployeeID": 8, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 1.23, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 39000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10420, - "EmployeeID": 3, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10880, + "EmployeeID": 7, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 1, - "Freight": 44.12, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 88.01, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 15000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 77.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.2 }, { "ProductID": 70, - "UnitPrice": 12, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.1 + "UnitPrice": 15, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10421, - "EmployeeID": 8, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-03-04T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10902, + "EmployeeID": 1, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", "ShipVia": 1, - "Freight": 99.23, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 44.15, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 11000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 4, - "Discount": 0.16 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 10, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 6, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10422, - "EmployeeID": 2, - "OrderDate": "1997-01-22T00:00:00", - "RequiredDate": "1997-02-19T00:00:00", - "ShippedDate": "1997-01-31T00:00:00", - "ShipVia": 1, - "Freight": 3.02, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10955, + "EmployeeID": 8, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 20000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 2, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10423, - "EmployeeID": 6, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", + "OrderID": 10977, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 3, - "Freight": 24.5, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 208.5, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 14, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 30000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10424, - "EmployeeID": 7, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-20T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 2, - "Freight": 370.61, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 22000, - "ShipCountry": "Canada", + "OrderID": 10980, + "EmployeeID": 4, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 1, + "Freight": 1.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0.2 - }, - { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 49, - "Discount": 0.2 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10425, - "EmployeeID": 6, - "OrderDate": "1997-01-24T00:00:00", - "RequiredDate": "1997-02-21T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 7.93, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10993, + "EmployeeID": 7, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 3, + "Freight": 8.81, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 50, "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 20, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10426, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-02-06T00:00:00", - "ShipVia": 1, - "Freight": 18.69, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 11001, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 2, + "Freight": 197.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 30000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 7, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10427, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 11050, + "EmployeeID": 8, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", "ShipVia": 2, - "Freight": 31.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 59.41, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 11000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 35, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", + "CustomerID": "BLONP", + "Company": "Blondesddsl père et fils", + "ContactName": "Frédérique Citeaux", + "ContactTitle": "Marketing Manager", + "Address": "24, place Kléber", + "City": "Strasbourg", + "PostalCode": 67000, + "Country": "France", + "Phone": "88.60.15.31", + "Fax": "88.60.15.32", "Orders": [ { - "OrderID": 10428, - "EmployeeID": 7, - "OrderDate": "1997-01-28T00:00:00", - "RequiredDate": "1997-02-25T00:00:00", - "ShippedDate": "1997-02-04T00:00:00", + "OrderID": 10265, + "EmployeeID": 2, + "OrderDate": "1996-07-25T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", "ShipVia": 1, - "Freight": 11.09, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 55.28, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10429, - "EmployeeID": 3, - "OrderDate": "1997-01-29T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderID": 10297, + "EmployeeID": 5, + "OrderDate": "1996-09-04T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", "ShipVia": 2, - "Freight": 56.63, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 5.74, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 40, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10430, + "OrderID": 10360, "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-03T00:00:00", - "ShipVia": 1, - "Freight": 458.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 131.7, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 50, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.2 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 28, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 47000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10431, - "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderID": 10436, + "EmployeeID": 3, + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-11T00:00:00", "ShipVia": 2, - "Freight": 44.17, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 49000, - "ShipCountry": "Canada", + "Freight": 156.66, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 47, - "UnitPrice": 7.6, + "ProductID": 64, + "UnitPrice": 26.6, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.1 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 24, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10432, + "OrderID": 10449, "EmployeeID": 3, - "OrderDate": "1997-01-31T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderDate": "1997-02-18T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-27T00:00:00", "ShipVia": 2, - "Freight": 4.34, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 53.3, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 10, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 40, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ - { - "OrderID": 10433, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", - "ShipVia": 3, - "Freight": 73.83, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", - "OrderDetails": [ + }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 28, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 23000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10434, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-02-13T00:00:00", - "ShipVia": 2, - "Freight": 17.92, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 23000, - "ShipCountry": "Sweden", + "OrderID": 10559, + "EmployeeID": 6, + "OrderDate": "1997-06-05T00:00:00", + "RequiredDate": "1997-07-03T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 1, + "Freight": 8.05, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 76, - "UnitPrice": 14.4, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 18, - "Discount": 0.16 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 38000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ + }, { - "OrderID": 10435, - "EmployeeID": 8, - "OrderDate": "1997-02-04T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", - "ShipVia": 2, - "Freight": 9.21, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "OrderID": 10566, + "EmployeeID": 9, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", + "ShipVia": 1, + "Freight": 88.4, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 10, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 18, + "Discount": 0.16 }, { - "ProductID": 72, - "UnitPrice": 27.8, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10436, - "EmployeeID": 3, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-11T00:00:00", - "ShipVia": 2, - "Freight": 156.66, + "OrderID": 10584, + "EmployeeID": 4, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 1, + "Freight": 59.14, "ShipName": "Blondel père et fils", "ShipAddress": "24, place Kléber", "ShipCity": "Strasbourg", @@ -8677,28 +6402,82 @@ "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10628, + "EmployeeID": 4, + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 30.36, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10679, + "EmployeeID": 8, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 27.94, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 40, - "Discount": 0.1 - }, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10826, + "EmployeeID": 6, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 1, + "Freight": 7.09, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, + "Discount": 0 } ] } @@ -8717,13 +6496,13 @@ "Fax": "981-443655", "Orders": [ { - "OrderID": 10437, - "EmployeeID": 8, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-12T00:00:00", - "ShipVia": 1, - "Freight": 19.97, + "OrderID": 10266, + "EmployeeID": 3, + "OrderDate": "1996-07-26T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 25.73, "ShipName": "Wartian Herkku", "ShipAddress": "Torikatu 38", "ShipCity": "Oulu", @@ -8731,669 +6510,449 @@ "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 12, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10438, - "EmployeeID": 3, - "OrderDate": "1997-02-06T00:00:00", - "RequiredDate": "1997-03-06T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 8.24, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "OrderID": 10270, + "EmployeeID": 1, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 1, + "Freight": 136.54, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 37000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10439, - "EmployeeID": 6, - "OrderDate": "1997-02-07T00:00:00", - "RequiredDate": "1997-03-07T00:00:00", - "ShippedDate": "1997-02-10T00:00:00", + "OrderID": 10320, + "EmployeeID": 5, + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-18T00:00:00", "ShipVia": 3, - "Freight": 4.07, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "Freight": 34.57, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 16, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10440, - "EmployeeID": 4, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-10T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 86.53, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10333, + "EmployeeID": 5, + "OrderDate": "1996-10-18T00:00:00", + "RequiredDate": "1996-11-15T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", + "ShipVia": 3, + "Freight": 0.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 45, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 49, - "Discount": 0.16 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 90, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 40, + "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10441, - "EmployeeID": 3, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-24T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10412, + "EmployeeID": 8, + "OrderDate": "1997-01-13T00:00:00", + "RequiredDate": "1997-02-10T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", "ShipVia": 2, - "Freight": 73.02, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 3.77, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 50, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10442, - "EmployeeID": 3, - "OrderDate": "1997-02-11T00:00:00", - "RequiredDate": "1997-03-11T00:00:00", - "ShippedDate": "1997-02-18T00:00:00", - "ShipVia": 2, - "Freight": 47.94, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10416, + "EmployeeID": 8, + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 3, + "Freight": 22.72, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 80, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 60, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10443, + "OrderID": 10437, "EmployeeID": 8, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-12T00:00:00", "ShipVia": 1, - "Freight": 13.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 19.97, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.2 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 12, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 15000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10444, - "EmployeeID": 3, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-21T00:00:00", - "ShipVia": 3, - "Freight": 3.5, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 22000, - "ShipCountry": "Sweden", + "OrderID": 10455, + "EmployeeID": 8, + "OrderDate": "1997-02-24T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 2, + "Freight": 180.45, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 15, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 8, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 71, + "UnitPrice": 17.2, "Quantity": 30, "Discount": 0 } ] }, { - "OrderID": 10445, - "EmployeeID": 3, - "OrderDate": "1997-02-13T00:00:00", - "RequiredDate": "1997-03-13T00:00:00", - "ShippedDate": "1997-02-20T00:00:00", - "ShipVia": 1, - "Freight": 9.3, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 18000, - "ShipCountry": "Sweden", + "OrderID": 10526, + "EmployeeID": 4, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-15T00:00:00", + "ShipVia": 2, + "Freight": 58.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0.16 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10446, - "EmployeeID": 6, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-02-19T00:00:00", - "ShipVia": 1, - "Freight": 14.68, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "OrderID": 10553, + "EmployeeID": 2, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-03T00:00:00", + "ShipVia": 2, + "Freight": 149.49, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 12, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 24, + "Discount": 0 }, { "ProductID": 31, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "UnitPrice": 12.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10447, - "EmployeeID": 4, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-03-07T00:00:00", + "OrderID": 10583, + "EmployeeID": 2, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 2, - "Freight": 68.66, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 7.28, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 40, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 35, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10448, + "OrderID": 10636, "EmployeeID": 4, - "OrderDate": "1997-02-17T00:00:00", - "RequiredDate": "1997-03-17T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", - "ShipVia": 2, - "Freight": 38.82, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 1.15, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 6, - "Discount": 0 - }, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0 + }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10449, - "EmployeeID": 3, - "OrderDate": "1997-02-18T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-27T00:00:00", - "ShipVia": 2, - "Freight": 53.3, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10750, + "EmployeeID": 9, + "OrderDate": "1997-11-21T00:00:00", + "RequiredDate": "1997-12-19T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 79.3, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 14, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 5, + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10450, - "EmployeeID": 8, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-19T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", - "ShipVia": 2, - "Freight": 7.23, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10781, + "EmployeeID": 2, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 3, + "Freight": 73.16, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0.2 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10451, - "EmployeeID": 4, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", + "OrderID": 11025, + "EmployeeID": 6, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", "ShipVia": 3, - "Freight": 189.09, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 29.17, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 - }, - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 28, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 55, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0.1 } ] @@ -9401,783 +6960,619 @@ ] }, { - "CustomerID": "SAVEA", - "Company": "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", + "CustomerID": "FRANK", + "Company": "Frankenversand", + "ContactName": "Peter Franken", + "ContactTitle": "Marketing Manager", + "Address": "Berliner Platz 43", + "City": "München", + "PostalCode": 80805, + "Country": "Germany", + "Phone": "089-0877310", + "Fax": "089-0877451", "Orders": [ { - "OrderID": 10452, - "EmployeeID": 8, - "OrderDate": "1997-02-20T00:00:00", - "RequiredDate": "1997-03-20T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", + "OrderID": 10267, + "EmployeeID": 4, + "OrderDate": "1996-07-29T00:00:00", + "RequiredDate": "1996-08-26T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", "ShipVia": 1, - "Freight": 140.26, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 208.58, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 100, - "Discount": 0.06 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 46000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10453, - "EmployeeID": 1, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", - "ShipVia": 2, - "Freight": 25.36, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 40000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10454, + "OrderID": 10337, "EmployeeID": 4, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-25T00:00:00", + "OrderDate": "1996-10-24T00:00:00", + "RequiredDate": "1996-11-21T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", "ShipVia": 3, - "Freight": 2.74, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 108.26, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10455, - "EmployeeID": 8, - "OrderDate": "1997-02-24T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 10342, + "EmployeeID": 4, + "OrderDate": "1996-10-30T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", "ShipVia": 2, - "Freight": 180.45, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 54.83, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 24, + "Discount": 0.2 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 50, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 56, + "Discount": 0.2 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 25, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10456, - "EmployeeID": 8, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 8.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10396, + "EmployeeID": 1, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1997-01-06T00:00:00", + "ShipVia": 3, + "Freight": 135.35, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 23, + "UnitPrice": 7.2, "Quantity": 40, - "Discount": 0.16 + "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, "Quantity": 21, - "Discount": 0.16 + "Discount": 0 } ] }, { - "OrderID": 10457, - "EmployeeID": 2, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-03-25T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", - "ShipVia": 1, - "Freight": 11.57, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10488, + "EmployeeID": 8, + "OrderDate": "1997-03-27T00:00:00", + "RequiredDate": "1997-04-24T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 59, "UnitPrice": 44, - "Quantity": 36, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0.2 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 45000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10458, - "EmployeeID": 7, - "OrderDate": "1997-02-26T00:00:00", - "RequiredDate": "1997-03-26T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", - "ShipVia": 3, - "Freight": 147.06, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 16000, - "ShipCountry": "Belgium", + "OrderID": 10560, + "EmployeeID": 8, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 1, + "Freight": 36.65, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, + "ProductID": 30, + "UnitPrice": 25.89, "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0 + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10459, - "EmployeeID": 4, - "OrderDate": "1997-02-27T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", + "OrderID": 10623, + "EmployeeID": 8, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", "ShipVia": 2, - "Freight": 25.09, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 97.18, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 3, "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 19000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10460, - "EmployeeID": 8, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 10653, + "EmployeeID": 1, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", "ShipVia": 1, - "Freight": 16.27, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 40000, - "ShipCountry": "Sweden", + "Freight": 93.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10461, - "EmployeeID": 1, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-05T00:00:00", - "ShipVia": 3, - "Freight": 148.61, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10670, + "EmployeeID": 4, + "OrderDate": "1997-09-16T00:00:00", + "RequiredDate": "1997-10-14T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 1, + "Freight": 203.48, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 32, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 28, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 60, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 38000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ - { - "OrderID": 10462, - "EmployeeID": 2, - "OrderDate": "1997-03-03T00:00:00", - "RequiredDate": "1997-03-31T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 1, - "Freight": 6.17, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 50000, - "ShipCountry": "UK", - "OrderDetails": [ + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 25, + "Discount": 0 + }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 1, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 21, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 34000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10463, + "OrderID": 10675, "EmployeeID": 5, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-06T00:00:00", - "ShipVia": 3, - "Freight": 14.78, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 21000, - "ShipCountry": "Belgium", + "OrderDate": "1997-09-19T00:00:00", + "RequiredDate": "1997-10-17T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", + "ShipVia": 2, + "Freight": 31.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 21, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 50, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10464, - "EmployeeID": 4, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10717, + "EmployeeID": 1, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 2, - "Freight": 89, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 59.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 16, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 32, + "Discount": 0.06 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 3, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 25, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10791, + "EmployeeID": 6, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-01T00:00:00", + "ShipVia": 2, + "Freight": 16.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 14, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 27.2, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10465, + "OrderID": 10859, "EmployeeID": 1, - "OrderDate": "1997-03-05T00:00:00", - "RequiredDate": "1997-04-02T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 3, - "Freight": 145.04, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 76.1, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0 + "UnitPrice": 4.5, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 45, - "UnitPrice": 7.6, + "ProductID": 64, + "UnitPrice": 33.25, "Quantity": 30, - "Discount": 0.1 + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10929, + "EmployeeID": 6, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 1, + "Freight": 33.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 50, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 77, "UnitPrice": 13, - "Quantity": 25, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10466, - "EmployeeID": 4, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-13T00:00:00", - "ShipVia": 1, - "Freight": 11.93, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderID": 11012, + "EmployeeID": 1, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 3, + "Freight": 242.95, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 36, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.06 } ] } - ], - "Fax": "(11) 555-7647" + ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "GROSR", + "Company": "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", "Orders": [ { - "OrderID": 10467, + "OrderID": 10268, "EmployeeID": 8, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderDate": "1996-07-30T00:00:00", + "RequiredDate": "1996-08-27T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 3, + "Freight": 66.29, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 12, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10468, - "EmployeeID": 3, - "OrderDate": "1997-03-07T00:00:00", - "RequiredDate": "1997-04-04T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", + "OrderID": 10785, + "EmployeeID": 1, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", "ShipVia": 3, - "Freight": 44.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 1.51, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 15, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 10, "Discount": 0 } ] } - ], - "Fax": "0555-09876" + ] }, { "CustomerID": "WHITC", @@ -10193,13 +7588,13 @@ "Fax": "(206) 555-4115", "Orders": [ { - "OrderID": 10469, - "EmployeeID": 1, - "OrderDate": "1997-03-10T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10269, + "EmployeeID": 5, + "OrderDate": "1996-07-31T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", "ShipVia": 1, - "Freight": 60.18, + "Freight": 4.56, "ShipName": "White Clover Markets", "ShipAddress": "1029 - 12th Ave. S.", "ShipCity": "Seattle", @@ -10208,525 +7603,464 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10470, + "OrderID": 10344, "EmployeeID": 4, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderDate": "1996-11-01T00:00:00", + "RequiredDate": "1996-11-29T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", "ShipVia": 2, - "Freight": 64.56, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 23.29, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 15, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 8, - "Discount": 0 + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10471, - "EmployeeID": 2, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 3, - "Freight": 45.59, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 25000, - "ShipCountry": "UK", + "OrderID": 10469, + "EmployeeID": 1, + "OrderDate": "1997-03-10T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 1, + "Freight": 60.18, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 2, + "Discount": 0.16 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 25000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10472, - "EmployeeID": 8, - "OrderDate": "1997-03-12T00:00:00", - "RequiredDate": "1997-04-09T00:00:00", - "ShippedDate": "1997-03-19T00:00:00", - "ShipVia": 1, - "Freight": 4.2, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 21000, - "ShipCountry": "UK", + "OrderID": 10483, + "EmployeeID": 7, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-25T00:00:00", + "ShipVia": 2, + "Freight": 15.28, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 80, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 35, "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 18, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10473, - "EmployeeID": 1, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", + "OrderID": 10504, + "EmployeeID": 4, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-18T00:00:00", "ShipVia": 3, - "Freight": 16.37, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 90698, - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "Freight": 59.13, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 12, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 12, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10474, - "EmployeeID": 5, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-04-10T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 2, - "Freight": 83.49, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 18.6, + "ProductID": 21, + "UnitPrice": 10, "Quantity": 12, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 18, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 21, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 25, "Discount": 0 + } + ] + }, + { + "OrderID": 10596, + "EmployeeID": 8, + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", + "ShipVia": 1, + "Freight": 16.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0.2 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 24, + "Discount": 0.2 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0 + "UnitPrice": 7.75, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 45000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10475, - "EmployeeID": 9, - "OrderDate": "1997-03-14T00:00:00", - "RequiredDate": "1997-04-11T00:00:00", - "ShippedDate": "1997-04-04T00:00:00", - "ShipVia": 1, - "Freight": 68.52, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", + "OrderID": 10693, + "EmployeeID": 3, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-10-10T00:00:00", + "ShipVia": 3, + "Freight": 139.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 13.6, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 60, "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 42, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10476, + "OrderID": 10696, "EmployeeID": 8, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", "ShipVia": 3, - "Freight": 4.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 102.55, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 2, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 70, + "ProductID": 46, "UnitPrice": 12, - "Quantity": 12, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10477, - "EmployeeID": 5, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", - "ShipVia": 2, - "Freight": 13.02, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10723, + "EmployeeID": 3, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-11-27T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", + "ShipVia": 1, + "Freight": 21.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, + "ProductID": 26, + "UnitPrice": 31.23, "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10740, + "EmployeeID": 4, + "OrderDate": "1997-11-13T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", + "ShipVia": 2, + "Freight": 81.88, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, + "Discount": 0.2 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10478, - "EmployeeID": 2, - "OrderDate": "1997-03-18T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-26T00:00:00", - "ShipVia": 3, - "Freight": 4.81, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10861, + "EmployeeID": 4, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-02-27T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 14.93, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 42, + "Discount": 0 + }, + { + "ProductID": 18, + "UnitPrice": 62.5, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10479, + "OrderID": 10904, "EmployeeID": 3, - "OrderDate": "1997-03-19T00:00:00", - "RequiredDate": "1997-04-16T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", "ShipVia": 3, - "Freight": 708.95, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, + "Freight": 162.95, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 30, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 28, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 35, + "Discount": 0 + } + ] + }, + { + "OrderID": 11032, + "EmployeeID": 2, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 606.19, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10480, - "EmployeeID": 6, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", + "OrderID": 11066, + "EmployeeID": 7, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 44.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 30, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 42, + "Discount": 0 + }, + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 35, "Discount": 0 } ] @@ -10734,413 +8068,287 @@ ] }, { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", + "CustomerID": "SPLIR", + "Company": "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", "Orders": [ { - "OrderID": 10481, - "EmployeeID": 8, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", + "OrderID": 10271, + "EmployeeID": 6, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-30T00:00:00", "ShipVia": 2, - "Freight": 64.33, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 4.54, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 33, + "UnitPrice": 2, "Quantity": 24, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10482, - "EmployeeID": 1, - "OrderDate": "1997-03-21T00:00:00", - "RequiredDate": "1997-04-18T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 7.48, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, + "OrderID": 10329, + "EmployeeID": 4, + "OrderDate": "1996-10-15T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 2, + "Freight": 191.67, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ - { - "OrderID": 10483, - "EmployeeID": 7, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-25T00:00:00", - "ShipVia": 2, - "Freight": 15.28, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", - "OrderDetails": [ + "Discount": 0.06 + }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 35, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, "Discount": 0.06 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 12, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 45000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10484, - "EmployeeID": 3, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-01T00:00:00", - "ShipVia": 3, - "Freight": 6.88, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10349, + "EmployeeID": 7, + "OrderDate": "1996-11-08T00:00:00", + "RequiredDate": "1996-12-06T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 1, + "Freight": 8.63, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 14, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10369, + "EmployeeID": 8, + "OrderDate": "1996-12-02T00:00:00", + "RequiredDate": "1996-12-30T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 195.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 3, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 18, + "Discount": 0.25 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10485, - "EmployeeID": 4, - "OrderDate": "1997-03-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-31T00:00:00", + "OrderID": 10385, + "EmployeeID": 1, + "OrderDate": "1996-12-17T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1996-12-23T00:00:00", "ShipVia": 2, - "Freight": 64.45, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 30.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 3, - "UnitPrice": 8, + "ProductID": 60, + "UnitPrice": 27.2, "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 30, - "Discount": 0.1 + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10486, - "EmployeeID": 1, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", + "OrderID": 10432, + "EmployeeID": 3, + "OrderDate": "1997-01-31T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", "ShipVia": 2, - "Freight": 30.53, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 4.34, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 25, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 16, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10487, - "EmployeeID": 2, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-03-28T00:00:00", + "OrderID": 10756, + "EmployeeID": 8, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-02T00:00:00", "ShipVia": 2, - "Freight": 71.07, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 73.21, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 5, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 21, + "Discount": 0.2 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.2 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.2 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10488, - "EmployeeID": 8, - "OrderDate": "1997-03-27T00:00:00", - "RequiredDate": "1997-04-24T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10821, + "EmployeeID": 1, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-15T00:00:00", + "ShipVia": 1, + "Freight": 36.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10489, - "EmployeeID": 6, - "OrderDate": "1997-03-28T00:00:00", - "RequiredDate": "1997-04-25T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 5.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10974, + "EmployeeID": 3, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 12.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 18, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 10, "Discount": 0 } ] @@ -11148,1159 +8356,813 @@ ] }, { - "CustomerID": "HILAA", - "Company": "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": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Fax": "0372-035189", "Orders": [ { - "OrderID": 10490, - "EmployeeID": 7, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-03T00:00:00", - "ShipVia": 2, - "Freight": 210.19, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10273, + "EmployeeID": 3, + "OrderDate": "1996-08-05T00:00:00", + "RequiredDate": "1996-09-02T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", + "ShipVia": 3, + "Freight": 76.07, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 24, + "Discount": 0.06 }, { - "ProductID": 68, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 36, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 33, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10491, - "EmployeeID": 8, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-08T00:00:00", - "ShipVia": 3, - "Freight": 16.96, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10285, + "EmployeeID": 1, + "OrderDate": "1996-08-20T00:00:00", + "RequiredDate": "1996-09-17T00:00:00", + "ShippedDate": "1996-08-26T00:00:00", + "ShipVia": 2, + "Freight": 76.83, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0.16 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 36, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 10000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10492, - "EmployeeID": 3, - "OrderDate": "1997-04-01T00:00:00", - "RequiredDate": "1997-04-29T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 1, - "Freight": 62.89, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderID": 10313, + "EmployeeID": 2, + "OrderDate": "1996-09-24T00:00:00", + "RequiredDate": "1996-10-22T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 1.96, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10345, + "EmployeeID": 2, + "OrderDate": "1996-11-04T00:00:00", + "RequiredDate": "1996-12-02T00:00:00", + "ShippedDate": "1996-11-11T00:00:00", + "ShipVia": 2, + "Freight": 249.06, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 80, + "Discount": 0 }, { "ProductID": 42, "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.06 + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10493, - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 10.64, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10361, + "EmployeeID": 1, + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 183.17, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 54, "Discount": 0.1 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 55, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10494, + "OrderID": 10418, "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 65.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderDate": "1997-01-17T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "ShipVia": 1, + "Freight": 17.55, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 60, "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 19000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ - { - "OrderID": 10495, - "EmployeeID": 3, - "OrderDate": "1997-04-03T00:00:00", - "RequiredDate": "1997-05-01T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 3, - "Freight": 4.65, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 20000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 10, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10496, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 2, - "Freight": 46.77, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10497, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 1, - "Freight": 36.21, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "OrderID": 10451, + "EmployeeID": 4, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 189.09, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 14, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 120, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 28, + "Discount": 0.1 }, { "ProductID": 77, "UnitPrice": 10.4, - "Quantity": 25, - "Discount": 0 + "Quantity": 55, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10498, - "EmployeeID": 8, - "OrderDate": "1997-04-07T00:00:00", - "RequiredDate": "1997-05-05T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 2, - "Freight": 29.75, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10515, + "EmployeeID": 2, + "OrderDate": "1997-04-23T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 1, + "Freight": 204.47, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 14, + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 16, + "Discount": 0.16 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 120, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10499, - "EmployeeID": 4, - "OrderDate": "1997-04-08T00:00:00", - "RequiredDate": "1997-05-06T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 102.02, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, + "Discount": 0.16 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 84, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10500, - "EmployeeID": 6, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-17T00:00:00", + "OrderID": 10527, + "EmployeeID": 7, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", "ShipVia": 1, - "Freight": 42.68, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 41.9, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10501, - "EmployeeID": 9, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", + "OrderID": 10540, + "EmployeeID": 3, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", "ShipVia": 3, - "Freight": 8.85, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, + "Freight": 1007.64, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10502, - "EmployeeID": 2, - "OrderDate": "1997-04-10T00:00:00", - "RequiredDate": "1997-05-08T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 69.32, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 21, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10503, - "EmployeeID": 6, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 16.74, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10549, + "EmployeeID": 5, + "OrderDate": "1997-05-27T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 171.24, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 70, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 55, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 100, + "Discount": 0.16 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 48, + "Discount": 0.16 + } + ] + }, { - "OrderID": 10504, - "EmployeeID": 4, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-18T00:00:00", + "OrderID": 10588, + "EmployeeID": 2, + "OrderDate": "1997-07-03T00:00:00", + "RequiredDate": "1997-07-31T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", "ShipVia": 3, - "Freight": 59.13, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 194.67, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 40, + "Discount": 0.2 }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 100, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10658, + "EmployeeID": 4, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 1, + "Freight": 364.15, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { "ProductID": 21, "UnitPrice": 10, - "Quantity": 12, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 25, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 55, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 70, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 21000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10505, - "EmployeeID": 3, - "OrderDate": "1997-04-14T00:00:00", - "RequiredDate": "1997-05-12T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 7.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 33000, - "ShipCountry": "Canada", + "OrderID": 10691, + "EmployeeID": 2, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-10-22T00:00:00", + "ShipVia": 2, + "Freight": 810.05, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 24, + "Discount": 0 + }, { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 3, + "Quantity": 48, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10506, - "EmployeeID": 9, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 21.19, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10694, + "EmployeeID": 8, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-11-03T00:00:00", + "ShippedDate": "1997-10-09T00:00:00", + "ShipVia": 3, + "Freight": 398.36, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 90, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 }, { "ProductID": 70, "UnitPrice": 15, - "Quantity": 14, - "Discount": 0.1 + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10507, - "EmployeeID": 7, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-04-22T00:00:00", - "ShipVia": 1, - "Freight": 47.45, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 15, - "Discount": 0.16 - }, + "OrderID": 10721, + "EmployeeID": 5, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-11-26T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", + "ShipVia": 3, + "Freight": 48.92, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 50, + "Discount": 0.06 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10508, - "EmployeeID": 1, - "OrderDate": "1997-04-16T00:00:00", - "RequiredDate": "1997-05-14T00:00:00", - "ShippedDate": "1997-05-13T00:00:00", - "ShipVia": 2, - "Freight": 4.99, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, + "OrderID": 10745, + "EmployeeID": 9, + "OrderDate": "1997-11-18T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 1, + "Freight": 3.52, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 7, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10509, - "EmployeeID": 4, - "OrderDate": "1997-04-17T00:00:00", - "RequiredDate": "1997-05-15T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 0.15, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, + "OrderID": 10765, + "EmployeeID": 3, + "OrderDate": "1997-12-04T00:00:00", + "RequiredDate": "1998-01-01T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 3, + "Freight": 42.74, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 80, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10510, - "EmployeeID": 6, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", - "ShipVia": 3, - "Freight": 367.63, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10788, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 42.7, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 36, - "Discount": 0.1 + "Quantity": 40, + "Discount": 0.06 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10511, - "EmployeeID": 4, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 350.64, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10845, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 212.98, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10512, - "EmployeeID": 7, - "OrderDate": "1997-04-21T00:00:00", - "RequiredDate": "1997-05-19T00:00:00", - "ShippedDate": "1997-04-24T00:00:00", - "ShipVia": 2, - "Freight": 3.53, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.16 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 9, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 42, + "Discount": 0.1 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 48, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10513, - "EmployeeID": 7, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-06-03T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", + "OrderID": 10865, + "EmployeeID": 2, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", "ShipVia": 1, - "Freight": 105.65, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, + "Freight": 348.14, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.2 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10514, - "EmployeeID": 3, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", - "ShipVia": 2, - "Freight": 789.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10878, + "EmployeeID": 4, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 46.69, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 20, "UnitPrice": 81, - "Quantity": 39, - "Discount": 0 - }, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10938, + "EmployeeID": 3, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 31.89, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 35, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 70, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0.25 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 39, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 49, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10515, - "EmployeeID": 2, - "OrderDate": "1997-04-23T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 1, - "Freight": 204.47, + "OrderID": 10962, + "EmployeeID": 8, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 275.79, "ShipName": "QUICK-Stop", "ShipAddress": "Taucherstraße 10", "ShipCity": "Cunewalde", @@ -12308,131 +9170,135 @@ "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 16, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, + "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 77, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 120, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0.16 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 84, - "Discount": 0.16 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 44, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10516, - "EmployeeID": 2, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 62.78, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10991, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 1, + "Freight": 38.51, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.2 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 80, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 20, + "Discount": 0.2 }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 90, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10996, + "EmployeeID": 4, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 1.12, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { "ProductID": 42, "UnitPrice": 14, - "Quantity": 20, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 13000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ + }, { - "OrderID": 10517, + "OrderID": 11021, "EmployeeID": 3, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 3, - "Freight": 32.07, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 19000, - "ShipCountry": "UK", + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 1, + "Freight": 297.18, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 11, + "Discount": 0.25 + }, + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 4, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 63, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 44, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, "Discount": 0 } ] @@ -12440,347 +9306,299 @@ ] }, { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", + "CustomerID": "MAGAA", + "Company": "Magazzini Alimentari Riuniti", + "ContactName": "Giovanni Rovelli", + "ContactTitle": "Marketing Manager", + "Address": "Via Ludovico il Moro 22", + "City": "Bergamo", + "PostalCode": 24100, + "Country": "Italy", + "Phone": "035-640230", + "Fax": "035-640231", "Orders": [ { - "OrderID": 10518, - "EmployeeID": 4, - "OrderDate": "1997-04-25T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-05-05T00:00:00", - "ShipVia": 2, - "Freight": 218.15, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10275, + "EmployeeID": 1, + "OrderDate": "1996-08-07T00:00:00", + "RequiredDate": "1996-09-04T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", + "ShipVia": 1, + "Freight": 26.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 6, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10300, + "EmployeeID": 2, + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 17.68, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 9, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10519, - "EmployeeID": 6, - "OrderDate": "1997-04-28T00:00:00", - "RequiredDate": "1997-05-26T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 91.76, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10404, + "EmployeeID": 2, + "OrderDate": "1997-01-03T00:00:00", + "RequiredDate": "1997-01-31T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", + "ShipVia": 1, + "Freight": 155.97, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 42, + "UnitPrice": 11.2, "Quantity": 40, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10520, - "EmployeeID": 7, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 1, - "Freight": 13.37, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10467, + "EmployeeID": 8, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 8, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 5, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10521, + "OrderID": 10635, "EmployeeID": 8, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 17.22, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-08-18T00:00:00", + "RequiredDate": "1997-09-15T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 47.46, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10522, - "EmployeeID": 4, - "OrderDate": "1997-04-30T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-06T00:00:00", - "ShipVia": 1, - "Freight": 45.33, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10754, + "EmployeeID": 6, + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 3, + "Freight": 2.38, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.2 - }, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10784, + "EmployeeID": 4, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 70.09, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 24, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 10000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10523, + "OrderID": 10818, "EmployeeID": 7, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 2, - "Freight": 77.63, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 16000, - "ShipCountry": "UK", + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", + "ShipVia": 3, + "Freight": 65.48, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0.1 + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 37000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10524, - "EmployeeID": 1, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", + "OrderID": 10939, + "EmployeeID": 2, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 2, - "Freight": 244.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 12000, - "ShipCountry": "Sweden", + "Freight": 76.33, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 10, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 60, - "Discount": 0 - }, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10950, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-13T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 2.5, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 5, "Discount": 0 } ] @@ -12788,1370 +9606,1092 @@ ] }, { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", + "CustomerID": "TORTU", + "Company": "Tortuga Restaurante", + "ContactName": "Miguel Angel Paolino", "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", + "Address": "Avda. Azteca 123", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 555-2933", + "Fax": "(5) 555-2934", "Orders": [ { - "OrderID": 10525, - "EmployeeID": 1, - "OrderDate": "1997-05-02T00:00:00", - "RequiredDate": "1997-05-30T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 11.06, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10276, + "EmployeeID": 8, + "OrderDate": "1996-08-08T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-14T00:00:00", + "ShipVia": 3, + "Freight": 13.84, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10526, - "EmployeeID": 4, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-15T00:00:00", - "ShipVia": 2, - "Freight": 58.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10293, + "EmployeeID": 1, + "OrderDate": "1996-08-29T00:00:00", + "RequiredDate": "1996-09-26T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", + "ShipVia": 3, + "Freight": 21.18, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 24, + "UnitPrice": 3.6, "Quantity": 10, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10527, - "EmployeeID": 7, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", - "ShipVia": 1, - "Freight": 41.9, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.1 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10528, - "EmployeeID": 6, - "OrderDate": "1997-05-06T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", + "OrderID": 10304, + "EmployeeID": 1, + "OrderDate": "1996-09-12T00:00:00", + "RequiredDate": "1996-10-10T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", "ShipVia": 2, - "Freight": 3.35, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 63.79, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 3, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 9, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 11000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10529, - "EmployeeID": 5, - "OrderDate": "1997-05-07T00:00:00", - "RequiredDate": "1997-06-04T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", - "ShipVia": 2, - "Freight": 66.69, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 26000, - "ShipCountry": "Belgium", + "OrderID": 10319, + "EmployeeID": 7, + "OrderDate": "1996-10-02T00:00:00", + "RequiredDate": "1996-10-30T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 3, + "Freight": 64.5, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 14, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10530, - "EmployeeID": 3, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", + "OrderID": 10518, + "EmployeeID": 4, + "OrderDate": "1997-04-25T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-05-05T00:00:00", "ShipVia": 2, - "Freight": 339.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 218.15, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 25, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 10576, + "EmployeeID": 3, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", + "ShipVia": 3, + "Freight": 18.56, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 20, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10531, - "EmployeeID": 7, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", - "ShipVia": 1, - "Freight": 8.12, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10676, + "EmployeeID": 2, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-29T00:00:00", + "ShipVia": 2, + "Freight": 2.01, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 2, "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10532, - "EmployeeID": 7, - "OrderDate": "1997-05-09T00:00:00", - "RequiredDate": "1997-06-06T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", + "OrderID": 10842, + "EmployeeID": 1, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 3, - "Freight": 74.46, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 23000, - "ShipCountry": "UK", + "Freight": 54.42, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 11, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 24, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 5, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 21000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10533, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-22T00:00:00", - "ShipVia": 1, - "Freight": 188.04, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 45000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 73, + "ProductID": 70, "UnitPrice": 15, - "Quantity": 24, - "Discount": 0.06 + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10534, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-14T00:00:00", + "OrderID": 10915, + "EmployeeID": 2, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", "ShipVia": 2, - "Freight": 27.94, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 3.51, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 17, + "UnitPrice": 39, "Quantity": 10, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 54, "UnitPrice": 7.45, "Quantity": 10, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10535, - "EmployeeID": 4, - "OrderDate": "1997-05-13T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-21T00:00:00", - "ShipVia": 1, - "Freight": 15.64, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", + "OrderID": 11069, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 15.67, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", "ShipCity": "México D.F.", - "ShipPostalCode": 5023, + "ShipPostalCode": 5033, "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 } ] } - ], - "Fax": "(5) 555-3932" + ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, + "CustomerID": "MORGK", + "Company": "Morgenstern Gesundkost", + "ContactName": "Alexander Feuer", + "ContactTitle": "Marketing Assistant", + "Address": "Heerstr. 22", + "City": "Leipzig", + "PostalCode": 4179, "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "Phone": "0342-023176", + "Fax": "0342-023177", "Orders": [ { - "OrderID": 10536, - "EmployeeID": 3, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-06-11T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 2, - "Freight": 58.88, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "OrderID": 10277, + "EmployeeID": 2, + "OrderDate": "1996-08-09T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-08-13T00:00:00", + "ShipVia": 3, + "Freight": 125.77, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 20, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 12, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, - "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10537, - "EmployeeID": 1, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", + "OrderID": 10575, + "EmployeeID": 5, + "OrderDate": "1997-06-20T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 1, - "Freight": 78.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 127.34, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 6, "Discount": 0 }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 20, - "Discount": 0 - }, { "ProductID": 72, "UnitPrice": 34.8, - "Quantity": 21, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 9, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 44000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10538, - "EmployeeID": 9, - "OrderDate": "1997-05-15T00:00:00", - "RequiredDate": "1997-06-12T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", + "OrderID": 10699, + "EmployeeID": 3, + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", "ShipVia": 3, - "Freight": 4.87, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 27000, - "ShipCountry": "UK", + "Freight": 0.58, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 1, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 12, "Discount": 0 } ] }, { - "OrderID": 10539, - "EmployeeID": 6, - "OrderDate": "1997-05-16T00:00:00", - "RequiredDate": "1997-06-13T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 3, - "Freight": 12.36, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 39000, - "ShipCountry": "UK", + "OrderID": 10779, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 2, + "Freight": 58.13, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 8, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10945, + "EmployeeID": 4, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-04-09T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 10.22, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 6, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 } ] } - ], - "Fax": "(171) 555-1212" + ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10540, - "EmployeeID": 3, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 3, - "Freight": 1007.64, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 14000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", + "Orders": [ + { + "OrderID": 10278, + "EmployeeID": 8, + "OrderDate": "1996-08-12T00:00:00", + "RequiredDate": "1996-09-09T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 92.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 35, + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10541, + "OrderID": 10280, "EmployeeID": 2, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-05-29T00:00:00", + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-09-11T00:00:00", + "ShippedDate": "1996-09-12T00:00:00", "ShipVia": 1, - "Freight": 68.65, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 8.98, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.1 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 4, - "Discount": 0.1 + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 36, - "Discount": 0.1 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10542, - "EmployeeID": 1, - "OrderDate": "1997-05-20T00:00:00", - "RequiredDate": "1997-06-17T00:00:00", - "ShippedDate": "1997-05-26T00:00:00", + "OrderID": 10384, + "EmployeeID": 3, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", "ShipVia": 3, - "Freight": 10.95, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 168.64, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 24, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10543, - "EmployeeID": 8, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 48.17, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10444, + "EmployeeID": 3, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-21T00:00:00", + "ShipVia": 3, + "Freight": 3.5, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 22000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10544, - "EmployeeID": 4, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 24.91, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10524, + "EmployeeID": 1, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", + "ShipVia": 2, + "Freight": 244.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 12000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 7, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 7, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10545, - "EmployeeID": 8, - "OrderDate": "1997-05-22T00:00:00", - "RequiredDate": "1997-06-19T00:00:00", - "ShippedDate": "1997-06-26T00:00:00", + "OrderID": 10572, + "EmployeeID": 3, + "OrderDate": "1997-06-18T00:00:00", + "RequiredDate": "1997-07-16T00:00:00", + "ShippedDate": "1997-06-25T00:00:00", "ShipVia": 2, - "Freight": 11.92, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, - "ShipCountry": "USA", + "Freight": 116.43, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 40000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 32, + "UnitPrice": 32, "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10546, + "OrderID": 10626, "EmployeeID": 1, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-05-27T00:00:00", - "ShipVia": 3, - "Freight": 194.72, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-08T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 2, + "Freight": 138.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 34000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 10, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 27000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10547, - "EmployeeID": 3, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", - "ShipVia": 2, - "Freight": 178.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10654, + "EmployeeID": 5, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 1, + "Freight": 55.26, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 12000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 60, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10548, - "EmployeeID": 3, - "OrderDate": "1997-05-26T00:00:00", - "RequiredDate": "1997-06-23T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", + "OrderID": 10672, + "EmployeeID": 9, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", "ShipVia": 2, - "Freight": 1.43, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 95.75, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 50000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10549, - "EmployeeID": 5, - "OrderDate": "1997-05-27T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 171.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10689, + "EmployeeID": 1, + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-29T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", + "ShipVia": 2, + "Freight": 13.42, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 16000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 55, - "Discount": 0.16 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 100, - "Discount": 0.16 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 48, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10550, - "EmployeeID": 7, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-06-25T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", + "OrderID": 10733, + "EmployeeID": 1, + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-10T00:00:00", "ShipVia": 3, - "Freight": 4.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 110.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 34000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 16, + "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0.1 - }, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10778, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", + "ShipVia": 1, + "Freight": 6.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 39000, + "ShipCountry": "Sweden", + "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 10, - "Discount": 0.1 + "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10551, - "EmployeeID": 4, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", + "OrderID": 10837, + "EmployeeID": 9, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 3, - "Freight": 72.95, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 13.32, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 17000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, + "ProductID": 47, + "UnitPrice": 9.5, "Quantity": 40, - "Discount": 0 + "Discount": 0.25 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10552, - "EmployeeID": 2, - "OrderDate": "1997-05-29T00:00:00", - "RequiredDate": "1997-06-26T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 1, - "Freight": 83.22, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10857, + "EmployeeID": 8, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 2, + "Freight": 188.85, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 18, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.25 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10553, - "EmployeeID": 2, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-03T00:00:00", + "OrderID": 10866, + "EmployeeID": 5, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-03T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 109.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 37000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 6, + "Discount": 0.25 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 40, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10875, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", "ShipVia": 2, - "Freight": 149.49, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 32.37, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 18000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 14, - "Discount": 0 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0.1 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 24, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10924, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 2, + "Freight": 151.52, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 35000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 30, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 35, - "UnitPrice": 18, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 6, "Discount": 0 } @@ -14160,169 +10700,261 @@ ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, + "CustomerID": "LEHMS", + "Company": "Lehmanns Marktstand", + "ContactName": "Renate Messner", + "ContactTitle": "Sales Representative", + "Address": "Magazinweg 7", + "City": "Frankfurt a.M.", + "PostalCode": 60528, "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", + "Phone": "069-0245984", + "Fax": "069-0245874", "Orders": [ { - "OrderID": 10554, + "OrderID": 10279, + "EmployeeID": 8, + "OrderDate": "1996-08-13T00:00:00", + "RequiredDate": "1996-09-10T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 25.83, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10284, "EmployeeID": 4, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 3, - "Freight": 120.97, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, + "OrderDate": "1996-08-19T00:00:00", + "RequiredDate": "1996-09-16T00:00:00", + "ShippedDate": "1996-08-27T00:00:00", + "ShipVia": 1, + "Freight": 76.56, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 60, + "UnitPrice": 27.2, "Quantity": 20, - "Discount": 0.06 + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, + "ProductID": 67, + "UnitPrice": 11.2, + "Quantity": 5, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10343, + "EmployeeID": 4, + "OrderDate": "1996-10-31T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-11-06T00:00:00", + "ShipVia": 1, + "Freight": 110.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 4, "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10555, - "EmployeeID": 6, - "OrderDate": "1997-06-02T00:00:00", - "RequiredDate": "1997-06-30T00:00:00", - "ShippedDate": "1997-06-04T00:00:00", - "ShipVia": 3, - "Freight": 252.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10497, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", + "ShipVia": 1, + "Freight": 36.21, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10522, + "EmployeeID": 4, + "OrderDate": "1997-04-30T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-06T00:00:00", + "ShipVia": 1, + "Freight": 45.33, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0.2 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 18, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, "Discount": 0.2 + } + ] + }, + { + "OrderID": 10534, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-14T00:00:00", + "ShipVia": 2, + "Freight": 27.94, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 40, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10556, - "EmployeeID": 2, - "OrderDate": "1997-06-03T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 9.8, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10536, + "EmployeeID": 3, + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-06-11T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 2, + "Freight": 58.88, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 15, + "Discount": 0.25 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { "OrderID": 10557, "EmployeeID": 9, @@ -14350,418 +10982,349 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10558, - "EmployeeID": 1, - "OrderDate": "1997-06-04T00:00:00", - "RequiredDate": "1997-07-02T00:00:00", - "ShippedDate": "1997-06-10T00:00:00", - "ShipVia": 2, - "Freight": 72.97, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 35000, - "ShipCountry": "UK", + "OrderID": 10592, + "EmployeeID": 3, + "OrderDate": "1997-07-08T00:00:00", + "RequiredDate": "1997-08-05T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 32.1, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 15, + "UnitPrice": 15.5, "Quantity": 25, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 5, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10772, + "EmployeeID": 3, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 91.28, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10862, + "EmployeeID": 8, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 53.23, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 18, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 3, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10559, - "EmployeeID": 6, - "OrderDate": "1997-06-05T00:00:00", - "RequiredDate": "1997-07-03T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 8.05, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10891, + "EmployeeID": 7, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 2, + "Freight": 20.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, "Discount": 0.06 - }, + } + ] + }, + { + "OrderID": 10934, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 3, + "Freight": 32.01, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10560, - "EmployeeID": 8, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", + "OrderID": 11070, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-02T00:00:00", "ShipVia": 1, - "Freight": 36.65, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, + "Freight": 136, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 2, + "UnitPrice": 19, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10561, - "EmployeeID": 2, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", - "ShipVia": 2, - "Freight": 242.21, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 23000, - "ShipCountry": "Sweden", + "CustomerID": "ROMEY", + "Company": "Romero y tomillo", + "ContactName": "Alejandra Camino", + "ContactTitle": "Accounting Manager", + "Address": "Gran Vía, 1", + "City": "Madrid", + "PostalCode": 28001, + "Country": "Spain", + "Phone": "(91) 745 6200", + "Fax": "(91) 745 6210", + "Orders": [ + { + "OrderID": 10281, + "EmployeeID": 4, + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-08-28T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 2.94, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 50, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 6, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10562, - "EmployeeID": 1, - "OrderDate": "1997-06-09T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-12T00:00:00", - "ShipVia": 1, - "Freight": 22.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 20, - "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10563, - "EmployeeID": 2, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-06-24T00:00:00", - "ShipVia": 2, - "Freight": 60.43, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10282, + "EmployeeID": 4, + "OrderDate": "1996-08-15T00:00:00", + "RequiredDate": "1996-09-12T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 70, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10564, - "EmployeeID": 4, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-08T00:00:00", - "ShippedDate": "1997-06-16T00:00:00", + "OrderID": 10306, + "EmployeeID": 1, + "OrderDate": "1996-09-16T00:00:00", + "RequiredDate": "1996-10-14T00:00:00", + "ShippedDate": "1996-09-23T00:00:00", "ShipVia": 3, - "Freight": 13.75, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 7.56, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 38000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10565, - "EmployeeID": 8, - "OrderDate": "1997-06-11T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", + "OrderID": 10917, + "EmployeeID": 4, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", "ShipVia": 2, - "Freight": 7.15, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 21000, - "ShipCountry": "Canada", + "Freight": 8.29, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 1, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10566, - "EmployeeID": 9, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", + "OrderID": 11013, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 1, - "Freight": 88.4, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 32.99, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 18, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 2, "Discount": 0 } ] @@ -14769,1433 +11332,1162 @@ ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "LILAS", + "Company": "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", "Orders": [ { - "OrderID": 10567, - "EmployeeID": 1, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-17T00:00:00", - "ShipVia": 1, - "Freight": 33.97, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10283, + "EmployeeID": 3, + "OrderDate": "1996-08-16T00:00:00", + "RequiredDate": "1996-09-13T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", + "ShipVia": 3, + "Freight": 84.81, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 60, - "Discount": 0.2 + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ - { - "OrderID": 10568, - "EmployeeID": 3, - "OrderDate": "1997-06-13T00:00:00", - "RequiredDate": "1997-07-11T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 3, - "Freight": 6.54, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", - "OrderDetails": [ + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 35, + "Discount": 0 + }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 5, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10569, - "EmployeeID": 5, - "OrderDate": "1997-06-16T00:00:00", - "RequiredDate": "1997-07-14T00:00:00", - "ShippedDate": "1997-07-11T00:00:00", + "OrderID": 10296, + "EmployeeID": 6, + "OrderDate": "1996-09-03T00:00:00", + "RequiredDate": "1996-10-01T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 1, - "Freight": 58.98, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 0.12, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 16, + "UnitPrice": 13.9, "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 22000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10570, + "OrderID": 10330, "EmployeeID": 3, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-19T00:00:00", - "ShipVia": 3, - "Freight": 188.99, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", + "ShipVia": 1, + "Freight": 12.75, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10571, - "EmployeeID": 8, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", + "OrderID": 10357, + "EmployeeID": 1, + "OrderDate": "1996-11-19T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", "ShipVia": 3, - "Freight": 26.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 34.88, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 11, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10572, + "OrderID": 10381, "EmployeeID": 3, - "OrderDate": "1997-06-18T00:00:00", - "RequiredDate": "1997-07-16T00:00:00", - "ShippedDate": "1997-06-25T00:00:00", - "ShipVia": 2, - "Freight": 116.43, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 40000, - "ShipCountry": "Sweden", + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 7.99, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, - "Discount": 0.1 - }, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 14, + "Discount": 0 + } + ] + }, + { + "OrderID": 10461, + "EmployeeID": 1, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-05T00:00:00", + "ShipVia": 3, + "Freight": 148.61, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 28, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10573, - "EmployeeID": 7, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-20T00:00:00", - "ShipVia": 3, - "Freight": 84.84, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10499, + "EmployeeID": 4, + "OrderDate": "1997-04-08T00:00:00", + "RequiredDate": "1997-05-06T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 2, + "Freight": 102.02, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 40, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 49, + "UnitPrice": 20, "Quantity": 25, "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "TRAIH", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10574, - "EmployeeID": 4, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10543, + "EmployeeID": 8, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", "ShipVia": 2, - "Freight": 37.6, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", + "Freight": 48.17, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 2, - "Discount": 0 - }, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10780, + "EmployeeID": 2, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-25T00:00:00", + "ShipVia": 1, + "Freight": 42.13, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 6, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10575, + "OrderID": 10823, "EmployeeID": 5, - "OrderDate": "1997-06-20T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 1, - "Freight": 127.34, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 163.97, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 6, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10576, - "EmployeeID": 3, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10899, + "EmployeeID": 5, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", "ShipVia": 3, - "Freight": 18.56, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 1.21, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, - "Discount": 0 + "Quantity": 8, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10577, - "EmployeeID": 9, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10997, + "EmployeeID": 8, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 25.41, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", + "Freight": 73.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 46, + "UnitPrice": 12, "Quantity": 20, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10578, - "EmployeeID": 4, - "OrderDate": "1997-06-24T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", - "ShipVia": 3, - "Freight": 29.6, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 31000, - "ShipCountry": "UK", + "OrderID": 11065, + "EmployeeID": 8, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-29T00:00:00", + "ShipVia": 1, + "Freight": 12.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 6, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, + "Discount": 0.25 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10579, + "OrderID": 11071, "EmployeeID": 1, - "OrderDate": "1997-06-25T00:00:00", - "RequiredDate": "1997-07-23T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 2, - "Freight": 13.73, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-10T00:00:00", + "ShipVia": 1, + "Freight": 0.93, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 10, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 21, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0.06 } ] } - ], - "Fax": "(415) 555-5938" + ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", + "CustomerID": "RICAR", + "Company": "Ricardo Adocicados", + "ContactName": "Janete Limeira", + "ContactTitle": "Sales Associate", + "Address": "Av. Copacabana, 267", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-3412", + "Fax": "(21) 555-3413", "Orders": [ { - "OrderID": 10580, - "EmployeeID": 4, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-01T00:00:00", + "OrderID": 10287, + "EmployeeID": 8, + "OrderDate": "1996-08-22T00:00:00", + "RequiredDate": "1996-09-19T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", "ShipVia": 3, - "Freight": 75.89, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 12.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10581, - "EmployeeID": 3, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-02T00:00:00", - "ShipVia": 1, - "Freight": 3.01, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", + "OrderID": 10299, + "EmployeeID": 4, + "OrderDate": "1996-09-06T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-13T00:00:00", + "ShipVia": 2, + "Freight": 29.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10582, - "EmployeeID": 3, - "OrderDate": "1997-06-27T00:00:00", - "RequiredDate": "1997-07-25T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 10447, + "EmployeeID": 4, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-03-07T00:00:00", "ShipVia": 2, - "Freight": 27.71, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "Freight": 68.66, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 4, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 14, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10583, - "EmployeeID": 2, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", + "OrderID": 10481, + "EmployeeID": 8, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", "ShipVia": 2, - "Freight": 7.28, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 64.33, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 24, "Discount": 0 }, { "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.16 + "UnitPrice": 27.2, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10563, + "EmployeeID": 2, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-06-24T00:00:00", + "ShipVia": 2, + "Freight": 60.43, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 70, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10584, + "OrderID": 10622, "EmployeeID": 4, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 1, - "Freight": 59.14, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderDate": "1997-08-06T00:00:00", + "RequiredDate": "1997-09-03T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 3, + "Freight": 50.97, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 31, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 68, "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.06 + "Quantity": 18, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10585, - "EmployeeID": 7, - "OrderDate": "1997-07-01T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 1, - "Freight": 13.41, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, + "OrderID": 10648, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-09T00:00:00", + "ShipVia": 2, + "Freight": 14.25, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 22, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10586, - "EmployeeID": 9, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 1, - "Freight": 0.48, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10813, + "EmployeeID": 1, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 1, + "Freight": 47.38, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 12, + "Discount": 0.2 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10587, - "EmployeeID": 1, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", + "OrderID": 10851, + "EmployeeID": 5, + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-23T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", "ShipVia": 1, - "Freight": 62.52, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 160.55, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", "ShipCity": "Sao Paulo", "ShipRegion": "RJ", "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, + "Discount": 0.06 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10588, - "EmployeeID": 2, - "OrderDate": "1997-07-03T00:00:00", - "RequiredDate": "1997-07-31T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 3, - "Freight": 194.67, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10877, + "EmployeeID": 1, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 1, + "Freight": 38.06, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 100, - "Discount": 0.2 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10589, - "EmployeeID": 8, - "OrderDate": "1997-07-04T00:00:00", - "RequiredDate": "1997-08-01T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 11059, + "EmployeeID": 2, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-06-10T00:00:00", + "ShippedDate": "1998-06-15T00:00:00", "ShipVia": 2, - "Freight": 4.42, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 85.8, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 30, "Discount": 0 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 43000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10590, - "EmployeeID": 4, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 3, - "Freight": 44.77, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 40000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0 } ] } ] }, { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10591, - "EmployeeID": 1, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-07-21T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", + "CustomerID": "REGGC", + "Company": "Reggiani Caseifici", + "ContactName": "Maurizio Moroni", + "ContactTitle": "Sales Associate", + "Address": "Strada Provinciale 124", + "City": "Reggio Emilia", + "PostalCode": 42100, + "Country": "Italy", + "Phone": "0522-556721", + "Fax": "0522-556722", + "Orders": [ + { + "OrderID": 10288, + "EmployeeID": 4, + "OrderDate": "1996-08-23T00:00:00", + "RequiredDate": "1996-09-20T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", "ShipVia": 1, - "Freight": 55.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 7.45, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 54, + "UnitPrice": 5.9, "Quantity": 10, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 50, - "Discount": 0 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10592, - "EmployeeID": 3, - "OrderDate": "1997-07-08T00:00:00", - "RequiredDate": "1997-08-05T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", + "OrderID": 10428, + "EmployeeID": 7, + "OrderDate": "1997-01-28T00:00:00", + "RequiredDate": "1997-02-25T00:00:00", + "ShippedDate": "1997-02-04T00:00:00", "ShipVia": 1, - "Freight": 32.1, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 11.09, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 25, - "Discount": 0.06 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0 } ] }, { - "OrderID": 10593, - "EmployeeID": 7, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-08-13T00:00:00", - "ShipVia": 2, - "Freight": 174.2, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10443, + "EmployeeID": 8, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 1, + "Freight": 13.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10594, - "EmployeeID": 3, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", - "ShipVia": 2, - "Freight": 5.24, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10562, + "EmployeeID": 1, + "OrderDate": "1997-06-09T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-12T00:00:00", + "ShipVia": 1, + "Freight": 22.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 24, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10595, - "EmployeeID": 2, - "OrderDate": "1997-07-10T00:00:00", - "RequiredDate": "1997-08-07T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 10586, + "EmployeeID": 9, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", "ShipVia": 1, - "Freight": 96.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 0.48, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 120, - "Discount": 0.25 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 65, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10596, - "EmployeeID": 8, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", - "ShipVia": 1, - "Freight": 16.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10655, + "EmployeeID": 1, + "OrderDate": "1997-09-03T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 4.41, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, "Discount": 0.2 + } + ] + }, + { + "OrderID": 10727, + "EmployeeID": 2, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-12-01T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 89.9, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 24, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10597, - "EmployeeID": 7, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", - "ShipVia": 3, - "Freight": 35.12, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10812, + "EmployeeID": 5, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", + "ShipVia": 1, + "Freight": 59.78, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 16, + "Discount": 0.1 }, { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, "Quantity": 20, "Discount": 0 + } + ] + }, + { + "OrderID": 10908, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 32.96, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 14, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10598, - "EmployeeID": 1, - "OrderDate": "1997-07-14T00:00:00", - "RequiredDate": "1997-08-11T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", + "OrderID": 10942, + "EmployeeID": 9, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 3, - "Freight": 44.42, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 17.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 50, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 28, + "Discount": 0 + } + ] + }, + { + "OrderID": 11010, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 28.71, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, "Discount": 0 } ] - } + }, + { + "OrderID": 11062, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-06-28T00:00:00", + "ShipVia": 2, + "Freight": 29.93, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 12, + "Discount": 0.2 + } + ] + } ] }, { @@ -16205,1875 +12497,1438 @@ "ContactTitle": "Sales Representative", "Address": "Fauntleroy Circus", "City": "London", - "PostalCode": 20000, + "PostalCode": 22000, "Country": "UK", "Phone": "(171) 555-1212", "Orders": [ { - "OrderID": 10599, - "EmployeeID": 6, - "OrderDate": "1997-07-15T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", + "OrderID": 10289, + "EmployeeID": 7, + "OrderDate": "1996-08-26T00:00:00", + "RequiredDate": "1996-09-23T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", "ShipVia": 3, - "Freight": 29.98, + "Freight": 22.77, "ShipName": "Best Beverages", "ShipAddress": "Fauntleroy Circus", "ShipCity": "London", - "ShipPostalCode": 14000, + "ShipPostalCode": 22000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10600, - "EmployeeID": 4, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-13T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", - "ShipVia": 1, - "Freight": 45.13, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "OrderID": 10471, + "EmployeeID": 2, + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 3, + "Freight": 45.59, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 25000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 4, + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10601, - "EmployeeID": 7, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", - "ShipVia": 1, - "Freight": 58.3, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10484, + "EmployeeID": 3, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-01T00:00:00", + "ShipVia": 3, + "Freight": 6.88, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 60, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10602, - "EmployeeID": 8, - "OrderDate": "1997-07-17T00:00:00", - "RequiredDate": "1997-08-14T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", - "ShipVia": 2, - "Freight": 2.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10603, - "EmployeeID": 8, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", - "ShipVia": 2, - "Freight": 48.77, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10538, + "EmployeeID": 9, + "OrderDate": "1997-05-15T00:00:00", + "RequiredDate": "1997-06-12T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 3, + "Freight": 4.87, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 27000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 48, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 1, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10604, - "EmployeeID": 1, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", - "ShipVia": 1, - "Freight": 7.46, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10578, + "EmployeeID": 4, + "OrderDate": "1997-06-24T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 3, + "Freight": 29.6, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 31000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 6, + "Discount": 0 + } + ] + }, + { + "OrderID": 10599, + "EmployeeID": 6, + "OrderDate": "1997-07-15T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", + "ShipVia": 3, + "Freight": 29.98, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 14000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 10, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 32000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10605, - "EmployeeID": 1, - "OrderDate": "1997-07-21T00:00:00", - "RequiredDate": "1997-08-18T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", + "OrderID": 10943, + "EmployeeID": 4, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 379.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", + "Freight": 2.17, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 21, + "Discount": 0 }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10947, + "EmployeeID": 3, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", + "OrderDetails": [ { "ProductID": 59, "UnitPrice": 55, - "Quantity": 20, - "Discount": 0.06 - }, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11023, + "EmployeeID": 1, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 123.83, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 36000, + "ShipCountry": "UK", + "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0 } ] } - ] + ], + "Fax": "(171) 555-1212" }, { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", + "CustomerID": "COMMI", + "Company": "Comércio Mineiro", + "ContactName": "Pedro Afonso", + "ContactTitle": "Sales Associate", + "Address": "Av. dos Lusíadas, 23", "City": "Sao Paulo", "Region": "SP", - "PostalCode": 5634, + "PostalCode": 5432, "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", + "Phone": "(11) 555-7647", "Orders": [ { - "OrderID": 10606, - "EmployeeID": 4, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-31T00:00:00", - "ShipVia": 3, - "Freight": 79.4, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", + "OrderID": 10290, + "EmployeeID": 8, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", + "ShipVia": 1, + "Freight": 79.7, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", "ShipCity": "Sao Paulo", "ShipRegion": "SP", - "ShipPostalCode": 5634, + "ShipPostalCode": 5432, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 5, + "UnitPrice": 17, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10607, - "EmployeeID": 5, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", - "ShipVia": 1, - "Freight": 200.24, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 100, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10466, + "EmployeeID": 4, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-13T00:00:00", + "ShipVia": 1, + "Freight": 11.93, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 42, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 12, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10608, + "OrderID": 10494, "EmployeeID": 4, - "OrderDate": "1997-07-23T00:00:00", - "RequiredDate": "1997-08-20T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", "ShipVia": 2, - "Freight": 27.79, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 65.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10609, - "EmployeeID": 7, - "OrderDate": "1997-07-24T00:00:00", - "RequiredDate": "1997-08-21T00:00:00", - "ShippedDate": "1997-07-30T00:00:00", + "OrderID": 10969, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", "ShipVia": 2, - "Freight": 1.85, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 0.21, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 3, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11042, + "EmployeeID": 2, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 29.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, "Discount": 0 } ] } - ] + ], + "Fax": "(11) 555-7647" }, { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", + "CustomerID": "TRADH", + "Company": "Tradição Hipermercados", + "ContactName": "Anabela Domingues", + "ContactTitle": "Sales Representative", + "Address": "Av. Inês de Castro, 414", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5634, + "Country": "Brazil", + "Phone": "(11) 555-2167", + "Fax": "(11) 555-2168", "Orders": [ { - "OrderID": 10610, - "EmployeeID": 8, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", - "ShipVia": 1, - "Freight": 26.78, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10292, + "EmployeeID": 1, + "OrderDate": "1996-08-28T00:00:00", + "RequiredDate": "1996-09-25T00:00:00", + "ShippedDate": "1996-09-02T00:00:00", + "ShipVia": 2, + "Freight": 1.35, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10611, - "EmployeeID": 6, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderID": 10496, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", "ShipVia": 2, - "Freight": 80.65, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 46.77, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10606, + "EmployeeID": 4, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-31T00:00:00", + "ShipVia": 3, + "Freight": 79.4, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10612, - "EmployeeID": 1, - "OrderDate": "1997-07-28T00:00:00", - "RequiredDate": "1997-08-25T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderID": 10830, + "EmployeeID": 4, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", "ShipVia": 2, - "Freight": 544.08, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 81.83, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 55, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 18, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 28, "Discount": 0 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 40, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 80, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 24, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10613, - "EmployeeID": 4, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 8.11, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10834, + "EmployeeID": 1, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 3, + "Freight": 29.78, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 8, + "Discount": 0.06 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10839, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-22T00:00:00", + "ShipVia": 3, + "Freight": 35.43, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "PostalCode": 48637, + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", "Orders": [ { - "OrderID": 10614, - "EmployeeID": 8, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 3, - "Freight": 1.93, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10298, + "EmployeeID": 6, + "OrderDate": "1996-09-05T00:00:00", + "RequiredDate": "1996-10-03T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", + "ShipVia": 2, + "Freight": 168.22, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 14, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 8, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 5, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10615, - "EmployeeID": 2, - "OrderDate": "1997-07-30T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", - "ShipVia": 3, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10309, + "EmployeeID": 3, + "OrderDate": "1996-09-19T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 1, + "Freight": 47.3, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ - { - "OrderID": 10616, - "EmployeeID": 1, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-05T00:00:00", - "ShipVia": 2, - "Freight": 116.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, + "Discount": 0 }, { "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "UnitPrice": 17.2, + "Quantity": 3, + "Discount": 0 } ] }, { - "OrderID": 10617, - "EmployeeID": 4, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-04T00:00:00", + "OrderID": 10335, + "EmployeeID": 7, + "OrderDate": "1996-10-22T00:00:00", + "RequiredDate": "1996-11-19T00:00:00", + "ShippedDate": "1996-10-24T00:00:00", "ShipVia": 2, - "Freight": 18.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 42.11, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 28000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10618, - "EmployeeID": 1, - "OrderDate": "1997-08-01T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", - "ShipVia": 1, - "Freight": 154.68, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 30000, - "ShipCountry": "Canada", - "OrderDetails": [ + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 7, + "Discount": 0.2 + }, { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 70, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 48, + "Discount": 0.2 } ] }, { - "OrderID": 10619, - "EmployeeID": 3, - "OrderDate": "1997-08-04T00:00:00", - "RequiredDate": "1997-09-01T00:00:00", - "ShippedDate": "1997-08-07T00:00:00", + "OrderID": 10373, + "EmployeeID": 4, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-11T00:00:00", "ShipVia": 3, - "Freight": 91.05, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 21000, - "ShipCountry": "Canada", + "Freight": 124.12, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 42, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 80, + "Discount": 0.2 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 49000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ + }, { - "OrderID": 10620, - "EmployeeID": 2, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", + "OrderID": 10380, + "EmployeeID": 8, + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", "ShipVia": 3, - "Freight": 0.94, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 31000, - "ShipCountry": "Canada", + "Freight": 35.03, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 21000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10621, - "EmployeeID": 4, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", - "ShipVia": 2, - "Freight": 23.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 50269, - "ShipPostalCode": 39000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 10, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 6, + "Discount": 0.1 }, { "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10622, - "EmployeeID": 4, - "OrderDate": "1997-08-06T00:00:00", - "RequiredDate": "1997-09-03T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", - "ShipVia": 3, - "Freight": 50.97, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10429, + "EmployeeID": 3, + "OrderDate": "1997-01-29T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 56.63, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, - "Discount": 0.2 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10623, - "EmployeeID": 8, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", + "OrderID": 10503, + "EmployeeID": 6, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", "ShipVia": 2, - "Freight": 97.18, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 16.74, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { "ProductID": 14, "UnitPrice": 23.25, - "Quantity": 21, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 3, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10624, - "EmployeeID": 4, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 2, - "Freight": 94.8, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "OrderID": 10516, + "EmployeeID": 2, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 62.78, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 6, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 80, + "Discount": 0.1 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10625, - "EmployeeID": 3, - "OrderDate": "1997-08-08T00:00:00", - "RequiredDate": "1997-09-05T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", + "OrderID": 10567, + "EmployeeID": 1, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-17T00:00:00", "ShipVia": 1, - "Freight": 43.9, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 33.97, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 5, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 19000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10626, - "EmployeeID": 1, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-08T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 2, - "Freight": 138.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 34000, - "ShipCountry": "Sweden", + "OrderID": 10646, + "EmployeeID": 9, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 142.33, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.25 }, { "ProductID": 71, "UnitPrice": 21.5, - "Quantity": 20, - "Discount": 0 + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10627, - "EmployeeID": 8, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10661, + "EmployeeID": 7, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", "ShipVia": 3, - "Freight": 107.46, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 17.55, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 49, + "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10628, - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 3, - "Freight": 30.36, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10687, + "EmployeeID": 9, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-30T00:00:00", + "ShipVia": 2, + "Freight": 296.43, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ - { - "OrderID": 10629, - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 3, - "Freight": 85.46, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", - "OrderDetails": [ + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 50, + "Discount": 0.25 + }, { "ProductID": 29, "UnitPrice": 123.79, - "Quantity": 20, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 9, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0.25 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10630, - "EmployeeID": 1, - "OrderDate": "1997-08-13T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 2, - "Freight": 32.35, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10701, + "EmployeeID": 6, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-10-27T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 3, + "Freight": 220.31, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.16 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0.16 }, { "ProductID": 76, "UnitPrice": 18, "Quantity": 35, - "Discount": 0 + "Discount": 0.16 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10631, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-15T00:00:00", + "OrderID": 10712, + "EmployeeID": 3, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", "ShipVia": 1, - "Freight": 0.87, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 89.93, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10632, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 1, - "Freight": 41.38, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10736, + "EmployeeID": 9, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 44.1, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10633, - "EmployeeID": 7, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-18T00:00:00", - "ShipVia": 3, - "Freight": 477.9, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10897, + "EmployeeID": 3, + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-25T00:00:00", + "ShipVia": 2, + "Freight": 603.54, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 80, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 13, - "Discount": 0.16 - }, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 36, + "Discount": 0 + } + ] + }, + { + "OrderID": 10912, + "EmployeeID": 2, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 580.91, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 80, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10634, - "EmployeeID": 4, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", - "ShipVia": 3, - "Freight": 487.38, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "OrderID": 10985, + "EmployeeID": 2, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 91.51, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 36, + "Discount": 0.1 }, { "ProductID": 18, "UnitPrice": 62.5, - "Quantity": 50, - "Discount": 0 + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 15, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 35, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11063, + "EmployeeID": 3, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 81.73, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 2, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "WANDK", + "Company": "Die Wandernde Kuh", + "ContactName": "Rita Müller", + "ContactTitle": "Sales Representative", + "Address": "Adenauerallee 900", + "City": "Stuttgart", + "PostalCode": 70563, + "Country": "Germany", + "Phone": "0711-020361", + "Fax": "0711-035428", "Orders": [ { - "OrderID": 10635, + "OrderID": 10301, "EmployeeID": 8, - "OrderDate": "1997-08-18T00:00:00", - "RequiredDate": "1997-09-15T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", - "ShipVia": 3, - "Freight": 47.46, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", + "ShipVia": 2, + "Freight": 45.08, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 40, + "UnitPrice": 14.7, "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 15, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10636, - "EmployeeID": 4, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 1.15, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10312, + "EmployeeID": 2, + "OrderDate": "1996-09-23T00:00:00", + "RequiredDate": "1996-10-21T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 40.26, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 6, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10637, - "EmployeeID": 6, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 201.29, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10348, + "EmployeeID": 4, + "OrderDate": "1996-11-07T00:00:00", + "RequiredDate": "1996-12-05T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 2, + "Freight": 0.78, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 50, - "UnitPrice": 16.25, + "ProductID": 23, + "UnitPrice": 7.2, "Quantity": 25, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10638, - "EmployeeID": 3, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", - "ShipVia": 1, - "Freight": 158.44, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10356, + "EmployeeID": 6, + "OrderDate": "1996-11-18T00:00:00", + "RequiredDate": "1996-12-16T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", + "ShipVia": 2, + "Freight": 36.71, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 60, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10639, + "OrderID": 10513, "EmployeeID": 7, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-08-27T00:00:00", - "ShipVia": 3, - "Freight": 38.64, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ - { - "OrderID": 10640, - "EmployeeID": 4, - "OrderDate": "1997-08-21T00:00:00", - "RequiredDate": "1997-09-18T00:00:00", - "ShippedDate": "1997-08-28T00:00:00", + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-06-03T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", "ShipVia": 1, - "Freight": 23.55, + "Freight": 105.65, "ShipName": "Die Wandernde Kuh", "ShipAddress": "Adenauerallee 900", "ShipCity": "Stuttgart", @@ -18081,996 +13936,833 @@ "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, "Quantity": 15, - "Discount": 0.25 + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10641, - "EmployeeID": 4, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 2, - "Freight": 179.61, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10632, + "EmployeeID": 8, + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 1, + "Freight": 41.38, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 19, - "Quantity": 50, - "Discount": 0 + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10642, - "EmployeeID": 7, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-09-05T00:00:00", - "ShipVia": 3, - "Freight": 41.89, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10640, + "EmployeeID": 4, + "OrderDate": "1997-08-21T00:00:00", + "RequiredDate": "1997-09-18T00:00:00", + "ShippedDate": "1997-08-28T00:00:00", + "ShipVia": 1, + "Freight": 23.55, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10643, - "EmployeeID": 6, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", - "ShipVia": 1, - "Freight": 29.46, - "ShipName": "Alfreds Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, + "OrderID": 10651, + "EmployeeID": 8, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 20.6, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0.25 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 2, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 20, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10644, - "EmployeeID": 3, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", + "OrderID": 10668, + "EmployeeID": 1, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", "ShipVia": 2, - "Freight": 0.14, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 47.22, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, "Quantity": 4, "Discount": 0.1 }, { - "ProductID": 43, - "UnitPrice": 46, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 15, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11046, + "EmployeeID": 8, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 71.64, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 12, + "UnitPrice": 38, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0.1 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 18, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", + "CustomerID": "GODOS", + "Company": "Godos Cocina Típica", + "ContactName": "José Pedro Freyre", + "ContactTitle": "Sales Manager", + "Address": "C/ Romero, 33", + "City": "Sevilla", + "PostalCode": 41101, + "Country": "Spain", + "Phone": "(95) 555 82 82", "Orders": [ { - "OrderID": 10645, - "EmployeeID": 4, - "OrderDate": "1997-08-26T00:00:00", - "RequiredDate": "1997-09-23T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", - "ShipVia": 1, - "Freight": 12.41, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10303, + "EmployeeID": 7, + "OrderDate": "1996-09-11T00:00:00", + "RequiredDate": "1996-10-09T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 107.83, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 10, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10646, - "EmployeeID": 9, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", + "OrderID": 10550, + "EmployeeID": 7, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-06-25T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", "ShipVia": 3, - "Freight": 142.33, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 4.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10647, + "OrderID": 10629, "EmployeeID": 4, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 2, - "Freight": 45.54, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 85.46, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10648, + "OrderID": 10872, "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-09T00:00:00", + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", "ShipVia": 2, - "Freight": 14.25, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 175.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, "Quantity": 15, - "Discount": 0.16 + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 28000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10649, + "OrderID": 10874, "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-09-25T00:00:00", - "ShippedDate": "1997-08-29T00:00:00", - "ShipVia": 3, - "Freight": 6.2, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 47000, - "ShipCountry": "Belgium", + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", + "ShipVia": 2, + "Freight": 19.58, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10888, + "EmployeeID": 1, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", + "ShipVia": 2, + "Freight": 51.87, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, "Quantity": 20, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10650, - "EmployeeID": 5, - "OrderDate": "1997-08-29T00:00:00", - "RequiredDate": "1997-09-26T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 3, - "Freight": 176.81, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10911, + "EmployeeID": 3, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", + "ShipVia": 1, + "Freight": 38.19, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10651, - "EmployeeID": 8, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 2, - "Freight": 20.6, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10948, + "EmployeeID": 3, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", + "ShipVia": 3, + "Freight": 23.39, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10652, - "EmployeeID": 4, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", - "ShipVia": 2, - "Freight": 7.14, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 11009, + "EmployeeID": 2, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 59.11, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 2, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 18, "Discount": 0.25 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10653, - "EmployeeID": 1, - "OrderDate": "1997-09-02T00:00:00", - "RequiredDate": "1997-09-30T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", + "OrderID": 11037, + "EmployeeID": 7, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", "ShipVia": 1, - "Freight": 93.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 3.2, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 4, + "Discount": 0 } ] } - ] + ], + "Fax": "(95) 555 82 82" }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 33000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "OLDWO", + "Company": "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", "Orders": [ { - "OrderID": 10654, - "EmployeeID": 5, - "OrderDate": "1997-09-02T00:00:00", - "RequiredDate": "1997-09-30T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 1, - "Freight": 55.26, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 12000, - "ShipCountry": "Sweden", + "OrderID": 10305, + "EmployeeID": 8, + "OrderDate": "1996-09-13T00:00:00", + "RequiredDate": "1996-10-11T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 3, + "Freight": 257.62, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 12, + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 25, "Discount": 0.1 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 25, "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10655, - "EmployeeID": 1, - "OrderDate": "1997-09-03T00:00:00", - "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 2, - "Freight": 4.41, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10656, - "EmployeeID": 6, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", - "ShipVia": 1, - "Freight": 57.15, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, + "OrderID": 10338, + "EmployeeID": 4, + "OrderDate": "1996-10-25T00:00:00", + "RequiredDate": "1996-11-22T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", + "ShipVia": 3, + "Freight": 84.21, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0.1 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10657, - "EmployeeID": 2, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", + "OrderID": 10441, + "EmployeeID": 3, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-24T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 352.69, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "Freight": 73.02, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, + "ProductID": 27, + "UnitPrice": 35.1, "Quantity": 50, "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, + } + ] + }, + { + "OrderID": 10594, + "EmployeeID": 3, + "OrderDate": "1997-07-09T00:00:00", + "RequiredDate": "1997-08-06T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 2, + "Freight": 5.24, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, "Quantity": 24, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 45, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10680, + "EmployeeID": 1, + "OrderDate": "1997-09-24T00:00:00", + "RequiredDate": "1997-10-22T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 1, + "Freight": 26.61, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 10, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, + "Discount": 0.25 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 45, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.25 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10658, - "EmployeeID": 4, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", - "ShipVia": 1, - "Freight": 364.15, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10706, + "EmployeeID": 8, + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-11-13T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 3, + "Freight": 135.63, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 55, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10808, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 45.53, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10659, - "EmployeeID": 7, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", - "ShipVia": 2, - "Freight": 105.81, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10855, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 170.97, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, + "Discount": 0 + }, { "ProductID": 31, "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0.06 + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 24, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HUNGC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10660, - "EmployeeID": 8, - "OrderDate": "1997-09-08T00:00:00", - "RequiredDate": "1997-10-06T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", - "ShipVia": 1, - "Freight": 111.29, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "OrderID": 10965, + "EmployeeID": 6, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", + "ShipVia": 3, + "Freight": 144.38, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10661, - "EmployeeID": 7, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", - "ShipVia": 3, - "Freight": 17.55, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 11034, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 40.32, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 49, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 6, + "Discount": 0 } ] } @@ -19090,13 +14782,13 @@ "Fax": "(503) 555-9646", "Orders": [ { - "OrderID": 10662, - "EmployeeID": 3, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", + "OrderID": 10307, + "EmployeeID": 2, + "OrderDate": "1996-09-17T00:00:00", + "RequiredDate": "1996-10-15T00:00:00", + "ShippedDate": "1996-09-25T00:00:00", "ShipVia": 2, - "Freight": 1.28, + "Freight": 0.56, "ShipName": "Lonesome Pine Restaurant", "ShipAddress": "89 Chiaroscuro Rd.", "ShipCity": "Portland", @@ -19105,132 +14797,50 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10663, - "EmployeeID": 2, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-09-24T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", - "ShipVia": 2, - "Freight": 113.15, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10664, - "EmployeeID": 1, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 3, - "Freight": 1.27, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10317, + "EmployeeID": 6, + "OrderDate": "1996-09-30T00:00:00", + "RequiredDate": "1996-10-28T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10665, - "EmployeeID": 1, - "OrderDate": "1997-09-11T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-17T00:00:00", - "ShipVia": 2, - "Freight": 26.31, + "OrderID": 10544, + "EmployeeID": 4, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 24.91, "ShipName": "Lonesome Pine Restaurant", "ShipAddress": "89 Chiaroscuro Rd.", "ShipCity": "Portland", @@ -19239,249 +14849,292 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 1, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 7, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10662, + "EmployeeID": 3, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 2, + "Freight": 1.28, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10666, - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", + "OrderID": 10665, + "EmployeeID": 1, + "OrderDate": "1997-09-11T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-17T00:00:00", "ShipVia": 2, - "Freight": 232.42, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 26.31, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10667, - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", + "OrderID": 10867, + "EmployeeID": 6, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", "ShipVia": 1, - "Freight": 78.09, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 1.93, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 45, - "Discount": 0.2 - }, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10883, + "EmployeeID": 8, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 3, + "Freight": 0.53, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 14, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10668, - "EmployeeID": 1, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", + "OrderID": 11018, + "EmployeeID": 4, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", "ShipVia": 2, - "Freight": 47.22, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 11.65, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", + "CustomerID": "ANATR", + "Company": "Ana Trujillo Emparedados y helados", + "ContactName": "Ana Trujillo", "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", + "Address": "Avda. de la Constitución 2222", + "City": "México D.F.", + "PostalCode": 5021, + "Country": "Mexico", + "Phone": "(5) 555-4729", + "Fax": "(5) 555-3745", "Orders": [ { - "OrderID": 10669, - "EmployeeID": 2, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", - "ShipVia": 1, - "Freight": 24.39, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - } + "OrderID": 10308, + "EmployeeID": 7, + "OrderDate": "1996-09-18T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-24T00:00:00", + "ShipVia": 3, + "Freight": 1.61, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 5, + "Discount": 0 + } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10670, - "EmployeeID": 4, - "OrderDate": "1997-09-16T00:00:00", - "RequiredDate": "1997-10-14T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", + "OrderID": 10625, + "EmployeeID": 3, + "OrderDate": "1997-08-08T00:00:00", + "RequiredDate": "1997-09-05T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", "ShipVia": 1, - "Freight": 203.48, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 43.9, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 32, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 60, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 25, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10759, + "EmployeeID": 3, + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 3, + "Freight": 11.99, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10926, + "EmployeeID": 4, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 39.92, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 25, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, "Discount": 0 } ] @@ -19489,1902 +15142,1343 @@ ] }, { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", + "CustomerID": "THEBI", + "Company": "The Big Cheese", + "ContactName": "Liz Nixon", "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", + "Address": "89 Jefferson Way Suite 2", + "City": "Portland", + "Region": "OR", + "PostalCode": 97201, + "Country": "USA", + "Phone": "(503) 555-3612", "Orders": [ { - "OrderID": 10671, - "EmployeeID": 1, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-09-24T00:00:00", - "ShipVia": 1, - "Freight": 30.34, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10310, + "EmployeeID": 8, + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-18T00:00:00", + "ShippedDate": "1996-09-27T00:00:00", + "ShipVia": 2, + "Freight": 17.52, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 16, - "UnitPrice": 17.45, + "UnitPrice": 13.9, "Quantity": 10, "Discount": 0 }, { "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, + "UnitPrice": 39.4, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10672, - "EmployeeID": 9, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", + "OrderID": 10708, + "EmployeeID": 6, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 95.75, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 50000, - "ShipCountry": "Sweden", + "Freight": 2.96, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10673, + "OrderID": 10805, "EmployeeID": 2, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 1, - "Freight": 22.76, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 237.34, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 42, + "ProductID": 34, "UnitPrice": 14, - "Quantity": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 35000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10674, - "EmployeeID": 4, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 2, - "Freight": 0.9, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60699, - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10992, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 4.27, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 5, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 2, "Discount": 0 } ] } ], - "Fax": "(198) 555-8888" + "Fax": "(503) 555-3612" }, { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", + "CustomerID": "DUMON", + "Company": "Du monde entier", + "ContactName": "Janine Labrune", + "ContactTitle": "Owner", + "Address": "67, rue des Cinquante Otages", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.67.88.88", + "Fax": "40.67.89.89", "Orders": [ { - "OrderID": 10675, - "EmployeeID": 5, - "OrderDate": "1997-09-19T00:00:00", - "RequiredDate": "1997-10-17T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", - "ShipVia": 2, - "Freight": 31.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10311, + "EmployeeID": 1, + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-26T00:00:00", + "ShipVia": 3, + "Freight": 24.69, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 7, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10676, - "EmployeeID": 2, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-29T00:00:00", + "OrderID": 10609, + "EmployeeID": 7, + "OrderDate": "1997-07-24T00:00:00", + "RequiredDate": "1997-08-21T00:00:00", + "ShippedDate": "1997-07-30T00:00:00", "ShipVia": 2, - "Freight": 2.01, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 1.85, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10677, - "EmployeeID": 1, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", - "ShipVia": 3, - "Freight": 4.03, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10683, + "EmployeeID": 2, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 1, + "Freight": 4.4, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 9, + "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10678, + "OrderID": 10890, "EmployeeID": 7, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", - "ShipVia": 3, - "Freight": 388.98, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 32.76, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 100, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 120, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, + "Quantity": 14, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", + "CustomerID": "ISLAT", + "Company": "Island Trading", + "ContactName": "Helen Bennett", "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", + "Address": "Garden House Crowther Way", + "City": "Cowes", + "Region": "Northeast", + "PostalCode": 26000, + "Country": "UK", + "Phone": "(198) 555-8888", "Orders": [ { - "OrderID": 10679, - "EmployeeID": 8, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 3, - "Freight": 27.94, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10315, + "EmployeeID": 4, + "OrderDate": "1996-09-26T00:00:00", + "RequiredDate": "1996-10-24T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 41.76, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 80379, + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10680, - "EmployeeID": 1, - "OrderDate": "1997-09-24T00:00:00", - "RequiredDate": "1997-10-22T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", - "ShipVia": 1, - "Freight": 26.61, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10318, + "EmployeeID": 8, + "OrderDate": "1996-10-01T00:00:00", + "RequiredDate": "1996-10-29T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 4.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 30676, + "ShipPostalCode": 36000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0.25 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 20, - "Discount": 0.25 + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10681, + "OrderID": 10321, "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 3, - "Freight": 76.13, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-31T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 2, + "Freight": 3.43, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 20137, + "ShipPostalCode": 41000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 28, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10682, - "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 2, - "Freight": 36.13, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10473, + "EmployeeID": 1, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", + "ShipVia": 3, + "Freight": 16.37, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 90698, + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 4, + "UnitPrice": 2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 12, "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10683, - "EmployeeID": 2, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 1, - "Freight": 4.4, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10621, + "EmployeeID": 4, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 2, + "Freight": 23.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 50269, + "ShipPostalCode": 39000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 9, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10684, - "EmployeeID": 3, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 1, - "Freight": 145.63, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ + }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 20, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10685, + "OrderID": 10674, "EmployeeID": 4, - "OrderDate": "1997-09-29T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", "ShipVia": 2, - "Freight": 33.75, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 0.9, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60699, + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10749, + "EmployeeID": 4, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 61.53, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 30222, + "ShipPostalCode": 50000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 15, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10686, + "OrderID": 10798, "EmployeeID": 2, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-08T00:00:00", + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 1, - "Freight": 96.5, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 2.33, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60634, + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10687, + "OrderID": 10829, "EmployeeID": 9, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-30T00:00:00", - "ShipVia": 2, - "Freight": 296.43, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-10T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 1, + "Freight": 154.72, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 50889, + "ShipPostalCode": 16000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, "Quantity": 10, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, - "Discount": 0.25 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10688, - "EmployeeID": 4, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", - "ShipVia": 2, - "Freight": 299.09, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderID": 10933, + "EmployeeID": 6, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 3, + "Freight": 54.15, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40624, + "ShipPostalCode": 44000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 14, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, "Discount": 0 } ] } - ] + ], + "Fax": "(198) 555-8888" }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "PERIC", + "Company": "Pericles Comidas clásicas", + "ContactName": "Guillermo Fernández", + "ContactTitle": "Sales Representative", + "Address": "Calle Dr. Jorge Cash 321", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 552-3745", + "Fax": "(5) 545-3745", "Orders": [ { - "OrderID": 10689, - "EmployeeID": 1, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-29T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", - "ShipVia": 2, - "Freight": 13.42, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 16000, - "ShipCountry": "Sweden", + "OrderID": 10322, + "EmployeeID": 7, + "OrderDate": "1996-10-04T00:00:00", + "RequiredDate": "1996-11-01T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 3, + "Freight": 0.4, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10690, - "EmployeeID": 1, - "OrderDate": "1997-10-02T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", - "ShipVia": 1, - "Freight": 15.8, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10354, + "EmployeeID": 8, + "OrderDate": "1996-11-14T00:00:00", + "RequiredDate": "1996-12-12T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 3, + "Freight": 53.8, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.25 - }, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 12, + "Discount": 0 + }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10691, - "EmployeeID": 2, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-10-22T00:00:00", + "OrderID": 10474, + "EmployeeID": 5, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-04-10T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", "ShipVia": 2, - "Freight": 810.05, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 83.49, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 40, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 40, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 24, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 48, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10692, - "EmployeeID": 4, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-10-31T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", - "ShipVia": 2, - "Freight": 61.02, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "OrderID": 10502, + "EmployeeID": 2, + "OrderDate": "1997-04-10T00:00:00", + "RequiredDate": "1997-05-08T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", + "ShipVia": 1, + "Freight": 69.32, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10693, - "EmployeeID": 3, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-10-10T00:00:00", + "OrderID": 10995, + "EmployeeID": 1, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", "ShipVia": 3, - "Freight": 139.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 46, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 6, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 60, - "Discount": 0.16 - }, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11073, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-15T00:00:00", + "ShipVia": 2, + "Freight": 24.95, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, + "CustomerID": "KOENE", + "Company": "Königlich Essen", + "ContactName": "Philip Cramer", + "ContactTitle": "Sales Associate", + "Address": "Maubelstr. 90", + "City": "Brandenburg", + "PostalCode": 14776, "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "Phone": "0555-09876", "Orders": [ { - "OrderID": 10694, - "EmployeeID": 8, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-11-03T00:00:00", - "ShippedDate": "1997-10-09T00:00:00", - "ShipVia": 3, - "Freight": 398.36, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10323, + "EmployeeID": 4, + "OrderDate": "1996-10-07T00:00:00", + "RequiredDate": "1996-11-04T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 4.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 90, + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10695, - "EmployeeID": 7, - "OrderDate": "1997-10-07T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 1, - "Freight": 16.72, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10325, + "EmployeeID": 1, + "OrderDate": "1996-10-09T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 3, + "Freight": 64.86, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 10, "Quantity": 4, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10696, + "OrderID": 10456, "EmployeeID": 8, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 3, - "Freight": 102.55, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderDate": "1997-02-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 8.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 18, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 21, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10697, + "OrderID": 10468, "EmployeeID": 3, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-05T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 1, - "Freight": 45.52, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderDate": "1997-03-07T00:00:00", + "RequiredDate": "1997-04-04T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 44.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 9, - "Discount": 0.25 - }, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10506, + "EmployeeID": 9, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 21.19, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 18, + "Discount": 0.1 }, { "ProductID": 70, "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.25 + "Quantity": 14, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10698, - "EmployeeID": 4, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-17T00:00:00", - "ShipVia": 1, - "Freight": 272.47, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10542, + "EmployeeID": 1, + "OrderDate": "1997-05-20T00:00:00", + "RequiredDate": "1997-06-17T00:00:00", + "ShippedDate": "1997-05-26T00:00:00", + "ShipVia": 3, + "Freight": 10.95, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 11, "UnitPrice": 21, "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 65, "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 24, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10699, - "EmployeeID": 3, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", - "ShipVia": 3, - "Freight": 0.58, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, + "OrderID": 10630, + "EmployeeID": 1, + "OrderDate": "1997-08-13T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 2, + "Freight": 32.35, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10700, - "EmployeeID": 3, - "OrderDate": "1997-10-10T00:00:00", - "RequiredDate": "1997-11-07T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", - "ShipVia": 1, - "Freight": 65.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10718, + "EmployeeID": 1, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 3, + "Freight": 170.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0.2 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 40, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.2 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10701, - "EmployeeID": 6, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-10-27T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", + "OrderID": 10799, + "EmployeeID": 9, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 3, - "Freight": 220.31, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 30.76, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 20, "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10702, - "EmployeeID": 4, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", - "ShipVia": 1, - "Freight": 23.94, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0 + "OrderID": 10817, + "EmployeeID": 3, + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 306.07, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 15, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10703, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-10-20T00:00:00", + "OrderID": 10849, + "EmployeeID": 9, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 2, - "Freight": 152.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 28000, - "ShipCountry": "Sweden", + "Freight": 0.56, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 49, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 18, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10704, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", - "ShipVia": 1, - "Freight": 4.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10893, + "EmployeeID": 9, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 2, + "Freight": 77.78, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 6, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, "Discount": 0 }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 35, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 48, - "UnitPrice": 12.75, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 24, "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10705, - "EmployeeID": 9, - "OrderDate": "1997-10-15T00:00:00", - "RequiredDate": "1997-11-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 2, - "Freight": 3.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ + }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 4, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10706, - "EmployeeID": 8, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-11-13T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", - "ShipVia": 3, - "Freight": 135.63, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 11028, + "EmployeeID": 2, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 1, + "Freight": 29.59, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { "ProductID": 59, "UnitPrice": 55, - "Quantity": 8, + "Quantity": 24, "Discount": 0 } ] } - ] + ], + "Fax": "0555-09876" }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", + "CustomerID": "SAVEA", + "Company": "Save-a-lot Markets", + "ContactName": "Jose Pavarotti", "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 10000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Address": "187 Suffolk Ln.", + "City": "Boise", + "Region": "ID", + "PostalCode": 83720, + "Country": "USA", + "Phone": "(208) 555-8097", "Orders": [ { - "OrderID": 10707, - "EmployeeID": 4, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", - "ShipVia": 3, - "Freight": 21.74, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 28000, - "ShipCountry": "UK", + "OrderID": 10324, + "EmployeeID": 9, + "OrderDate": "1996-10-08T00:00:00", + "RequiredDate": "1996-11-05T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", + "ShipVia": 1, + "Freight": 214.27, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 16, + "UnitPrice": 13.9, "Quantity": 21, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 40, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 70, + "Discount": 0.16 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 28, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 40, "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ - { - "OrderID": 10708, - "EmployeeID": 6, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 2.96, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 4, - "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 80, + "Discount": 0.16 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10709, + "OrderID": 10393, "EmployeeID": 1, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-11-20T00:00:00", + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", "ShipVia": 3, - "Freight": 210.8, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 126.56, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 40, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 28, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 42, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ - { - "OrderID": 10710, - "EmployeeID": 1, - "OrderDate": "1997-10-20T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", - "ShipVia": 1, - "Freight": 4.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", - "OrderDetails": [ + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 7, + "Discount": 0.25 + }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 70, + "Discount": 0.25 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 32, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10711, - "EmployeeID": 5, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 2, - "Freight": 52.41, + "OrderID": 10398, + "EmployeeID": 2, + "OrderDate": "1996-12-30T00:00:00", + "RequiredDate": "1997-01-27T00:00:00", + "ShippedDate": "1997-01-09T00:00:00", + "ShipVia": 3, + "Freight": 89.16, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21393,92 +16487,68 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 42, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 55, + "UnitPrice": 19.2, "Quantity": 120, - "Discount": 0 + "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10712, - "EmployeeID": 3, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", - "ShipVia": 1, - "Freight": 89.93, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10440, + "EmployeeID": 4, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-10T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 86.53, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 45, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 49, + "Discount": 0.16 + }, + { + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 24, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 90, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10713, - "EmployeeID": 1, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-24T00:00:00", + "OrderID": 10452, + "EmployeeID": 8, + "OrderDate": "1997-02-20T00:00:00", + "RequiredDate": "1997-03-20T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", "ShipVia": 1, - "Freight": 167.05, + "Freight": 140.26, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21487,39 +16557,56 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0 - }, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 100, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10510, + "EmployeeID": 6, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", + "ShipVia": 3, + "Freight": 367.63, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 110, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 24, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 36, + "Discount": 0.1 } ] }, { - "OrderID": 10714, - "EmployeeID": 5, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", + "OrderID": 10555, + "EmployeeID": 6, + "OrderDate": "1997-06-02T00:00:00", + "RequiredDate": "1997-06-30T00:00:00", + "ShippedDate": "1997-06-04T00:00:00", "ShipVia": 3, - "Freight": 24.49, + "Freight": 252.49, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21528,382 +16615,291 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 14, + "UnitPrice": 23.25, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.2 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 27, - "Discount": 0.25 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 18, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, + "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10715, - "EmployeeID": 3, - "OrderDate": "1997-10-23T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 1, - "Freight": 63.2, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10603, + "EmployeeID": 8, + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 2, + "Freight": 48.77, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 21, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 48, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10716, - "EmployeeID": 4, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", - "ShipVia": 2, - "Freight": 22.57, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10607, + "EmployeeID": 5, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 1, + "Freight": 200.24, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 7, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 100, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10717, - "EmployeeID": 1, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 2, - "Freight": 59.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 32, - "Discount": 0.06 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 42, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10718, + "OrderID": 10612, "EmployeeID": 1, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 3, - "Freight": 170.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderDate": "1997-07-28T00:00:00", + "RequiredDate": "1997-08-25T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 2, + "Freight": 544.08, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, "Quantity": 40, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 80, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10719, + "OrderID": 10627, "EmployeeID": 8, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 51.44, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 107.46, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 12, - "Discount": 0.25 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 3, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, + "Discount": 0.16 } ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10720, - "EmployeeID": 8, - "OrderDate": "1997-10-28T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", + "OrderID": 10657, + "EmployeeID": 2, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", "ShipVia": 2, - "Freight": 9.53, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 352.69, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 8, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10721, - "EmployeeID": 5, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-11-26T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", + "OrderID": 10678, + "EmployeeID": 7, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", "ShipVia": 3, - "Freight": 48.92, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 388.98, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 100, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 120, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10722, - "EmployeeID": 8, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-04T00:00:00", + "OrderID": 10700, + "EmployeeID": 3, + "OrderDate": "1997-10-10T00:00:00", + "RequiredDate": "1997-11-07T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", "ShipVia": 1, - "Freight": 74.58, + "Freight": 65.1, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21912,1506 +16908,1248 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 3, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.2 }, { "ProductID": 68, "UnitPrice": 12.5, - "Quantity": 45, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10711, + "EmployeeID": 5, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 2, + "Freight": 52.41, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 42, "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 120, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10723, - "EmployeeID": 3, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-11-27T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", + "OrderID": 10713, + "EmployeeID": 1, + "OrderDate": "1997-10-22T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-24T00:00:00", "ShipVia": 1, - "Freight": 21.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, + "Freight": 167.05, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0 + }, { "ProductID": 26, "UnitPrice": 31.23, - "Quantity": 15, + "Quantity": 30, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 26000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10724, - "EmployeeID": 8, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 57.75, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 20000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 110, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10725, - "EmployeeID": 4, - "OrderDate": "1997-10-31T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 3, - "Freight": 10.83, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10722, + "EmployeeID": 8, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-04T00:00:00", + "ShipVia": 1, + "Freight": 74.58, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 43000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10726, - "EmployeeID": 4, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", + "OrderID": 10748, + "EmployeeID": 3, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", "ShipVia": 1, - "Freight": 16.56, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 24000, - "ShipCountry": "UK", + "Freight": 232.55, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 44, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10727, - "EmployeeID": 2, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-12-01T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", + "OrderID": 10757, + "EmployeeID": 6, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", "ShipVia": 1, - "Freight": 89.9, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 8.19, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 59, "UnitPrice": 55, - "Quantity": 10, - "Discount": 0.06 + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 24, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10728, - "EmployeeID": 4, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-11-11T00:00:00", - "ShipVia": 2, - "Freight": 58.33, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10815, + "EmployeeID": 2, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 3, + "Freight": 14.62, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10847, + "EmployeeID": 4, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 3, + "Freight": 487.57, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.2 }, { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 19, + "UnitPrice": 9.2, "Quantity": 12, - "Discount": 0 + "Discount": 0.2 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 60, + "Discount": 0.2 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 36, + "Discount": 0.2 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "Quantity": 45, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 55, + "Discount": 0.2 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10729, - "EmployeeID": 8, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", + "OrderID": 10882, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 3, - "Freight": 141.06, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 23.1, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 50, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 40, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 32, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10730, - "EmployeeID": 5, - "OrderDate": "1997-11-05T00:00:00", - "RequiredDate": "1997-12-03T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", + "OrderID": 10894, + "EmployeeID": 1, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 1, - "Freight": 20.12, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 116.13, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 28, "Discount": 0.06 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 3, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 50, "Discount": 0.06 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 120, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10731, + "OrderID": 10941, "EmployeeID": 7, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", - "ShipVia": 1, - "Freight": 96.65, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 2, + "Freight": 400.81, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 44, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 30, - "Discount": 0.06 + "Discount": 0.25 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 80, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10732, - "EmployeeID": 3, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", - "ShipVia": 1, - "Freight": 16.97, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10983, + "EmployeeID": 2, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", + "ShipVia": 2, + "Freight": 657.54, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 84, + "Discount": 0.16 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 30000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10733, - "EmployeeID": 1, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-10T00:00:00", - "ShipVia": 3, - "Freight": 110.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 34000, - "ShipCountry": "Sweden", + "OrderID": 11002, + "EmployeeID": 4, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 1, + "Freight": 141.16, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 16, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 56, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 25, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.16 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10734, - "EmployeeID": 2, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-12T00:00:00", - "ShipVia": 3, - "Freight": 1.63, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 11030, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 2, + "Freight": 830.75, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 100, + "Discount": 0.25 + }, + { + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 100, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11064, + "EmployeeID": 1, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 30.09, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 77, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 55, "Discount": 0 } ] } ], - "Fax": "(11) 555-9482" + "Fax": "(208) 555-8097" }, { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", + "CustomerID": "BOLID", + "Company": "Bólido Comidas preparadas", + "ContactName": "Martín Sommer", "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", + "Address": "C/ Araquil, 67", + "City": "Madrid", + "PostalCode": 28023, + "Country": "Spain", + "Phone": "(91) 555 22 82", + "Fax": "(91) 555 91 99", "Orders": [ { - "OrderID": 10735, - "EmployeeID": 6, - "OrderDate": "1997-11-10T00:00:00", - "RequiredDate": "1997-12-08T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderID": 10326, + "EmployeeID": 4, + "OrderDate": "1996-10-10T00:00:00", + "RequiredDate": "1996-11-07T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", "ShipVia": 2, - "Freight": 45.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "Freight": 77.92, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10736, - "EmployeeID": 9, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 2, - "Freight": 44.1, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 40, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 16, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, + "UnitPrice": 6.2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10737, - "EmployeeID": 2, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10801, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", "ShipVia": 2, - "Freight": 7.79, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 97.09, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 4, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 10738, - "EmployeeID": 2, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10970, + "EmployeeID": 9, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", "ShipVia": 1, - "Freight": 2.91, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 16.16, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 40, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", + "CustomerID": "FURIB", + "Company": "Furia Bacalhau e Frutos do Mar", + "ContactName": "Lino Rodriguez", + "ContactTitle": "Sales Manager", + "Address": "Jardim das rosas n. 32", + "City": "Lisboa", + "PostalCode": 1675, + "Country": "Portugal", + "Phone": "(1) 354-2534", + "Fax": "(1) 354-2535", "Orders": [ { - "OrderID": 10739, - "EmployeeID": 3, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-17T00:00:00", + "OrderID": 10328, + "EmployeeID": 4, + "OrderDate": "1996-10-14T00:00:00", + "RequiredDate": "1996-11-11T00:00:00", + "ShippedDate": "1996-10-17T00:00:00", "ShipVia": 3, - "Freight": 11.08, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 87.03, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 18, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 40, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, + "Discount": 0 + } + ] + }, { - "OrderID": 10740, + "OrderID": 10352, + "EmployeeID": 3, + "OrderDate": "1996-11-12T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-18T00:00:00", + "ShipVia": 3, + "Freight": 1.3, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 20, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10464, "EmployeeID": 4, - "OrderDate": "1997-11-13T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 81.88, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 89, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 16, "Discount": 0.2 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, - "Discount": 0.2 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10741, - "EmployeeID": 4, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10491, + "EmployeeID": 8, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-08T00:00:00", "ShipVia": 3, - "Freight": 10.96, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 27000, - "ShipCountry": "UK", + "Freight": 16.96, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 44, + "UnitPrice": 15.5, "Quantity": 15, - "Discount": 0.2 + "Discount": 0.16 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 17000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10742, - "EmployeeID": 3, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-12-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10551, + "EmployeeID": 4, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", "ShipVia": 3, - "Freight": 243.73, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 17000, - "ShipCountry": "Canada", + "Freight": 72.95, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 41000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10743, + "OrderID": 10604, "EmployeeID": 1, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", + "ShipVia": 1, + "Freight": 7.46, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 28, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10744, - "EmployeeID": 6, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", - "ShipVia": 1, - "Freight": 69.19, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 6, + "Discount": 0.1 + }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10745, - "EmployeeID": 9, - "OrderDate": "1997-11-18T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 1, - "Freight": 3.52, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10664, + "EmployeeID": 1, + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 3, + "Freight": 1.27, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 24, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 45, - "Discount": 0 - }, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10963, + "EmployeeID": 9, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 3, + "Freight": 2.7, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", + "CustomerID": "BONAP", + "Company": "Bon app", + "ContactName": "Laurence Lebihan", "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", "Orders": [ { - "OrderID": 10746, - "EmployeeID": 1, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 3, - "Freight": 31.43, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10331, + "EmployeeID": 9, + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-27T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", + "ShipVia": 1, + "Freight": 10.19, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 15, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10340, + "EmployeeID": 1, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 166.31, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 9, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, + "ProductID": 43, + "UnitPrice": 36.8, "Quantity": 40, - "Discount": 0 + "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10747, - "EmployeeID": 6, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-26T00:00:00", + "OrderID": 10362, + "EmployeeID": 3, + "OrderDate": "1996-11-25T00:00:00", + "RequiredDate": "1996-12-23T00:00:00", + "ShippedDate": "1996-11-28T00:00:00", "ShipVia": 1, - "Freight": 117.33, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 96.04, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 9, - "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10748, - "EmployeeID": 3, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", - "ShipVia": 1, - "Freight": 232.55, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 44, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 14000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10749, + "OrderID": 10470, "EmployeeID": 4, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 61.53, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 30222, - "ShipPostalCode": 50000, - "ShipCountry": "UK", + "Freight": 64.56, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 15, + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 6, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10750, - "EmployeeID": 9, - "OrderDate": "1997-11-21T00:00:00", - "RequiredDate": "1997-12-19T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", - "ShipVia": 1, - "Freight": 79.3, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10511, + "EmployeeID": 4, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 350.64, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, "Discount": 0.16 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 50, "Discount": 0.16 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10751, - "EmployeeID": 3, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-12-03T00:00:00", - "ShipVia": 3, - "Freight": 130.79, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10525, + "EmployeeID": 1, + "OrderDate": "1997-05-02T00:00:00", + "RequiredDate": "1997-05-30T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 2, + "Freight": 11.06, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 30, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 73, - "UnitPrice": 15, + "ProductID": 40, + "UnitPrice": 18.4, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 36000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ + }, { - "OrderID": 10752, + "OrderID": 10663, "EmployeeID": 2, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", - "ShipVia": 3, - "Freight": 1.39, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-09-24T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 113.15, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 3, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10753, + "OrderID": 10715, "EmployeeID": 3, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", + "OrderDate": "1997-10-23T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 1, - "Freight": 7.7, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "Freight": 63.2, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 4, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10754, - "EmployeeID": 6, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 3, - "Freight": 2.38, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10730, + "EmployeeID": 5, + "OrderDate": "1997-11-05T00:00:00", + "RequiredDate": "1997-12-03T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 1, + "Freight": 20.12, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10732, + "EmployeeID": 3, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", + "ShipVia": 1, + "Freight": 16.97, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { "OrderID": 10755, "EmployeeID": 4, @@ -23451,247 +18189,195 @@ "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10756, - "EmployeeID": 8, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-02T00:00:00", + "OrderID": 10827, + "EmployeeID": 1, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", "ShipVia": 2, - "Freight": 73.21, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 63.54, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10757, - "EmployeeID": 6, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 1, - "Freight": 8.19, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10871, + "EmployeeID": 9, + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 112.27, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 50, + "Discount": 0.06 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 7, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 30, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10876, + "EmployeeID": 7, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 60.42, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 21, "Discount": 0 }, { "ProductID": 64, "UnitPrice": 33.25, - "Quantity": 24, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10758, - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-04T00:00:00", - "ShipVia": 3, - "Freight": 138.17, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10932, + "EmployeeID": 8, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", + "ShipVia": 1, + "Freight": 134.64, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 60, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 14, + "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 16, "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10759, - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", + "OrderID": 10940, + "EmployeeID": 8, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", "ShipVia": 3, - "Freight": 11.99, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 19.77, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10760, + "OrderID": 11076, "EmployeeID": 4, - "OrderDate": "1997-12-01T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1997-12-10T00:00:00", - "ShipVia": 1, - "Freight": 155.64, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-06-08T00:00:00", + "ShipVia": 2, + "Freight": 38.28, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 12, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, "Discount": 0.25 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 40, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, "Discount": 0.25 } ] @@ -23699,4607 +18385,398 @@ ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "MEREP", + "Company": "Mère Paillarde", + "ContactName": "Jean Fresnière", + "ContactTitle": "Marketing Assistant", + "Address": "43 rue St. Laurent", + "City": "Montréal", + "Region": "Québec", + "PostalCode": 20000, + "Country": "Canada", + "Phone": "(514) 555-8054", + "Fax": "(514) 555-8055", "Orders": [ { - "OrderID": 10761, - "EmployeeID": 5, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", + "OrderID": 10332, + "EmployeeID": 3, + "OrderDate": "1996-10-17T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", "ShipVia": 2, - "Freight": 18.66, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 52.84, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 28000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 18, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 16, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 13000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10762, - "EmployeeID": 3, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 1, - "Freight": 328.74, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 44000, - "ShipCountry": "Sweden", + "OrderID": 10339, + "EmployeeID": 2, + "OrderDate": "1996-10-28T00:00:00", + "RequiredDate": "1996-11-25T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", + "ShipVia": 2, + "Freight": 15.66, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 16, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 28, "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10763, - "EmployeeID": 3, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", - "ShipVia": 3, - "Freight": 37.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "OrderID": 10376, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 2, + "Freight": 20.39, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 39000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 21, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "Quantity": 42, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10424, + "EmployeeID": 7, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-20T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 2, + "Freight": 370.61, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 22000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 6, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 49, + "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10764, + "OrderID": 10439, "EmployeeID": 6, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", + "OrderDate": "1997-02-07T00:00:00", + "RequiredDate": "1997-03-07T00:00:00", + "ShippedDate": "1997-02-10T00:00:00", "ShipVia": 3, - "Freight": 145.45, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 130, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10765, - "EmployeeID": 3, - "OrderDate": "1997-12-04T00:00:00", - "RequiredDate": "1998-01-01T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 3, - "Freight": 42.74, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 80, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10766, - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 1, - "Freight": 157.55, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 28000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10767, - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 3, - "Freight": 1.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 44000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 22000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10768, - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 2, - "Freight": 146.32, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10769, - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 65.06, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10770, - "EmployeeID": 8, - "OrderDate": "1997-12-09T00:00:00", - "RequiredDate": "1998-01-06T00:00:00", - "ShippedDate": "1997-12-17T00:00:00", - "ShipVia": 3, - "Freight": 5.32, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10771, - "EmployeeID": 9, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 2, - "Freight": 11.19, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10772, - "EmployeeID": 3, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 2, - "Freight": 91.28, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10773, - "EmployeeID": 1, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1998-01-08T00:00:00", - "ShippedDate": "1997-12-16T00:00:00", - "ShipVia": 3, - "Freight": 96.43, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 33, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 70, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 7, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10774, - "EmployeeID": 4, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 48.2, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 2, - "Discount": 0.25 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "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", - "Orders": [ - { - "OrderID": 10775, - "EmployeeID": 7, - "OrderDate": "1997-12-12T00:00:00", - "RequiredDate": "1998-01-09T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 20.25, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10776, - "EmployeeID": 1, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1998-01-12T00:00:00", - "ShippedDate": "1997-12-18T00:00:00", - "ShipVia": 3, - "Freight": 351.53, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 27, - "Discount": 0.06 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 120, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 10777, - "EmployeeID": 7, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 2, - "Freight": 3.01, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 11000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10778, - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 1, - "Freight": 6.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 39000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ - { - "OrderID": 10779, - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 2, - "Freight": 58.13, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0 - } - ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10780, - "EmployeeID": 2, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-25T00:00:00", - "ShipVia": 1, - "Freight": 42.13, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10781, - "EmployeeID": 2, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 3, - "Freight": 73.16, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0.2 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10782, - "EmployeeID": 9, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 1.1, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 1, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10783, - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 2, - "Freight": 124.98, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10784, - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 70.09, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.16 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "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", - "Orders": [ - { - "OrderID": 10785, - "EmployeeID": 1, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 3, - "Freight": 1.51, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10786, - "EmployeeID": 8, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-16T00:00:00", - "ShippedDate": "1997-12-23T00:00:00", - "ShipVia": 1, - "Freight": 110.87, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 42, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10787, - "EmployeeID": 2, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 249.93, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10788, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 42.7, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ - { - "OrderID": 10789, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 2, - "Freight": 100.6, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 10790, - "EmployeeID": 6, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 28.23, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 3, - "Discount": 0.16 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.16 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10791, - "EmployeeID": 6, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-01T00:00:00", - "ShipVia": 2, - "Freight": 16.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10792, - "EmployeeID": 1, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 3, - "Freight": 23.79, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 19000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10793, - "EmployeeID": 3, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", - "ShipVia": 3, - "Freight": 4.52, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 32000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ - { - "OrderID": 10794, - "EmployeeID": 6, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 1, - "Freight": 21.49, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10795, - "EmployeeID": 8, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-20T00:00:00", - "ShipVia": 2, - "Freight": 126.66, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 65, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 35, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10796, - "EmployeeID": 3, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 1, - "Freight": 26.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 24, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ - { - "OrderID": 10797, - "EmployeeID": 7, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 2, - "Freight": 33.35, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10798, - "EmployeeID": 2, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 1, - "Freight": 2.33, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60634, - "ShipPostalCode": 40000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10799, - "EmployeeID": 9, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 3, - "Freight": 30.76, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10800, - "EmployeeID": 1, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 3, - "Freight": 137.44, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 41000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 7, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ - { - "OrderID": 10801, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 2, - "Freight": 97.09, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ - { - "OrderID": 10802, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 2, - "Freight": 257.26, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 5, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ - { - "OrderID": 10803, - "EmployeeID": 4, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-06T00:00:00", - "ShipVia": 1, - "Freight": 55.23, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 24, - "Discount": 0.06 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10804, - "EmployeeID": 6, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 2, - "Freight": 27.33, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 38000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 36, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 4, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ - { - "OrderID": 10805, - "EmployeeID": 2, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 3, - "Freight": 237.34, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10806, - "EmployeeID": 3, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 2, - "Freight": 22.11, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ - { - "OrderID": 10807, - "EmployeeID": 4, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 1, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ - { - "OrderID": 10808, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 3, - "Freight": 45.53, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ - { - "OrderID": 10809, - "EmployeeID": 7, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 1, - "Freight": 4.87, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 28000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ - { - "OrderID": 10810, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 3, - "Freight": 4.33, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 48000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10811, - "EmployeeID": 8, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", - "ShipVia": 1, - "Freight": 31.22, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10812, - "EmployeeID": 5, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 1, - "Freight": 59.78, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.1 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ - { - "OrderID": 10813, - "EmployeeID": 1, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 1, - "Freight": 47.38, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0.2 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10814, - "EmployeeID": 3, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 130.94, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 8, - "Discount": 0.16 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10815, - "EmployeeID": 2, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 14.62, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ - { - "OrderID": 10816, - "EmployeeID": 4, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-02-03T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 2, - "Freight": 719.78, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10817, - "EmployeeID": 3, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 306.07, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 25, - "Discount": 0.16 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10818, - "EmployeeID": 7, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 3, - "Freight": 65.48, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10819, - "EmployeeID": 2, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 19.76, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10820, - "EmployeeID": 3, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 37.52, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ - { - "OrderID": 10821, - "EmployeeID": 1, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-15T00:00:00", - "ShipVia": 1, - "Freight": 36.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "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", - "Orders": [ - { - "OrderID": 10822, - "EmployeeID": 6, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 7, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ - { - "OrderID": 10823, - "EmployeeID": 5, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 163.97, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 29000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10824, - "EmployeeID": 8, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 1.23, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 39000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ - { - "OrderID": 10825, - "EmployeeID": 1, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 1, - "Freight": 79.25, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10826, - "EmployeeID": 6, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", - "ShipVia": 1, - "Freight": 7.09, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10827, - "EmployeeID": 1, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", - "ShipVia": 2, - "Freight": 63.54, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ - { - "OrderID": 10828, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 1, - "Freight": 90.85, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10829, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-10T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 1, - "Freight": 154.72, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 50889, - "ShipPostalCode": 16000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10830, - "EmployeeID": 4, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 2, - "Freight": 81.83, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ - { - "OrderID": 10831, - "EmployeeID": 3, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 2, - "Freight": 72.19, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10832, - "EmployeeID": 2, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 43.26, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 3, - "Discount": 0.2 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0.2 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10833, - "EmployeeID": 6, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 2, - "Freight": 71.49, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 9, - "Discount": 0.1 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 9, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10834, - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 3, - "Freight": 29.78, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 8, - "Discount": 0.06 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ - { - "OrderID": 10835, - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 3, - "Freight": 69.53, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10836, - "EmployeeID": 7, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 1, - "Freight": 411.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 52, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 47000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10837, - "EmployeeID": 9, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 13.32, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 17000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10838, - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 59.28, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10839, - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-22T00:00:00", - "ShipVia": 3, - "Freight": 35.43, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10840, - "EmployeeID": 4, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", - "ShipVia": 2, - "Freight": 2.71, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 6, - "Discount": 0.2 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 22000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10841, - "EmployeeID": 5, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 2, - "Freight": 424.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 27000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10842, - "EmployeeID": 1, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 3, - "Freight": 54.42, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10843, - "EmployeeID": 4, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 9.26, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 4, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10844, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 25.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10845, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 212.98, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.1 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 42, - "Discount": 0.1 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 60, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 48, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 15000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10846, - "EmployeeID": 2, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 56.46, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 15000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ - { - "OrderID": 10847, - "EmployeeID": 4, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 3, - "Freight": 487.57, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.2 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.2 - }, - { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 60, - "Discount": 0.2 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 36, - "Discount": 0.2 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 45, - "Discount": 0.2 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 55, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 43000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ - { - "OrderID": 10848, - "EmployeeID": 7, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 2, - "Freight": 38.24, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 36000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10849, - "EmployeeID": 9, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 49, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 18, - "Discount": 0.16 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10850, - "EmployeeID": 1, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 49.19, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 4, - "Discount": 0.16 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ - { - "OrderID": 10851, - "EmployeeID": 5, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-23T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", - "ShipVia": 1, - "Freight": 160.55, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 4.07, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0.06 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.06 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10852, - "EmployeeID": 8, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 174.05, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 39, + "ProductID": 64, + "UnitPrice": 26.6, "Quantity": 6, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 50, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10853, - "EmployeeID": 9, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", - "ShipVia": 2, - "Freight": 53.83, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10505, + "EmployeeID": 3, + "OrderDate": "1997-04-14T00:00:00", + "RequiredDate": "1997-05-12T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 7.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 33000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10854, - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-05T00:00:00", + "OrderID": 10565, + "EmployeeID": 8, + "OrderDate": "1997-06-11T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", "ShipVia": 2, - "Freight": 100.22, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 7.15, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 21000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 100, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 18, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10855, + "OrderID": 10570, "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 1, - "Freight": 170.97, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 14, - "Discount": 0 + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-19T00:00:00", + "ShipVia": 3, + "Freight": 188.99, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0.06 }, { "ProductID": 56, "UnitPrice": 38, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "Quantity": 60, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10856, - "EmployeeID": 3, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 2, - "Freight": 58.43, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10590, + "EmployeeID": 4, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 3, + "Freight": 44.77, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 20, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 60, + "Discount": 0.06 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 48000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10857, - "EmployeeID": 8, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", + "OrderID": 10605, + "EmployeeID": 1, + "OrderDate": "1997-07-21T00:00:00", + "RequiredDate": "1997-08-18T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", "ShipVia": 2, - "Freight": 188.85, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", + "Freight": 379.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.25 + "Discount": 0.06 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ - { - "OrderID": 10858, - "EmployeeID": 2, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", - "ShipVia": 1, - "Freight": 52.51, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 5, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 10, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10859, + "OrderID": 10618, "EmployeeID": 1, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", - "ShipVia": 2, - "Freight": 76.1, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderDate": "1997-08-01T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 1, + "Freight": 154.68, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 30000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, { - "OrderID": 10860, - "EmployeeID": 3, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 3, - "Freight": 19.26, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10724, + "EmployeeID": 8, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 2, + "Freight": 57.75, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 20000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] @@ -28307,2480 +18784,2081 @@ ] }, { - "CustomerID": "WHITC", - "Company": "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": "PRINI", + "Company": "Princesa Isabel Vinhos", + "ContactName": "Isabel de Castro", + "ContactTitle": "Sales Representative", + "Address": "Estrada da saúde n. 58", + "City": "Lisboa", + "PostalCode": 1756, + "Country": "Portugal", + "Phone": "(1) 356-5634", "Orders": [ { - "OrderID": 10861, - "EmployeeID": 4, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-02-27T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", + "OrderID": 10336, + "EmployeeID": 7, + "OrderDate": "1996-10-23T00:00:00", + "RequiredDate": "1996-11-20T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", "ShipVia": 2, - "Freight": 14.93, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 15.51, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 42, - "Discount": 0 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, - "Discount": 0 - }, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 18, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10397, + "EmployeeID": 5, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-24T00:00:00", + "ShippedDate": "1997-01-02T00:00:00", + "ShipVia": 1, + "Freight": 60.26, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ { "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 35, - "Discount": 0 - }, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10433, + "EmployeeID": 3, + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 73.83, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10862, - "EmployeeID": 8, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderID": 10477, + "EmployeeID": 5, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", "ShipVia": 2, - "Freight": 53.23, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 13.02, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 25, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10863, - "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", + "OrderID": 11007, + "EmployeeID": 8, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 30.26, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 202.24, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 14, + "Discount": 0 } ] } - ] + ], + "Fax": "(1) 356-5634" }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 31000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "CustomerID": "SIMOB", + "Company": "Simons bistro", + "ContactName": "Jytte Petersen", + "ContactTitle": "Owner", + "Address": "Vinbæltet 34", + "City": "Kobenhavn", + "PostalCode": 1734, + "Country": "Denmark", + "Phone": "31 12 34 56", + "Fax": "31 13 35 57", "Orders": [ { - "OrderID": 10864, + "OrderID": 10341, + "EmployeeID": 7, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", + "ShipVia": 3, + "Freight": 26.78, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10417, "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 2, - "Freight": 3.04, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 37000, - "ShipCountry": "UK", + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-28T00:00:00", + "ShipVia": 3, + "Freight": 70.29, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 2, + "Discount": 0.25 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 36, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10865, + "OrderID": 10556, "EmployeeID": 2, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderDate": "1997-06-03T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", "ShipVia": 1, - "Freight": 348.14, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 9.8, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10642, + "EmployeeID": 7, + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-09-05T00:00:00", + "ShipVia": 3, + "Freight": 41.89, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 48000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10866, - "EmployeeID": 5, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-03T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderID": 10669, + "EmployeeID": 2, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", "ShipVia": 1, - "Freight": 109.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 37000, - "ShipCountry": "Sweden", + "Freight": 24.39, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 2, + "ProductID": 36, "UnitPrice": 19, - "Quantity": 21, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10802, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 2, + "Freight": 257.26, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, "Discount": 0.25 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 6, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 60, "Discount": 0.25 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 40, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 5, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10867, - "EmployeeID": 6, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 1, - "Freight": 1.93, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 11074, + "EmployeeID": 7, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-06-03T00:00:00", + "ShipVia": 2, + "Freight": 18.44, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", + "CustomerID": "FAMIA", + "Company": "Familia Arquibaldo", + "ContactName": "Aria Cruz", "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", + "Address": "Rua Orós, 92", "City": "Sao Paulo", "Region": "SP", - "PostalCode": 5487, + "PostalCode": 5442, "Country": "Brazil", - "Phone": "(11) 555-1189", + "Phone": "(11) 555-9857", "Orders": [ { - "OrderID": 10868, - "EmployeeID": 7, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 2, - "Freight": 191.27, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", + "OrderID": 10347, + "EmployeeID": 4, + "OrderDate": "1996-11-06T00:00:00", + "RequiredDate": "1996-12-04T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 3.1, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", "ShipCity": "Sao Paulo", "ShipRegion": "SP", - "ShipPostalCode": 5487, + "ShipPostalCode": 5442, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 42, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 29000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10869, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 1, - "Freight": 143.28, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 48000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 11, - "UnitPrice": 21, + "ProductID": 25, + "UnitPrice": 11.2, "Quantity": 10, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, + "ProductID": 39, + "UnitPrice": 14.4, "Quantity": 50, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10870, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", - "ShipVia": 3, - "Freight": 12.04, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 2, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10871, + "OrderID": 10386, "EmployeeID": 9, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 2, - "Freight": 112.27, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-25T00:00:00", + "ShipVia": 3, + "Freight": 13.99, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10414, + "EmployeeID": 2, + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-17T00:00:00", + "ShipVia": 3, + "Freight": 21.48, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, "Discount": 0.06 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10872, - "EmployeeID": 5, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", + "OrderID": 10512, + "EmployeeID": 7, + "OrderDate": "1997-04-21T00:00:00", + "RequiredDate": "1997-05-19T00:00:00", + "ShippedDate": "1997-04-24T00:00:00", "ShipVia": 2, - "Freight": 175.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 3.53, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 10, - "Discount": 0.06 + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 12, + "Discount": 0.16 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10873, - "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", + "OrderID": 10581, + "EmployeeID": 3, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-02T00:00:00", "ShipVia": 1, - "Freight": 0.82, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 3.01, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10874, + "OrderID": 10650, "EmployeeID": 5, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 2, - "Freight": 19.58, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderDate": "1997-08-29T00:00:00", + "RequiredDate": "1997-09-26T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 176.81, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 34000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10875, + "OrderID": 10725, "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 2, - "Freight": 32.37, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 18000, - "ShipCountry": "Sweden", + "OrderDate": "1997-10-31T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 3, + "Freight": 10.83, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 25, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 21, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 15, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] } - ] + ], + "Fax": "(11) 555-9857" }, { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, + "CustomerID": "LAMAI", + "Company": "La maison de Asie", + "ContactName": "Annette Roulet", + "ContactTitle": "Sales Manager", + "Address": "1 rue Alsace-Lorraine", + "City": "Toulouse", + "PostalCode": 31000, "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", + "Phone": "61.77.61.10", + "Fax": "61.77.61.11", "Orders": [ { - "OrderID": 10876, - "EmployeeID": 7, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 3, - "Freight": 60.42, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, + "OrderID": 10350, + "EmployeeID": 6, + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 64.19, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 18, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10877, - "EmployeeID": 1, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", + "OrderID": 10358, + "EmployeeID": 5, + "OrderDate": "1996-11-20T00:00:00", + "RequiredDate": "1996-12-18T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", "ShipVia": 1, - "Freight": 38.06, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 19.64, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10878, - "EmployeeID": 4, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderID": 10371, + "EmployeeID": 1, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", "ShipVia": 1, - "Freight": 46.69, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 0.45, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 6, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10879, + "OrderID": 10413, "EmployeeID": 3, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 3, - "Freight": 8.5, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 2, + "Freight": 95.66, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 14, + "Discount": 0 + } + ] + }, + { + "OrderID": 10425, + "EmployeeID": 6, + "OrderDate": "1997-01-24T00:00:00", + "RequiredDate": "1997-02-21T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 2, + "Freight": 7.93, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, + "ProductID": 55, + "UnitPrice": 19.2, "Quantity": 10, - "Discount": 0 + "Discount": 0.25 }, { "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 43000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10880, - "EmployeeID": 7, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 88.01, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 15000, - "ShipCountry": "Sweden", + "OrderID": 10454, + "EmployeeID": 4, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-25T00:00:00", + "ShipVia": 3, + "Freight": 2.74, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 30, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 10, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10881, + "OrderID": 10493, "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 2.84, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 10.64, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 73, - "UnitPrice": 15, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, "Quantity": 10, - "Discount": 0 + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10882, - "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 3, - "Freight": 23.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10500, + "EmployeeID": 6, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-17T00:00:00", + "ShipVia": 1, + "Freight": 42.68, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 25, - "Discount": 0 + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 20, - "Discount": 0.16 - }, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10610, + "EmployeeID": 8, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 1, + "Freight": 26.78, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 32, - "Discount": 0.16 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10883, + "OrderID": 10631, "EmployeeID": 8, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 3, - "Freight": 0.53, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-15T00:00:00", + "ShipVia": 1, + "Freight": 0.87, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 8, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10884, - "EmployeeID": 4, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", - "ShipVia": 2, - "Freight": 90.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10787, + "EmployeeID": 2, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 249.93, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 21, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, "Discount": 0.06 + } + ] + }, + { + "OrderID": 10832, + "EmployeeID": 2, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 43.26, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0.2 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 3, + "Discount": 0 } ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 10000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10885, - "EmployeeID": 6, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", + "OrderID": 10923, + "EmployeeID": 7, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 3, - "Freight": 5.64, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 40000, - "ShipCountry": "Belgium", + "Freight": 68.26, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 - }, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 11051, + "EmployeeID": 7, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-09-25T00:00:00", + "ShipVia": 3, + "Freight": 2.79, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 25, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", + "CustomerID": "PICCO", + "Company": "Piccolo und mehr", + "ContactName": "Georg Pipps", + "ContactTitle": "Sales Manager", + "Address": "Geislweg 14", + "City": "Salzburg", + "PostalCode": 5020, + "Country": "Austria", + "Phone": "6562-9722", + "Fax": "6562-9723", "Orders": [ { - "OrderID": 10886, - "EmployeeID": 1, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 1, - "Freight": 4.99, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10353, + "EmployeeID": 7, + "OrderDate": "1996-11-13T00:00:00", + "RequiredDate": "1996-12-11T00:00:00", + "ShippedDate": "1996-11-25T00:00:00", + "ShipVia": 3, + "Freight": 360.63, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 40, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10887, - "EmployeeID": 8, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", + "OrderID": 10392, + "EmployeeID": 2, + "OrderDate": "1996-12-24T00:00:00", + "RequiredDate": "1997-01-21T00:00:00", + "ShippedDate": "1997-01-01T00:00:00", "ShipVia": 3, - "Freight": 1.25, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "Freight": 122.46, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10888, - "EmployeeID": 1, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", + "OrderID": 10427, + "EmployeeID": 4, + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", "ShipVia": 2, - "Freight": 51.87, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 31.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10889, - "EmployeeID": 9, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 3, - "Freight": 280.61, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10489, + "EmployeeID": 6, + "OrderDate": "1997-03-28T00:00:00", + "RequiredDate": "1997-04-25T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", + "ShipVia": 2, + "Freight": 5.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10890, - "EmployeeID": 7, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 32.76, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10530, + "EmployeeID": 3, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", + "ShipVia": 2, + "Freight": 339.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 17, "UnitPrice": 39, - "Quantity": 15, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10891, + "OrderID": 10597, "EmployeeID": 7, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 20.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", + "ShipVia": 3, + "Freight": 35.12, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10892, - "EmployeeID": 4, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 120.27, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 45000, - "ShipCountry": "Belgium", + "OrderID": 10686, + "EmployeeID": 2, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-08T00:00:00", + "ShipVia": 1, + "Freight": 96.5, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10893, - "EmployeeID": 9, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 2, - "Freight": 77.78, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10747, + "EmployeeID": 6, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-26T00:00:00", + "ShipVia": 1, + "Freight": 117.33, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 24, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 35, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10844, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", + "ShipVia": 2, + "Freight": 25.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10894, - "EmployeeID": 1, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 1, - "Freight": 116.13, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11053, + "EmployeeID": 2, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 28, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 120, - "Discount": 0.06 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 25, + "Discount": 0.2 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "AROUT", + "Company": "Around the Horn", + "ContactName": "Thomas Hardy", + "ContactTitle": "Sales Representative", + "Address": "120 Hanover Sq.", + "City": "London", + "PostalCode": 12000, + "Country": "UK", + "Phone": "(171) 555-7788", + "Fax": "(171) 555-6750", "Orders": [ { - "OrderID": 10895, - "EmployeeID": 3, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 1, - "Freight": 162.75, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10355, + "EmployeeID": 6, + "OrderDate": "1996-11-15T00:00:00", + "RequiredDate": "1996-12-13T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 41.95, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 31000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 110, + "UnitPrice": 3.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 45, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10383, + "EmployeeID": 8, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-18T00:00:00", + "ShipVia": 3, + "Freight": 34.24, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 19000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 91, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 100, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 11000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10896, - "EmployeeID": 7, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 32.45, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 28000, - "ShipCountry": "Belgium", + "OrderID": 10453, + "EmployeeID": 1, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", + "ShipVia": 2, + "Freight": 25.36, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 48, + "UnitPrice": 10.2, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 16, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10897, - "EmployeeID": 3, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-25T00:00:00", + "OrderID": 10558, + "EmployeeID": 1, + "OrderDate": "1997-06-04T00:00:00", + "RequiredDate": "1997-07-02T00:00:00", + "ShippedDate": "1997-06-10T00:00:00", "ShipVia": 2, - "Freight": 603.54, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 72.97, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 35000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 80, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 36, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10898, + "OrderID": 10707, "EmployeeID": 4, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 1.27, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 3, + "Freight": 21.74, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10899, - "EmployeeID": 5, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", + "OrderID": 10741, + "EmployeeID": 4, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 1.21, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 10.96, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 27000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10900, + "OrderID": 10743, "EmployeeID": 1, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", "ShipVia": 2, - "Freight": 1.66, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 28, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10901, - "EmployeeID": 4, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", - "ShipVia": 1, - "Freight": 62.09, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10768, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 2, + "Freight": 146.32, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 }, { "ProductID": 71, "UnitPrice": 21.5, - "Quantity": 30, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 39000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10902, - "EmployeeID": 1, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 1, - "Freight": 44.15, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 11000, - "ShipCountry": "Sweden", + "OrderID": 10793, + "EmployeeID": 3, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", + "ShipVia": 3, + "Freight": 4.52, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10903, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 36.71, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10864, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 2, + "Freight": 3.04, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10904, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 162.95, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10920, + "EmployeeID": 4, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", + "ShipVia": 2, + "Freight": 29.61, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 35000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 35, + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10905, + "OrderID": 10953, "EmployeeID": 9, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-25T00:00:00", "ShipVia": 2, - "Freight": 13.72, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10906, - "EmployeeID": 4, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 3, - "Freight": 26.29, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 11016, + "EmployeeID": 9, + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 2, + "Freight": 33.8, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 20000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 16, + "Discount": 0 } ] } ] }, { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", + "CustomerID": "SEVES", + "Company": "Seven Seas Imports", + "ContactName": "Hari Kumar", + "ContactTitle": "Sales Manager", + "Address": "90 Wadhurst Rd.", + "City": "London", + "PostalCode": 23000, + "Country": "UK", + "Phone": "(171) 555-1717", + "Fax": "(171) 555-5646", "Orders": [ { - "OrderID": 10907, - "EmployeeID": 6, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-25T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", + "OrderID": 10359, + "EmployeeID": 5, + "OrderDate": "1996-11-21T00:00:00", + "RequiredDate": "1996-12-19T00:00:00", + "ShippedDate": "1996-11-26T00:00:00", "ShipVia": 3, - "Freight": 9.19, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 288.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 43000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 14, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 56, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 70, + "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10908, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 32.96, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10377, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 22.21, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 20, - "Discount": 0.06 + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 14, - "Discount": 0.06 + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10909, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-10T00:00:00", - "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10388, + "EmployeeID": 2, + "OrderDate": "1996-12-19T00:00:00", + "RequiredDate": "1997-01-16T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", + "ShipVia": 1, + "Freight": 34.86, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 43000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 12, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 7.6, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 5, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10910, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 38.11, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10472, + "EmployeeID": 8, + "OrderDate": "1997-03-12T00:00:00", + "RequiredDate": "1997-04-09T00:00:00", + "ShippedDate": "1997-03-19T00:00:00", + "ShipVia": 1, + "Freight": 4.2, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 21000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 10, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 80, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10911, - "EmployeeID": 3, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", - "ShipVia": 1, - "Freight": 38.19, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10523, + "EmployeeID": 7, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 2, + "Freight": 77.63, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 16000, + "ShipCountry": "UK", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, { "ProductID": 17, "UnitPrice": 39, - "Quantity": 12, - "Discount": 0 + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 67, - "UnitPrice": 14, + "ProductID": 20, + "UnitPrice": 81, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 6, + "Discount": 0.1 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10912, - "EmployeeID": 2, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10547, + "EmployeeID": 3, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", "ShipVia": 2, - "Freight": 580.91, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 178.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 60, - "Discount": 0.25 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10913, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 1, - "Freight": 33.05, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10800, + "EmployeeID": 1, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 3, + "Freight": 137.44, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 41000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 7, + "Discount": 0.1 } ] }, { - "OrderID": 10914, + "OrderID": 10804, "EmployeeID": 6, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 1, - "Freight": 21.19, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 25, - "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10915, - "EmployeeID": 2, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 2, - "Freight": 3.51, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 27.33, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 38000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 10, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 4, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10916, - "EmployeeID": 1, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 2, - "Freight": 63.77, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10869, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 143.28, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 48000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 6, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 6, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 20, "Discount": 0 } @@ -30789,172 +20867,169 @@ ] }, { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", + "CustomerID": "DRACD", + "Company": "Drachenblut Delikatessen", + "ContactName": "Sven Ottlieb", + "ContactTitle": "Order Administrator", + "Address": "Walserweg 21", + "City": "Aachen", + "PostalCode": 52066, + "Country": "Germany", + "Phone": "0241-039123", + "Fax": "0241-059428", "Orders": [ { - "OrderID": 10917, + "OrderID": 10363, "EmployeeID": 4, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 2, - "Freight": 8.29, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1996-12-24T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", + "ShipVia": 3, + "Freight": 30.54, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 1, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 32000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10918, + "OrderID": 10391, "EmployeeID": 3, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-31T00:00:00", "ShipVia": 3, - "Freight": 48.83, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 45000, - "ShipCountry": "Canada", + "Freight": 5.45, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 18, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10919, - "EmployeeID": 2, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", + "OrderID": 10797, + "EmployeeID": 7, + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 2, - "Freight": 19.8, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 33.35, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 24, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10825, + "EmployeeID": 1, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 1, + "Freight": 79.25, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 24, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 53, + "UnitPrice": 32.8, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 41000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10920, - "EmployeeID": 4, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", + "OrderID": 11036, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 3, + "Freight": 149.47, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 11067, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", "ShipVia": 2, - "Freight": 29.61, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 35000, - "ShipCountry": "UK", + "Freight": 7.98, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 24, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, "Discount": 0 } ] @@ -30962,327 +21037,267 @@ ] }, { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", + "CustomerID": "EASTC", + "Company": "Eastern Connection", + "ContactName": "Ann Devon", + "ContactTitle": "Sales Agent", + "Address": "35 King George", + "City": "London", + "PostalCode": 46000, + "Country": "UK", + "Phone": "(171) 555-0297", + "Fax": "(171) 555-3373", "Orders": [ { - "OrderID": 10921, + "OrderID": 10364, "EmployeeID": 1, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", "ShipVia": 1, - "Freight": 176.48, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 71.97, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 10000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10922, - "EmployeeID": 5, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", + "OrderID": 10400, + "EmployeeID": 1, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", "ShipVia": 3, - "Freight": 62.74, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 83.93, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 25000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 15, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 35, + "UnitPrice": 14.4, "Quantity": 35, "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10923, + "OrderID": 10532, "EmployeeID": 7, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderDate": "1997-05-09T00:00:00", + "RequiredDate": "1997-06-06T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", "ShipVia": 3, - "Freight": 68.26, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 74.46, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 23000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, + "ProductID": 66, + "UnitPrice": 17, "Quantity": 24, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 28000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10924, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 2, - "Freight": 151.52, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 35000, - "ShipCountry": "Sweden", + "OrderID": 10726, + "EmployeeID": 4, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 16.56, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 24000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 6, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10925, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderID": 10987, + "EmployeeID": 8, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", "ShipVia": 1, - "Freight": 2.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 185.48, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 12, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 20, + "Discount": 0 + } + ] + }, { - "OrderID": 10926, + "OrderID": 11024, "EmployeeID": 4, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 3, - "Freight": 39.92, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 74.36, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 23000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 2, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ + }, { - "OrderID": 10927, - "EmployeeID": 4, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 19.79, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "OrderID": 11047, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 46.62, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 14000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11056, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 2, + "Freight": 278.96, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 17000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 } ] @@ -31290,837 +21305,693 @@ ] }, { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", + "CustomerID": "ANTON", + "Company": "Antonio Moreno Taquería", + "ContactName": "Antonio Moreno", + "ContactTitle": "Owner", + "Address": "Mataderos 2312", + "City": "México D.F.", + "PostalCode": 5023, + "Country": "Mexico", + "Phone": "(5) 555-3932", "Orders": [ { - "OrderID": 10928, - "EmployeeID": 1, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 10365, + "EmployeeID": 3, + "OrderDate": "1996-11-27T00:00:00", + "RequiredDate": "1996-12-25T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 22, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 24, "Discount": 0 + } + ] + }, + { + "OrderID": 10507, + "EmployeeID": 7, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-04-22T00:00:00", + "ShipVia": 1, + "Freight": 47.45, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0 + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10929, - "EmployeeID": 6, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", + "OrderID": 10535, + "EmployeeID": 4, + "OrderDate": "1997-05-13T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-21T00:00:00", "ShipVia": 1, - "Freight": 33.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 15.64, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 49, - "Discount": 0 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 5, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 14000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10930, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10573, + "EmployeeID": 7, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-20T00:00:00", "ShipVia": 3, - "Freight": 15.55, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 17000, - "ShipCountry": "Belgium", + "Freight": 84.84, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 36, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 25, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 53, + "UnitPrice": 32.8, "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10931, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 2, - "Freight": 13.6, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10677, + "EmployeeID": 1, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 3, + "Freight": 4.03, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 42, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 30, "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10932, - "EmployeeID": 8, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", - "ShipVia": 1, - "Freight": 134.64, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10682, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 2, + "Freight": 36.13, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, + "ProductID": 33, + "UnitPrice": 2.5, "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 14, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 16, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 4, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.1 + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 27000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10933, - "EmployeeID": 6, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 3, - "Freight": 54.15, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40624, - "ShipPostalCode": 44000, - "ShipCountry": "UK", + "OrderID": 10856, + "EmployeeID": 3, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 58.43, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 2, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] } ], - "Fax": "(198) 555-8888" + "Fax": "(5) 555-3932" }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "CustomerID": "GALED", + "Company": "Galería del gastrónomo", + "ContactName": "Eduardo Saavedra", + "ContactTitle": "Marketing Manager", + "Address": "Rambla de Cataluña, 23", + "City": "Barcelona", + "PostalCode": 8022, + "Country": "Spain", + "Phone": "(93) 203 4560", + "Fax": "(93) 203 4561", "Orders": [ { - "OrderID": 10934, - "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", - "ShipVia": 3, - "Freight": 32.01, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10366, + "EmployeeID": 8, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-30T00:00:00", + "ShipVia": 2, + "Freight": 10.14, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10935, + "OrderID": 10426, "EmployeeID": 4, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 47.59, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-02-06T00:00:00", + "ShipVia": 1, + "Freight": 18.69, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 8, - "Discount": 0.25 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10936, + "OrderID": 10568, "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 2, - "Freight": 33.68, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1997-06-13T00:00:00", + "RequiredDate": "1997-07-11T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 3, + "Freight": 6.54, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 5, + "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10937, - "EmployeeID": 7, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderID": 10887, + "EmployeeID": 8, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", "ShipVia": 3, - "Freight": 31.51, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 1.25, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 34, + "ProductID": 25, "UnitPrice": 14, - "Quantity": 20, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10938, - "EmployeeID": 3, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 31.89, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10928, + "EmployeeID": 1, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 1.36, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 49, - "Discount": 0.25 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "VAFFE", + "Company": "Vaffeljernet", + "ContactName": "Palle Ibsen", + "ContactTitle": "Sales Manager", + "Address": "Smagsloget 45", + "City": "Århus", + "PostalCode": 8200, + "Country": "Denmark", + "Phone": "86 21 32 43", + "Fax": "86 22 33 44", "Orders": [ { - "OrderID": 10939, - "EmployeeID": 2, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 2, - "Freight": 76.33, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10367, + "EmployeeID": 7, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1996-12-26T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 13.55, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10940, + "OrderID": 10399, "EmployeeID": 8, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderDate": "1996-12-31T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", "ShipVia": 3, - "Freight": 19.77, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 27.36, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 8, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10941, - "EmployeeID": 7, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 400.81, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10465, + "EmployeeID": 1, + "OrderDate": "1997-03-05T00:00:00", + "RequiredDate": "1997-04-02T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 3, + "Freight": 145.04, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 44, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 45, + "UnitPrice": 7.6, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.1 + }, + { + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10591, + "EmployeeID": 1, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-07-21T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 55.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 80, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 50, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10942, - "EmployeeID": 9, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 17.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10602, + "EmployeeID": 8, + "OrderDate": "1997-07-17T00:00:00", + "RequiredDate": "1997-08-14T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", + "ShipVia": 2, + "Freight": 2.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 28, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 5, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 15000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10943, + "OrderID": 10688, "EmployeeID": 4, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", "ShipVia": 2, - "Freight": 2.17, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", + "Freight": 299.09, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 15, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 21, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 15, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 14, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 44000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10944, + "OrderID": 10744, "EmployeeID": 6, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 3, - "Freight": 52.92, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 69.19, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10769, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 1, + "Freight": 65.06, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10945, - "EmployeeID": 4, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-04-09T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10921, + "EmployeeID": 1, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 1, - "Freight": 10.22, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 176.48, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 40, "Discount": 0 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { "OrderID": 10946, "EmployeeID": 1, @@ -32154,1106 +22025,1060 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 39000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10947, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "OrderID": 10994, + "EmployeeID": 2, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-04-09T00:00:00", + "ShipVia": 3, + "Freight": 65.53, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { "ProductID": 59, "UnitPrice": 55, - "Quantity": 4, - "Discount": 0 + "Quantity": 18, + "Discount": 0.06 } ] } - ], - "Fax": "(171) 555-1212" + ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "CustomerID": "QUEEN", + "Company": "Queen Cozinha", + "ContactName": "Lúcia Carvalho", + "ContactTitle": "Marketing Assistant", + "Address": "Alameda dos Canàrios, 891", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5487, + "Country": "Brazil", + "Phone": "(11) 555-1189", "Orders": [ { - "OrderID": 10948, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 3, - "Freight": 23.39, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10372, + "EmployeeID": 5, + "OrderDate": "1996-12-04T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 890.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 9, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 40, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 70, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 42, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10406, + "EmployeeID": 7, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-13T00:00:00", + "ShipVia": 1, + "Freight": 108.04, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 42, + "Discount": 0.1 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 2, + "Discount": 0.1 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 17000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10949, + "OrderID": 10487, "EmployeeID": 2, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-17T00:00:00", - "ShipVia": 3, - "Freight": 74.44, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 34000, - "ShipCountry": "Canada", + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-03-28T00:00:00", + "ShipVia": 2, + "Freight": 71.07, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 12, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 30, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10637, + "EmployeeID": 6, + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 201.29, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 25, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 60, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10950, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-13T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10659, + "EmployeeID": 7, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 2, - "Freight": 2.5, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 105.81, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 24, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10704, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", + "ShipVia": 1, + "Freight": 4.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { "ProductID": 4, "UnitPrice": 22, - "Quantity": 5, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10951, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", + "OrderID": 10728, + "EmployeeID": 4, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-11-11T00:00:00", "ShipVia": 2, - "Freight": 30.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 58.33, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, + "ProductID": 30, + "UnitPrice": 25.89, "Quantity": 15, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, + "ProductID": 40, + "UnitPrice": 18.4, "Quantity": 6, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10952, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "OrderID": 10786, + "EmployeeID": 8, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-16T00:00:00", + "ShippedDate": "1997-12-23T00:00:00", "ShipVia": 1, - "Freight": 40.42, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 110.87, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 2, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0.2 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, + "Discount": 0.2 } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 36000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10953, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-25T00:00:00", + ] + }, + { + "OrderID": 10868, + "EmployeeID": 7, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 37000, - "ShipCountry": "UK", + "Freight": 191.27, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 42, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10954, - "EmployeeID": 5, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 10913, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 1, - "Freight": 27.91, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", + "Freight": 33.05, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 17000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10955, + "OrderID": 10961, "EmployeeID": 8, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 20000, - "ShipCountry": "Sweden", + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", + "ShipVia": 1, + "Freight": 104.47, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10956, - "EmployeeID": 6, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 11068, + "EmployeeID": 8, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-11-01T00:00:00", "ShipVia": 2, - "Freight": 44.65, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "Freight": 81.75, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.16 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 14, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 36, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 8, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 28, + "Discount": 0.16 } ] } - ] + ], + "Fax": "(11) 555-1189" }, { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ - { - "OrderID": 10957, - "EmployeeID": 8, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "CustomerID": "WOLZA", + "Company": "Wolski Zajazd", + "ContactName": "Zbyszek Piestrzeniewicz", + "ContactTitle": "Owner", + "Address": "ul. Filtrowa 68", + "City": "Warszawa", + "PostalCode": 12000, + "Country": "Poland", + "Phone": "(26) 642-7012", + "Fax": "(26) 642-7012", + "Orders": [ + { + "OrderID": 10374, + "EmployeeID": 1, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", "ShipVia": 3, - "Freight": 105.36, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 3.94, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 31, + "UnitPrice": 10, "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 8, + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10958, - "EmployeeID": 7, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "OrderID": 10611, + "EmployeeID": 6, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 49.56, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 80.65, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 20, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 6, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 5, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10959, - "EmployeeID": 6, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", - "ShipVia": 2, - "Freight": 4.98, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 10792, + "EmployeeID": 1, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 3, + "Freight": 23.79, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10960, - "EmployeeID": 3, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 2.08, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10870, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", + "ShipVia": 3, + "Freight": 12.04, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 24, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10961, - "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", - "ShipVia": 1, - "Freight": 104.47, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, - "Discount": 0.06 - }, + "OrderID": 10906, + "EmployeeID": 4, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", + "ShipVia": 3, + "Freight": 26.29, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 60, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 15, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10962, + "OrderID": 10998, "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", "ShipVia": 2, - "Freight": 275.79, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 20.31, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 77, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 74, + "UnitPrice": 10, "Quantity": 20, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 9, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 44, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10963, - "EmployeeID": 9, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", - "ShipVia": 3, - "Freight": 2.7, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 11044, + "EmployeeID": 4, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 8.72, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0 } ] } ] }, { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", + "CustomerID": "HUNGC", + "Company": "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", "Orders": [ { - "OrderID": 10964, + "OrderID": 10375, "EmployeeID": 3, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "OrderDate": "1996-12-06T00:00:00", + "RequiredDate": "1997-01-03T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", "ShipVia": 2, - "Freight": 87.38, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 20.12, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 6, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10394, + "EmployeeID": 1, + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 3, + "Freight": 30.34, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10965, - "EmployeeID": 6, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", - "ShipVia": 3, - "Freight": 144.38, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "OrderID": 10415, + "EmployeeID": 3, + "OrderDate": "1997-01-15T00:00:00", + "RequiredDate": "1997-02-12T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "ShipVia": 1, + "Freight": 0.2, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 16, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10966, + "OrderID": 10600, "EmployeeID": 4, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-13T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", "ShipVia": 1, - "Freight": 27.19, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 45.13, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 - }, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10660, + "EmployeeID": 8, + "OrderDate": "1997-09-08T00:00:00", + "RequiredDate": "1997-10-06T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 1, + "Freight": 111.29, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 21, + "Discount": 0 } ] } - ], - "Fax": "0452-076545" + ] }, { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", + "CustomerID": "SANTG", + "Company": "Santé Gourmet", + "ContactName": "Jonas Bergulfsen", + "ContactTitle": "Owner", + "Address": "Erling Skakkes gate 78", + "City": "Stavern", + "PostalCode": 4110, + "Country": "Norway", + "Phone": "07-98 92 35", + "Fax": "07-98 92 47", "Orders": [ { - "OrderID": 10967, - "EmployeeID": 2, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10387, + "EmployeeID": 1, + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-15T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", "ShipVia": 2, - "Freight": 62.22, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 93.63, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, "Quantity": 12, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10968, - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-01T00:00:00", - "ShipVia": 3, - "Freight": 74.6, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10520, + "EmployeeID": 7, + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 1, + "Freight": 13.37, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 30, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 4, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10969, - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", + "OrderID": 10639, + "EmployeeID": 7, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-08-27T00:00:00", + "ShipVia": 3, + "Freight": 38.64, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10831, + "EmployeeID": 3, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 2, - "Freight": 0.21, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 72.19, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ + }, { - "OrderID": 10970, - "EmployeeID": 9, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 1, - "Freight": 16.16, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", + "OrderID": 10909, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-10T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10971, + "OrderID": 11015, "EmployeeID": 2, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 2, - "Freight": 121.82, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 4.62, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] @@ -33261,462 +23086,321 @@ ] }, { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", + "CustomerID": "BOTTM", + "Company": "Bottom-Dollar Markets", + "ContactName": "Elizabeth Lincoln", + "ContactTitle": "Accounting Manager", + "Address": "23 Tsawassen Blvd.", + "City": "Tsawassen", + "Region": "BC", + "PostalCode": 14000, + "Country": "Canada", + "Phone": "(604) 555-4729", + "Fax": "(604) 555-3745", "Orders": [ { - "OrderID": 10972, + "OrderID": 10389, "EmployeeID": 4, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", + "OrderDate": "1996-12-20T00:00:00", + "RequiredDate": "1997-01-17T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", "ShipVia": 2, - "Freight": 0.02, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "Freight": 47.42, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 28000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 7, - "Discount": 0 - } - ] - }, - { - "OrderID": 10973, - "EmployeeID": 6, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 2, - "Freight": 15.17, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10974, + "OrderID": 10410, "EmployeeID": 3, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderDate": "1997-01-10T00:00:00", + "RequiredDate": "1997-02-07T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", "ShipVia": 3, - "Freight": 12.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 2.4, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 19000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10975, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-22T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 3, - "Freight": 32.27, + "OrderID": 10431, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 44.17, "ShipName": "Bottom-Dollar Markets", "ShipAddress": "23 Tsawassen Blvd.", "ShipCity": "Tsawassen", "ShipRegion": "BC", - "ShipPostalCode": 45000, + "ShipPostalCode": 49000, "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 16, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 50, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10976, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderID": 10492, + "EmployeeID": 3, + "OrderDate": "1997-04-01T00:00:00", + "RequiredDate": "1997-04-29T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 1, - "Freight": 37.97, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 62.89, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 41000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10977, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10742, + "EmployeeID": 3, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-12-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 208.5, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", + "Freight": 243.73, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 17000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 46000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10978, - "EmployeeID": 9, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", - "ShipVia": 2, - "Freight": 32.82, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", + "OrderID": 10918, + "EmployeeID": 3, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 48.83, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", "ShipPostalCode": 45000, - "ShipCountry": "Belgium", + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.16 - }, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 25, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10944, + "EmployeeID": 6, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 52.92, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, + "Discount": 0.25 }, { "ProductID": 44, "UnitPrice": 19.45, - "Quantity": 6, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10979, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-03-31T00:00:00", - "ShipVia": 2, - "Freight": 353.07, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, "Quantity": 18, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 12, + "ProductID": 56, "UnitPrice": 38, - "Quantity": 20, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10949, + "EmployeeID": 2, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-17T00:00:00", + "ShipVia": 3, + "Freight": 74.44, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 34000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 80, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 30, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 24, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 35, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 21000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10980, - "EmployeeID": 4, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 1, - "Freight": 1.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "OrderID": 10975, + "EmployeeID": 1, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-22T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 32.27, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 45000, + "ShipCountry": "Canada", "OrderDetails": [ + { + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 16, + "Discount": 0 + }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10981, - "EmployeeID": 1, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 193.37, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 16000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { "OrderID": 10982, "EmployeeID": 2, @@ -33745,588 +23429,513 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10983, - "EmployeeID": 2, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 2, - "Freight": 657.54, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11027, + "EmployeeID": 1, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 52.52, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 11000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 21, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11045, + "EmployeeID": 6, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-05-23T00:00:00", + "ShipVia": 2, + "Freight": 70.58, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 36000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 84, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 24, "Discount": 0 } ] }, { - "OrderID": 10984, - "EmployeeID": 1, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderID": 11048, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", "ShipVia": 3, - "Freight": 211.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 24.12, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 15000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 55, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 42, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "LINOD", + "Company": "LINO-Delicateses", + "ContactName": "Felipe Izquierdo", + "ContactTitle": "Owner", + "Address": "Ave. 5 de Mayo Porlamar", + "City": "Sao Paulo", + "Region": "Nueva Esparta", + "PostalCode": 4980, + "Country": "Venezuela", + "Phone": "(8) 34-56-12", + "Fax": "(8) 34-93-93", "Orders": [ { - "OrderID": 10985, - "EmployeeID": 2, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10405, + "EmployeeID": 1, + "OrderDate": "1997-01-06T00:00:00", + "RequiredDate": "1997-02-03T00:00:00", + "ShippedDate": "1997-01-22T00:00:00", "ShipVia": 1, - "Freight": 91.51, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 34.82, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 36, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 + } + ] + }, + { + "OrderID": 10485, + "EmployeeID": 4, + "OrderDate": "1997-03-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-31T00:00:00", + "ShipVia": 2, + "Freight": 64.45, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 35, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 60, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10986, - "EmployeeID": 8, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 2, - "Freight": 217.86, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10638, + "EmployeeID": 3, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", + "ShipVia": 1, + "Freight": 158.44, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 16000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10987, - "EmployeeID": 8, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 1, - "Freight": 185.48, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 32000, - "ShipCountry": "UK", + "OrderID": 10697, + "EmployeeID": 3, + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-05T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", + "ShipVia": 1, + "Freight": 45.52, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0.25 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 9, + "Discount": 0.25 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10988, - "EmployeeID": 3, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 61.14, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10729, + "EmployeeID": 8, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 3, + "Freight": 141.06, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 50, + "UnitPrice": 16.25, "Quantity": 40, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10989, - "EmployeeID": 2, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10811, + "EmployeeID": 8, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", "ShipVia": 1, - "Freight": 34.76, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 31.22, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 40, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10990, - "EmployeeID": 2, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", + "OrderID": 10838, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 3, - "Freight": 117.61, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 59.28, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 65, - "Discount": 0 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 60, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 66, - "Discount": 0.16 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10991, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 1, - "Freight": 38.51, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10840, + "EmployeeID": 4, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", + "ShipVia": 2, + "Freight": 2.71, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.2 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 76, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 90, + "Quantity": 10, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10992, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 4.27, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "OrderID": 10919, + "EmployeeID": 2, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 2, + "Freight": 19.8, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 2, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 50000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10993, - "EmployeeID": 7, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 3, - "Freight": 8.81, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "OrderID": 10954, + "EmployeeID": 5, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 1, + "Freight": 27.91, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 28, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 25, + "Discount": 0.16 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10994, + "OrderID": 11014, "EmployeeID": 2, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-04-09T00:00:00", + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", "ShipVia": 3, - "Freight": 65.53, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 23.6, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 28, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10995, + "OrderID": 11039, "EmployeeID": 1, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 3, - "Freight": 46, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-05-25T00:00:00", + "ShipVia": 2, + "Freight": 65, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 28, "Discount": 0 } ] @@ -34334,935 +23943,905 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "FOLIG", + "Company": "Folies gourmandes", + "ContactName": "Martine Rancé", + "ContactTitle": "Sales Associate", + "Address": "184, chaussée de Tournai", + "City": "Lille", + "PostalCode": 59000, + "Country": "France", + "Phone": "20.16.10.16", + "Fax": "20.16.10.17", "Orders": [ { - "OrderID": 10996, - "EmployeeID": 4, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 1.12, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10408, + "EmployeeID": 8, + "OrderDate": "1997-01-08T00:00:00", + "RequiredDate": "1997-02-05T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 11.26, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 10997, - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10480, + "EmployeeID": 6, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", "ShipVia": 2, - "Freight": 73.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 1.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10998, - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 2, - "Freight": 20.31, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10634, + "EmployeeID": 4, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 487.38, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 7, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 30, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10999, - "EmployeeID": 6, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-01T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10763, + "EmployeeID": 3, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 3, + "Freight": 37.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10789, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", "ShipVia": 2, - "Freight": 96.35, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 100.6, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 35, + "UnitPrice": 18, "Quantity": 15, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 21, - "Discount": 0.06 + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "OCEAN", + "Company": "Océano Atlántico Ltda.", + "ContactName": "Yvonne Moncada", + "ContactTitle": "Sales Agent", + "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5333", + "Fax": "(1) 135-5535", "Orders": [ { - "OrderID": 11000, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", - "ShipVia": 3, - "Freight": 55.12, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10409, + "EmployeeID": 3, + "OrderDate": "1997-01-09T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 29.83, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 - }, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10531, + "EmployeeID": 7, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", + "ShipVia": 1, + "Freight": 8.12, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 30000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 11001, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", + "OrderID": 10898, + "EmployeeID": 4, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", "ShipVia": 2, - "Freight": 197.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 30000, - "ShipCountry": "Sweden", + "Freight": 1.27, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 5, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10958, + "EmployeeID": 7, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 2, + "Freight": 49.56, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 25, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 25, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11002, - "EmployeeID": 4, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", - "ShipVia": 1, - "Freight": 141.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10986, + "EmployeeID": 8, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 217.86, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 56, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, + "ProductID": 20, + "UnitPrice": 81, "Quantity": 15, - "Discount": 0.16 + "Discount": 0 }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0.16 + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 40, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "THECR", - "Company": "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": "FRANS", + "Company": "Franchi S.p.A.", + "ContactName": "Paolo Accorti", + "ContactTitle": "Sales Representative", + "Address": "Via Monte Bianco 34", + "City": "Torino", + "PostalCode": 10100, + "Country": "Italy", + "Phone": "011-4988260", + "Fax": "011-4988261", "Orders": [ { - "OrderID": 11003, - "EmployeeID": 3, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 3, - "Freight": 14.91, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "OrderID": 10422, + "EmployeeID": 2, + "OrderDate": "1997-01-22T00:00:00", + "RequiredDate": "1997-02-19T00:00:00", + "ShippedDate": "1997-01-31T00:00:00", + "ShipVia": 1, + "Freight": 3.02, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 2, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10710, + "EmployeeID": 1, + "OrderDate": "1997-10-20T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 1, + "Freight": 4.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 10, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 37000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 11004, + "OrderID": 10753, "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", "ShipVia": 1, - "Freight": 44.84, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 33000, - "ShipCountry": "Belgium", + "Freight": 7.7, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 6, + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 11005, - "EmployeeID": 2, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10807, + "EmployeeID": 4, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 1.36, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 2, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 1, + "Discount": 0 + } + ] + }, + { + "OrderID": 11026, + "EmployeeID": 4, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", + "ShipVia": 1, + "Freight": 47.09, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 51, + "UnitPrice": 53, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11006, - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", + "OrderID": 11060, + "EmployeeID": 2, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", "ShipVia": 2, - "Freight": 25.19, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 10.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0 } ] } - ], - "Fax": "(503) 555-7555" + ] }, { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", + "CustomerID": "GOURL", + "Company": "Gourmet Lanchonetes", + "ContactName": "André Fonseca", + "ContactTitle": "Sales Associate", + "Address": "Av. Brasil, 442", + "City": "Campinas", + "Region": "SP", + "PostalCode": 4876, + "Country": "Brazil", + "Phone": "(11) 555-9482", "Orders": [ { - "OrderID": 11007, - "EmployeeID": 8, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 2, - "Freight": 202.24, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10423, + "EmployeeID": 6, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", + "ShipVia": 3, + "Freight": 24.5, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 20, "Discount": 0 + } + ] + }, + { + "OrderID": 10652, + "EmployeeID": 4, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 2, + "Freight": 7.14, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 2, + "Discount": 0.25 }, { "ProductID": 42, "UnitPrice": 14, - "Quantity": 14, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11008, - "EmployeeID": 7, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-05-09T00:00:00", - "ShipVia": 3, - "Freight": 79.46, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10685, + "EmployeeID": 4, + "OrderDate": "1997-09-29T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 33.75, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 90, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 21, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 11009, - "EmployeeID": 2, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 59.11, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10709, + "EmployeeID": 1, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-11-20T00:00:00", + "ShipVia": 3, + "Freight": 210.8, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 9, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11010, + "OrderID": 10734, "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 2, - "Freight": 28.71, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-12T00:00:00", + "ShipVia": 3, + "Freight": 1.63, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 11011, - "EmployeeID": 3, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10777, + "EmployeeID": 7, + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 2, + "Freight": 3.01, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10790, + "EmployeeID": 6, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", "ShipVia": 1, - "Freight": 1.21, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 28.23, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 3, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 11012, - "EmployeeID": 1, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 3, - "Freight": 242.95, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10959, + "EmployeeID": 6, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 4.98, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 - }, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 11049, + "EmployeeID": 3, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 8.34, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 36, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, + "Discount": 0.2 } ] } - ] + ], + "Fax": "(11) 555-9482" }, { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", + "CustomerID": "CONSH", + "Company": "Consolidated Holdings", + "ContactName": "Elizabeth Brown", + "ContactTitle": "Sales Representative", + "Address": "Berkeley Gardens 12 Brewery", + "City": "London", + "PostalCode": 38000, + "Country": "UK", + "Phone": "(171) 555-2282", + "Fax": "(171) 555-9199", "Orders": [ { - "OrderID": 11013, - "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 32.99, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10435, + "EmployeeID": 8, + "OrderDate": "1997-02-04T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 9.21, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 10, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 4, + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10462, + "EmployeeID": 2, + "OrderDate": "1997-03-03T00:00:00", + "RequiredDate": "1997-03-31T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 1, + "Freight": 6.17, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 50000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 2, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 11014, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", - "ShipVia": 3, - "Freight": 23.6, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 28, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 11015, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10848, + "EmployeeID": 7, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 2, - "Freight": 4.62, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 38.24, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 36000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 3, "Discount": 0 } ] @@ -35270,158 +24849,141 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", + "CustomerID": "RANCH", + "Company": "Rancho grande", + "ContactName": "Sergio Gutiérrez", "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 42000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Address": "Av. del Libertador 900", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 123-5555", + "Fax": "(1) 123-5556", "Orders": [ { - "OrderID": 11016, - "EmployeeID": 9, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10448, + "EmployeeID": 4, + "OrderDate": "1997-02-17T00:00:00", + "RequiredDate": "1997-03-17T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", "ShipVia": 2, - "Freight": 33.8, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 20000, - "ShipCountry": "UK", + "Freight": 38.82, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 16, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11017, - "EmployeeID": 9, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10716, + "EmployeeID": 4, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-27T00:00:00", "ShipVia": 2, - "Freight": 754.26, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 22.57, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 3, + "ProductID": 21, "UnitPrice": 10, - "Quantity": 25, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 110, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11018, - "EmployeeID": 4, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10828, + "EmployeeID": 9, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 90.85, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 10916, + "EmployeeID": 1, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 2, - "Freight": 11.65, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 63.77, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { "OrderID": 11019, "EmployeeID": 6, @@ -35453,139 +25015,60 @@ ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 11020, - "EmployeeID": 2, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", - "ShipVia": 2, - "Freight": 43.3, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "LAZYK", + "Company": "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", "Orders": [ { - "OrderID": 11021, - "EmployeeID": 3, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 1, - "Freight": 297.18, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10482, + "EmployeeID": 1, + "OrderDate": "1997-03-21T00:00:00", + "RequiredDate": "1997-04-18T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 7.48, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 11, - "Discount": 0.25 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 63, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 44, - "Discount": 0.25 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 11022, - "EmployeeID": 9, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10545, + "EmployeeID": 8, + "OrderDate": "1997-05-22T00:00:00", + "RequiredDate": "1997-06-19T00:00:00", + "ShippedDate": "1997-06-26T00:00:00", "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 11.92, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 } ] @@ -35593,460 +25076,323 @@ ] }, { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", + "CustomerID": "LAUGB", + "Company": "Laughing Bacchus Wine Cellars", + "ContactName": "Yoshi Tannamuri", + "ContactTitle": "Marketing Assistant", + "Address": "1900 Oak St.", + "City": "Vancouver", + "Region": "BC", "PostalCode": 19000, - "Country": "UK", - "Phone": "(171) 555-1212", + "Country": "Canada", + "Phone": "(604) 555-3392", + "Fax": "(604) 555-7293", "Orders": [ { - "OrderID": 11023, - "EmployeeID": 1, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 123.83, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 36000, - "ShipCountry": "UK", + "OrderID": 10495, + "EmployeeID": 3, + "OrderDate": "1997-04-03T00:00:00", + "RequiredDate": "1997-05-01T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", + "ShipVia": 3, + "Freight": 4.65, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 20000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 4, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 16000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11024, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 1, - "Freight": 74.36, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 23000, - "ShipCountry": "UK", + "OrderID": 10620, + "EmployeeID": 2, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", + "ShipVia": 3, + "Freight": 0.94, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 31000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 50, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 11025, - "EmployeeID": 6, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10810, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 3, - "Freight": 29.17, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 4.33, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 48000, + "ShipCountry": "Canada", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.1 - }, { "ProductID": 13, "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.1 + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", + "CustomerID": "BLAUS", + "Company": "Blauer See Delikatessen", + "ContactName": "Hanna Moos", "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", + "Address": "Forsterstr. 57", + "City": "Mannheim", + "PostalCode": 68306, + "Country": "Germany", + "Phone": "0621-08460", + "Fax": "0621-08924", "Orders": [ { - "OrderID": 11026, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", - "ShipVia": 1, - "Freight": 47.09, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10501, + "EmployeeID": 9, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 3, + "Freight": 8.85, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 49000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11027, - "EmployeeID": 1, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10509, + "EmployeeID": 4, + "OrderDate": "1997-04-17T00:00:00", + "RequiredDate": "1997-05-15T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 1, - "Freight": 52.52, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 11000, - "ShipCountry": "Canada", + "Freight": 0.15, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 11028, - "EmployeeID": 2, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", - "ShipVia": 1, - "Freight": 29.59, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10582, + "EmployeeID": 3, + "OrderDate": "1997-06-27T00:00:00", + "RequiredDate": "1997-07-25T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 27.71, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 24, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 14, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 11029, - "EmployeeID": 4, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 47.84, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10614, + "EmployeeID": 8, + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 3, + "Freight": 1.93, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 12, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11030, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", + "OrderID": 10853, + "EmployeeID": 9, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", "ShipVia": 2, - "Freight": 830.75, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 53.83, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 100, - "Discount": 0.25 - }, - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 70, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 100, - "Discount": 0.25 } ] }, { - "OrderID": 11031, + "OrderID": 10956, "EmployeeID": 6, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 227.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 44.65, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 45, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 80, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 21, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11032, - "EmployeeID": 2, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 11058, + "EmployeeID": 9, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShippedDate": "1998-08-27T00:00:00", "ShipVia": 3, - "Freight": 606.19, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 31.14, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 35, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 25, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, "Discount": 0 } ] @@ -36054,145 +25400,97 @@ ] }, { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", + "CustomerID": "NORTS", + "Company": "North/South", + "ContactName": "Simon Crowther", + "ContactTitle": "Sales Associate", + "Address": "South House 300 Queensbridge", + "City": "London", + "PostalCode": 13000, + "Country": "UK", + "Phone": "(171) 555-7733", + "Fax": "(171) 555-2530", "Orders": [ { - "OrderID": 11033, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 10517, + "EmployeeID": 3, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 3, - "Freight": 84.74, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 70, - "Discount": 0.1 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 36, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "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", - "Orders": [ - { - "OrderID": 11034, - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 40.32, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 32.07, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 19000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 12, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 23000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 11035, + "OrderID": 10752, "EmployeeID": 2, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 0.17, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 30000, - "ShipCountry": "Belgium", + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", + "ShipVia": 3, + "Freight": 1.39, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 1, "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 60, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 3, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11057, + "EmployeeID": 3, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 4.13, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 47000, + "ShipCountry": "UK", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] @@ -36200,181 +25498,175 @@ ] }, { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", + "CustomerID": "CACTU", + "Company": "Cactus Comidas para llevar", + "ContactName": "Patricio Simpson", + "ContactTitle": "Sales Agent", + "Address": "Cerrito 333", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5555", + "Fax": "(1) 135-4892", "Orders": [ { - "OrderID": 11036, + "OrderID": 10521, "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", - "ShipVia": 3, - "Freight": 149.47, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 17.22, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 11037, - "EmployeeID": 7, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 3.2, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10782, + "EmployeeID": 9, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 1.1, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 1, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 11038, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", - "ShipVia": 2, - "Freight": 29.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 44000, - "ShipCountry": "Belgium", + "OrderID": 10819, + "EmployeeID": 2, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", + "ShipVia": 3, + "Freight": 19.76, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 7, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 2, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10881, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 2.84, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 11039, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-05-25T00:00:00", - "ShipVia": 2, - "Freight": 65, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10937, + "EmployeeID": 7, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 31.51, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { "ProductID": 28, "UnitPrice": 45.6, - "Quantity": 20, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 24, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11054, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShippedDate": "1998-05-26T00:00:00", + "ShipVia": 1, + "Freight": 0.33, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 60, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 28, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] @@ -36394,13 +25686,48 @@ "Phone": "(503) 555-7555", "Orders": [ { - "OrderID": 11040, - "EmployeeID": 4, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-05-20T00:00:00", - "ShipVia": 3, - "Freight": 18.84, + "OrderID": 10528, + "EmployeeID": 6, + "OrderDate": "1997-05-06T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 3.35, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.2 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 10589, + "EmployeeID": 8, + "OrderDate": "1997-07-04T00:00:00", + "RequiredDate": "1997-08-01T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 4.42, "ShipName": "Great Lakes Food Market", "ShipAddress": "2732 Baker Blvd.", "ShipCity": "Eugene", @@ -36409,590 +25736,476 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 11041, - "EmployeeID": 3, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", + "OrderID": 10616, + "EmployeeID": 1, + "OrderDate": "1997-07-31T00:00:00", + "RequiredDate": "1997-08-28T00:00:00", + "ShippedDate": "1997-08-05T00:00:00", "ShipVia": 2, - "Freight": 48.22, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 116.53, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 11042, - "EmployeeID": 2, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10656, + "EmployeeID": 6, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 1, - "Freight": 29.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 57.15, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, + "Discount": 0.1 + }, { "ProductID": 44, "UnitPrice": 19.45, - "Quantity": 15, - "Discount": 0 + "Quantity": 28, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 4, - "Discount": 0 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.1 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 11043, - "EmployeeID": 5, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", - "ShipVia": 2, - "Freight": 8.8, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "OrderID": 10681, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 76.13, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 11044, + "OrderID": 10816, "EmployeeID": 4, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 1, - "Freight": 8.72, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-02-03T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 2, + "Freight": 719.78, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10936, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 33.68, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 31000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11045, - "EmployeeID": 6, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-05-23T00:00:00", + "OrderID": 11006, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", "ShipVia": 2, - "Freight": 70.58, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", + "Freight": 25.19, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 24, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 2, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 11046, - "EmployeeID": 8, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 71.64, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 11040, + "EmployeeID": 4, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-05-20T00:00:00", + "ShipVia": 3, + "Freight": 18.84, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, + "ProductID": 21, + "UnitPrice": 10, "Quantity": 20, - "Discount": 0.06 - }, + "Discount": 0 + } + ] + }, + { + "OrderID": 11061, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-06-11T00:00:00", + "ShippedDate": "1998-06-11T00:00:00", + "ShipVia": 3, + "Freight": 14.01, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, + "ProductID": 60, + "UnitPrice": 34, "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 18, - "Discount": 0.06 + "Discount": 0 } ] } - ] + ], + "Fax": "(503) 555-7555" }, { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", + "CustomerID": "MAISD", + "Company": "Maison Dewey", + "ContactName": "Catherine Dewey", "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", + "Address": "Rue Joseph-Bens 532", + "City": "Bruxelles", + "PostalCode": 11000, + "Country": "Belgium", + "Phone": "(02) 201 24 67", + "Fax": "(02) 201 24 68", "Orders": [ { - "OrderID": 11047, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 3, - "Freight": 46.62, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 14000, - "ShipCountry": "UK", + "OrderID": 10529, + "EmployeeID": 5, + "OrderDate": "1997-05-07T00:00:00", + "RequiredDate": "1997-06-04T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 66.69, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 26000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 48000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11048, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", + "OrderID": 10649, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-09-25T00:00:00", + "ShippedDate": "1997-08-29T00:00:00", "ShipVia": 3, - "Freight": 24.12, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 15000, - "ShipCountry": "Canada", + "Freight": 6.2, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 47000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 42, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 11049, - "EmployeeID": 3, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10760, + "EmployeeID": 4, + "OrderDate": "1997-12-01T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1997-12-10T00:00:00", "ShipVia": 1, - "Freight": 8.34, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 155.64, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.25 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 35000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 11050, - "EmployeeID": 8, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10892, + "EmployeeID": 4, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", "ShipVia": 2, - "Freight": 59.41, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 11000, - "ShipCountry": "Sweden", + "Freight": 120.27, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 45000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 11051, + "OrderID": 10896, "EmployeeID": 7, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-09-25T00:00:00", + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", "ShipVia": 3, - "Freight": 2.79, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 11052, - "EmployeeID": 3, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 1, - "Freight": 67.26, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 32.45, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 28000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 16, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 11053, - "EmployeeID": 2, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", + "OrderID": 10978, + "EmployeeID": 9, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 32.82, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 45000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 11054, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", - "ShippedDate": "1998-05-26T00:00:00", + "OrderID": 11004, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 1, - "Freight": 0.33, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 44.84, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 33000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 10, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 } ] @@ -37000,187 +26213,119 @@ ] }, { - "CustomerID": "HILAA", - "Company": "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": "TRAIH", + "Company": "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", "Orders": [ { - "OrderID": 11055, - "EmployeeID": 7, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10574, + "EmployeeID": 4, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 120.92, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 37.6, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 35000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11056, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10577, + "EmployeeID": 9, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 278.96, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 17000, - "ShipCountry": "UK", + "Freight": 25.41, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 40, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 14000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ - { - "OrderID": 11057, - "EmployeeID": 3, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 3, - "Freight": 4.13, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 47000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 11058, - "EmployeeID": 9, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShippedDate": "1998-08-27T00:00:00", - "ShipVia": 3, - "Freight": 31.14, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10822, + "EmployeeID": 6, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", + "ShipVia": 3, + "Freight": 7, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 3, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 4, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 6, "Discount": 0 } ] @@ -37188,413 +26333,370 @@ ] }, { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", + "CustomerID": "LETSS", + "Company": "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", "Orders": [ { - "OrderID": 11059, - "EmployeeID": 2, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-06-10T00:00:00", - "ShippedDate": "1998-06-15T00:00:00", + "OrderID": 10579, + "EmployeeID": 1, + "OrderDate": "1997-06-25T00:00:00", + "RequiredDate": "1997-07-23T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 2, - "Freight": 85.8, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 13.73, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 12, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 11060, - "EmployeeID": 2, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10719, + "EmployeeID": 8, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 10.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "Freight": 51.44, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 3, + "Discount": 0.25 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 40, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11061, - "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-06-11T00:00:00", - "ShippedDate": "1998-06-11T00:00:00", - "ShipVia": 3, - "Freight": 14.01, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, + "OrderID": 10735, + "EmployeeID": 6, + "OrderDate": "1997-11-10T00:00:00", + "RequiredDate": "1997-12-08T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 45.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.1 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11062, + "OrderID": 10884, "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-06-28T00:00:00", + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", "ShipVia": 2, - "Freight": 29.93, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 90.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 21, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, "Quantity": 12, - "Discount": 0.2 + "Discount": 0.06 } ] } - ] + ], + "Fax": "(415) 555-5938" }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "WILMK", + "Company": "Wilman Kala", + "ContactName": "Matti Karttunen", + "ContactTitle": "Owner/Marketing Assistant", + "Address": "Keskuskatu 45", + "City": "Helsinki", + "PostalCode": 21240, + "Country": "Finland", + "Phone": "90-224 8858", + "Fax": "90-224 8858", "Orders": [ { - "OrderID": 11063, - "EmployeeID": 3, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 81.73, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10615, + "EmployeeID": 2, + "OrderDate": "1997-07-30T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 3, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10673, + "EmployeeID": 2, + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 22.76, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11064, - "EmployeeID": 1, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10695, + "EmployeeID": 7, + "OrderDate": "1997-10-07T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", "ShipVia": 1, - "Freight": 30.09, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 16.72, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 77, - "Discount": 0.1 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.1 - }, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10873, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 0.82, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 55, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11065, - "EmployeeID": 8, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-29T00:00:00", - "ShipVia": 1, - "Freight": 12.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10879, + "EmployeeID": 3, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 8.5, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11066, - "EmployeeID": 7, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 2, - "Freight": 44.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10910, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 3, + "Freight": 38.11, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 42, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 35, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 11067, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 7.98, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderID": 11005, + "EmployeeID": 2, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, "Discount": 0 } ] @@ -37602,85 +26704,113 @@ ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", + "CustomerID": "THECR", + "Company": "The Cracker Box", + "ContactName": "Liu Wong", "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", + "Address": "55 Grizzly Peak Rd.", + "City": "Butte", + "Region": "MT", + "PostalCode": 59801, + "Country": "USA", + "Phone": "(406) 555-5834", + "Fax": "(406) 555-8083", "Orders": [ { - "OrderID": 11068, - "EmployeeID": 8, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-11-01T00:00:00", + "OrderID": 10624, + "EmployeeID": 4, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", "ShipVia": 2, - "Freight": 81.75, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 94.8, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 28, "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.16 + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 11069, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 15.67, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10775, + "EmployeeID": 7, + "OrderDate": "1997-12-12T00:00:00", + "RequiredDate": "1998-01-09T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 20.25, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 11003, + "EmployeeID": 3, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 3, + "Freight": 14.91, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 10, "Discount": 0 } ] @@ -37688,507 +26818,503 @@ ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", + "CustomerID": "ALFKI", + "Company": "Alfreds Futterkiste", + "ContactName": "Maria Anders", "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, + "Address": "Obere Str. 57", + "City": "Berlin", + "PostalCode": 12209, "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "Phone": "030-0074321", + "Fax": "030-0076545", "Orders": [ { - "OrderID": 11070, - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-02T00:00:00", + "OrderID": 10643, + "EmployeeID": 6, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", "ShipVia": 1, - "Freight": 136, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "Freight": 29.46, + "ShipName": "Alfreds Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 15, + "Discount": 0.25 + }, + { + "ProductID": 39, "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.16 + "Quantity": 21, + "Discount": 0.25 }, { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 2, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10692, + "EmployeeID": 4, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-10-31T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", + "ShipVia": 2, + "Freight": 61.02, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 20, - "Discount": 0.16 - }, + "Discount": 0 + } + ] + }, + { + "OrderID": 10702, + "EmployeeID": 4, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 1, + "Freight": 23.94, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "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", - "Orders": [ + }, { - "OrderID": 11071, + "OrderID": 10835, "EmployeeID": 1, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-10T00:00:00", - "ShipVia": 1, - "Freight": 0.93, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 3, + "Freight": 69.53, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10952, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", + "ShipVia": 1, + "Freight": 40.42, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 16, "Discount": 0.06 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 11011, + "EmployeeID": 3, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 1, + "Freight": 1.21, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 40, "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "FRANR", + "Company": "France restauration", + "ContactName": "Carine Schmitt", + "ContactTitle": "Marketing Manager", + "Address": "54, rue Royale", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.32.21.21", + "Fax": "40.32.21.20", "Orders": [ { - "OrderID": 11072, - "EmployeeID": 4, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-08-02T00:00:00", - "ShipVia": 2, - "Freight": 258.64, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10671, + "EmployeeID": 1, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-09-24T00:00:00", + "ShipVia": 1, + "Freight": 30.34, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 22, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 130, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 11073, - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-15T00:00:00", - "ShipVia": 2, - "Freight": 24.95, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10860, + "EmployeeID": 3, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 3, + "Freight": 19.26, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 11074, - "EmployeeID": 7, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-06-03T00:00:00", + "OrderID": 10971, + "EmployeeID": 2, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", "ShipVia": 2, - "Freight": 18.44, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 121.82, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 14, - "Discount": 0.06 + "Discount": 0 } ] } ] }, { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", + "CustomerID": "SPECD", + "Company": "Spécialités du monde", + "ContactName": "Dominique Perrier", + "ContactTitle": "Marketing Manager", + "Address": "25, rue Lauriston", + "City": "Paris", + "PostalCode": 75016, + "Country": "France", + "Phone": "(1) 47.55.60.10", + "Fax": "(1) 47.55.60.20", "Orders": [ { - "OrderID": 11075, - "EmployeeID": 8, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-05-03T00:00:00", - "ShipVia": 2, - "Freight": 6.19, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10738, + "EmployeeID": 2, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 1, + "Freight": 2.91, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0.16 - }, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10907, + "EmployeeID": 6, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-25T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 9.19, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 14, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 11076, - "EmployeeID": 4, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-06-08T00:00:00", + "OrderID": 10964, + "EmployeeID": 3, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 2, - "Freight": 38.28, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, + "Freight": 87.38, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 69, + "UnitPrice": 36, "Quantity": 10, - "Discount": 0.25 + "Discount": 0 + } + ] + }, + { + "OrderID": 11043, + "EmployeeID": 5, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 8.8, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "LACOR", + "Company": "La corne de abondance", + "ContactName": "Daniel Tonini", + "ContactTitle": "Sales Representative", + "Address": "67, avenue de Europe", + "City": "Versailles", + "PostalCode": 78000, + "Country": "France", + "Phone": "30.59.84.10", + "Fax": "30.59.85.11", "Orders": [ { - "OrderID": 11077, - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-07-03T00:00:00", - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10858, + "EmployeeID": 2, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", + "ShipVia": 1, + "Freight": 52.51, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 24, - "Discount": 0.2 - }, - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 1, - "Discount": 0.02 - }, { "ProductID": 7, "UnitPrice": 30, - "Quantity": 1, - "Discount": 0.06 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 2, - "Discount": 0.1 - }, - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 1, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 2, - "Discount": 0.06 + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 4, "Discount": 0 - }, - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 2, - "Discount": 0.04 - }, + } + ] + }, + { + "OrderID": 10927, + "EmployeeID": 4, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 19.79, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { "ProductID": 20, "UnitPrice": 81, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 3, + "Quantity": 5, "Discount": 0 }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 3, - "Discount": 0.02 - }, { "ProductID": 52, "UnitPrice": 7, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 2, - "Discount": 0.04 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 1, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 2, - "Discount": 0.0099999998 - }, + } + ] + }, + { + "OrderID": 10972, + "EmployeeID": 4, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 2, + "Freight": 0.02, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 4, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 7, "Discount": 0 } ] diff --git a/samples/grids/hierarchical-grid/row-reorder/src/index.tsx b/samples/grids/hierarchical-grid/row-reorder/src/index.tsx index 4c3a51767d..60777ad43a 100644 --- a/samples/grids/hierarchical-grid/row-reorder/src/index.tsx +++ b/samples/grids/hierarchical-grid/row-reorder/src/index.tsx @@ -168,6 +168,9 @@ export default class Sample extends React.Component { public webHierarchicalGridReorderRowHandler(args: IgrRowDragEndEventArgs): void { const ghostElement = args.detail.dragDirective.ghostElement; + if (!ghostElement) { + return; + } const dragElementPos = ghostElement.getBoundingClientRect(); const grid = this.hierarchicalGrid; const rows = Array.prototype.slice.call(document.getElementsByTagName("igx-hierarchical-grid-row")); diff --git a/samples/grids/tree-grid/advanced-filtering-style/src/index.css b/samples/grids/tree-grid/advanced-filtering-style/src/index.css index 335f12e448..e08a607ffd 100644 --- a/samples/grids/tree-grid/advanced-filtering-style/src/index.css +++ b/samples/grids/tree-grid/advanced-filtering-style/src/index.css @@ -2,7 +2,11 @@ /* https://static.infragistics.com/xplatform/css/samples */ #treeGrid { - --ig-grid-filtering-row-background: #ffcd0f; - --ig-grid-filtering-background-or: #d83434; + --ig-query-builder-header-foreground: #512da8; + --ig-query-builder-color-expression-group-and: #eb0000; + --ig-query-builder-color-expression-group-or: #0000f3; + --ig-query-builder-subquery-header-background: var(--ig-gray-300); + --ig-query-builder-subquery-border-color: var(--ig-warn-500); + --ig-query-builder-subquery-border-radius: 4px; } diff --git a/samples/grids/tree-grid/column-moving-options/src/index.tsx b/samples/grids/tree-grid/column-moving-options/src/index.tsx index 6a0ed40c51..7a8f3edcfa 100644 --- a/samples/grids/tree-grid/column-moving-options/src/index.tsx +++ b/samples/grids/tree-grid/column-moving-options/src/index.tsx @@ -129,9 +129,9 @@ export default class Sample extends React.Component { public webTreeGridPinHeaderTemplate = (props: {dataContext: IgrColumnTemplateContext}) => { const column = (props.dataContext as any).column; return ( -
- {column.field} - this.toggleColumnPin(column.field)}>📌 +
+ {column.field} + this.toggleColumnPin(column.field)}>📌
); } diff --git a/samples/grids/tree-grid/column-moving-styles/src/index.tsx b/samples/grids/tree-grid/column-moving-styles/src/index.tsx index 6a0ed40c51..1e8fe50f62 100644 --- a/samples/grids/tree-grid/column-moving-styles/src/index.tsx +++ b/samples/grids/tree-grid/column-moving-styles/src/index.tsx @@ -16,16 +16,16 @@ const mods: any[] = [ mods.forEach((m) => m.register()); export default class Sample extends React.Component { - private treeGrid: IgrTreeGrid - private treeGridRef(r: IgrTreeGrid) { - this.treeGrid = r; + private grid: IgrTreeGrid + private gridRef(r: IgrTreeGrid) { + this.grid = r; this.setState({}); } constructor(props: any) { super(props); - this.treeGridRef = this.treeGridRef.bind(this); + this.gridRef = this.gridRef.bind(this); } public render(): JSX.Element { @@ -35,8 +35,8 @@ export default class Sample extends React.Component {
{ public webTreeGridPinHeaderTemplate = (props: {dataContext: IgrColumnTemplateContext}) => { const column = (props.dataContext as any).column; return ( -
- {column.field} - this.toggleColumnPin(column.field)}>📌 +
+ {column.field} + this.toggleColumnPin(column.field)}>📌
); } public toggleColumnPin(field: string) { - var treeGrid = this.treeGrid; + var treeGrid = this.grid; var col = treeGrid.getColumnByName(field); col.pinned = !col.pinned; treeGrid.markForCheck(); diff --git a/samples/grids/tree-grid/column-pinning-options/src/index.tsx b/samples/grids/tree-grid/column-pinning-options/src/index.tsx index 86e028fd27..fc7a9b64c8 100644 --- a/samples/grids/tree-grid/column-pinning-options/src/index.tsx +++ b/samples/grids/tree-grid/column-pinning-options/src/index.tsx @@ -100,9 +100,9 @@ export default class Sample extends React.Component { public webTreeGridPinHeaderTemplate = (props: {dataContext: IgrColumnTemplateContext}) => { const column = (props.dataContext as any).column; return ( -
- {column.field} - this.toggleColumnPin(column.field)}>📌 +
+ {column.field} + this.toggleColumnPin(column.field)}>📌
); } diff --git a/samples/grids/tree-grid/column-pinning-styles/src/index.tsx b/samples/grids/tree-grid/column-pinning-styles/src/index.tsx index 86e028fd27..fc7a9b64c8 100644 --- a/samples/grids/tree-grid/column-pinning-styles/src/index.tsx +++ b/samples/grids/tree-grid/column-pinning-styles/src/index.tsx @@ -100,9 +100,9 @@ export default class Sample extends React.Component { public webTreeGridPinHeaderTemplate = (props: {dataContext: IgrColumnTemplateContext}) => { const column = (props.dataContext as any).column; return ( -
- {column.field} - this.toggleColumnPin(column.field)}>📌 +
+ {column.field} + this.toggleColumnPin(column.field)}>📌
); } diff --git a/samples/grids/tree-grid/row-reorder/src/index.tsx b/samples/grids/tree-grid/row-reorder/src/index.tsx index db040f997c..e4060ce425 100644 --- a/samples/grids/tree-grid/row-reorder/src/index.tsx +++ b/samples/grids/tree-grid/row-reorder/src/index.tsx @@ -113,6 +113,9 @@ export default class Sample extends React.Component { public webTreeGridReorderRowHandler(args: IgrRowDragEndEventArgs): void { const ghostElement = args.detail.dragDirective.ghostElement; + if (!ghostElement) { + return; + } const dragElementPos = ghostElement.getBoundingClientRect(); const grid = this.treeGrid; const rows = Array.prototype.slice.call(document.getElementsByTagName("igx-tree-grid-row")); From ec07b19115f8ce3847a40d0885c19c48ad173f60 Mon Sep 17 00:00:00 2001 From: "HUSSAR-mtrela (Martin Trela)" Date: Fri, 5 Dec 2025 18:50:58 -0500 Subject: [PATCH 10/43] CDN update (#986) * cdn update * cdn update * cdn update * cdn path css * fix names * cdn gen data * Update index.tsx * cdn path to images * fixed names --- browser/index.html | 4 +- browser/templates/sample/ReadMe-dev.md | 6 +- .../templates/shared/src/CountryTreeData.ts | 2 +- .../shared/src/DataGridSharedData.ts | 30 +- .../shared/src/DockManagerSharedData.ts | 64 +- .../templates/shared/src/LiveFinancialData.ts | 2 +- browser/templates/shared/src/Products.ts | 4 +- .../templates/shared/src/SampleComboData.ts | 2 +- .../shared/src/SampleScatterStats.ts | 2 +- .../templates/shared/src/SampleTreeData.ts | 2 +- browser/templates/shared/src/WorldCities.ts | 14 +- .../templates/shared/src/WorldLocations.ts | 14 +- .../category-chart/annotations-all/index.html | 4 +- .../annotations-all/src/index.css | 2 +- .../annotations-callouts/index.html | 4 +- .../annotations-callouts/src/index.css | 2 +- .../annotations-crosshairs/index.html | 4 +- .../annotations-crosshairs/src/index.css | 2 +- .../annotations-custom/index.html | 4 +- .../annotations-custom/src/index.css | 2 +- .../annotations-final-value/index.html | 4 +- .../annotations-final-value/src/index.css | 2 +- .../annotations-highlighting/index.html | 4 +- .../annotations-highlighting/src/index.css | 2 +- .../category-chart/annotations/index.html | 2 +- .../area-chart-multiple-sources/index.html | 4 +- .../area-chart-multiple-sources/src/index.css | 2 +- .../area-chart-single-source/index.html | 4 +- .../area-chart-single-source/src/index.css | 2 +- .../area-chart-styling/index.html | 4 +- .../area-chart-styling/src/index.css | 2 +- .../charts/category-chart/axis-gap/index.html | 4 +- .../category-chart/axis-gap/src/index.css | 2 +- .../category-chart/axis-gridlines/index.html | 4 +- .../axis-gridlines/src/index.css | 2 +- .../category-chart/axis-inverted/index.html | 4 +- .../axis-inverted/src/index.css | 2 +- .../category-chart/axis-labels/index.html | 4 +- .../category-chart/axis-labels/src/index.css | 2 +- .../category-chart/axis-locations/index.html | 4 +- .../axis-locations/src/index.css | 2 +- .../category-chart/axis-options/index.html | 4 +- .../category-chart/axis-options/src/index.css | 2 +- .../category-chart/axis-overlap/index.html | 4 +- .../category-chart/axis-overlap/src/index.css | 2 +- .../category-chart/axis-range/index.html | 4 +- .../category-chart/axis-range/src/index.css | 2 +- .../category-chart/axis-tickmarks/index.html | 4 +- .../axis-tickmarks/src/index.css | 2 +- .../category-chart/axis-titles/index.html | 4 +- .../category-chart/axis-titles/src/index.css | 2 +- .../chart-highlight-filter/index.html | 4 +- .../chart-highlight-filter/src/index.css | 2 +- .../column-chart-multiple-sources/index.html | 4 +- .../src/index.css | 2 +- .../column-chart-single-source/index.html | 4 +- .../column-chart-single-source/src/index.css | 2 +- .../column-chart-styling/index.html | 4 +- .../column-chart-styling/src/index.css | 2 +- .../column-chart-with-highlighting/index.html | 2 +- .../column-chart-with-tooltips/index.html | 4 +- .../column-chart-with-tooltips/src/index.css | 2 +- .../custom-selection/index.html | 4 +- .../custom-selection/src/index.css | 2 +- .../data-aggregations/index.html | 4 +- .../data-aggregations/src/index.css | 2 +- .../category-chart/data-filter/index.html | 4 +- .../category-chart/data-filter/src/index.css | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- .../category-chart/data-legend/index.html | 4 +- .../category-chart/data-legend/src/index.css | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- .../data-tooltip-positioning/index.html | 4 +- .../data-tooltip-positioning/src/index.css | 2 +- .../category-chart/data-tooltip/index.html | 4 +- .../category-chart/data-tooltip/src/index.css | 2 +- .../format-specifiers/index.html | 4 +- .../format-specifiers/src/index.css | 2 +- .../category-chart/high-frequency/index.html | 2 +- .../category-chart/high-volume/index.html | 2 +- .../highlighting-behavior/index.html | 4 +- .../highlighting-behavior/src/index.css | 2 +- .../highlighting-mode/index.html | 4 +- .../highlighting-mode/src/index.css | 2 +- .../category-chart/highlighting/index.html | 2 +- .../legend-highlighting/index.html | 4 +- .../legend-highlighting/src/index.css | 2 +- .../line-chart-multiple-sources/index.html | 4 +- .../line-chart-multiple-sources/src/index.css | 2 +- .../line-chart-single-source/index.html | 4 +- .../line-chart-single-source/src/index.css | 2 +- .../line-chart-styling/index.html | 4 +- .../line-chart-styling/src/index.css | 2 +- .../line-chart-with-animations/index.html | 2 +- .../line-chart-with-annotations/index.html | 2 +- .../category-chart/marker-options/index.html | 4 +- .../marker-options/src/index.css | 2 +- .../marker-templates/index.html | 2 +- .../charts/category-chart/overview/index.html | 4 +- .../category-chart/overview/src/index.css | 2 +- .../point-chart-multiple-sources/index.html | 4 +- .../src/index.css | 2 +- .../point-chart-single-source/index.html | 4 +- .../point-chart-single-source/src/index.css | 2 +- .../point-chart-styling/index.html | 4 +- .../point-chart-styling/src/index.css | 2 +- .../selection-matcher/index.html | 4 +- .../selection-matcher/src/index.css | 2 +- .../category-chart/selection-modes/index.html | 4 +- .../selection-modes/src/index.css | 2 +- .../selection-multiple-modes/index.html | 4 +- .../selection-multiple-modes/src/index.css | 2 +- .../spline-area-multiple-sources/index.html | 4 +- .../src/index.css | 2 +- .../spline-area-single-source/index.html | 4 +- .../spline-area-single-source/src/index.css | 2 +- .../spline-area-styling/index.html | 4 +- .../spline-area-styling/src/index.css | 2 +- .../spline-multiple-sources/index.html | 4 +- .../spline-multiple-sources/src/index.css | 2 +- .../spline-single-source/index.html | 4 +- .../spline-single-source/src/index.css | 2 +- .../category-chart/spline-styling/index.html | 4 +- .../spline-styling/src/index.css | 2 +- .../category-chart/stack-columns/index.html | 2 +- .../step-area-multiple-sources/index.html | 4 +- .../step-area-multiple-sources/src/index.css | 2 +- .../step-area-single-source/index.html | 4 +- .../step-area-single-source/src/index.css | 2 +- .../step-area-styling/index.html | 4 +- .../step-area-styling/src/index.css | 2 +- .../step-line-multiple-sources/index.html | 4 +- .../step-line-multiple-sources/src/index.css | 2 +- .../step-line-single-source/index.html | 4 +- .../step-line-single-source/src/index.css | 2 +- .../step-line-styling/index.html | 4 +- .../step-line-styling/src/index.css | 2 +- .../tooltip-template/index.html | 2 +- .../category-chart/tooltip-types/index.html | 2 +- .../category-chart/trendline/index.html | 2 +- .../category-chart/value-lines/index.html | 4 +- .../category-chart/value-lines/src/index.css | 2 +- .../dashboard-tile/chart-dashboard/index.html | 4 +- .../chart-dashboard/src/index.css | 2 +- .../financial-dashboard/index.html | 4 +- .../financial-dashboard/src/index.css | 2 +- .../dashboard-tile/gauge-dashboard/index.html | 4 +- .../gauge-dashboard/src/index.css | 2 +- .../local-data-source-dashboard/index.html | 4 +- .../local-data-source-dashboard/src/index.css | 2 +- .../dashboard-tile/map-dashboard/index.html | 4 +- .../map-dashboard/src/index.css | 2 +- .../dashboard-tile/pie-dashboard/index.html | 4 +- .../pie-dashboard/src/index.css | 2 +- .../data-chart/annotations-custom/index.html | 4 +- .../annotations-custom/src/index.css | 2 +- .../axis-annotations-corner-radius/index.html | 4 +- .../src/index.css | 2 +- .../data-chart/axis-annotations/index.html | 2 +- .../data-chart/axis-crossing/index.html | 2 +- .../data-chart/axis-label-rotation/index.html | 4 +- .../axis-label-rotation/src/index.css | 2 +- .../data-chart/axis-locations/index.html | 2 +- .../data-chart/axis-min-max-gap/index.html | 4 +- .../data-chart/axis-min-max-gap/src/index.css | 2 +- .../data-chart/axis-settings/index.html | 2 +- .../charts/data-chart/axis-sharing/index.html | 2 +- .../charts/data-chart/axis-types/index.html | 2 +- .../bar-chart-multiple-sources/index.html | 4 +- .../bar-chart-multiple-sources/src/index.css | 2 +- .../bar-chart-overlapping/index.html | 4 +- .../bar-chart-overlapping/src/index.css | 2 +- .../bar-chart-single-source/index.html | 4 +- .../bar-chart-single-source/src/index.css | 2 +- .../data-chart/bar-chart-styling/index.html | 4 +- .../bar-chart-styling/src/index.css | 2 +- .../callout-layer-styling/index.html | 4 +- .../callout-layer-styling/src/index.css | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- .../chart-highlight-filter/index.html | 4 +- .../chart-highlight-filter/src/index.css | 2 +- .../data-chart/chart-navigation/index.html | 2 +- .../data-chart/chart-overview/index.html | 2 +- .../chart-overview/src/SampleScatterStats.ts | 2 +- .../data-chart/chart-performance/index.html | 2 +- .../chart-synchronization/index.html | 2 +- .../charts/data-chart/chart-titles/index.html | 2 +- .../data-chart/composite-chart/index.html | 2 +- .../crosshair-layer-styling/index.html | 2 +- .../custom-drawing-annotations/index.html | 2 +- .../data-chart/custom-editing-data/index.html | 2 +- .../data-chart/dash-array-axes/index.html | 4 +- .../data-chart/dash-array-axes/src/index.css | 2 +- .../data-chart/dash-array-series/index.html | 4 +- .../dash-array-series/src/index.css | 2 +- .../dash-array-tickmarks/index.html | 4 +- .../dash-array-tickmarks/src/index.css | 2 +- .../dash-array-trendline/index.html | 4 +- .../dash-array-trendline/src/index.css | 2 +- .../data-annotation-band-layer/index.html | 4 +- .../data-annotation-band-layer/src/index.css | 2 +- .../data-annotation-line-layer/index.html | 4 +- .../data-annotation-line-layer/src/index.css | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- .../data-annotation-rect-layer/index.html | 4 +- .../data-annotation-rect-layer/src/index.css | 2 +- .../data-annotation-slice-layer/index.html | 4 +- .../data-annotation-slice-layer/src/index.css | 2 +- .../data-annotation-strip-layer/index.html | 4 +- .../data-annotation-strip-layer/src/index.css | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- .../data-legend-grouping/index.html | 4 +- .../data-legend-grouping/src/index.css | 2 +- .../data-chart/data-legend-styling/index.html | 4 +- .../data-legend-styling/src/index.css | 2 +- .../charts/data-chart/data-legend/index.html | 4 +- .../data-chart/data-legend/src/index.css | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- .../data-tooltip-grouping/index.html | 4 +- .../data-tooltip-grouping/src/index.css | 2 +- .../data-tooltip-styling/index.html | 4 +- .../data-tooltip-styling/src/index.css | 2 +- .../charts/data-chart/data-tooltip/index.html | 4 +- .../data-chart/data-tooltip/src/index.css | 2 +- .../final-value-layer-styling/index.html | 2 +- .../financial-price-series/index.html | 4 +- .../financial-price-series/src/index.css | 2 +- .../data-chart/format-specifiers/index.html | 4 +- .../format-specifiers/src/index.css | 2 +- .../data-chart/itemized-bar-chart/index.html | 4 +- .../itemized-bar-chart/src/index.css | 2 +- .../itemized-column-chart/index.html | 4 +- .../itemized-column-chart/src/index.css | 2 +- .../itemized-stacked-bar-chart/index.html | 4 +- .../itemized-stacked-bar-chart/src/index.css | 2 +- .../itemized-stacked-column-chart/index.html | 4 +- .../src/index.css | 2 +- samples/charts/data-chart/legends/index.html | 2 +- .../polar-area-chart-styling/index.html | 4 +- .../polar-area-chart-styling/src/index.css | 2 +- .../data-chart/polar-area-chart/index.html | 4 +- .../data-chart/polar-area-chart/src/index.css | 2 +- .../data-chart/polar-chart-types/index.html | 2 +- .../data-chart/polar-line-chart/index.html | 4 +- .../data-chart/polar-line-chart/src/index.css | 2 +- .../data-chart/polar-scatter-chart/index.html | 4 +- .../polar-scatter-chart/src/index.css | 2 +- .../polar-spline-area-chart/index.html | 4 +- .../polar-spline-area-chart/src/index.css | 2 +- .../data-chart/polar-spline-chart/index.html | 4 +- .../polar-spline-chart/src/index.css | 2 +- .../radial-area-chart-styling/index.html | 4 +- .../radial-area-chart-styling/src/index.css | 2 +- .../data-chart/radial-area-chart/index.html | 4 +- .../radial-area-chart/src/index.css | 2 +- .../data-chart/radial-chart-types/index.html | 2 +- .../radial-column-chart-selection/index.html | 4 +- .../src/index.css | 2 +- .../data-chart/radial-column-chart/index.html | 4 +- .../radial-column-chart/src/index.css | 2 +- .../data-chart/radial-label-mode/index.html | 4 +- .../radial-label-mode/src/index.css | 2 +- .../data-chart/radial-line-chart/index.html | 4 +- .../radial-line-chart/src/index.css | 2 +- .../data-chart/radial-pie-chart/index.html | 4 +- .../data-chart/radial-pie-chart/src/index.css | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- .../data-chart/range-area-chart/index.html | 4 +- .../data-chart/range-area-chart/src/index.css | 2 +- .../data-chart/range-column-chart/index.html | 4 +- .../range-column-chart/src/index.css | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- .../scatter-bubble-chart-styling/index.html | 4 +- .../src/index.css | 2 +- .../data-chart/scatter-line-chart/index.html | 4 +- .../scatter-line-chart/src/index.css | 2 +- .../scatter-line-threshold/index.html | 4 +- .../scatter-line-threshold/src/index.css | 2 +- .../data-chart/scatter-point-chart/index.html | 4 +- .../scatter-point-chart/src/index.css | 2 +- .../scatter-spline-chart/index.html | 4 +- .../scatter-spline-chart/src/index.css | 2 +- .../data-chart/selection-matcher/index.html | 4 +- .../selection-matcher/src/index.css | 2 +- .../data-chart/series-annotations/index.html | 2 +- .../data-chart/series-highlighting/index.html | 2 +- .../series-marker-template/index.html | 2 +- .../data-chart/series-markers/index.html | 2 +- .../data-chart/series-tooltips/index.html | 2 +- .../data-chart/series-trendlines/index.html | 2 +- .../series-value-overlay/index.html | 2 +- .../stacked-100-area-chart/index.html | 4 +- .../stacked-100-area-chart/src/index.css | 2 +- .../stacked-100-bar-chart/index.html | 4 +- .../stacked-100-bar-chart/src/index.css | 2 +- .../stacked-100-column-chart/index.html | 4 +- .../stacked-100-column-chart/src/index.css | 2 +- .../stacked-100-line-chart/index.html | 4 +- .../stacked-100-line-chart/src/index.css | 2 +- .../stacked-100-spline-area-chart/index.html | 4 +- .../src/index.css | 2 +- .../stacked-100-spline-chart/index.html | 4 +- .../stacked-100-spline-chart/src/index.css | 2 +- .../data-chart/stacked-area-chart/index.html | 4 +- .../stacked-area-chart/src/index.css | 2 +- .../data-chart/stacked-bar-chart/index.html | 4 +- .../stacked-bar-chart/src/index.css | 2 +- .../data-chart/stacked-chart-types/index.html | 2 +- .../stacked-column-chart/index.html | 4 +- .../stacked-column-chart/src/index.css | 2 +- .../data-chart/stacked-line-chart/index.html | 4 +- .../stacked-line-chart/src/index.css | 2 +- .../stacked-spline-area-chart/index.html | 4 +- .../stacked-spline-area-chart/src/index.css | 2 +- .../stacked-spline-chart/index.html | 4 +- .../stacked-spline-chart/src/index.css | 2 +- .../data-chart/tooltip-template/index.html | 2 +- .../data-chart/transition-event/index.html | 4 +- .../data-chart/transition-event/src/index.css | 2 +- .../data-chart/trendline-layer/index.html | 4 +- .../data-chart/trendline-layer/src/index.css | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../type-financial-indicators-line/index.html | 2 +- .../type-financial-ohlc-series/index.html | 2 +- .../type-financial-overlays/index.html | 2 +- .../type-financial-series/index.html | 2 +- .../type-range-area-series/index.html | 2 +- .../type-range-column-series/index.html | 2 +- .../data-chart/type-range-series/index.html | 2 +- .../type-scatter-area-series/index.html | 2 +- .../type-scatter-bubble-series/index.html | 2 +- .../src/SampleScatterStats.ts | 2 +- .../type-scatter-contour-series/index.html | 2 +- .../type-scatter-hd-series/index.html | 2 +- .../type-scatter-polygon-series/index.html | 4 +- .../type-scatter-polyline-series/index.html | 4 +- .../data-chart/type-scatter-series/index.html | 2 +- .../src/SampleScatterStats.ts | 2 +- .../data-chart/type-shape-series/index.html | 2 +- .../user-annotation-layer/index.html | 4 +- .../user-annotation-layer/src/index.css | 2 +- .../data-chart/waterfall-chart/index.html | 4 +- .../data-chart/waterfall-chart/src/index.css | 2 +- .../animation-replay/index.html | 4 +- .../animation-replay/src/index.css | 2 +- .../data-pie-chart/animation/index.html | 4 +- .../data-pie-chart/animation/src/index.css | 2 +- .../highlight-filter/index.html | 4 +- .../highlight-filter/src/index.css | 2 +- .../data-pie-chart/highlighting/index.html | 4 +- .../data-pie-chart/highlighting/src/index.css | 2 +- .../charts/data-pie-chart/legend/index.html | 4 +- .../data-pie-chart/legend/src/index.css | 2 +- .../charts/data-pie-chart/others/index.html | 4 +- .../data-pie-chart/others/src/index.css | 2 +- .../charts/data-pie-chart/overview/index.html | 4 +- .../data-pie-chart/overview/src/index.css | 2 +- .../data-pie-chart/selection/index.html | 4 +- .../data-pie-chart/selection/src/index.css | 2 +- .../doughnut-chart/animation/index.html | 2 +- .../doughnut-chart/explosion/index.html | 2 +- .../charts/doughnut-chart/legend/index.html | 4 +- .../doughnut-chart/legend/src/index.css | 2 +- .../charts/doughnut-chart/overview/index.html | 4 +- .../doughnut-chart/overview/src/index.css | 2 +- .../charts/doughnut-chart/rings/index.html | 4 +- .../charts/doughnut-chart/rings/src/index.css | 2 +- .../doughnut-chart/selection/index.html | 2 +- .../financial-chart/annotations/index.html | 2 +- .../financial-chart/axis-types/index.html | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- .../data-legend-styling-props/index.html | 4 +- .../data-legend-styling-props/src/index.css | 2 +- .../financial-chart/data-legend/index.html | 4 +- .../financial-chart/data-legend/src/index.css | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- .../data-tooltip-styling-props/index.html | 4 +- .../data-tooltip-styling-props/src/index.css | 2 +- .../financial-chart/data-tooltip/index.html | 4 +- .../data-tooltip/src/index.css | 2 +- .../format-specifiers/index.html | 4 +- .../format-specifiers/src/index.css | 2 +- .../financial-chart/high-frequency/index.html | 2 +- .../financial-chart/high-volume/index.html | 2 +- .../indicator-customization/index.html | 2 +- .../indicator-types/index.html | 2 +- .../financial-chart/multiple-data/index.html | 2 +- .../financial-chart/overview/index.html | 2 +- .../charts/financial-chart/panes/index.html | 2 +- .../financial-chart/performance/index.html | 2 +- .../financial-chart/scrollbars/index.html | 4 +- .../financial-chart/scrollbars/src/index.css | 2 +- .../stock-index-chart/index.html | 2 +- .../charts/financial-chart/styling/index.html | 2 +- .../charts/financial-chart/titles/index.html | 2 +- .../financial-chart/tooltip-types/index.html | 2 +- .../financial-chart/trendlines/index.html | 2 +- .../financial-chart/volume-types/index.html | 2 +- samples/charts/pie-chart/animation/index.html | 2 +- samples/charts/pie-chart/explosion/index.html | 2 +- samples/charts/pie-chart/legend/index.html | 4 +- samples/charts/pie-chart/legend/src/index.css | 2 +- samples/charts/pie-chart/others/index.html | 4 +- samples/charts/pie-chart/others/src/index.css | 2 +- samples/charts/pie-chart/overview/index.html | 4 +- .../charts/pie-chart/overview/src/index.css | 2 +- samples/charts/pie-chart/selection/index.html | 2 +- samples/charts/pie-chart/styling/index.html | 4 +- .../charts/pie-chart/styling/src/index.css | 2 +- .../charts/sparkline/display-area/index.html | 4 +- .../sparkline/display-area/src/index.css | 2 +- .../sparkline/display-column/index.html | 4 +- .../sparkline/display-column/src/index.css | 2 +- .../charts/sparkline/display-lines/index.html | 4 +- .../sparkline/display-lines/src/index.css | 2 +- .../charts/sparkline/display-types/index.html | 2 +- .../sparkline/display-winloss/index.html | 4 +- .../sparkline/display-winloss/src/index.css | 2 +- samples/charts/sparkline/grid/index.html | 2 +- samples/charts/sparkline/grid/src/Products.ts | 4 +- samples/charts/sparkline/markers/index.html | 4 +- .../charts/sparkline/markers/src/index.css | 2 +- .../charts/sparkline/normal-range/index.html | 4 +- .../sparkline/normal-range/src/index.css | 2 +- .../charts/sparkline/trendlines/index.html | 4 +- .../charts/sparkline/trendlines/src/index.css | 2 +- .../sparkline/unknown-values/index.html | 4 +- .../sparkline/unknown-values/src/index.css | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- .../actions-built-in-data-chart/index.html | 4 +- .../actions-built-in-data-chart/src/index.css | 2 +- .../toolbar/color-editor-support/index.html | 4 +- .../color-editor-support/src/index.css | 2 +- samples/charts/toolbar/custom-tool/index.html | 4 +- .../charts/toolbar/custom-tool/src/index.css | 2 +- .../layout-actions-for-data-chart/index.html | 4 +- .../src/index.css | 2 +- .../layout-in-vertical-orientation/index.html | 4 +- .../src/index.css | 2 +- samples/charts/toolbar/theming/index.html | 4 +- samples/charts/toolbar/theming/src/index.css | 2 +- samples/charts/tree-map/events/index.html | 2 +- .../tree-map/events/src/CountryTreeData.ts | 2 +- .../highlighting-percent-based/index.html | 4 +- .../highlighting-percent-based/src/index.css | 2 +- .../charts/tree-map/highlighting/index.html | 4 +- .../tree-map/highlighting/src/index.css | 2 +- samples/charts/tree-map/layout/index.html | 4 +- samples/charts/tree-map/layout/src/index.css | 2 +- samples/charts/tree-map/overview/index.html | 4 +- .../charts/tree-map/overview/src/index.css | 2 +- samples/charts/tree-map/styling/index.html | 4 +- samples/charts/tree-map/styling/src/index.css | 2 +- samples/charts/zoomslider/overview/index.html | 2 +- .../overview/src/SampleScatterStats.ts | 2 +- .../multi-column-combobox/overview/index.html | 2 +- .../overview/src/SampleComboData.ts | 2 +- .../editors/x-date-picker/overview/index.html | 2 +- .../editors/x-date-picker/range/index.html | 2 +- .../operations-on-workbooks/index.html | 2 +- .../operations-on-worksheets/index.html | 2 +- .../excel/excel-library/overview/index.html | 2 +- .../working-with-cells/index.html | 2 +- .../working-with-charts/index.html | 2 +- .../working-with-sparklines/index.html | 2 +- .../excel/spreadsheet/activation/index.html | 2 +- .../spreadsheet/activation/src/index.tsx | 2 +- .../spreadsheet/adapter-chart/index.html | 2 +- .../spreadsheet/adapter-chart/src/index.tsx | 2 +- .../spreadsheet/adapter-combo/index.html | 2 +- .../excel/spreadsheet/clipboard/index.html | 2 +- .../excel/spreadsheet/clipboard/src/index.tsx | 2 +- samples/excel/spreadsheet/commands/index.html | 2 +- .../excel/spreadsheet/commands/src/index.tsx | 2 +- .../conditional-formatting/index.html | 2 +- .../conditional-formatting/src/index.tsx | 2 +- .../spreadsheet/config-options/index.html | 2 +- .../spreadsheet/config-options/src/index.tsx | 2 +- .../spreadsheet/data-validation/index.html | 2 +- .../spreadsheet/filter-dialog/index.html | 2 +- .../spreadsheet/filter-dialog/src/index.tsx | 2 +- .../spreadsheet/format-dialog/index.html | 2 +- .../spreadsheet/format-dialog/src/index.tsx | 2 +- .../excel/spreadsheet/hyperlinks/index.html | 2 +- .../spreadsheet/hyperlinks/src/index.tsx | 2 +- samples/excel/spreadsheet/overview/index.html | 4 +- .../excel/spreadsheet/overview/src/index.tsx | 2 +- .../excel/spreadsheet/sort-dialog/index.html | 2 +- .../spreadsheet/sort-dialog/src/index.tsx | 2 +- .../gauges/bullet-graph/animation/index.html | 2 +- .../gauges/bullet-graph/background/index.html | 2 +- .../bullet-graph/highlight-needle/index.html | 2 +- samples/gauges/bullet-graph/labels/index.html | 2 +- .../gauges/bullet-graph/measures/index.html | 2 +- samples/gauges/bullet-graph/ranges/index.html | 2 +- samples/gauges/bullet-graph/scale/index.html | 2 +- .../gauges/bullet-graph/tickmarks/index.html | 2 +- .../bullet-graph/type-filled/index.html | 2 +- .../bullet-graph/type-horizontal/index.html | 2 +- .../bullet-graph/type-reversed/index.html | 2 +- .../bullet-graph/type-segmented/index.html | 2 +- .../bullet-graph/type-vertical/index.html | 2 +- .../gauges/linear-gauge/animation/index.html | 2 +- .../gauges/linear-gauge/backing/index.html | 2 +- .../linear-gauge/highlight-needle/index.html | 2 +- samples/gauges/linear-gauge/labels/index.html | 2 +- samples/gauges/linear-gauge/needle/index.html | 2 +- samples/gauges/linear-gauge/ranges/index.html | 2 +- samples/gauges/linear-gauge/scale/index.html | 2 +- .../gauges/linear-gauge/tickmarks/index.html | 2 +- .../linear-gauge/type-curved/index.html | 2 +- .../linear-gauge/type-filled/index.html | 2 +- .../linear-gauge/type-horizontal/index.html | 2 +- .../linear-gauge/type-multi-range/index.html | 2 +- .../linear-gauge/type-multi-scale/index.html | 2 +- .../linear-gauge/type-segmented/index.html | 2 +- .../linear-gauge/type-vertical/index.html | 2 +- .../gauges/radial-gauge/animation/index.html | 2 +- .../gauges/radial-gauge/backing/index.html | 2 +- .../radial-gauge/highlight-needle/index.html | 2 +- samples/gauges/radial-gauge/labels/index.html | 2 +- samples/gauges/radial-gauge/needle/index.html | 2 +- .../radial-gauge/optical-scaling/index.html | 2 +- samples/gauges/radial-gauge/ranges/index.html | 2 +- samples/gauges/radial-gauge/scale/index.html | 2 +- .../gauges/radial-gauge/tickmarks/index.html | 2 +- .../radial-gauge/type-column/index.html | 2 +- .../radial-gauge/type-curved/index.html | 2 +- .../radial-gauge/type-direction/index.html | 2 +- .../gauges/radial-gauge/type-full/index.html | 2 +- .../gauges/radial-gauge/type-half/index.html | 2 +- .../radial-gauge/type-quatre/index.html | 2 +- .../gauges/radial-gauge/type-ring/index.html | 2 +- .../radial-gauge/type-segmented/index.html | 2 +- .../gauges/radial-gauge/type-semi/index.html | 2 +- .../grids/data-grid/accessibility/index.html | 2 +- .../data-grid/accessibility/src/index.tsx | 4 +- .../data-grid/binding-data-service/index.html | 2 +- .../src/LiveFinancialData.ts | 2 +- .../data-grid/binding-live-data/index.html | 2 +- .../src/LiveFinancialData.ts | 2 +- .../data-grid/binding-local-data/index.html | 2 +- .../binding-local-data/src/index.tsx | 4 +- .../data-grid/binding-remote-data/index.html | 2 +- .../data-grid/cell-activation/index.html | 2 +- .../cell-activation/src/DataGridSharedData.ts | 30 +- .../grids/data-grid/cell-editing/index.html | 2 +- .../cell-editing/src/DataGridSharedData.ts | 30 +- .../grids/data-grid/cell-merging/index.html | 2 +- .../cell-merging/src/LiveFinancialData.ts | 2 +- .../grids/data-grid/cell-selection/index.html | 2 +- .../cell-selection/src/DataGridSharedData.ts | 30 +- .../data-grid/column-animation/index.html | 2 +- .../src/DataGridSharedData.ts | 30 +- .../column-chooser-picker/index.html | 2 +- .../src/DataGridSharedData.ts | 30 +- .../column-chooser-toolbar/index.html | 2 +- .../src/DataGridSharedData.ts | 30 +- .../column-filter-expressions/index.html | 2 +- .../src/DataGridSharedData.ts | 30 +- .../column-filter-operands/index.html | 2 +- .../src/DataGridSharedData.ts | 30 +- .../data-grid/column-filtering/index.html | 2 +- .../src/DataGridSharedData.ts | 30 +- .../grids/data-grid/column-moving/index.html | 2 +- .../column-moving/src/DataGridSharedData.ts | 30 +- .../grids/data-grid/column-options/index.html | 2 +- .../column-options/src/DataGridSharedData.ts | 30 +- .../column-pinning-picker/index.html | 2 +- .../src/DataGridSharedData.ts | 30 +- .../column-pinning-toolbar/index.html | 2 +- .../src/DataGridSharedData.ts | 30 +- .../data-grid/column-resizing/index.html | 2 +- .../column-resizing/src/DataGridSharedData.ts | 30 +- .../data-grid/column-scrolling/index.html | 2 +- .../src/DataGridSharedData.ts | 30 +- .../grids/data-grid/column-sorting/index.html | 2 +- .../column-sorting/src/DataGridSharedData.ts | 30 +- .../data-grid/column-summaries/index.html | 2 +- .../src/DataGridSharedData.ts | 30 +- .../grids/data-grid/column-types/index.html | 2 +- .../column-types/src/DataGridSharedData.ts | 30 +- .../data-grid/load-save-layout/index.html | 2 +- .../src/DataGridSharedData.ts | 30 +- .../grids/data-grid/localization/index.html | 2 +- .../localization/src/DataGridSharedData.ts | 24 +- samples/grids/data-grid/overview/index.html | 2 +- .../overview/src/DataGridSharedData.ts | 30 +- samples/grids/data-grid/pager/index.html | 2 +- samples/grids/data-grid/pager/src/index.tsx | 4 +- .../grids/data-grid/performance/index.html | 2 +- .../grids/data-grid/performance/src/index.tsx | 65 +- .../row-group-descriptions/index.html | 2 +- .../src/DataGridSharedData.ts | 30 +- .../grids/data-grid/row-grouping/index.html | 2 +- .../row-grouping/src/DataGridSharedData.ts | 30 +- .../data-grid/row-highlighting/index.html | 2 +- .../src/DataGridSharedData.ts | 30 +- samples/grids/data-grid/row-paging/index.html | 2 +- .../row-paging/src/DataGridSharedData.ts | 30 +- .../grids/data-grid/row-pinning/index.html | 2 +- .../row-pinning/src/DataGridSharedData.ts | 30 +- .../row-selection/src/DataGridSharedData.ts | 30 +- .../type-comparison-table/index.html | 2 +- .../data-grid/type-heatmap-table/index.html | 2 +- .../data-grid/type-marketing-table/index.html | 2 +- .../src/LiveFinancialData.ts | 2 +- .../data-grid/type-matrix-table/index.html | 2 +- .../data-grid/type-periodic-table/index.html | 2 +- .../grid-lite/column-config-basic/index.html | 4 +- .../column-config-dynamic/index.html | 4 +- .../column-config-headers/index.html | 4 +- .../grids/grid-lite/data-binding/index.html | 4 +- .../filtering-config-events/index.html | 4 +- .../filtering-config-remote/index.html | 4 +- .../grid-lite/filtering-config/index.html | 4 +- samples/grids/grid-lite/overview/index.html | 4 +- .../grid-lite/sort-config-events/index.html | 4 +- .../grid-lite/sort-config-grid/index.html | 4 +- .../grid-lite/sort-config-pipeline/index.html | 4 +- .../grid-lite/sort-config-sample/index.html | 4 +- .../grid-lite/styling-custom-theme/index.html | 4 +- samples/grids/grid/action-strip/index.html | 4 +- samples/grids/grid/action-strip/src/index.css | 2 +- .../advanced-filtering-options/index.html | 4 +- .../advanced-filtering-options/src/index.css | 2 +- .../advanced-filtering-options/src/index.tsx | 4 +- .../grid/advanced-filtering-style/index.html | 4 +- .../advanced-filtering-style/src/index.css | 2 +- .../advanced-filtering-style/src/index.tsx | 4 +- .../grid/binding-composite-data/index.html | 4 +- .../grid/binding-composite-data/src/index.css | 2 +- .../grids/grid/binding-crud-data/index.html | 4 +- .../grid/binding-crud-data/src/index.css | 2 +- .../grid/binding-nested-data-1/index.html | 4 +- .../grid/binding-nested-data-1/src/index.css | 2 +- .../grid/binding-nested-data-1/src/index.tsx | 3 +- samples/grids/grid/cascading-combo/index.html | 4 +- .../grids/grid/cascading-combo/src/index.css | 2 +- .../grids/grid/cell-editing-sample/index.html | 4 +- .../grid/cell-editing-sample/src/index.css | 2 +- .../grid/cell-editing-styling/index.html | 4 +- .../grid/cell-editing-styling/src/index.css | 2 +- .../public/index.html | 4 +- .../cell-merge-custom-sample/src/index.css | 2 +- .../grids/grid/cell-merge/public/index.html | 4 +- samples/grids/grid/cell-merge/src/index.css | 2 +- samples/grids/grid/cell-merge/src/index.tsx | 4 +- .../grids/grid/cell-selection-mode/index.html | 4 +- .../grid/cell-selection-mode/src/index.css | 2 +- .../grid/cell-selection-style/index.html | 4 +- .../grid/cell-selection-style/src/index.css | 2 +- .../grids/grid/change-icons-custom/index.html | 4 +- .../grid/change-icons-custom/src/index.css | 2 +- .../grid/clipboard-operations/index.html | 4 +- .../grid/clipboard-operations/src/index.css | 2 +- .../grids/grid/column-auto-sizing/index.html | 4 +- .../grid/column-auto-sizing/src/index.css | 2 +- .../grid/column-collapsible-groups/index.html | 4 +- .../column-collapsible-groups/src/index.css | 2 +- .../grids/grid/column-data-types/index.html | 4 +- .../grid/column-data-types/src/index.css | 2 +- .../grid/column-hiding-options/index.html | 4 +- .../grid/column-hiding-options/src/index.css | 2 +- .../column-hiding-toolbar-style/index.html | 4 +- .../column-hiding-toolbar-style/src/index.css | 2 +- .../grid/column-hiding-toolbar/index.html | 4 +- .../grid/column-hiding-toolbar/src/index.css | 2 +- .../grid/column-moving-options/index.html | 4 +- .../grid/column-moving-options/src/index.css | 2 +- .../grid/column-moving-styles/index.html | 4 +- .../grid/column-moving-styles/src/index.css | 2 +- .../public/index.html | 4 +- .../column-pinning-both-sides/src/index.css | 2 +- .../grid/column-pinning-options/index.html | 4 +- .../grid/column-pinning-options/src/index.css | 2 +- .../grid/column-pinning-right-side/index.html | 4 +- .../src/AthletesDataExtended.ts | 370 +++---- .../column-pinning-right-side/src/index.css | 2 +- .../grid/column-pinning-styles/index.html | 4 +- .../grid/column-pinning-styles/src/index.css | 2 +- samples/grids/grid/column-pinning/index.html | 4 +- .../grids/grid/column-pinning/src/index.css | 2 +- .../grid/column-resize-styling/index.html | 4 +- .../column-resize-styling/src/AthletesData.ts | 370 +++---- .../grid/column-resize-styling/src/index.css | 2 +- samples/grids/grid/column-resizing/index.html | 4 +- .../grids/grid/column-resizing/src/index.css | 2 +- .../grid/column-selection-group/index.html | 4 +- .../grid/column-selection-group/src/index.css | 2 +- .../grid/column-selection-mode/index.html | 4 +- .../grid/column-selection-mode/src/index.css | 2 +- .../grid/column-selection-styles/index.html | 4 +- .../column-selection-styles/src/index.css | 2 +- .../grid/column-sorting-indicators/index.html | 4 +- .../column-sorting-indicators/src/index.css | 2 +- .../grid/column-sorting-options/index.html | 4 +- .../grid/column-sorting-options/src/index.css | 2 +- .../grid/column-sorting-style/index.html | 4 +- .../grid/column-sorting-style/src/index.css | 2 +- .../grid/conditional-cell-style-1/index.html | 4 +- .../src/AthletesData.ts | 370 +++---- .../conditional-cell-style-1/src/index.css | 2 +- .../grid/conditional-cell-style-2/index.html | 4 +- .../src/AthletesData.ts | 370 +++---- .../conditional-cell-style-2/src/index.css | 2 +- .../grid/conditional-row-selectors/index.html | 4 +- .../conditional-row-selectors/src/index.css | 2 +- .../grids/grid/custom-context-menu/index.html | 4 +- .../grid/custom-context-menu/src/index.css | 2 +- .../data-batch-editing-actions/index.html | 4 +- .../data-batch-editing-actions/src/index.css | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- samples/grids/grid/data-searching/index.html | 4 +- .../grids/grid/data-searching/src/index.css | 2 +- .../grid/data-summary-formatter/index.html | 4 +- .../grid/data-summary-formatter/src/index.css | 2 +- .../grid/data-summary-options/index.html | 4 +- .../grid/data-summary-options/src/index.css | 2 +- .../grid/data-summary-template/index.html | 4 +- .../grid/data-summary-template/src/index.css | 2 +- .../grid/data-validation-style/index.html | 4 +- .../grid/data-validation-style/src/index.css | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- .../grid/data-validator-service/index.html | 4 +- .../src/EmployeesData.ts | 902 +++++++++--------- .../grid/data-validator-service/src/index.css | 2 +- .../grids/grid/disabled-summaries/index.html | 4 +- samples/grids/grid/editing-columns/index.html | 4 +- .../grids/grid/editing-columns/src/index.css | 2 +- samples/grids/grid/editing-events/index.html | 4 +- .../grids/grid/editing-events/src/index.css | 2 +- .../grids/grid/editing-excel-style/index.html | 4 +- .../grid/editing-excel-style/src/index.css | 2 +- .../grids/grid/editing-lifecycle/index.html | 4 +- .../grid/editing-lifecycle/src/index.css | 2 +- samples/grids/grid/excel-exporting/index.html | 4 +- .../grids/grid/excel-exporting/src/index.css | 2 +- .../excel-style-filtering-sample-1/index.html | 4 +- .../src/index.css | 2 +- .../src/index.tsx | 4 +- .../excel-style-filtering-sample-2/index.html | 4 +- .../src/index.css | 2 +- .../src/index.tsx | 4 +- .../excel-style-filtering-sample-3/index.html | 4 +- .../src/index.css | 2 +- .../src/index.tsx | 6 +- .../excel-style-filtering-style/index.html | 4 +- .../excel-style-filtering-style/src/index.css | 2 +- .../excel-style-filtering-style/src/index.tsx | 4 +- .../external-advanced-filtering/index.html | 4 +- .../external-advanced-filtering/src/index.css | 2 +- .../grids/grid/filtering-options/index.html | 4 +- .../grid/filtering-options/src/index.css | 2 +- .../grids/grid/filtering-strategy/index.html | 4 +- .../grid/filtering-strategy/src/index.css | 2 +- .../grid/filtering-strategy/src/index.tsx | 4 +- samples/grids/grid/filtering-style/index.html | 4 +- .../grids/grid/filtering-style/src/index.css | 2 +- .../grids/grid/filtering-style/src/index.tsx | 4 +- samples/grids/grid/finjs/index.html | 4 +- samples/grids/grid/finjs/src/FinancialData.ts | 2 +- samples/grids/grid/finjs/src/index.css | 2 +- samples/grids/grid/groupby-custom/index.html | 4 +- .../grids/grid/groupby-custom/src/index.css | 2 +- .../grids/grid/groupby-expressions/index.html | 4 +- .../grid/groupby-expressions/src/index.css | 2 +- .../grid/groupby-expressions/src/index.tsx | 4 +- samples/grids/grid/groupby-paging/index.html | 4 +- .../grids/grid/groupby-paging/src/index.css | 2 +- samples/grids/grid/groupby-styling/index.html | 4 +- .../grids/grid/groupby-styling/src/index.css | 2 +- .../grids/grid/groupby-styling/src/index.tsx | 4 +- .../grid/groupby-summary-options/index.html | 4 +- .../groupby-summary-options/src/index.css | 2 +- .../grid/groupby-summary-styling/index.html | 4 +- .../groupby-summary-styling/src/index.css | 2 +- samples/grids/grid/infinite-scroll/index.html | 4 +- .../grids/grid/infinite-scroll/src/index.css | 2 +- .../keyboard-custom-navigation/index.html | 4 +- .../keyboard-custom-navigation/src/index.css | 2 +- .../grid/keyboard-mrl-navigation/index.html | 4 +- .../keyboard-mrl-navigation/src/index.css | 2 +- .../grid/layout-display-density/index.html | 4 +- .../grid/layout-display-density/src/index.css | 2 +- samples/grids/grid/master-detail/index.html | 4 +- .../grids/grid/master-detail/src/index.css | 2 +- .../grid/multi-cell-selection-mode/index.html | 4 +- .../multi-cell-selection-mode/src/index.css | 2 +- .../multi-column-headers-export/index.html | 4 +- .../multi-column-headers-export/src/index.css | 2 +- .../multi-column-headers-overview/index.html | 4 +- .../src/index.css | 2 +- .../multi-column-headers-styling/index.html | 4 +- .../src/index.css | 2 +- .../multi-column-headers-template/index.html | 4 +- .../src/index.css | 2 +- .../grid/multi-row-layout-options/index.html | 4 +- .../multi-row-layout-options/src/index.css | 2 +- .../grid/multi-row-layout-style/index.html | 4 +- .../grid/multi-row-layout-style/src/index.css | 2 +- samples/grids/grid/overview/index.html | 4 +- samples/grids/grid/overview/src/index.css | 2 +- samples/grids/grid/overview/src/index.tsx | 4 +- samples/grids/grid/paste/index.html | 4 +- samples/grids/grid/paste/src/index.css | 2 +- .../grids/grid/remote-paging-data/index.html | 4 +- .../grid/remote-paging-data/src/index.css | 2 +- .../grids/grid/remote-paging-grid/index.html | 4 +- .../grid/remote-paging-grid/src/index.css | 2 +- samples/grids/grid/row-adding/index.html | 4 +- samples/grids/grid/row-adding/src/index.css | 2 +- samples/grids/grid/row-classes/index.html | 4 +- samples/grids/grid/row-classes/src/index.css | 2 +- samples/grids/grid/row-drag-base/index.html | 4 +- .../grids/grid/row-drag-base/src/index.css | 2 +- .../grids/grid/row-editing-options/index.html | 4 +- .../grid/row-editing-options/src/index.css | 2 +- .../grids/grid/row-editing-style/index.html | 4 +- .../grid/row-editing-style/src/index.css | 2 +- .../grids/grid/row-paging-basic/index.html | 4 +- .../grid/row-paging-basic/src/AthletesData.ts | 370 +++---- .../grids/grid/row-paging-basic/src/index.css | 2 +- .../grids/grid/row-paging-options/index.html | 4 +- .../row-paging-options/src/AthletesData.ts | 370 +++---- .../grid/row-paging-options/src/index.css | 2 +- .../grids/grid/row-pinning-drag/index.html | 4 +- .../grids/grid/row-pinning-drag/src/index.css | 2 +- .../grid/row-pinning-extra-column/index.html | 4 +- .../row-pinning-extra-column/src/index.css | 2 +- .../grids/grid/row-pinning-options/index.html | 4 +- .../grid/row-pinning-options/src/index.css | 2 +- .../grids/grid/row-pinning-style/index.html | 4 +- .../grid/row-pinning-style/src/index.css | 2 +- samples/grids/grid/row-reorder/index.html | 4 +- samples/grids/grid/row-reorder/src/index.css | 2 +- .../grids/grid/row-selection-mode/index.html | 4 +- .../grid/row-selection-mode/src/index.css | 2 +- .../row-selection-template-excel/index.html | 4 +- .../src/index.css | 2 +- .../row-selection-template-numbers/index.html | 4 +- .../src/index.css | 2 +- .../src/index.tsx | 2 +- samples/grids/grid/row-styles/index.html | 4 +- samples/grids/grid/row-styles/src/index.css | 2 +- .../grid/state-persistence-about/index.html | 4 +- .../state-persistence-about/src/index.css | 2 +- .../grid/state-persistence-main/index.html | 4 +- .../grid/state-persistence-main/src/index.css | 2 +- .../grids/grid/styling-custom-CSS/index.html | 4 +- .../grid/styling-custom-CSS/src/index.css | 2 +- .../grids/grid/toolbar-sample-1/index.html | 4 +- .../grid/toolbar-sample-1/src/AthletesData.ts | 370 +++---- .../grids/grid/toolbar-sample-1/src/index.css | 2 +- .../grids/grid/toolbar-sample-2/index.html | 4 +- .../grid/toolbar-sample-2/src/AthletesData.ts | 370 +++---- .../grids/grid/toolbar-sample-2/src/index.css | 2 +- .../grids/grid/toolbar-sample-3/index.html | 4 +- .../grid/toolbar-sample-3/src/AthletesData.ts | 370 +++---- .../grids/grid/toolbar-sample-3/src/index.css | 2 +- samples/grids/grid/toolbar-style/index.html | 4 +- .../grid/toolbar-style/src/AthletesData.ts | 370 +++---- .../grids/grid/toolbar-style/src/index.css | 2 +- .../hierarchical-grid/action-strip/index.html | 4 +- .../action-strip/src/SingersData.json | 28 +- .../action-strip/src/index.css | 2 +- .../advanced-filtering-options/index.html | 4 +- .../src/SingersData.json | 28 +- .../advanced-filtering-options/src/index.css | 2 +- .../advanced-filtering-style/index.html | 4 +- .../src/SingersData.json | 28 +- .../advanced-filtering-style/src/index.css | 2 +- .../cell-editing-sample/index.html | 4 +- .../cell-editing-sample/src/index.css | 2 +- .../cell-editing-styling/index.html | 4 +- .../cell-editing-styling/src/index.css | 2 +- .../public/index.html | 4 +- .../cell-merge-custom-sample/src/index.css | 2 +- .../cell-merge/public/index.html | 4 +- .../cell-merge/src/index.css | 2 +- .../cell-selection-mode/index.html | 4 +- .../cell-selection-mode/src/SingersData.json | 28 +- .../cell-selection-mode/src/index.css | 2 +- .../cell-selection-overview/index.html | 4 +- .../src/SingersData.json | 28 +- .../cell-selection-overview/src/index.css | 2 +- .../cell-selection-style/index.html | 4 +- .../cell-selection-style/src/SingersData.json | 28 +- .../cell-selection-style/src/index.css | 2 +- .../column-auto-sizing/index.html | 4 +- .../column-auto-sizing/src/index.css | 2 +- .../column-collapsible-groups/index.html | 4 +- .../column-collapsible-groups/src/index.css | 2 +- .../column-hiding-toolbar-style/index.html | 4 +- .../src/SingersData.json | 28 +- .../column-hiding-toolbar-style/src/index.css | 2 +- .../column-hiding-toolbar/index.html | 4 +- .../src/SingersData.json | 28 +- .../column-hiding-toolbar/src/index.css | 2 +- .../column-moving-options/index.html | 4 +- .../column-moving-options/src/index.css | 2 +- .../column-moving-styles/index.html | 4 +- .../column-moving-styles/src/index.css | 2 +- .../public/index.html | 4 +- .../column-pinning-both-sides/src/index.css | 2 +- .../column-pinning-options/index.html | 4 +- .../column-pinning-options/src/index.css | 2 +- .../column-pinning-right-side/index.html | 4 +- .../column-pinning-right-side/src/index.css | 2 +- .../column-pinning-styles/index.html | 4 +- .../column-pinning-styles/src/index.css | 2 +- .../column-pinning/index.html | 4 +- .../column-pinning/src/index.css | 2 +- .../column-resize-styling/index.html | 4 +- .../src/SingersData.json | 28 +- .../column-resize-styling/src/index.css | 2 +- .../column-resizing/index.html | 4 +- .../column-resizing/src/SingersData.json | 28 +- .../column-resizing/src/index.css | 2 +- .../column-selection-group/index.html | 4 +- .../column-selection-group/src/index.css | 2 +- .../column-selection-mode/index.html | 4 +- .../src/SingersData.json | 28 +- .../column-selection-mode/src/index.css | 2 +- .../column-selection-styles/index.html | 4 +- .../src/SingersData.json | 28 +- .../column-selection-styles/src/index.css | 2 +- .../column-sorting-indicators/index.html | 4 +- .../src/SingersData.json | 28 +- .../column-sorting-indicators/src/index.css | 2 +- .../column-sorting-options/index.html | 4 +- .../src/SingersData.json | 28 +- .../column-sorting-options/src/index.css | 2 +- .../column-sorting-style/index.html | 4 +- .../column-sorting-style/src/SingersData.json | 28 +- .../column-sorting-style/src/index.css | 2 +- .../conditional-cell-style-1/index.html | 4 +- .../src/SingersData.json | 28 +- .../conditional-cell-style-1/src/index.css | 2 +- .../conditional-cell-style-2/index.html | 4 +- .../src/SingersData.json | 28 +- .../conditional-cell-style-2/src/index.css | 2 +- .../conditional-row-selectors/index.html | 4 +- .../src/SingersData.json | 28 +- .../conditional-row-selectors/src/index.css | 2 +- .../custom-filtering/index.html | 4 +- .../custom-filtering/src/SingersData.json | 28 +- .../custom-filtering/src/index.css | 2 +- .../custom-filtering/src/index.tsx | 4 +- .../data-exporting-indicator/index.html | 4 +- .../src/SingersData.ts | 28 +- .../data-exporting-indicator/src/index.css | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- .../data-summary-formatter/index.html | 4 +- .../src/SingersData.json | 28 +- .../data-summary-formatter/src/index.css | 2 +- .../data-summary-options-styling/index.html | 4 +- .../src/SingersData.json | 28 +- .../src/index.css | 2 +- .../data-summary-options/index.html | 4 +- .../data-summary-options/src/SingersData.json | 28 +- .../data-summary-options/src/index.css | 2 +- .../data-summary-template/index.html | 4 +- .../src/SingersData.json | 28 +- .../data-summary-template/src/index.css | 2 +- .../disabled-summaries/index.html | 4 +- .../disabled-summaries/src/SingersData.json | 28 +- .../editing-columns/index.html | 4 +- .../editing-columns/src/index.css | 2 +- .../editing-events/index.html | 4 +- .../editing-events/src/index.css | 2 +- .../editing-lifecycle/index.html | 4 +- .../editing-lifecycle/src/SingersData.json | 28 +- .../editing-lifecycle/src/index.css | 2 +- .../excel-exporting/index.html | 4 +- .../excel-exporting/src/index.css | 2 +- .../excel-style-filtering-sample-1/index.html | 4 +- .../src/SingersData.json | 28 +- .../src/index.css | 2 +- .../excel-style-filtering-sample-2/index.html | 4 +- .../src/SingersData.json | 28 +- .../src/index.css | 2 +- .../excel-style-filtering-sample-3/index.html | 4 +- .../src/SingersData.json | 28 +- .../src/index.css | 2 +- .../src/index.tsx | 2 +- .../excel-style-filtering-style/index.html | 4 +- .../src/SingersData.json | 28 +- .../excel-style-filtering-style/src/index.css | 2 +- .../filtering-options/index.html | 4 +- .../filtering-options/src/SingersData.json | 28 +- .../filtering-options/src/index.css | 2 +- .../filtering-style/index.html | 4 +- .../filtering-style/src/SingersData.json | 28 +- .../filtering-style/src/index.css | 2 +- .../hierarchical-grid-options/index.html | 4 +- .../src/SingersData.json | 28 +- .../hierarchical-grid-options/src/index.css | 2 +- .../hierarchical-grid-paging-style/index.html | 4 +- .../src/SingersData.json | 28 +- .../src/index.css | 2 +- .../hierarchical-grid-styling/index.html | 4 +- .../src/SingersData.json | 28 +- .../hierarchical-grid-styling/src/index.css | 2 +- .../layout-display-density/index.html | 4 +- .../layout-display-density/src/index.css | 2 +- .../multi-column-headers-export/index.html | 4 +- .../multi-column-headers-export/src/index.css | 2 +- .../multi-column-headers-overview/index.html | 4 +- .../src/index.css | 2 +- .../multi-column-headers-styling/index.html | 4 +- .../src/index.css | 2 +- .../multi-column-headers-template/index.html | 4 +- .../src/index.css | 2 +- .../hierarchical-grid/overview/index.html | 4 +- .../overview/src/SingersData.json | 28 +- .../hierarchical-grid/overview/src/index.css | 2 +- .../remote-paging-hgrid/index.html | 4 +- .../remote-paging-hgrid/src/index.css | 2 +- .../hierarchical-grid/row-adding/index.html | 4 +- .../row-adding/src/SingersData.json | 28 +- .../row-adding/src/index.css | 2 +- .../hierarchical-grid/row-classes/index.html | 4 +- .../row-classes/src/SingersData.json | 28 +- .../row-classes/src/index.css | 2 +- .../row-drag-base/index.html | 4 +- .../row-drag-base/src/SingersData.ts | 28 +- .../row-drag-base/src/index.css | 2 +- .../row-editing-options/index.html | 4 +- .../row-editing-options/src/SingersData.json | 28 +- .../row-editing-options/src/index.css | 2 +- .../row-editing-style/index.html | 4 +- .../row-editing-style/src/SingersData.json | 28 +- .../row-editing-style/src/index.css | 2 +- .../row-pinning-extra-column/index.html | 4 +- .../src/SingersData.json | 28 +- .../row-pinning-extra-column/src/index.css | 2 +- .../row-pinning-options/index.html | 4 +- .../row-pinning-options/src/SingersData.json | 28 +- .../row-pinning-options/src/index.css | 2 +- .../row-pinning-style/index.html | 4 +- .../row-pinning-style/src/SingersData.json | 28 +- .../row-pinning-style/src/index.css | 2 +- .../hierarchical-grid/row-reorder/index.html | 4 +- .../row-reorder/src/SingersData.json | 28 +- .../row-reorder/src/index.css | 2 +- .../row-selection-mode/index.html | 4 +- .../row-selection-mode/src/SingersData.json | 28 +- .../row-selection-mode/src/index.css | 2 +- .../row-selection-template-numbers/index.html | 4 +- .../src/SingersData.json | 28 +- .../src/index.css | 2 +- .../src/index.tsx | 2 +- .../hierarchical-grid/row-styles/index.html | 4 +- .../row-styles/src/SingersData.json | 28 +- .../row-styles/src/index.css | 2 +- .../state-persistence-about/index.html | 4 +- .../state-persistence-about/src/index.css | 2 +- .../state-persistence-main/index.html | 4 +- .../src/SingersData.json | 28 +- .../state-persistence-main/src/index.css | 2 +- .../toolbar-sample-3/index.html | 4 +- .../toolbar-sample-3/src/SingersData.json | 28 +- .../toolbar-sample-3/src/index.css | 2 +- .../toolbar-sample-4/index.html | 4 +- .../toolbar-sample-4/src/SingersData.ts | 28 +- .../toolbar-sample-4/src/index.css | 2 +- .../toolbar-style/index.html | 4 +- .../toolbar-style/src/SingersData.json | 28 +- .../toolbar-style/src/index.css | 2 +- samples/grids/list/add-list-items/index.html | 2 +- .../grids/list/list-item-content/index.html | 2 +- samples/grids/list/overview/index.html | 2 +- samples/grids/list/overview/src/index.tsx | 6 +- samples/grids/list/styling/index.html | 2 +- samples/grids/list/styling/src/index.tsx | 6 +- .../pivot-grid/aggregate-max-sales/index.html | 4 +- .../aggregate-max-sales/src/index.css | 2 +- .../aggregate-units-sold/index.html | 4 +- .../aggregate-units-sold/src/index.css | 2 +- .../grids/pivot-grid/data-selector/index.html | 4 +- .../pivot-grid/data-selector/src/index.css | 2 +- samples/grids/pivot-grid/features/index.html | 4 +- .../grids/pivot-grid/features/src/index.css | 2 +- .../state-persistence-about/index.html | 4 +- .../state-persistence-about/src/index.css | 2 +- .../state-persistence-main/index.html | 4 +- .../state-persistence-main/src/index.css | 2 +- .../grids/tree-grid/action-strip/index.html | 4 +- .../tree-grid/action-strip/src/index.css | 2 +- .../advanced-filtering-options/index.html | 4 +- .../advanced-filtering-options/src/index.css | 2 +- .../advanced-filtering-style/index.html | 4 +- .../advanced-filtering-style/src/index.css | 2 +- .../tree-grid/cell-editing-sample/index.html | 4 +- .../cell-editing-sample/src/index.css | 2 +- .../tree-grid/cell-editing-styling/index.html | 4 +- .../cell-editing-styling/src/index.css | 2 +- .../public/index.html | 4 +- .../cell-merge-custom-sample/src/index.css | 2 +- .../tree-grid/cell-merge/public/index.html | 4 +- .../grids/tree-grid/cell-merge/src/index.css | 2 +- .../tree-grid/cell-selection-mode/index.html | 4 +- .../cell-selection-mode/src/index.css | 2 +- .../tree-grid/cell-selection-style/index.html | 4 +- .../cell-selection-style/src/index.css | 2 +- .../tree-grid/clipboard-operations/index.html | 4 +- .../clipboard-operations/src/index.css | 2 +- .../tree-grid/column-auto-sizing/index.html | 4 +- .../column-auto-sizing/src/index.css | 2 +- .../column-collapsible-groups/index.html | 4 +- .../column-collapsible-groups/src/index.css | 2 +- .../tree-grid/column-data-types/index.html | 4 +- .../column-data-types/src/EmployeesData.ts | 36 +- .../tree-grid/column-data-types/src/index.css | 2 +- .../column-hiding-toolbar-style/index.html | 4 +- .../column-hiding-toolbar-style/src/index.css | 2 +- .../column-hiding-toolbar/index.html | 4 +- .../column-hiding-toolbar/src/index.css | 2 +- .../column-moving-options/index.html | 4 +- .../column-moving-options/src/index.css | 2 +- .../tree-grid/column-moving-styles/index.html | 4 +- .../column-moving-styles/src/index.css | 2 +- .../column-moving-styles/src/index.tsx | 14 +- .../public/index.html | 4 +- .../column-pinning-both-sides/src/index.css | 2 +- .../column-pinning-options/index.html | 4 +- .../column-pinning-options/src/index.css | 2 +- .../column-pinning-right-side/index.html | 4 +- .../column-pinning-right-side/src/index.css | 2 +- .../column-pinning-styles/index.html | 4 +- .../column-pinning-styles/src/index.css | 2 +- .../column-pinning-toolbar/index.html | 4 +- .../column-pinning-toolbar/src/index.css | 2 +- .../grids/tree-grid/column-pinning/index.html | 4 +- .../tree-grid/column-pinning/src/index.css | 2 +- .../column-resize-styling/index.html | 4 +- .../column-resize-styling/src/index.css | 2 +- .../tree-grid/column-resizing/index.html | 4 +- .../tree-grid/column-resizing/src/index.css | 2 +- .../column-selection-group/index.html | 4 +- .../column-selection-group/src/index.css | 2 +- .../column-selection-mode/index.html | 4 +- .../column-selection-mode/src/index.css | 2 +- .../column-selection-style/index.html | 4 +- .../column-selection-style/src/index.css | 2 +- .../column-selection-styles/index.html | 4 +- .../column-selection-styles/src/index.css | 2 +- .../column-sorting-indicators/index.html | 4 +- .../column-sorting-indicators/src/index.css | 2 +- .../column-sorting-options/index.html | 4 +- .../column-sorting-options/src/index.css | 2 +- .../tree-grid/column-sorting-style/index.html | 4 +- .../column-sorting-style/src/index.css | 2 +- .../conditional-cell-style-1/index.html | 4 +- .../conditional-cell-style-1/src/index.css | 2 +- .../conditional-cell-style-2/index.html | 4 +- .../conditional-cell-style-2/src/index.css | 2 +- .../conditional-row-selectors/index.html | 4 +- .../conditional-row-selectors/src/index.css | 2 +- .../data-exporting-indicator/index.html | 4 +- .../data-exporting-indicator/src/index.css | 2 +- .../grids/tree-grid/data-searching/index.html | 4 +- .../tree-grid/data-searching/src/index.css | 2 +- .../data-summary-children/index.html | 4 +- .../data-summary-children/src/index.css | 2 +- .../data-summary-formatter/index.html | 4 +- .../data-summary-formatter/src/index.css | 2 +- .../data-summary-options-styling/index.html | 4 +- .../src/index.css | 2 +- .../tree-grid/data-summary-options/index.html | 4 +- .../data-summary-options/src/index.css | 2 +- .../data-summary-template/index.html | 4 +- .../data-summary-template/src/index.css | 2 +- .../tree-grid/disabled-summaries/index.html | 4 +- .../tree-grid/editing-columns/index.html | 4 +- .../tree-grid/editing-columns/src/index.css | 2 +- .../grids/tree-grid/editing-events/index.html | 4 +- .../tree-grid/editing-events/src/index.css | 2 +- .../tree-grid/editing-lifecycle/index.html | 4 +- .../tree-grid/editing-lifecycle/src/index.css | 2 +- .../tree-grid/excel-exporting/index.html | 4 +- .../tree-grid/excel-exporting/src/index.css | 2 +- .../excel-style-filtering-sample-1/index.html | 4 +- .../src/index.css | 2 +- .../src/index.tsx | 4 +- .../excel-style-filtering-sample-2/index.html | 4 +- .../src/index.css | 2 +- .../src/index.tsx | 4 +- .../excel-style-filtering-sample-3/index.html | 4 +- .../src/index.css | 2 +- .../src/index.tsx | 6 +- .../excel-style-filtering-style/index.html | 4 +- .../excel-style-filtering-style/src/index.css | 2 +- .../excel-style-filtering-style/src/index.tsx | 4 +- .../tree-grid/filtering-options/index.html | 4 +- .../tree-grid/filtering-options/src/index.css | 2 +- .../tree-grid/filtering-style/index.html | 4 +- .../tree-grid/filtering-style/src/index.css | 2 +- .../keyboard-custom-navigation/index.html | 4 +- .../keyboard-custom-navigation/src/index.css | 2 +- .../layout-display-density/index.html | 4 +- .../layout-display-density/src/index.css | 2 +- .../multi-cell-selection-mode/index.html | 4 +- .../multi-cell-selection-mode/src/index.css | 2 +- .../multi-column-headers-export/index.html | 4 +- .../multi-column-headers-export/src/index.css | 2 +- .../multi-column-headers-overview/index.html | 4 +- .../src/index.css | 2 +- .../multi-column-headers-styling/index.html | 4 +- .../src/index.css | 2 +- .../multi-column-headers-template/index.html | 4 +- .../src/index.css | 2 +- .../tree-grid/overview-styling/index.html | 4 +- .../tree-grid/overview-styling/src/index.css | 2 +- samples/grids/tree-grid/overview/index.html | 4 +- .../grids/tree-grid/overview/src/index.css | 2 +- samples/grids/tree-grid/row-adding/index.html | 4 +- .../grids/tree-grid/row-adding/src/index.css | 2 +- .../grids/tree-grid/row-classes/index.html | 4 +- .../grids/tree-grid/row-classes/src/index.css | 2 +- .../grids/tree-grid/row-drag-base/index.html | 4 +- .../tree-grid/row-drag-base/src/index.css | 2 +- .../tree-grid/row-editing-options/index.html | 4 +- .../row-editing-options/src/index.css | 2 +- .../tree-grid/row-editing-style/index.html | 4 +- .../tree-grid/row-editing-style/src/index.css | 2 +- .../tree-grid/row-paging-basic/index.html | 4 +- .../tree-grid/row-paging-basic/src/index.css | 2 +- .../tree-grid/row-paging-options/index.html | 4 +- .../row-paging-options/src/index.css | 2 +- .../tree-grid/row-paging-style/index.html | 4 +- .../tree-grid/row-paging-style/src/index.css | 2 +- .../row-pinning-extra-column/index.html | 4 +- .../row-pinning-extra-column/src/index.css | 2 +- .../tree-grid/row-pinning-options/index.html | 4 +- .../row-pinning-options/src/index.css | 2 +- .../tree-grid/row-pinning-style/index.html | 4 +- .../tree-grid/row-pinning-style/src/index.css | 2 +- .../grids/tree-grid/row-reorder/index.html | 4 +- .../grids/tree-grid/row-reorder/src/index.css | 2 +- .../tree-grid/row-selection-mode/index.html | 4 +- .../row-selection-mode/src/index.css | 2 +- .../row-selection-template-excel/index.html | 4 +- .../src/index.css | 2 +- .../row-selection-template-numbers/index.html | 4 +- .../src/index.css | 2 +- .../src/index.tsx | 2 +- samples/grids/tree-grid/row-styles/index.html | 4 +- .../grids/tree-grid/row-styles/src/index.css | 2 +- .../state-persistence-about/index.html | 4 +- .../state-persistence-about/src/index.css | 2 +- .../state-persistence-main/index.html | 4 +- .../state-persistence-main/src/index.css | 2 +- .../tree-grid/toolbar-sample-1/index.html | 4 +- .../src/EmployeesFlatAvatars.ts | 36 +- .../tree-grid/toolbar-sample-1/src/index.css | 2 +- .../tree-grid/toolbar-sample-2/index.html | 4 +- .../src/EmployeesFlatAvatars.ts | 202 +--- .../tree-grid/toolbar-sample-2/src/index.css | 2 +- .../tree-grid/toolbar-sample-3/index.html | 4 +- .../src/EmployeesFlatAvatars.ts | 36 +- .../tree-grid/toolbar-sample-3/src/index.css | 2 +- .../tree-grid/toolbar-sample-4/index.html | 4 +- .../src/EmployeesFlatAvatars.ts | 202 +--- .../tree-grid/toolbar-sample-4/src/index.css | 2 +- .../grids/tree-grid/toolbar-style/index.html | 4 +- .../toolbar-style/src/EmployeesFlatAvatars.ts | 36 +- .../tree-grid/toolbar-style/src/index.css | 2 +- .../using-primary-foreign-keys/index.html | 4 +- .../using-primary-foreign-keys/src/index.css | 2 +- samples/grids/tree/basic-example/index.html | 2 +- samples/inputs/badge/outlined/index.html | 2 +- samples/inputs/badge/outlined/src/index.css | 2 +- samples/inputs/badge/shape/index.html | 2 +- samples/inputs/badge/shape/src/index.css | 2 +- samples/inputs/badge/variants/index.html | 2 +- samples/inputs/badge/variants/src/index.css | 2 +- .../inputs/button-group/alignment/index.html | 2 +- .../button-group/alignment/src/index.css | 2 +- .../inputs/button-group/overview/index.html | 2 +- .../button-group/overview/src/index.css | 2 +- .../inputs/button-group/selection/index.html | 2 +- .../button-group/selection/src/index.css | 2 +- samples/inputs/button-group/size/index.html | 2 +- .../inputs/button-group/size/src/index.css | 2 +- .../inputs/button-group/styling/index.html | 2 +- .../inputs/button-group/styling/src/index.css | 2 +- samples/inputs/button/contained/index.html | 2 +- samples/inputs/button/contained/src/index.css | 2 +- samples/inputs/button/download/index.html | 2 +- samples/inputs/button/download/src/index.css | 2 +- samples/inputs/button/fab/index.html | 2 +- samples/inputs/button/fab/src/index.css | 2 +- samples/inputs/button/flat/index.html | 2 +- samples/inputs/button/flat/src/index.css | 2 +- samples/inputs/button/outlined/index.html | 2 +- samples/inputs/button/outlined/src/index.css | 2 +- samples/inputs/button/overview/index.html | 2 +- samples/inputs/button/overview/src/index.css | 2 +- samples/inputs/button/size/index.html | 2 +- samples/inputs/button/size/src/index.css | 2 +- samples/inputs/button/styling/index.html | 2 +- samples/inputs/button/styling/src/index.css | 2 +- samples/inputs/checkbox/checking/index.html | 2 +- .../inputs/checkbox/checking/src/index.css | 2 +- samples/inputs/checkbox/disabled/index.html | 2 +- .../inputs/checkbox/disabled/src/index.css | 2 +- .../inputs/checkbox/indeterminate/index.html | 2 +- .../checkbox/indeterminate/src/index.css | 2 +- samples/inputs/checkbox/label/index.html | 2 +- samples/inputs/checkbox/label/src/index.css | 2 +- samples/inputs/checkbox/overview/index.html | 2 +- .../inputs/checkbox/overview/src/index.css | 2 +- samples/inputs/chip/multiple/index.html | 2 +- samples/inputs/chip/multiple/src/index.css | 2 +- samples/inputs/chip/overview/index.html | 2 +- samples/inputs/chip/overview/src/index.css | 2 +- samples/inputs/chip/size/index.html | 2 +- samples/inputs/chip/size/src/index.css | 2 +- samples/inputs/chip/styling/index.html | 2 +- samples/inputs/chip/styling/src/index.css | 2 +- samples/inputs/chip/variants/index.html | 2 +- samples/inputs/chip/variants/src/index.css | 2 +- .../dynamic/index.html | 2 +- .../dynamic/src/index.css | 2 +- .../indeterminate/index.html | 2 +- .../indeterminate/src/index.css | 2 +- .../simple/index.html | 2 +- .../simple/src/index.css | 2 +- .../styling/index.html | 2 +- .../styling/src/index.css | 2 +- .../inputs/color-editor/overview/index.html | 4 +- .../color-editor/overview/src/index.css | 2 +- samples/inputs/combo/features/index.html | 2 +- samples/inputs/combo/features/src/index.css | 2 +- samples/inputs/combo/overview/index.html | 2 +- samples/inputs/combo/overview/src/index.css | 2 +- samples/inputs/combo/selection/index.html | 2 +- samples/inputs/combo/selection/src/index.css | 2 +- samples/inputs/combo/simplified/index.html | 2 +- samples/inputs/combo/simplified/src/index.css | 2 +- samples/inputs/combo/styling/index.html | 2 +- samples/inputs/combo/styling/src/index.css | 2 +- samples/inputs/combo/templates/index.html | 2 +- samples/inputs/combo/templates/src/index.css | 2 +- .../input-format-display-format/index.html | 2 +- .../date-time-input/min-max-value/index.html | 2 +- .../date-time-input/overview/index.html | 2 +- .../date-time-input/step-up-down/index.html | 2 +- samples/inputs/dropdown/group/index.html | 2 +- samples/inputs/dropdown/group/src/index.css | 2 +- samples/inputs/dropdown/header/index.html | 2 +- samples/inputs/dropdown/header/src/index.css | 2 +- samples/inputs/dropdown/item/index.html | 2 +- samples/inputs/dropdown/item/src/index.css | 2 +- samples/inputs/dropdown/overview/index.html | 2 +- .../inputs/dropdown/overview/src/index.css | 2 +- samples/inputs/dropdown/position/index.html | 2 +- .../inputs/dropdown/position/src/index.css | 2 +- samples/inputs/dropdown/styling/index.html | 2 +- samples/inputs/dropdown/styling/src/index.css | 2 +- samples/inputs/dropdown/target/index.html | 2 +- samples/inputs/dropdown/target/src/index.css | 2 +- samples/inputs/icon-button/size/index.html | 2 +- samples/inputs/icon-button/size/src/index.css | 2 +- samples/inputs/icon-button/styling/index.html | 2 +- .../inputs/icon-button/styling/src/index.css | 2 +- samples/inputs/icon-button/variant/index.html | 2 +- .../inputs/icon-button/variant/src/index.css | 2 +- samples/inputs/input/helper-text/index.html | 2 +- .../inputs/input/helper-text/src/index.css | 2 +- samples/inputs/input/overview/index.html | 2 +- samples/inputs/input/overview/src/index.css | 2 +- samples/inputs/input/prefix-suffix/index.html | 2 +- .../inputs/input/prefix-suffix/src/index.css | 2 +- samples/inputs/input/size/index.html | 2 +- samples/inputs/input/size/src/index.css | 2 +- samples/inputs/input/styling/index.html | 2 +- samples/inputs/input/styling/src/index.css | 2 +- .../dynamic/index.html | 2 +- .../dynamic/src/index.css | 2 +- .../simple/index.html | 2 +- .../simple/src/index.css | 2 +- .../striped/index.html | 2 +- .../striped/src/index.css | 2 +- .../styling/index.html | 2 +- .../styling/src/index.css | 2 +- .../types/index.html | 2 +- .../types/src/index.css | 2 +- .../mask-input/applying-mask/index.html | 2 +- .../mask-input/applying-mask/src/index.css | 2 +- samples/inputs/mask-input/overview/index.html | 2 +- .../inputs/mask-input/overview/src/index.css | 2 +- .../inputs/mask-input/value-modes/index.html | 2 +- .../mask-input/value-modes/src/index.css | 2 +- samples/inputs/radio/alignment/index.html | 2 +- samples/inputs/radio/alignment/src/index.css | 2 +- samples/inputs/radio/disabled/index.html | 2 +- samples/inputs/radio/disabled/src/index.css | 2 +- samples/inputs/radio/group/index.html | 2 +- samples/inputs/radio/group/src/index.css | 2 +- samples/inputs/radio/invalid/index.html | 2 +- samples/inputs/radio/invalid/src/index.css | 2 +- samples/inputs/radio/label/index.html | 2 +- samples/inputs/radio/label/src/index.css | 2 +- samples/inputs/radio/styling/index.html | 2 +- samples/inputs/radio/styling/src/index.css | 2 +- samples/inputs/rating/basic/index.html | 2 +- samples/inputs/rating/basic/src/index.css | 2 +- samples/inputs/rating/custom/index.html | 2 +- samples/inputs/rating/custom/src/index.css | 2 +- samples/inputs/rating/empty/index.html | 2 +- samples/inputs/rating/empty/src/index.css | 2 +- .../inputs/rating/single-selection/index.html | 2 +- .../rating/single-selection/src/index.css | 2 +- samples/inputs/rating/styling/index.html | 2 +- samples/inputs/rating/styling/src/index.css | 2 +- samples/inputs/ripple/button/index.html | 2 +- samples/inputs/ripple/button/src/index.css | 2 +- samples/inputs/ripple/color/index.html | 2 +- samples/inputs/ripple/color/src/index.css | 2 +- samples/inputs/select/group/index.html | 2 +- samples/inputs/select/group/src/index.css | 2 +- samples/inputs/select/header/index.html | 2 +- samples/inputs/select/header/src/index.css | 2 +- samples/inputs/select/item/index.html | 2 +- samples/inputs/select/item/src/index.css | 2 +- samples/inputs/select/overview/index.html | 2 +- samples/inputs/select/overview/src/index.css | 2 +- samples/inputs/select/styling/index.html | 2 +- samples/inputs/select/styling/src/index.css | 2 +- samples/inputs/slider/constraints/index.html | 2 +- .../inputs/slider/constraints/src/index.css | 2 +- samples/inputs/slider/disabled/index.html | 2 +- samples/inputs/slider/disabled/src/index.css | 2 +- samples/inputs/slider/discrete/index.html | 2 +- samples/inputs/slider/discrete/src/index.css | 2 +- samples/inputs/slider/labels/index.html | 2 +- samples/inputs/slider/labels/src/index.css | 2 +- samples/inputs/slider/overview/index.html | 2 +- samples/inputs/slider/overview/src/index.css | 2 +- samples/inputs/slider/styling/index.html | 2 +- samples/inputs/slider/styling/src/index.css | 2 +- samples/inputs/slider/tick-labels/index.html | 2 +- .../inputs/slider/tick-labels/src/index.css | 2 +- samples/inputs/slider/ticks/index.html | 2 +- samples/inputs/slider/ticks/src/index.css | 2 +- samples/inputs/slider/value-format/index.html | 2 +- .../inputs/slider/value-format/src/index.css | 2 +- samples/inputs/slider/value/index.html | 2 +- samples/inputs/slider/value/src/index.css | 2 +- samples/inputs/switches/checking/index.html | 2 +- .../inputs/switches/checking/src/index.css | 2 +- samples/inputs/switches/disabled/index.html | 2 +- .../inputs/switches/disabled/src/index.css | 2 +- samples/inputs/switches/label/index.html | 2 +- samples/inputs/switches/label/src/index.css | 2 +- samples/inputs/switches/overview/index.html | 2 +- .../inputs/switches/overview/src/index.css | 2 +- .../textarea/form-integration/index.html | 2 +- .../textarea/form-integration/src/index.css | 2 +- samples/inputs/textarea/overview/index.html | 2 +- .../inputs/textarea/overview/src/index.css | 2 +- samples/inputs/textarea/resize/index.html | 2 +- samples/inputs/textarea/resize/src/index.css | 2 +- samples/inputs/textarea/slots/index.html | 2 +- samples/inputs/textarea/slots/src/index.css | 2 +- samples/inputs/textarea/styling/index.html | 2 +- samples/inputs/textarea/styling/src/index.css | 2 +- samples/inputs/tooltip/advanced/index.html | 2 +- samples/inputs/tooltip/advanced/src/index.css | 2 +- samples/inputs/tooltip/advanced/src/index.tsx | 6 +- samples/inputs/tooltip/overview/index.html | 2 +- samples/inputs/tooltip/overview/src/index.css | 2 +- samples/inputs/tooltip/overview/src/index.tsx | 2 +- samples/inputs/tooltip/placement/index.html | 2 +- .../inputs/tooltip/placement/src/index.css | 2 +- samples/inputs/tooltip/rich/index.html | 2 +- samples/inputs/tooltip/rich/src/index.css | 4 +- samples/inputs/tooltip/rich/src/index.tsx | 2 +- samples/inputs/tooltip/styling/index.html | 2 +- samples/inputs/tooltip/styling/src/index.css | 2 +- samples/inputs/tooltip/styling/src/index.tsx | 2 +- samples/inputs/tooltip/triggers/index.html | 2 +- samples/inputs/tooltip/triggers/src/index.css | 2 +- samples/interactions/chat/features/index.html | 2 +- samples/interactions/chat/overview/index.html | 2 +- .../interactions/chat/overview/src/index.tsx | 2 +- samples/interactions/chat/styling/index.html | 2 +- .../interactions/chat/styling/src/index.tsx | 2 +- .../accordion/customization/index.html | 2 +- .../accordion/nested-scenario/index.html | 2 +- samples/layouts/accordion/overview/index.html | 2 +- samples/layouts/avatar/icon/index.html | 2 +- samples/layouts/avatar/image/index.html | 2 +- samples/layouts/avatar/image/src/index.tsx | 2 +- samples/layouts/avatar/initials/index.html | 2 +- samples/layouts/avatar/shape/index.html | 2 +- samples/layouts/avatar/size/index.html | 2 +- samples/layouts/avatar/styling/index.html | 2 +- samples/layouts/avatar/styling/src/index.tsx | 2 +- samples/layouts/card/horizontal/index.html | 2 +- samples/layouts/card/horizontal/src/index.tsx | 2 +- samples/layouts/card/overview/index.html | 2 +- .../layouts/card/semi-horizontal/index.html | 2 +- .../card/semi-horizontal/src/index.tsx | 4 +- samples/layouts/card/styling/index.html | 2 +- .../layouts/carousel/animations/index.html | 2 +- .../layouts/carousel/animations/src/index.css | 2 +- .../layouts/carousel/animations/src/index.tsx | 6 +- .../layouts/carousel/components/index.html | 2 +- .../layouts/carousel/components/src/index.css | 2 +- .../layouts/carousel/components/src/index.tsx | 4 +- samples/layouts/carousel/overview/index.html | 2 +- .../layouts/carousel/overview/src/index.css | 2 +- .../layouts/carousel/overview/src/index.tsx | 6 +- samples/layouts/carousel/thumbnail/index.html | 2 +- .../layouts/carousel/thumbnail/src/index.css | 2 +- .../layouts/carousel/thumbnail/src/index.tsx | 10 +- samples/layouts/divider/dashed/index.html | 2 +- samples/layouts/divider/middle/index.html | 2 +- samples/layouts/divider/overview/index.html | 2 +- samples/layouts/divider/select/index.html | 2 +- samples/layouts/divider/vertical/index.html | 2 +- .../dock-manager/customize-buttons/index.html | 2 +- .../dock-manager/embedding-frames/index.html | 2 +- .../layouts/dock-manager/overview/index.html | 2 +- .../layouts/dock-manager/styling/index.html | 2 +- .../dock-manager/styling/src/index.tsx | 48 +- .../dock-manager/updating-panes/index.html | 2 +- .../src/DockManagerSharedData.ts | 64 +- .../component-customization/index.html | 2 +- .../properties-and-events/index.html | 2 +- .../expansion-panel/styling/index.html | 2 +- .../layouts/expansion-panel/usage/index.html | 2 +- samples/layouts/icon/sizing/index.html | 2 +- samples/layouts/icon/styling/index.html | 2 +- samples/layouts/stepper/animations/index.html | 2 +- .../layouts/stepper/animations/src/index.css | 2 +- samples/layouts/stepper/linear/index.html | 2 +- samples/layouts/stepper/linear/src/index.css | 2 +- .../layouts/stepper/orientation/index.html | 2 +- .../layouts/stepper/orientation/src/index.css | 2 +- samples/layouts/stepper/steptypes/index.html | 2 +- .../layouts/stepper/steptypes/src/index.css | 2 +- samples/layouts/stepper/styling/index.html | 2 +- samples/layouts/stepper/styling/src/index.css | 2 +- samples/layouts/tabs/alignment/index.html | 2 +- samples/layouts/tabs/alignment/src/index.css | 2 +- samples/layouts/tabs/overview/index.html | 2 +- samples/layouts/tabs/overview/src/index.css | 2 +- samples/layouts/tabs/prefix-suffix/index.html | 2 +- .../layouts/tabs/prefix-suffix/src/index.css | 2 +- samples/layouts/tabs/scrolling/index.html | 2 +- samples/layouts/tabs/scrolling/src/index.css | 2 +- .../layouts/tile-manager/actions/index.html | 2 +- .../tile-manager/actions/src/index.css | 2 +- .../layouts/tile-manager/columngap/index.html | 2 +- .../tile-manager/columngap/src/index.css | 2 +- .../layouts/tile-manager/dragndrop/index.html | 2 +- .../tile-manager/dragndrop/src/index.css | 2 +- .../layouts/tile-manager/layout/index.html | 2 +- .../layouts/tile-manager/layout/src/index.css | 2 +- .../layouts/tile-manager/overview/index.html | 2 +- .../tile-manager/overview/src/index.css | 2 +- .../layouts/tile-manager/resize/index.html | 2 +- .../layouts/tile-manager/resize/src/index.css | 2 +- .../layouts/tile-manager/styling/index.html | 2 +- .../tile-manager/styling/src/index.css | 2 +- .../maps/geo-map/binding-data-csv/index.html | 2 +- .../binding-data-json-points/index.html | 2 +- .../binding-data-json-shapes/index.html | 2 +- .../geo-map/binding-data-model/index.html | 2 +- .../binding-multiple-shapes/index.html | 2 +- .../binding-multiple-sources/index.html | 2 +- .../src/WorldLocations.ts | 14 +- .../geo-map/binding-shp-points/index.html | 2 +- .../geo-map/binding-shp-polygons/index.html | 2 +- .../geo-map/binding-shp-polylines/index.html | 2 +- .../maps/geo-map/custom-tooltips/index.html | 2 +- .../geo-map/custom-tooltips/src/index.tsx | 2 +- .../geo-map/display-all-imagery/index.html | 2 +- .../geo-map/display-all-imagery/src/index.tsx | 30 +- .../geo-map/display-azure-imagery/index.html | 2 +- .../display-azure-imagery/public/index.html | 2 +- .../display-azure-imagery/src/index.tsx | 28 +- .../geo-map/display-bing-imagery/index.html | 2 +- .../geo-map/display-custom-imagery/index.html | 2 +- .../geo-map/display-esri-imagery/index.html | 2 +- .../geo-map/display-heat-imagery/index.html | 2 +- .../geo-map/display-osm-imagery/index.html | 2 +- .../maps/geo-map/marker-layouts/index.html | 2 +- .../marker-layouts/src/WorldLocations.ts | 14 +- .../maps/geo-map/marker-template/index.html | 2 +- .../marker-template/src/WorldLocations.ts | 14 +- samples/maps/geo-map/marker-type/index.html | 2 +- .../geo-map/marker-type/src/WorldLocations.ts | 14 +- samples/maps/geo-map/nav-grid/index.html | 2 +- .../navigation-only-panning/index.html | 2 +- samples/maps/geo-map/navigation/index.html | 2 +- samples/maps/geo-map/overview/index.html | 2 +- .../maps/geo-map/shape-selection/index.html | 2 +- samples/maps/geo-map/shape-styling/index.html | 2 +- .../maps/geo-map/synchronization/index.html | 2 +- .../geo-map/triangulating-data/index.html | 2 +- .../type-scatter-area-series/index.html | 2 +- .../type-scatter-bubble-series/index.html | 2 +- .../src/WorldLocations.ts | 14 +- .../type-scatter-contour-series/index.html | 2 +- .../type-scatter-density-series/index.html | 2 +- .../type-scatter-symbol-series/index.html | 2 +- .../src/WorldLocations.ts | 14 +- .../type-shape-polygon-series/index.html | 2 +- .../type-shape-polyline-series/index.html | 2 +- samples/menus/nav-bar/overview/index.html | 2 +- samples/menus/nav-bar/styling/index.html | 2 +- .../nav-drawer/add-drawer-items/index.html | 2 +- samples/menus/nav-drawer/add-mini/index.html | 2 +- .../add-positions-navbar/index.html | 2 +- samples/menus/nav-drawer/styling/index.html | 2 +- .../banner/banner-advanced-sample/index.html | 2 +- .../banner-advanced-sample/src/index.css | 2 +- .../banner-advanced-sample/src/index.tsx | 4 +- .../banner/banner-sample-1/index.html | 2 +- .../banner/banner-sample-1/src/index.css | 2 +- .../banner/banner-sample-1/src/index.tsx | 4 +- .../banner/banner-sample-2/index.html | 2 +- .../banner/banner-sample-2/src/index.css | 2 +- .../banner/banner-sample-2/src/index.tsx | 4 +- .../banner/banner-styling/index.html | 2 +- .../banner/banner-styling/src/index.css | 2 +- .../banner/banner-styling/src/index.tsx | 4 +- .../dialog/closing-variations/index.html | 2 +- .../dialog/closing-variations/src/index.css | 2 +- samples/notifications/dialog/form/index.html | 2 +- .../notifications/dialog/form/src/index.css | 2 +- .../notifications/dialog/overview/index.html | 2 +- .../dialog/overview/src/index.css | 2 +- .../notifications/dialog/styling/index.html | 2 +- .../dialog/styling/src/index.css | 2 +- .../snackbar/action-text/index.html | 2 +- .../snackbar/display-time/index.html | 2 +- .../snackbar/overview/index.html | 2 +- .../notifications/snackbar/styling/index.html | 2 +- .../notifications/toast/overview/index.html | 2 +- .../notifications/toast/properties/index.html | 2 +- .../notifications/toast/styling/index.html | 2 +- .../calendar/disabled-dates/index.html | 2 +- .../scheduling/calendar/formatting/index.html | 2 +- samples/scheduling/calendar/header/index.html | 2 +- .../calendar/multiple-months/index.html | 2 +- .../calendar/multiple-selection/index.html | 2 +- .../scheduling/calendar/overview/index.html | 2 +- .../calendar/range-selection/index.html | 2 +- samples/scheduling/calendar/size/index.html | 2 +- .../calendar/special-dates/index.html | 2 +- .../scheduling/calendar/styling/index.html | 2 +- .../calendar/week-numbers/index.html | 2 +- .../date-picker/dialog-mode/index.html | 2 +- .../scheduling/date-picker/form/index.html | 2 +- .../scheduling/date-picker/format/index.html | 2 +- .../date-picker/overview/index.html | 2 +- .../scheduling/date-picker/styling/index.html | 2 +- .../custom-ranges/index.html | 2 +- .../date-range-picker/form/index.html | 2 +- .../date-range-picker/overview/index.html | 2 +- .../date-range-picker/slots/index.html | 2 +- .../date-range-picker/styling/index.html | 2 +- 1696 files changed, 5854 insertions(+), 6244 deletions(-) diff --git a/browser/index.html b/browser/index.html index 5bd6ba3b09..64cfaa42f3 100644 --- a/browser/index.html +++ b/browser/index.html @@ -24,8 +24,8 @@ user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/ --> Samples Browser | IgniteUI for React | Infragistics - - + + diff --git a/browser/templates/sample/ReadMe-dev.md b/browser/templates/sample/ReadMe-dev.md index 898d00958b..778bc8aa4c 100644 --- a/browser/templates/sample/ReadMe-dev.md +++ b/browser/templates/sample/ReadMe-dev.md @@ -15,7 +15,7 @@ You can preview example of this {PlatformName} application on CodeSandbox by cli - Edit on CodeSandbox + Edit on CodeSandbox @@ -75,11 +75,11 @@ href="https://codesandbox.io/s/github/IgniteUI/igniteui-react-examples/tree/mast --> diff --git a/browser/templates/sample/index.html b/browser/templates/sample/index.html index 1a31b7d4fa..401f62bcab 100644 --- a/browser/templates/sample/index.html +++ b/browser/templates/sample/index.html @@ -4,10 +4,10 @@ SampleName | Infragistics - + + + +This folder contains implementation of React application with example of Data Exporting Indicator feature using [Tree Grid](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-react-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-react-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +``` +git clone https://github.com/IgniteUI/igniteui-react-examples.git +git checkout master +cd ./igniteui-react-examples +cd ./samples/grids/tree-grid/data-exporting-indicator +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for React** components, check out the [React documentation](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html). diff --git a/samples/grids/grid/data-exporting-indicator/index.html b/samples/grids/grid/data-exporting-indicator/index.html new file mode 100644 index 0000000000..7ccd41dace --- /dev/null +++ b/samples/grids/grid/data-exporting-indicator/index.html @@ -0,0 +1,12 @@ + + + + Sample | Ignite UI | React | infragistics + + + + +
+ + + \ No newline at end of file diff --git a/samples/grids/grid/data-exporting-indicator/package.json b/samples/grids/grid/data-exporting-indicator/package.json new file mode 100644 index 0000000000..01bc9f166d --- /dev/null +++ b/samples/grids/grid/data-exporting-indicator/package.json @@ -0,0 +1,52 @@ +{ + "name": "example-ignite-ui-react", + "description": "This project provides example of using Ignite UI for React components", + "author": "Infragistics", + "version": "1.4.0", + "license": "", + "homepage": ".", + "private": true, + "scripts": { + "start": "vite --port 4200", + "build": "tsc && node --max-old-space-size=4096 node_modules/vite/bin/vite build", + "preview": "vite preview", + "test": "vitest", + "lint": "eslint ./src/**/*.{ts,tsx}" + }, + "dependencies": { + "igniteui-dockmanager": "^1.17.0", + "igniteui-react": "^19.4.0", + "igniteui-react-core": "19.3.1", + "igniteui-react-datasources": "19.3.1", + "igniteui-react-grids": "^19.4.0", + "igniteui-react-inputs": "19.3.1", + "igniteui-react-layouts": "19.3.1", + "igniteui-webcomponents": "^6.3.0", + "lit-html": "^3.2.0", + "react": "^19.2.0", + "react-dom": "^19.2.0", + "tslib": "^2.4.0" + }, + "devDependencies": { + "@types/jest": "^29.2.0", + "@types/node": "^24.7.1", + "@types/react": "^18.0.24", + "@types/react-dom": "^18.0.8", + "@vitejs/plugin-react": "^5.0.4", + "@vitest/browser": "^3.2.4", + "eslint": "^8.33.0", + "eslint-config-react": "^1.1.7", + "eslint-plugin-react": "^7.20.0", + "typescript": "^4.8.4", + "vite": "^7.1.9", + "vitest": "^3.2.4", + "vitest-canvas-mock": "^0.3.3", + "worker-loader": "^3.0.8" + }, + "browserslist": [ + ">0.2%", + "not dead", + "not ie <= 11", + "not op_mini all" + ] +} diff --git a/samples/grids/grid/data-exporting-indicator/sandbox.config.json b/samples/grids/grid/data-exporting-indicator/sandbox.config.json new file mode 100644 index 0000000000..07f53508eb --- /dev/null +++ b/samples/grids/grid/data-exporting-indicator/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/grids/grid/data-exporting-indicator/src/AthletesData.ts b/samples/grids/grid/data-exporting-indicator/src/AthletesData.ts new file mode 100644 index 0000000000..b438d8f200 --- /dev/null +++ b/samples/grids/grid/data-exporting-indicator/src/AthletesData.ts @@ -0,0 +1,214 @@ +export class AthletesDataItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public Id: number; + public Avatar: string; + public Position: string; + public Name: string; + public AthleteNumber: number; + public BeatsPerMinute: number; + public TopSpeed: number; + public Registered: string; + public TrackProgress: number; + public CountryFlag: string; + public CountryName: string; + +} +export class AthletesData extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new AthletesDataItem({ Id: 100, Avatar: `https://dl.infragistics.com/x/img/people/women/20.png`, Position: `current`, Name: `Alexis Walker`, AthleteNumber: 43183, BeatsPerMinute: 103, TopSpeed: 5.8, Registered: `2017-08-07T10:35:06-03:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/GH.png`, CountryName: `Ghana` }), + new AthletesDataItem({ Id: 101, Avatar: `https://dl.infragistics.com/x/img/people/women/31.png`, Position: `down`, Name: `Lavínia Silva`, AthleteNumber: 33994, BeatsPerMinute: 93, TopSpeed: 5.6, Registered: `2017-03-22T08:55:46-02:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/NO.png`, CountryName: `Norway` }), + new AthletesDataItem({ Id: 105, Avatar: `https://dl.infragistics.com/x/img/people/men/13.png`, Position: `down`, Name: `Samu Hokkanen`, AthleteNumber: 22469, BeatsPerMinute: 106, TopSpeed: 5.5, Registered: `2017-06-29T04:58:27-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/AZ.png`, CountryName: `Azerbaijan` }), + new AthletesDataItem({ Id: 107, Avatar: `https://dl.infragistics.com/x/img/people/women/12.png`, Position: `down`, Name: `Megan Webb`, AthleteNumber: 30713, BeatsPerMinute: 93, TopSpeed: 5.6, Registered: `2017-08-20T09:26:51-03:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/MT.png`, CountryName: `Malta` }), + new AthletesDataItem({ Id: 107, Avatar: `https://dl.infragistics.com/x/img/people/men/33.png`, Position: `up`, Name: `Pedro Marquez`, AthleteNumber: 16169, BeatsPerMinute: 97, TopSpeed: 5.4, Registered: `2017-11-11T05:14:31-02:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/MW.png`, CountryName: `Malawi` }), + new AthletesDataItem({ Id: 108, Avatar: `https://dl.infragistics.com/x/img/people/men/31.png`, Position: `up`, Name: `Noah Bergeron`, AthleteNumber: 35139, BeatsPerMinute: 110, TopSpeed: 5.6, Registered: `2017-06-23T01:21:21-03:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/CI.png`, CountryName: `Cote DIvoire` }), + new AthletesDataItem({ Id: 110, Avatar: `https://dl.infragistics.com/x/img/people/women/15.png`, Position: `current`, Name: `Annabell Brand`, AthleteNumber: 39233, BeatsPerMinute: 93, TopSpeed: 5.7, Registered: `2017-03-01T12:21:24-02:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/PG.png`, CountryName: `Papua New Guinea` }), + new AthletesDataItem({ Id: 110, Avatar: `https://dl.infragistics.com/x/img/people/women/13.png`, Position: `current`, Name: `Özsu Keçeci`, AthleteNumber: 29403, BeatsPerMinute: 106, TopSpeed: 4.2, Registered: `2017-01-19T11:34:13-02:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/LV.png`, CountryName: `Latvia` }), + new AthletesDataItem({ Id: 110, Avatar: `https://dl.infragistics.com/x/img/people/women/26.png`, Position: `down`, Name: `Emilie Morin`, AthleteNumber: 26164, BeatsPerMinute: 98, TopSpeed: 4.9, Registered: `2017-02-01T04:18:19-02:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/KG.png`, CountryName: `Kyrgyzstan` }), + new AthletesDataItem({ Id: 111, Avatar: `https://dl.infragistics.com/x/img/people/men/23.png`, Position: `up`, Name: `Connor Green`, AthleteNumber: 44716, BeatsPerMinute: 95, TopSpeed: 4.4, Registered: `2017-06-30T11:23:25-03:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/BB.png`, CountryName: `Barbados` }), + new AthletesDataItem({ Id: 112, Avatar: `https://dl.infragistics.com/x/img/people/women/33.png`, Position: `down`, Name: `Karen Shaw`, AthleteNumber: 31048, BeatsPerMinute: 107, TopSpeed: 5.7, Registered: `2017-05-15T09:25:03-03:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/EC.png`, CountryName: `Ecuador` }), + new AthletesDataItem({ Id: 113, Avatar: `https://dl.infragistics.com/x/img/people/women/36.png`, Position: `current`, Name: `Marialba Nascimento`, AthleteNumber: 47061, BeatsPerMinute: 108, TopSpeed: 5.2, Registered: `2017-09-19T05:47:21-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/TN.png`, CountryName: `Tunisia` }), + new AthletesDataItem({ Id: 113, Avatar: `https://dl.infragistics.com/x/img/people/men/37.png`, Position: `current`, Name: `Nick Naumann`, AthleteNumber: 25566, BeatsPerMinute: 109, TopSpeed: 5.9, Registered: `2017-07-12T09:01:11-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/SZ.png`, CountryName: `Swaziland` }), + new AthletesDataItem({ Id: 116, Avatar: `https://dl.infragistics.com/x/img/people/women/11.png`, Position: `down`, Name: `Sevcan Kollen`, AthleteNumber: 13728, BeatsPerMinute: 104, TopSpeed: 5.3, Registered: `2017-09-08T08:29:08-03:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/GT.png`, CountryName: `Guatemala` }), + new AthletesDataItem({ Id: 121, Avatar: `https://dl.infragistics.com/x/img/people/men/28.png`, Position: `current`, Name: `Väinö Salmi`, AthleteNumber: 29839, BeatsPerMinute: 107, TopSpeed: 5.5, Registered: `2017-10-21T05:57:02-03:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/GW.png`, CountryName: `Guinea-Bissau` }), + new AthletesDataItem({ Id: 121, Avatar: `https://dl.infragistics.com/x/img/people/men/31.png`, Position: `down`, Name: `Ivan Ivanov`, AthleteNumber: 11054, BeatsPerMinute: 108, TopSpeed: 5.7, Registered: `2017-04-18T08:03:01-03:00`, TrackProgress: 75, CountryFlag: `https://dl.infragistics.com/x/img/flags/BG.png`, CountryName: `Bulgaria` }), + new AthletesDataItem({ Id: 121, Avatar: `https://dl.infragistics.com/x/img/people/men/25.png`, Position: `current`, Name: `Maurice Lambert`, AthleteNumber: 17443, BeatsPerMinute: 96, TopSpeed: 5.6, Registered: `2017-06-05T08:19:32-03:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/BD.png`, CountryName: `Bangladesh` }), + new AthletesDataItem({ Id: 122, Avatar: `https://dl.infragistics.com/x/img/people/women/31.png`, Position: `down`, Name: `Natalie Conrad`, AthleteNumber: 42602, BeatsPerMinute: 108, TopSpeed: 6, Registered: `2017-03-18T06:35:44-02:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/TT.png`, CountryName: `Trinidad and Tobago` }), + new AthletesDataItem({ Id: 122, Avatar: `https://dl.infragistics.com/x/img/people/men/37.png`, Position: `down`, Name: `Jack Jean-baptiste`, AthleteNumber: 40427, BeatsPerMinute: 110, TopSpeed: 4.3, Registered: `2017-11-09T08:50:06-02:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/CM.png`, CountryName: `Cameroon` }), + new AthletesDataItem({ Id: 123, Avatar: `https://dl.infragistics.com/x/img/people/women/19.png`, Position: `down`, Name: `Flora Perez`, AthleteNumber: 23907, BeatsPerMinute: 102, TopSpeed: 5.8, Registered: `2017-04-12T04:16:56-03:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/PL.png`, CountryName: `Poland` }), + new AthletesDataItem({ Id: 123, Avatar: `https://dl.infragistics.com/x/img/people/women/12.png`, Position: `up`, Name: `آنیتا كامياران`, AthleteNumber: 18980, BeatsPerMinute: 90, TopSpeed: 4.5, Registered: `2017-07-21T06:42:59-03:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/LB.png`, CountryName: `Lebanon` }), + new AthletesDataItem({ Id: 123, Avatar: `https://dl.infragistics.com/x/img/people/men/31.png`, Position: `current`, Name: `Eeli Makinen`, AthleteNumber: 45296, BeatsPerMinute: 106, TopSpeed: 5.2, Registered: `2017-01-06T09:58:02-02:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/FI.png`, CountryName: `Finland` }), + new AthletesDataItem({ Id: 124, Avatar: `https://dl.infragistics.com/x/img/people/men/18.png`, Position: `down`, Name: `Mathieu Mathieu`, AthleteNumber: 10555, BeatsPerMinute: 101, TopSpeed: 5.2, Registered: `2017-01-05T07:28:11-02:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/UZ.png`, CountryName: `Uzbekistan` }), + new AthletesDataItem({ Id: 124, Avatar: `https://dl.infragistics.com/x/img/people/women/19.png`, Position: `current`, Name: `Marie Poulsen`, AthleteNumber: 44113, BeatsPerMinute: 109, TopSpeed: 4.7, Registered: `2017-04-15T10:25:21-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/MA.png`, CountryName: `Morocco` }), + new AthletesDataItem({ Id: 125, Avatar: `https://dl.infragistics.com/x/img/people/women/16.png`, Position: `current`, Name: `Altiva Alves`, AthleteNumber: 31850, BeatsPerMinute: 106, TopSpeed: 5.1, Registered: `2017-11-09T02:43:54-02:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/KM.png`, CountryName: `Comoros` }), + new AthletesDataItem({ Id: 127, Avatar: `https://dl.infragistics.com/x/img/people/men/32.png`, Position: `down`, Name: `Gerardo Soto`, AthleteNumber: 22958, BeatsPerMinute: 90, TopSpeed: 5, Registered: `2017-06-04T12:52:03-03:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/CO.png`, CountryName: `Colombia` }), + new AthletesDataItem({ Id: 128, Avatar: `https://dl.infragistics.com/x/img/people/women/32.png`, Position: `up`, Name: `Sophie Lewis`, AthleteNumber: 46222, BeatsPerMinute: 106, TopSpeed: 4.4, Registered: `2017-02-20T09:42:07-02:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/MC.png`, CountryName: `Monaco` }), + new AthletesDataItem({ Id: 129, Avatar: `https://dl.infragistics.com/x/img/people/women/34.png`, Position: `up`, Name: `Ella Hansen`, AthleteNumber: 27075, BeatsPerMinute: 101, TopSpeed: 5.1, Registered: `2017-01-05T10:12:42-02:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/LK.png`, CountryName: `Sri Lanka` }), + new AthletesDataItem({ Id: 130, Avatar: `https://dl.infragistics.com/x/img/people/men/14.png`, Position: `up`, Name: `Adem Özdoğan`, AthleteNumber: 45143, BeatsPerMinute: 90, TopSpeed: 5.5, Registered: `2017-02-16T07:11:52-02:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/TM.png`, CountryName: `Turkmenistan` }), + new AthletesDataItem({ Id: 130, Avatar: `https://dl.infragistics.com/x/img/people/women/24.png`, Position: `down`, Name: `آوا احمدی`, AthleteNumber: 44347, BeatsPerMinute: 110, TopSpeed: 4.1, Registered: `2017-06-04T09:04:31-03:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/CN.png`, CountryName: `China` }), + new AthletesDataItem({ Id: 131, Avatar: `https://dl.infragistics.com/x/img/people/women/31.png`, Position: `current`, Name: `Eliza Bishop`, AthleteNumber: 31774, BeatsPerMinute: 96, TopSpeed: 4.7, Registered: `2017-09-22T11:49:02-03:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/EH.png`, CountryName: `Western Sahara` }), + new AthletesDataItem({ Id: 131, Avatar: `https://dl.infragistics.com/x/img/people/women/31.png`, Position: `down`, Name: `Veronika Huber`, AthleteNumber: 18146, BeatsPerMinute: 103, TopSpeed: 5.2, Registered: `2017-07-13T02:23:56-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/TO.png`, CountryName: `Tonga` }), + new AthletesDataItem({ Id: 134, Avatar: `https://dl.infragistics.com/x/img/people/women/36.png`, Position: `down`, Name: `Anni Waisanen`, AthleteNumber: 32133, BeatsPerMinute: 99, TopSpeed: 5, Registered: `2017-08-17T01:35:09-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/DO.png`, CountryName: `Dominican Republic` }), + new AthletesDataItem({ Id: 135, Avatar: `https://dl.infragistics.com/x/img/people/men/24.png`, Position: `down`, Name: `Darryl Douglas`, AthleteNumber: 35826, BeatsPerMinute: 96, TopSpeed: 4.6, Registered: `2017-07-20T11:45:52-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/TR.png`, CountryName: `Turkey` }), + new AthletesDataItem({ Id: 136, Avatar: `https://dl.infragistics.com/x/img/people/women/10.png`, Position: `down`, Name: `Elaine Matthews`, AthleteNumber: 38574, BeatsPerMinute: 110, TopSpeed: 5.5, Registered: `2017-01-26T11:50:00-02:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/CV.png`, CountryName: `Cape Verde` }), + new AthletesDataItem({ Id: 137, Avatar: `https://dl.infragistics.com/x/img/people/women/35.png`, Position: `up`, Name: `Gloria Caballero`, AthleteNumber: 43379, BeatsPerMinute: 103, TopSpeed: 4.3, Registered: `2017-08-10T08:27:45-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/IL.png`, CountryName: `Israel` }), + new AthletesDataItem({ Id: 137, Avatar: `https://dl.infragistics.com/x/img/people/men/20.png`, Position: `down`, Name: `Lance Dunn`, AthleteNumber: 10113, BeatsPerMinute: 94, TopSpeed: 4.5, Registered: `2017-03-13T10:51:36-02:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/CY.png`, CountryName: `Cyprus` }), + new AthletesDataItem({ Id: 138, Avatar: `https://dl.infragistics.com/x/img/people/men/31.png`, Position: `down`, Name: `Antoine Mackay`, AthleteNumber: 34547, BeatsPerMinute: 104, TopSpeed: 5, Registered: `2017-08-22T09:11:37-03:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/LS.png`, CountryName: `Lesotho` }), + new AthletesDataItem({ Id: 138, Avatar: `https://dl.infragistics.com/x/img/people/men/38.png`, Position: `current`, Name: `Oscar Calvo`, AthleteNumber: 45078, BeatsPerMinute: 109, TopSpeed: 4.3, Registered: `2017-06-19T10:57:42-03:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/CU.png`, CountryName: `Cuba` }), + new AthletesDataItem({ Id: 138, Avatar: `https://dl.infragistics.com/x/img/people/men/38.png`, Position: `current`, Name: `Derrick Price`, AthleteNumber: 19792, BeatsPerMinute: 94, TopSpeed: 5.6, Registered: `2017-03-19T01:10:55-02:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/AR.png`, CountryName: `Argentina` }), + new AthletesDataItem({ Id: 139, Avatar: `https://dl.infragistics.com/x/img/people/women/28.png`, Position: `current`, Name: `Annabell Barth`, AthleteNumber: 41130, BeatsPerMinute: 103, TopSpeed: 5, Registered: `2017-08-24T11:58:56-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/HT.png`, CountryName: `Haiti` }), + new AthletesDataItem({ Id: 141, Avatar: `https://dl.infragistics.com/x/img/people/men/15.png`, Position: `current`, Name: `Miro Korpela`, AthleteNumber: 40544, BeatsPerMinute: 104, TopSpeed: 5.3, Registered: `2017-01-10T07:12:44-02:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/NL.png`, CountryName: `Netherlands` }), + new AthletesDataItem({ Id: 142, Avatar: `https://dl.infragistics.com/x/img/people/women/33.png`, Position: `current`, Name: `Nicoline Thomsen`, AthleteNumber: 36778, BeatsPerMinute: 99, TopSpeed: 5.5, Registered: `2017-03-26T10:04:29-03:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/BJ.png`, CountryName: `Benin` }), + new AthletesDataItem({ Id: 143, Avatar: `https://dl.infragistics.com/x/img/people/men/38.png`, Position: `up`, Name: `رضا کوتی`, AthleteNumber: 13640, BeatsPerMinute: 103, TopSpeed: 4.2, Registered: `2017-04-30T02:34:29-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/PK.png`, CountryName: `Pakistan` }), + new AthletesDataItem({ Id: 144, Avatar: `https://dl.infragistics.com/x/img/people/women/37.png`, Position: `down`, Name: `Milja Leino`, AthleteNumber: 33563, BeatsPerMinute: 110, TopSpeed: 4.1, Registered: `2017-11-01T10:34:07-02:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/BF.png`, CountryName: `Burkina Faso` }), + new AthletesDataItem({ Id: 147, Avatar: `https://dl.infragistics.com/x/img/people/men/12.png`, Position: `down`, Name: `میلاد یاسمی`, AthleteNumber: 44023, BeatsPerMinute: 104, TopSpeed: 5.2, Registered: `2017-06-10T04:11:01-03:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/TG.png`, CountryName: `Togo` }), + new AthletesDataItem({ Id: 150, Avatar: `https://dl.infragistics.com/x/img/people/men/32.png`, Position: `up`, Name: `Gustav Petersen`, AthleteNumber: 20984, BeatsPerMinute: 107, TopSpeed: 4.6, Registered: `2017-01-01T07:40:19-02:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/BZ.png`, CountryName: `Belize` }), + new AthletesDataItem({ Id: 151, Avatar: `https://dl.infragistics.com/x/img/people/women/28.png`, Position: `current`, Name: `Charlotte Mills`, AthleteNumber: 49829, BeatsPerMinute: 92, TopSpeed: 5.3, Registered: `2017-05-10T04:33:10-03:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/MG.png`, CountryName: `Madagascar` }), + new AthletesDataItem({ Id: 154, Avatar: `https://dl.infragistics.com/x/img/people/women/34.png`, Position: `down`, Name: `Rhonda Simmmons`, AthleteNumber: 37139, BeatsPerMinute: 96, TopSpeed: 5.1, Registered: `2017-07-03T05:39:45-03:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/NR.png`, CountryName: `Nauru` }), + new AthletesDataItem({ Id: 155, Avatar: `https://dl.infragistics.com/x/img/people/men/22.png`, Position: `up`, Name: `Justin Philippe`, AthleteNumber: 12858, BeatsPerMinute: 104, TopSpeed: 5.7, Registered: `2017-03-16T02:00:35-02:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/MV.png`, CountryName: `Maldives` }), + new AthletesDataItem({ Id: 159, Avatar: `https://dl.infragistics.com/x/img/people/women/36.png`, Position: `up`, Name: `Eva Dean`, AthleteNumber: 48874, BeatsPerMinute: 103, TopSpeed: 5.7, Registered: `2017-03-04T01:58:52-02:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/ST.png`, CountryName: `Sao Tome and Principe` }), + new AthletesDataItem({ Id: 161, Avatar: `https://dl.infragistics.com/x/img/people/men/29.png`, Position: `up`, Name: `Franklin Byrd`, AthleteNumber: 49498, BeatsPerMinute: 106, TopSpeed: 5.3, Registered: `2017-11-04T11:09:26-02:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/TW.png`, CountryName: `Taiwan, Province of China` }), + new AthletesDataItem({ Id: 161, Avatar: `https://dl.infragistics.com/x/img/people/men/38.png`, Position: `current`, Name: `Alex Martin`, AthleteNumber: 27887, BeatsPerMinute: 96, TopSpeed: 4.2, Registered: `2017-10-28T04:06:33-03:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/EG.png`, CountryName: `Egypt` }), + new AthletesDataItem({ Id: 162, Avatar: `https://dl.infragistics.com/x/img/people/women/10.png`, Position: `current`, Name: `Alex Craig`, AthleteNumber: 21868, BeatsPerMinute: 94, TopSpeed: 4.2, Registered: `2017-03-19T10:20:51-02:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/SY.png`, CountryName: `Syrian Arab Republic` }), + new AthletesDataItem({ Id: 162, Avatar: `https://dl.infragistics.com/x/img/people/men/13.png`, Position: `down`, Name: `Adam Bouchard`, AthleteNumber: 38672, BeatsPerMinute: 99, TopSpeed: 4.7, Registered: `2017-01-04T03:04:05-02:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/SC.png`, CountryName: `Seychelles` }), + new AthletesDataItem({ Id: 163, Avatar: `https://dl.infragistics.com/x/img/people/men/30.png`, Position: `down`, Name: `میلاد قاسمی`, AthleteNumber: 12788, BeatsPerMinute: 101, TopSpeed: 4.1, Registered: `2017-03-01T07:51:17-02:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/WS.png`, CountryName: `Samoa` }), + new AthletesDataItem({ Id: 163, Avatar: `https://dl.infragistics.com/x/img/people/women/32.png`, Position: `up`, Name: `Millie Cooper`, AthleteNumber: 14610, BeatsPerMinute: 99, TopSpeed: 5.4, Registered: `2017-05-08T09:30:14-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/NI.png`, CountryName: `Nicaragua` }), + new AthletesDataItem({ Id: 163, Avatar: `https://dl.infragistics.com/x/img/people/women/21.png`, Position: `up`, Name: `Pippa Roberts`, AthleteNumber: 15588, BeatsPerMinute: 105, TopSpeed: 4.1, Registered: `2017-02-07T10:23:13-02:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/KH.png`, CountryName: `Cambodia` }), + new AthletesDataItem({ Id: 164, Avatar: `https://dl.infragistics.com/x/img/people/women/31.png`, Position: `current`, Name: `Ethel Stephens`, AthleteNumber: 18692, BeatsPerMinute: 94, TopSpeed: 4.1, Registered: `2017-02-13T05:03:04-02:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/UA.png`, CountryName: `Ukraine` }), + new AthletesDataItem({ Id: 165, Avatar: `https://dl.infragistics.com/x/img/people/men/39.png`, Position: `down`, Name: `Mario Ellis`, AthleteNumber: 18026, BeatsPerMinute: 99, TopSpeed: 5.5, Registered: `2017-02-13T11:53:15-02:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/ML.png`, CountryName: `Mali` }), + new AthletesDataItem({ Id: 166, Avatar: `https://dl.infragistics.com/x/img/people/women/34.png`, Position: `current`, Name: `Maria Parra`, AthleteNumber: 39861, BeatsPerMinute: 106, TopSpeed: 6, Registered: `2017-01-30T09:22:52-02:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/KI.png`, CountryName: `Kiribati` }), + new AthletesDataItem({ Id: 167, Avatar: `https://dl.infragistics.com/x/img/people/men/37.png`, Position: `down`, Name: `Aatu Ranta`, AthleteNumber: 38049, BeatsPerMinute: 94, TopSpeed: 5.1, Registered: `2017-07-21T04:22:18-03:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/AE.png`, CountryName: `United Arab Emirates` }), + new AthletesDataItem({ Id: 167, Avatar: `https://dl.infragistics.com/x/img/people/women/32.png`, Position: `current`, Name: `Pippa Morris`, AthleteNumber: 44421, BeatsPerMinute: 101, TopSpeed: 5.5, Registered: `2017-03-06T09:21:58-02:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/TJ.png`, CountryName: `Tajikistan` }), + new AthletesDataItem({ Id: 167, Avatar: `https://dl.infragistics.com/x/img/people/women/32.png`, Position: `current`, Name: `Esma Adıvar`, AthleteNumber: 35565, BeatsPerMinute: 99, TopSpeed: 4.2, Registered: `2017-06-17T12:34:29-03:00`, TrackProgress: 75, CountryFlag: `https://dl.infragistics.com/x/img/flags/PH.png`, CountryName: `Philippines` }), + new AthletesDataItem({ Id: 167, Avatar: `https://dl.infragistics.com/x/img/people/men/19.png`, Position: `down`, Name: `Louis Smith`, AthleteNumber: 31837, BeatsPerMinute: 98, TopSpeed: 5.4, Registered: `2017-03-19T08:12:23-02:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/LR.png`, CountryName: `Liberia` }), + new AthletesDataItem({ Id: 167, Avatar: `https://dl.infragistics.com/x/img/people/men/21.png`, Position: `down`, Name: `Milo Charles`, AthleteNumber: 10661, BeatsPerMinute: 99, TopSpeed: 5.4, Registered: `2017-07-20T09:00:22-03:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/IS.png`, CountryName: `Iceland` }), + new AthletesDataItem({ Id: 168, Avatar: `https://dl.infragistics.com/x/img/people/men/10.png`, Position: `current`, Name: `Calvin Hunt`, AthleteNumber: 35535, BeatsPerMinute: 94, TopSpeed: 4.5, Registered: `2017-11-07T09:58:42-02:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/AT.png`, CountryName: `Austria` }), + new AthletesDataItem({ Id: 169, Avatar: `https://dl.infragistics.com/x/img/people/men/24.png`, Position: `up`, Name: `Aziz Santos`, AthleteNumber: 38947, BeatsPerMinute: 98, TopSpeed: 4, Registered: `2017-04-03T02:18:46-03:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/GB.png`, CountryName: `United Kingdom` }), + new AthletesDataItem({ Id: 169, Avatar: `https://dl.infragistics.com/x/img/people/men/21.png`, Position: `down`, Name: `Julian Barth`, AthleteNumber: 19011, BeatsPerMinute: 91, TopSpeed: 5.2, Registered: `2017-04-21T08:08:33-03:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/GD.png`, CountryName: `Grenada` }), + new AthletesDataItem({ Id: 170, Avatar: `https://dl.infragistics.com/x/img/people/men/30.png`, Position: `up`, Name: `Fernando Gimenez`, AthleteNumber: 31290, BeatsPerMinute: 102, TopSpeed: 5.1, Registered: `2017-06-21T06:45:54-03:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/UZ.png`, CountryName: `Uruguay` }), + new AthletesDataItem({ Id: 173, Avatar: `https://dl.infragistics.com/x/img/people/women/18.png`, Position: `current`, Name: `Hassana Camp`, AthleteNumber: 14467, BeatsPerMinute: 104, TopSpeed: 5.2, Registered: `2017-06-02T12:21:59-03:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/CZ.png`, CountryName: `Czechia` }), + new AthletesDataItem({ Id: 174, Avatar: `https://dl.infragistics.com/x/img/people/women/29.png`, Position: `current`, Name: `Beatriz Gallardo`, AthleteNumber: 38538, BeatsPerMinute: 101, TopSpeed: 6, Registered: `2017-11-06T02:14:31-02:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/ER.png`, CountryName: `Eritrea` }), + new AthletesDataItem({ Id: 176, Avatar: `https://dl.infragistics.com/x/img/people/men/26.png`, Position: `current`, Name: `Tim Neal`, AthleteNumber: 45860, BeatsPerMinute: 97, TopSpeed: 5.6, Registered: `2017-04-21T04:06:34-03:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/PA.png`, CountryName: `Panama` }), + new AthletesDataItem({ Id: 176, Avatar: `https://dl.infragistics.com/x/img/people/men/35.png`, Position: `down`, Name: `Laudelino Castro`, AthleteNumber: 12711, BeatsPerMinute: 106, TopSpeed: 4.4, Registered: `2017-02-08T04:03:22-02:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/HR.png`, CountryName: `Croatia` }), + new AthletesDataItem({ Id: 178, Avatar: `https://dl.infragistics.com/x/img/people/women/35.png`, Position: `down`, Name: `Lillian Wade`, AthleteNumber: 10729, BeatsPerMinute: 110, TopSpeed: 4.8, Registered: `2017-04-07T09:53:13-03:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/SB.png`, CountryName: `Solomon Islands` }), + new AthletesDataItem({ Id: 180, Avatar: `https://dl.infragistics.com/x/img/people/women/10.png`, Position: `up`, Name: `Lillian Bowman`, AthleteNumber: 35323, BeatsPerMinute: 103, TopSpeed: 4.5, Registered: `2017-08-31T11:55:25-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/GY.png`, CountryName: `Guyana` }), + new AthletesDataItem({ Id: 182, Avatar: `https://dl.infragistics.com/x/img/people/women/14.png`, Position: `up`, Name: `Ariena Achterberg`, AthleteNumber: 41330, BeatsPerMinute: 92, TopSpeed: 5.6, Registered: `2017-10-22T02:15:39-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/KR.png`, CountryName: `South Korea` }), + new AthletesDataItem({ Id: 182, Avatar: `https://dl.infragistics.com/x/img/people/men/14.png`, Position: `current`, Name: `Gerald Schmidt`, AthleteNumber: 47410, BeatsPerMinute: 102, TopSpeed: 5.8, Registered: `2017-02-20T11:53:08-02:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/GE.png`, CountryName: `Georgia` }), + new AthletesDataItem({ Id: 183, Avatar: `https://dl.infragistics.com/x/img/people/men/34.png`, Position: `down`, Name: `Yarno Kin`, AthleteNumber: 47324, BeatsPerMinute: 107, TopSpeed: 5.1, Registered: `2017-08-26T08:21:22-03:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/RO.png`, CountryName: `Romania` }), + new AthletesDataItem({ Id: 183, Avatar: `https://dl.infragistics.com/x/img/people/women/33.png`, Position: `up`, Name: `رونیکا سلطانی نژاد`, AthleteNumber: 35233, BeatsPerMinute: 99, TopSpeed: 4.6, Registered: `2017-08-13T01:05:52-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/MK.png`, CountryName: `Macedonia` }), + new AthletesDataItem({ Id: 186, Avatar: `https://dl.infragistics.com/x/img/people/men/12.png`, Position: `up`, Name: `کوروش کامروا`, AthleteNumber: 13506, BeatsPerMinute: 109, TopSpeed: 4.4, Registered: `2017-04-16T01:10:37-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/NU.png`, CountryName: `Niue` }), + new AthletesDataItem({ Id: 186, Avatar: `https://dl.infragistics.com/x/img/people/men/22.png`, Position: `up`, Name: `Jimmy Bailey`, AthleteNumber: 38510, BeatsPerMinute: 101, TopSpeed: 4.7, Registered: `2017-06-30T04:13:42-03:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/CR.png`, CountryName: `Costa Rica` }), + new AthletesDataItem({ Id: 188, Avatar: `https://dl.infragistics.com/x/img/people/men/13.png`, Position: `current`, Name: `Foppe Delfos`, AthleteNumber: 39679, BeatsPerMinute: 107, TopSpeed: 4.1, Registered: `2017-08-05T10:54:56-03:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/PY.png`, CountryName: `Paraguay` }), + new AthletesDataItem({ Id: 188, Avatar: `https://dl.infragistics.com/x/img/people/men/21.png`, Position: `down`, Name: `آراد یاسمی`, AthleteNumber: 34370, BeatsPerMinute: 99, TopSpeed: 5.9, Registered: `2017-02-02T11:42:41-02:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/MU.png`, CountryName: `Mauritius` }), + new AthletesDataItem({ Id: 188, Avatar: `https://dl.infragistics.com/x/img/people/women/25.png`, Position: `down`, Name: `Ceylan Duygulu`, AthleteNumber: 21527, BeatsPerMinute: 99, TopSpeed: 4.9, Registered: `2017-07-13T09:06:04-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/DM.png`, CountryName: `Dominica` }), + new AthletesDataItem({ Id: 190, Avatar: `https://dl.infragistics.com/x/img/people/women/12.png`, Position: `current`, Name: `Venla Korpela`, AthleteNumber: 16454, BeatsPerMinute: 92, TopSpeed: 4.1, Registered: `2017-08-22T10:36:38-03:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/HU.png`, CountryName: `Hungary` }), + new AthletesDataItem({ Id: 190, Avatar: `https://dl.infragistics.com/x/img/people/women/33.png`, Position: `current`, Name: `Gladys Van Der Steeg`, AthleteNumber: 20216, BeatsPerMinute: 94, TopSpeed: 4.3, Registered: `2017-10-09T02:01:16-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/DE.png`, CountryName: `Germany` }), + new AthletesDataItem({ Id: 190, Avatar: `https://dl.infragistics.com/x/img/people/women/24.png`, Position: `current`, Name: `Kiara Dubois`, AthleteNumber: 49964, BeatsPerMinute: 97, TopSpeed: 5.6, Registered: `2017-09-28T04:37:56-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/AU.png`, CountryName: `Australia` }), + new AthletesDataItem({ Id: 191, Avatar: `https://dl.infragistics.com/x/img/people/men/22.png`, Position: `current`, Name: `آرش احمدی`, AthleteNumber: 36948, BeatsPerMinute: 90, TopSpeed: 4.1, Registered: `2017-09-08T01:22:14-03:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/NP.png`, CountryName: `Nepal` }), + new AthletesDataItem({ Id: 191, Avatar: `https://dl.infragistics.com/x/img/people/women/13.png`, Position: `up`, Name: `Sheryl Collins`, AthleteNumber: 36473, BeatsPerMinute: 98, TopSpeed: 4.2, Registered: `2017-03-23T12:54:35-02:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/KE.png`, CountryName: `Kenya` }), + new AthletesDataItem({ Id: 191, Avatar: `https://dl.infragistics.com/x/img/people/women/32.png`, Position: `up`, Name: `Clarisse Rey`, AthleteNumber: 29795, BeatsPerMinute: 98, TopSpeed: 4.9, Registered: `2017-06-09T08:07:19-03:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/BA.png`, CountryName: `Bosnia and Herzegovina` }), + new AthletesDataItem({ Id: 192, Avatar: `https://dl.infragistics.com/x/img/people/women/24.png`, Position: `down`, Name: `Viivi Kujala`, AthleteNumber: 29939, BeatsPerMinute: 93, TopSpeed: 4.1, Registered: `2017-05-03T02:40:05-03:00`, TrackProgress: 75, CountryFlag: `https://dl.infragistics.com/x/img/flags/SO.png`, CountryName: `Somalia` }), + new AthletesDataItem({ Id: 193, Avatar: `https://dl.infragistics.com/x/img/people/women/11.png`, Position: `down`, Name: `Juanita Franklin`, AthleteNumber: 13907, BeatsPerMinute: 91, TopSpeed: 6, Registered: `2017-10-04T02:46:46-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/VU.png`, CountryName: `Vanuatu` }), + new AthletesDataItem({ Id: 193, Avatar: `https://dl.infragistics.com/x/img/people/women/39.png`, Position: `down`, Name: `Sophia Carlson`, AthleteNumber: 44183, BeatsPerMinute: 102, TopSpeed: 5.1, Registered: `2017-09-04T07:03:19-03:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/EE.png`, CountryName: `Estonia` }), + new AthletesDataItem({ Id: 194, Avatar: `https://dl.infragistics.com/x/img/people/women/32.png`, Position: `up`, Name: `آوا سلطانی نژاد`, AthleteNumber: 45635, BeatsPerMinute: 98, TopSpeed: 4.1, Registered: `2017-04-10T11:39:46-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/SE.png`, CountryName: `Sweden` }), + new AthletesDataItem({ Id: 194, Avatar: `https://dl.infragistics.com/x/img/people/men/11.png`, Position: `down`, Name: `Kaya Taşlı`, AthleteNumber: 42291, BeatsPerMinute: 100, TopSpeed: 4.7, Registered: `2017-01-30T03:23:36-02:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/SN.png`, CountryName: `Senegal` }), + new AthletesDataItem({ Id: 194, Avatar: `https://dl.infragistics.com/x/img/people/men/31.png`, Position: `down`, Name: `Adrian Ibañez`, AthleteNumber: 21968, BeatsPerMinute: 105, TopSpeed: 5.3, Registered: `2017-02-03T04:36:54-02:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/OM.png`, CountryName: `Oman` }), + new AthletesDataItem({ Id: 196, Avatar: `https://dl.infragistics.com/x/img/people/women/17.png`, Position: `current`, Name: `Parel Zuidhof`, AthleteNumber: 32718, BeatsPerMinute: 105, TopSpeed: 5, Registered: `2017-01-21T10:19:56-02:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/JM.png`, CountryName: `Jamaica` }), + new AthletesDataItem({ Id: 196, Avatar: `https://dl.infragistics.com/x/img/people/women/30.png`, Position: `up`, Name: `Begüm Erkekli`, AthleteNumber: 37888, BeatsPerMinute: 104, TopSpeed: 4.6, Registered: `2017-10-04T03:02:35-03:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/SV.png`, CountryName: `El Salvador` }), + new AthletesDataItem({ Id: 197, Avatar: `https://dl.infragistics.com/x/img/people/men/13.png`, Position: `current`, Name: `Brent Lord`, AthleteNumber: 20943, BeatsPerMinute: 92, TopSpeed: 4.8, Registered: `2017-01-23T06:14:22-02:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/DZ.png`, CountryName: `Algeria` }), + new AthletesDataItem({ Id: 199, Avatar: `https://dl.infragistics.com/x/img/people/women/38.png`, Position: `up`, Name: `Lucie Dumont`, AthleteNumber: 12104, BeatsPerMinute: 108, TopSpeed: 4, Registered: `2017-01-08T02:13:29-02:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/CA.png`, CountryName: `Canada` }), + new AthletesDataItem({ Id: 210, Avatar: `https://dl.infragistics.com/x/img/people/women/13.png`, Position: `down`, Name: `Maeva Bergeron`, AthleteNumber: 15655, BeatsPerMinute: 94, TopSpeed: 5.9, Registered: `2017-10-03T09:42:15-03:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/MX.png`, CountryName: `Mexico` }), + new AthletesDataItem({ Id: 212, Avatar: `https://dl.infragistics.com/x/img/people/women/23.png`, Position: `up`, Name: `Sara Larsen`, AthleteNumber: 37094, BeatsPerMinute: 97, TopSpeed: 4.5, Registered: `2017-04-14T11:48:28-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/SA.png`, CountryName: `Saudi Arabia` }), + new AthletesDataItem({ Id: 214, Avatar: `https://dl.infragistics.com/x/img/people/women/24.png`, Position: `up`, Name: `Ömür Denkel`, AthleteNumber: 31061, BeatsPerMinute: 104, TopSpeed: 4.5, Registered: `2017-02-18T05:32:55-02:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/TV.png`, CountryName: `Tuvalu` }), + new AthletesDataItem({ Id: 215, Avatar: `https://dl.infragistics.com/x/img/people/women/39.png`, Position: `down`, Name: `Marilou Hubert`, AthleteNumber: 43655, BeatsPerMinute: 104, TopSpeed: 4.2, Registered: `2017-09-28T11:13:00-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/MM.png`, CountryName: `Myanmar` }), + new AthletesDataItem({ Id: 216, Avatar: `https://dl.infragistics.com/x/img/people/men/32.png`, Position: `down`, Name: `Felix Olsen`, AthleteNumber: 43198, BeatsPerMinute: 101, TopSpeed: 4.2, Registered: `2017-09-27T01:17:14-03:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/FR.png`, CountryName: `France` }), + new AthletesDataItem({ Id: 219, Avatar: `https://dl.infragistics.com/x/img/people/women/13.png`, Position: `current`, Name: `Sedef Tunçeri`, AthleteNumber: 48164, BeatsPerMinute: 108, TopSpeed: 5.6, Registered: `2017-03-29T11:54:15-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/BT.png`, CountryName: `Bhutan` }), + new AthletesDataItem({ Id: 221, Avatar: `https://dl.infragistics.com/x/img/people/men/33.png`, Position: `down`, Name: `Kuzey Aclan`, AthleteNumber: 18583, BeatsPerMinute: 102, TopSpeed: 5.3, Registered: `2017-09-12T09:14:14-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/TD.png`, CountryName: `Chad` }), + new AthletesDataItem({ Id: 223, Avatar: `https://dl.infragistics.com/x/img/people/men/32.png`, Position: `down`, Name: `Gökhan Aşıkoğlu`, AthleteNumber: 13890, BeatsPerMinute: 105, TopSpeed: 5.4, Registered: `2017-03-31T06:14:26-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/JP.png`, CountryName: `Japan` }), + new AthletesDataItem({ Id: 224, Avatar: `https://dl.infragistics.com/x/img/people/men/10.png`, Position: `down`, Name: `Joan Ortega`, AthleteNumber: 49478, BeatsPerMinute: 103, TopSpeed: 5.4, Registered: `2017-07-04T03:01:47-03:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/GQ.png`, CountryName: `Equatorial Guinea` }), + new AthletesDataItem({ Id: 225, Avatar: `https://dl.infragistics.com/x/img/people/men/22.png`, Position: `up`, Name: `Stanley Hart`, AthleteNumber: 14150, BeatsPerMinute: 91, TopSpeed: 4.5, Registered: `2017-08-19T03:02:33-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/VE.png`, CountryName: `Venezuela` }), + new AthletesDataItem({ Id: 227, Avatar: `https://dl.infragistics.com/x/img/people/men/11.png`, Position: `current`, Name: `Johann Hinz`, AthleteNumber: 48244, BeatsPerMinute: 94, TopSpeed: 4.3, Registered: `2017-03-10T07:36:56-02:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/SD.png`, CountryName: `Sudan` }), + new AthletesDataItem({ Id: 227, Avatar: `https://dl.infragistics.com/x/img/people/women/31.png`, Position: `up`, Name: `Layla Douglas`, AthleteNumber: 21977, BeatsPerMinute: 97, TopSpeed: 5.4, Registered: `2017-04-19T11:43:38-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/SI.png`, CountryName: `Slovenia` }), + new AthletesDataItem({ Id: 229, Avatar: `https://dl.infragistics.com/x/img/people/men/29.png`, Position: `current`, Name: `Selmo Caldeira`, AthleteNumber: 21837, BeatsPerMinute: 110, TopSpeed: 4.9, Registered: `2017-10-20T03:40:24-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/LY.png`, CountryName: `Libyan Arab Jamahiriya` }), + new AthletesDataItem({ Id: 231, Avatar: `https://dl.infragistics.com/x/img/people/men/36.png`, Position: `up`, Name: `Judd Campbell`, AthleteNumber: 37365, BeatsPerMinute: 110, TopSpeed: 5, Registered: `2017-10-19T11:01:10-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/LA.png`, CountryName: `Lao PeopleS Democratic Republic` }), + new AthletesDataItem({ Id: 233, Avatar: `https://dl.infragistics.com/x/img/people/men/18.png`, Position: `up`, Name: `Zackary Roy`, AthleteNumber: 45996, BeatsPerMinute: 92, TopSpeed: 4.9, Registered: `2017-07-07T03:51:26-03:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/BS.png`, CountryName: `Bahamas` }), + new AthletesDataItem({ Id: 234, Avatar: `https://dl.infragistics.com/x/img/people/women/19.png`, Position: `down`, Name: `Linda Schäfer`, AthleteNumber: 43074, BeatsPerMinute: 107, TopSpeed: 5.1, Registered: `2017-01-05T11:41:20-02:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/YE.png`, CountryName: `Yemen` }), + new AthletesDataItem({ Id: 235, Avatar: `https://dl.infragistics.com/x/img/people/women/22.png`, Position: `down`, Name: `Elaine Smith`, AthleteNumber: 38243, BeatsPerMinute: 108, TopSpeed: 4, Registered: `2017-06-11T12:20:41-03:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/LI.png`, CountryName: `Liechtenstein` }), + new AthletesDataItem({ Id: 237, Avatar: `https://dl.infragistics.com/x/img/people/men/26.png`, Position: `down`, Name: `Clyde Matthews`, AthleteNumber: 11955, BeatsPerMinute: 93, TopSpeed: 5.2, Registered: `2017-03-02T05:01:02-02:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/PW.png`, CountryName: `Palau` }), + new AthletesDataItem({ Id: 238, Avatar: `https://dl.infragistics.com/x/img/people/women/17.png`, Position: `current`, Name: `Charlotte Meyer`, AthleteNumber: 21442, BeatsPerMinute: 110, TopSpeed: 4.6, Registered: `2017-10-19T10:38:35-03:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/CK.png`, CountryName: `Cook Islands` }), + new AthletesDataItem({ Id: 240, Avatar: `https://dl.infragistics.com/x/img/people/men/13.png`, Position: `down`, Name: `Carter Evans`, AthleteNumber: 46961, BeatsPerMinute: 100, TopSpeed: 5.3, Registered: `2017-07-23T02:43:07-03:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/LU.png`, CountryName: `Luxembourg` }), + new AthletesDataItem({ Id: 240, Avatar: `https://dl.infragistics.com/x/img/people/men/33.png`, Position: `down`, Name: `Alberto Clark`, AthleteNumber: 29912, BeatsPerMinute: 93, TopSpeed: 4.6, Registered: `2017-02-02T03:50:21-02:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/AG.png`, CountryName: `Antigua and Barbuda` }), + new AthletesDataItem({ Id: 241, Avatar: `https://dl.infragistics.com/x/img/people/women/35.png`, Position: `down`, Name: `Lilly Keuter`, AthleteNumber: 49893, BeatsPerMinute: 102, TopSpeed: 4.5, Registered: `2017-01-20T02:38:39-02:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/KN.png`, CountryName: `Saint Kitts and Nevis` }), + new AthletesDataItem({ Id: 241, Avatar: `https://dl.infragistics.com/x/img/people/men/20.png`, Position: `up`, Name: `Oskari Karjala`, AthleteNumber: 31498, BeatsPerMinute: 90, TopSpeed: 4.5, Registered: `2017-05-10T12:45:12-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/FM.png`, CountryName: `Micronesia, Federated States of` }), + new AthletesDataItem({ Id: 242, Avatar: `https://dl.infragistics.com/x/img/people/women/23.png`, Position: `down`, Name: `Caitlin Jackson`, AthleteNumber: 45472, BeatsPerMinute: 101, TopSpeed: 4.3, Registered: `2017-09-17T09:41:01-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/MZ.png`, CountryName: `Mozambique` }), + new AthletesDataItem({ Id: 243, Avatar: `https://dl.infragistics.com/x/img/people/women/37.png`, Position: `down`, Name: `Cathalijne Van Der Ree`, AthleteNumber: 45160, BeatsPerMinute: 102, TopSpeed: 5.4, Registered: `2017-02-13T05:23:49-02:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/UG.png`, CountryName: `Uganda` }), + new AthletesDataItem({ Id: 243, Avatar: `https://dl.infragistics.com/x/img/people/women/14.png`, Position: `up`, Name: `Emma Turner`, AthleteNumber: 39487, BeatsPerMinute: 110, TopSpeed: 5.7, Registered: `2017-07-30T01:33:14-03:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/TZ.png`, CountryName: `Tanzania, United Republic of` }), + new AthletesDataItem({ Id: 243, Avatar: `https://dl.infragistics.com/x/img/people/men/22.png`, Position: `up`, Name: `Kent Clark`, AthleteNumber: 32799, BeatsPerMinute: 106, TopSpeed: 5.7, Registered: `2017-01-24T01:00:15-02:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/PE.png`, CountryName: `Peru` }), + new AthletesDataItem({ Id: 246, Avatar: `https://dl.infragistics.com/x/img/people/women/35.png`, Position: `current`, Name: `Ronja Kraft`, AthleteNumber: 21800, BeatsPerMinute: 101, TopSpeed: 5.3, Registered: `2017-04-02T03:33:57-03:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/DK.png`, CountryName: `Denmark` }), + new AthletesDataItem({ Id: 251, Avatar: `https://dl.infragistics.com/x/img/people/women/34.png`, Position: `down`, Name: `Eléa Robin`, AthleteNumber: 26742, BeatsPerMinute: 90, TopSpeed: 4.7, Registered: `2017-03-30T12:34:24-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/VC.png`, CountryName: `Saint Vincent and the Grenadines` }), + new AthletesDataItem({ Id: 251, Avatar: `https://dl.infragistics.com/x/img/people/men/34.png`, Position: `up`, Name: `Alex Meyer`, AthleteNumber: 44390, BeatsPerMinute: 94, TopSpeed: 4.3, Registered: `2017-08-04T07:05:34-03:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/MD.png`, CountryName: `Moldova, Republic of` }), + new AthletesDataItem({ Id: 252, Avatar: `https://dl.infragistics.com/x/img/people/men/14.png`, Position: `down`, Name: `Adérito Lopes`, AthleteNumber: 21320, BeatsPerMinute: 91, TopSpeed: 5.2, Registered: `2017-01-07T06:47:56-02:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/MH.png`, CountryName: `Marshall Islands` }), + new AthletesDataItem({ Id: 253, Avatar: `https://dl.infragistics.com/x/img/people/women/31.png`, Position: `current`, Name: `Kayla Patel`, AthleteNumber: 42780, BeatsPerMinute: 103, TopSpeed: 4.7, Registered: `2017-04-20T09:33:53-03:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/NE.png`, CountryName: `Niger` }), + new AthletesDataItem({ Id: 258, Avatar: `https://dl.infragistics.com/x/img/people/men/31.png`, Position: `current`, Name: `Diego Gautier`, AthleteNumber: 26320, BeatsPerMinute: 97, TopSpeed: 4.6, Registered: `2017-06-11T03:50:43-03:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/NG.png`, CountryName: `Nigeria` }), + new AthletesDataItem({ Id: 258, Avatar: `https://dl.infragistics.com/x/img/people/women/30.png`, Position: `up`, Name: `Veera Saari`, AthleteNumber: 40408, BeatsPerMinute: 100, TopSpeed: 4.7, Registered: `2017-10-28T10:39:22-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/IQ.png`, CountryName: `Iraq` }), + new AthletesDataItem({ Id: 258, Avatar: `https://dl.infragistics.com/x/img/people/women/30.png`, Position: `down`, Name: `Zaina Pomp`, AthleteNumber: 14109, BeatsPerMinute: 90, TopSpeed: 5.7, Registered: `2017-09-07T11:17:40-03:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/AO.png`, CountryName: `Angola` }), + new AthletesDataItem({ Id: 262, Avatar: `https://dl.infragistics.com/x/img/people/men/11.png`, Position: `current`, Name: `Anthony Harcourt`, AthleteNumber: 33649, BeatsPerMinute: 109, TopSpeed: 5.5, Registered: `2017-06-14T11:10:20-03:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/IN.png`, CountryName: `India` }), + new AthletesDataItem({ Id: 262, Avatar: `https://dl.infragistics.com/x/img/people/men/23.png`, Position: `current`, Name: `Roman Smith`, AthleteNumber: 15531, BeatsPerMinute: 106, TopSpeed: 4.9, Registered: `2017-06-14T05:12:04-03:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/GA.png`, CountryName: `Gabon` }), + new AthletesDataItem({ Id: 263, Avatar: `https://dl.infragistics.com/x/img/people/women/11.png`, Position: `up`, Name: `Estelle Vincent`, AthleteNumber: 41700, BeatsPerMinute: 99, TopSpeed: 5.7, Registered: `2017-05-31T02:56:58-03:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/NA.png`, CountryName: `Namibia` }), + new AthletesDataItem({ Id: 265, Avatar: `https://dl.infragistics.com/x/img/people/women/27.png`, Position: `current`, Name: `Ilke Kisters`, AthleteNumber: 23817, BeatsPerMinute: 100, TopSpeed: 5.9, Registered: `2017-01-04T02:54:53-02:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/CH.png`, CountryName: `Switzerland` }), + new AthletesDataItem({ Id: 265, Avatar: `https://dl.infragistics.com/x/img/people/women/11.png`, Position: `down`, Name: `Jenny Burke`, AthleteNumber: 15266, BeatsPerMinute: 99, TopSpeed: 5.4, Registered: `2017-09-11T12:20:19-03:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/MY.png`, CountryName: `Malaysia` }), + new AthletesDataItem({ Id: 265, Avatar: `https://dl.infragistics.com/x/img/people/women/30.png`, Position: `down`, Name: `Keira Walker`, AthleteNumber: 34116, BeatsPerMinute: 94, TopSpeed: 4.8, Registered: `2017-01-09T05:46:07-02:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/AL.png`, CountryName: `Albania` }), + new AthletesDataItem({ Id: 266, Avatar: `https://dl.infragistics.com/x/img/people/men/30.png`, Position: `down`, Name: `Moritz Braun`, AthleteNumber: 48081, BeatsPerMinute: 107, TopSpeed: 6, Registered: `2017-06-13T12:54:56-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/AD.png`, CountryName: `Andorra` }), + new AthletesDataItem({ Id: 267, Avatar: `https://dl.infragistics.com/x/img/people/men/30.png`, Position: `current`, Name: `Villads Larsen`, AthleteNumber: 44677, BeatsPerMinute: 93, TopSpeed: 5.7, Registered: `2017-03-25T11:25:30-02:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/KW.png`, CountryName: `Kuwait` }), + new AthletesDataItem({ Id: 268, Avatar: `https://dl.infragistics.com/x/img/people/men/23.png`, Position: `up`, Name: `Sandro Carpentier`, AthleteNumber: 23503, BeatsPerMinute: 96, TopSpeed: 5.7, Registered: `2017-09-30T01:01:04-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/BE.png`, CountryName: `Belgium` }), + new AthletesDataItem({ Id: 269, Avatar: `https://dl.infragistics.com/x/img/people/men/17.png`, Position: `current`, Name: `Emil Meißner`, AthleteNumber: 37183, BeatsPerMinute: 97, TopSpeed: 4, Registered: `2017-07-15T12:32:30-03:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/GM.png`, CountryName: `Gambia` }), + new AthletesDataItem({ Id: 270, Avatar: `https://dl.infragistics.com/x/img/people/women/14.png`, Position: `up`, Name: `Emily Olsen`, AthleteNumber: 13887, BeatsPerMinute: 110, TopSpeed: 4.8, Registered: `2017-10-03T08:01:40-03:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/CF.png`, CountryName: `Central African Republic` }), + new AthletesDataItem({ Id: 271, Avatar: `https://dl.infragistics.com/x/img/people/men/21.png`, Position: `down`, Name: `آراد جعفری`, AthleteNumber: 34962, BeatsPerMinute: 90, TopSpeed: 4.8, Registered: `2017-04-22T04:20:39-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/BI.png`, CountryName: `Burundi` }), + new AthletesDataItem({ Id: 271, Avatar: `https://dl.infragistics.com/x/img/people/men/34.png`, Position: `down`, Name: `Jimmie Mcguinness`, AthleteNumber: 20729, BeatsPerMinute: 90, TopSpeed: 4.6, Registered: `2017-10-07T06:08:00-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/BW.png`, CountryName: `Botswana` }), + new AthletesDataItem({ Id: 272, Avatar: `https://dl.infragistics.com/x/img/people/women/26.png`, Position: `down`, Name: `Sélène Roussel`, AthleteNumber: 11261, BeatsPerMinute: 99, TopSpeed: 5.8, Registered: `2017-05-10T02:18:02-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/SM.png`, CountryName: `San Marino` }), + new AthletesDataItem({ Id: 272, Avatar: `https://dl.infragistics.com/x/img/people/men/31.png`, Position: `up`, Name: `Aaron Robertson`, AthleteNumber: 30727, BeatsPerMinute: 95, TopSpeed: 4.2, Registered: `2017-08-23T09:37:40-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/ID.png`, CountryName: `Indonesia` }), + new AthletesDataItem({ Id: 273, Avatar: `https://dl.infragistics.com/x/img/people/women/12.png`, Position: `up`, Name: `Afet Kumcuoğlu`, AthleteNumber: 33454, BeatsPerMinute: 106, TopSpeed: 5.1, Registered: `2017-09-16T07:05:43-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/NZ.png`, CountryName: `New Zealand` }), + new AthletesDataItem({ Id: 273, Avatar: `https://dl.infragistics.com/x/img/people/women/33.png`, Position: `up`, Name: `Annabelle Besteman`, AthleteNumber: 30560, BeatsPerMinute: 105, TopSpeed: 5.3, Registered: `2017-11-11T02:04:19-02:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/KP.png`, CountryName: `North Korea` }), + new AthletesDataItem({ Id: 274, Avatar: `https://dl.infragistics.com/x/img/people/women/11.png`, Position: `up`, Name: `Minea Rantanen`, AthleteNumber: 18835, BeatsPerMinute: 105, TopSpeed: 5, Registered: `2017-01-24T07:30:43-02:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/JO.png`, CountryName: `Jordan` }), + new AthletesDataItem({ Id: 275, Avatar: `https://dl.infragistics.com/x/img/people/men/12.png`, Position: `up`, Name: `Fritz Sommer`, AthleteNumber: 26210, BeatsPerMinute: 99, TopSpeed: 4.6, Registered: `2017-09-29T03:54:57-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/LT.png`, CountryName: `Lithuania` }), + new AthletesDataItem({ Id: 275, Avatar: `https://dl.infragistics.com/x/img/people/men/28.png`, Position: `down`, Name: `Rafael Gutierrez`, AthleteNumber: 38804, BeatsPerMinute: 100, TopSpeed: 5.9, Registered: `2017-02-08T07:50:59-02:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/GN.png`, CountryName: `Guinea` }), + new AthletesDataItem({ Id: 275, Avatar: `https://dl.infragistics.com/x/img/people/women/39.png`, Position: `current`, Name: `Ellen Leppo`, AthleteNumber: 29286, BeatsPerMinute: 97, TopSpeed: 5.6, Registered: `2017-08-16T09:46:35-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/BY.png`, CountryName: `Belarus` }), + new AthletesDataItem({ Id: 276, Avatar: `https://dl.infragistics.com/x/img/people/women/11.png`, Position: `current`, Name: `Encarnacion Martin`, AthleteNumber: 40912, BeatsPerMinute: 105, TopSpeed: 5.5, Registered: `2017-01-11T12:52:28-02:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/TH.png`, CountryName: `Thailand` }), + new AthletesDataItem({ Id: 276, Avatar: `https://dl.infragistics.com/x/img/people/men/35.png`, Position: `current`, Name: `David Scott`, AthleteNumber: 46997, BeatsPerMinute: 101, TopSpeed: 4.4, Registered: `2017-07-25T09:23:24-03:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/PT.png`, CountryName: `Portugal` }), + new AthletesDataItem({ Id: 279, Avatar: `https://dl.infragistics.com/x/img/people/women/39.png`, Position: `current`, Name: `Ashley Romero`, AthleteNumber: 36611, BeatsPerMinute: 104, TopSpeed: 5.5, Registered: `2017-02-08T12:45:46-02:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/MN.png`, CountryName: `Mongolia` }), + new AthletesDataItem({ Id: 280, Avatar: `https://dl.infragistics.com/x/img/people/men/10.png`, Position: `down`, Name: `Cecil Nichols`, AthleteNumber: 20656, BeatsPerMinute: 100, TopSpeed: 5, Registered: `2017-04-24T01:20:34-03:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/RW.png`, CountryName: `RWANDA` }), + new AthletesDataItem({ Id: 282, Avatar: `https://dl.infragistics.com/x/img/people/men/35.png`, Position: `current`, Name: `Johann Fischer`, AthleteNumber: 37212, BeatsPerMinute: 98, TopSpeed: 5.8, Registered: `2017-09-01T04:39:52-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/BR.png`, CountryName: `Brazil` }), + new AthletesDataItem({ Id: 283, Avatar: `https://dl.infragistics.com/x/img/people/men/10.png`, Position: `current`, Name: `سینا مرادی`, AthleteNumber: 10809, BeatsPerMinute: 105, TopSpeed: 5.3, Registered: `2017-04-05T05:27:13-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/BH.png`, CountryName: `Bahrain` }), + new AthletesDataItem({ Id: 284, Avatar: `https://dl.infragistics.com/x/img/people/men/12.png`, Position: `current`, Name: `Abel Brun`, AthleteNumber: 39315, BeatsPerMinute: 105, TopSpeed: 5.1, Registered: `2017-10-05T05:54:31-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/AF.png`, CountryName: `Afghanistan` }), + new AthletesDataItem({ Id: 285, Avatar: `https://dl.infragistics.com/x/img/people/men/34.png`, Position: `current`, Name: `Jeffrey Medina`, AthleteNumber: 42905, BeatsPerMinute: 100, TopSpeed: 5.2, Registered: `2017-09-15T02:11:43-03:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/GR.png`, CountryName: `Greece` }), + new AthletesDataItem({ Id: 285, Avatar: `https://dl.infragistics.com/x/img/people/men/23.png`, Position: `down`, Name: `Niilo Laurila`, AthleteNumber: 49215, BeatsPerMinute: 104, TopSpeed: 4.5, Registered: `2017-04-26T01:26:36-03:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/ET.png`, CountryName: `Ethiopia` }), + new AthletesDataItem({ Id: 286, Avatar: `https://dl.infragistics.com/x/img/people/women/25.png`, Position: `down`, Name: `Marisvalda Martins`, AthleteNumber: 33879, BeatsPerMinute: 107, TopSpeed: 5.4, Registered: `2017-01-31T12:07:48-02:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/ES.png`, CountryName: `Spain` }), + new AthletesDataItem({ Id: 286, Avatar: `https://dl.infragistics.com/x/img/people/women/22.png`, Position: `current`, Name: `Eloida Novaes`, AthleteNumber: 30751, BeatsPerMinute: 107, TopSpeed: 4.2, Registered: `2017-01-02T01:04:04-02:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/CL.png`, CountryName: `Chile` }), + new AthletesDataItem({ Id: 287, Avatar: `https://dl.infragistics.com/x/img/people/women/32.png`, Position: `up`, Name: `Charlotte Dean`, AthleteNumber: 45969, BeatsPerMinute: 105, TopSpeed: 5, Registered: `2017-02-13T05:39:15-02:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/ZA.png`, CountryName: `South Africa` }), + new AthletesDataItem({ Id: 287, Avatar: `https://dl.infragistics.com/x/img/people/men/35.png`, Position: `current`, Name: `Loïc Gerard`, AthleteNumber: 31706, BeatsPerMinute: 102, TopSpeed: 4.4, Registered: `2017-07-28T09:10:43-03:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/IE.png`, CountryName: `Ireland` }), + new AthletesDataItem({ Id: 292, Avatar: `https://dl.infragistics.com/x/img/people/women/12.png`, Position: `down`, Name: `Asta Hansen`, AthleteNumber: 17222, BeatsPerMinute: 101, TopSpeed: 4.3, Registered: `2017-01-08T02:41:56-02:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/KZ.png`, CountryName: `Kazakhstan` }), + new AthletesDataItem({ Id: 293, Avatar: `https://dl.infragistics.com/x/img/people/women/21.png`, Position: `up`, Name: `Sara Hannula`, AthleteNumber: 22025, BeatsPerMinute: 102, TopSpeed: 4.2, Registered: `2017-10-09T11:32:13-03:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/TL.png`, CountryName: `Timor-Leste` }), + new AthletesDataItem({ Id: 293, Avatar: `https://dl.infragistics.com/x/img/people/women/10.png`, Position: `current`, Name: `Ana Bourgeois`, AthleteNumber: 24612, BeatsPerMinute: 110, TopSpeed: 6, Registered: `2017-11-02T02:17:43-02:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/SG.png`, CountryName: `Singapore` }), + new AthletesDataItem({ Id: 296, Avatar: `https://dl.infragistics.com/x/img/people/women/37.png`, Position: `up`, Name: `Thea Edwards`, AthleteNumber: 29141, BeatsPerMinute: 99, TopSpeed: 5.8, Registered: `2017-05-23T05:24:38-03:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/SL.png`, CountryName: `Sierra Leone` }), + new AthletesDataItem({ Id: 299, Avatar: `https://dl.infragistics.com/x/img/people/men/29.png`, Position: `down`, Name: `Victor Lévesque`, AthleteNumber: 48375, BeatsPerMinute: 110, TopSpeed: 5.7, Registered: `2017-11-10T11:31:44-02:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/MR.png`, CountryName: `Mauritania` }), + new AthletesDataItem({ Id: 301, Avatar: `https://dl.infragistics.com/x/img/people/men/35.png`, Position: `down`, Name: `Louis Stewart`, AthleteNumber: 48131, BeatsPerMinute: 103, TopSpeed: 5.7, Registered: `2017-02-26T07:28:02-02:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/HN.png`, CountryName: `Honduras` }), + new AthletesDataItem({ Id: 302, Avatar: `https://dl.infragistics.com/x/img/people/men/14.png`, Position: `up`, Name: `Bill Fox`, AthleteNumber: 18511, BeatsPerMinute: 91, TopSpeed: 5, Registered: `2017-10-24T08:25:40-03:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/IR.png`, CountryName: `Iran, Islamic Republic Of` }), + new AthletesDataItem({ Id: 304, Avatar: `https://dl.infragistics.com/x/img/people/men/34.png`, Position: `down`, Name: `Mathys Martin`, AthleteNumber: 32928, BeatsPerMinute: 98, TopSpeed: 5.5, Registered: `2017-05-17T12:51:47-03:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/VA.png`, CountryName: `Holy See (Vatican City State)` }), + new AthletesDataItem({ Id: 305, Avatar: `https://dl.infragistics.com/x/img/people/women/38.png`, Position: `current`, Name: `Gianne Godijn`, AthleteNumber: 45945, BeatsPerMinute: 96, TopSpeed: 4.5, Registered: `2017-03-22T03:23:12-02:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/IT.png`, CountryName: `Italy` }), + new AthletesDataItem({ Id: 306, Avatar: `https://dl.infragistics.com/x/img/people/women/26.png`, Position: `up`, Name: `Mira Campos`, AthleteNumber: 39222, BeatsPerMinute: 95, TopSpeed: 5.9, Registered: `2017-01-11T01:41:31-02:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/AM.png`, CountryName: `Armenia` }), + new AthletesDataItem({ Id: 308, Avatar: `https://dl.infragistics.com/x/img/people/women/15.png`, Position: `down`, Name: `Esther Kühn`, AthleteNumber: 24868, BeatsPerMinute: 92, TopSpeed: 5.5, Registered: `2017-05-14T12:30:08-03:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/RU.png`, CountryName: `Russian Federation` }), + new AthletesDataItem({ Id: 308, Avatar: `https://dl.infragistics.com/x/img/people/men/14.png`, Position: `up`, Name: `Hans Möller`, AthleteNumber: 34122, BeatsPerMinute: 109, TopSpeed: 5.6, Registered: `2017-06-20T06:02:49-03:00`, TrackProgress: 25, CountryFlag: `https://dl.infragistics.com/x/img/flags/DJ.png`, CountryName: `Djibouti` }), + new AthletesDataItem({ Id: 309, Avatar: `https://dl.infragistics.com/x/img/people/women/33.png`, Position: `current`, Name: `Alice Perry`, AthleteNumber: 23750, BeatsPerMinute: 104, TopSpeed: 5.3, Registered: `2017-03-31T07:15:46-03:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/LC.png`, CountryName: `Saint Lucia` }), + new AthletesDataItem({ Id: 310, Avatar: `https://dl.infragistics.com/x/img/people/men/12.png`, Position: `up`, Name: `Kaya Tekand`, AthleteNumber: 11028, BeatsPerMinute: 93, TopSpeed: 5.2, Registered: `2017-04-10T09:57:13-03:00`, TrackProgress: 60, CountryFlag: `https://dl.infragistics.com/x/img/flags/FJ.png`, CountryName: `Fiji` }), + new AthletesDataItem({ Id: 311, Avatar: `https://dl.infragistics.com/x/img/people/women/12.png`, Position: `down`, Name: `Ilona Salonen`, AthleteNumber: 27068, BeatsPerMinute: 91, TopSpeed: 5.4, Registered: `2017-07-03T06:19:47-03:00`, TrackProgress: 45, CountryFlag: `https://dl.infragistics.com/x/img/flags/BO.png`, CountryName: `Bolivia` }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/grids/grid/data-exporting-indicator/src/index.css b/samples/grids/grid/data-exporting-indicator/src/index.css new file mode 100644 index 0000000000..7eb1c7c38e --- /dev/null +++ b/samples/grids/grid/data-exporting-indicator/src/index.css @@ -0,0 +1,2 @@ +/* shared styles are loaded from: */ +/* https://dl.infragistics.com/x/css/samples/shared.v8.css */ diff --git a/samples/grids/grid/data-exporting-indicator/src/index.tsx b/samples/grids/grid/data-exporting-indicator/src/index.tsx new file mode 100644 index 0000000000..33e417653a --- /dev/null +++ b/samples/grids/grid/data-exporting-indicator/src/index.tsx @@ -0,0 +1,80 @@ +import React, { useRef } from "react"; +import ReactDOM from "react-dom/client"; +import "./index.css"; + +import { + IgrGridToolbar, + IgrGridToolbarActions, + IgrGridToolbarExporter, + IgrGridToolbarTitle, + IgrGridModule, +} from "igniteui-react-grids"; +import { + IgrGrid, + IgrColumn, +} from "igniteui-react-grids"; +import { IgrButton } from "igniteui-react"; + +import "igniteui-react-grids/grids/themes/light/bootstrap.css"; +import { AthletesData } from "./AthletesData"; + +IgrGridModule.register(); + +export default function App() { + const athletesData = new AthletesData(); + const gridRef = useRef(null); + const toolbarRef = useRef(null); + + const localData: any[] = []; + for (let i = 0; i < 10000; i += 3) { + for (let c = 0; c < athletesData.length; c++) { + localData.push(athletesData[c]); + } + } + + function showProgress() { + toolbarRef.current.showProgress = true; + + setTimeout(() => { + toolbarRef.current.showProgress = false; + }, 5000); + } + + return ( +
+
+ + + + Grid Toolbar + + + Simulate long running operation + + + + + + + + + + + + + + +
+
+ ); +} + +// rendering above component in the React DOM +const root = ReactDOM.createRoot(document.getElementById("root")); +root.render(); diff --git a/samples/grids/grid/data-exporting-indicator/tsconfig.json b/samples/grids/grid/data-exporting-indicator/tsconfig.json new file mode 100644 index 0000000000..8c0d146f95 --- /dev/null +++ b/samples/grids/grid/data-exporting-indicator/tsconfig.json @@ -0,0 +1,44 @@ +{ + "compilerOptions": { + "resolveJsonModule": true, + "esModuleInterop": true, + "baseUrl": ".", + "outDir": "build/dist", + "module": "esnext", + "target": "es5", + "lib": [ + "es6", + "dom" + ], + "sourceMap": true, + "allowJs": true, + "jsx": "react-jsx", + "moduleResolution": "node", + "rootDir": "src", + "forceConsistentCasingInFileNames": true, + "noImplicitReturns": true, + "noImplicitThis": true, + "noImplicitAny": true, + "noUnusedLocals": false, + "importHelpers": true, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "strict": false, + "isolatedModules": true, + "noEmit": true + }, + "exclude": [ + "node_modules", + "build", + "scripts", + "acceptance-tests", + "webpack", + "jest", + "src/setupTests.ts", + "**/odatajs-4.0.0.js", + "config-overrides.js" + ], + "include": [ + "src" + ] +} diff --git a/samples/grids/grid/data-exporting-indicator/vite.config.js b/samples/grids/grid/data-exporting-indicator/vite.config.js new file mode 100644 index 0000000000..1744dbc719 --- /dev/null +++ b/samples/grids/grid/data-exporting-indicator/vite.config.js @@ -0,0 +1,12 @@ +import { defineConfig } from 'vite'; +import react from '@vitejs/plugin-react'; + +export default defineConfig({ + plugins: [react()], + build: { + outDir: 'build' + }, + server: { + open: false + }, +}); \ No newline at end of file diff --git a/samples/grids/tree-grid/data-exporting-indicator/src/index.tsx b/samples/grids/tree-grid/data-exporting-indicator/src/index.tsx index c36a97c122..73a7578aae 100644 --- a/samples/grids/tree-grid/data-exporting-indicator/src/index.tsx +++ b/samples/grids/tree-grid/data-exporting-indicator/src/index.tsx @@ -26,11 +26,17 @@ export default function App() { const toolbarRef = useRef(null); const localData: any[] = []; - for (let i = 0; i < 10000; i += 3) { - for (let c = 0; c < ordersData.length; c++) { - localData.push(ordersData[c]); - } + for (let i = 0; i < 100; i++) { + for (let c = 0; c < ordersData.length; c++) { + const original = ordersData[c]; + localData.push({ + ...original, + ID: original.ID + (i * ordersData.length), + ParentID: original.ParentID === -1 ? -1 : original.ParentID + (i * ordersData.length) + }); } +} + function showProgress() { toolbarRef.current.showProgress = true; From 8e5fb8e6aa66b7f3621a0afbbfacfd50f022ed62 Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Mon, 12 Jan 2026 10:16:36 -0500 Subject: [PATCH 20/43] Adding changes from build igniteui-xplat-examples-output+PRs_2026.1.6.1 (#994) Co-authored-by: tfsbuild --- .../src/WorldStats.ts | 17 +++---- .../src/CountryStatsAfrica.ts | 4 +- .../src/WorldStats.ts | 17 +++---- .../src/WorldStats.ts | 17 +++---- .../column-hiding-toolbar-style/src/index.css | 44 ++++++++++--------- .../column-hiding-toolbar-style/src/index.tsx | 12 +++-- .../cell-selection-mode/src/index.tsx | 4 +- .../column-hiding-toolbar-style/src/index.css | 22 ++++++---- .../column-pinning-options/src/index.tsx | 11 +---- .../column-hiding-toolbar-style/src/index.css | 44 ++++++++++--------- .../column-hiding-toolbar-style/src/index.tsx | 16 ++++--- 11 files changed, 113 insertions(+), 95 deletions(-) diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/WorldStats.ts b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/WorldStats.ts index 442f0de331..8a4badaf09 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/WorldStats.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/WorldStats.ts @@ -47,7 +47,7 @@ export class WorldStats extends Array { new WorldStatsItem({ code: `PHL`, short: `PH`, name: `Philippines`, continent: `Asia`, population: 104256076, gdpTotal: 801900, economy: `Emerging`, region: `Eastern Asia`, status: `Country`, x: 121.4, y: 16.78, gdpPerPerson: 7692, rank: 13, unemployment: 7, oilProduction: 0, birthRate: 26, medianAge: 22, electricity: 53670, televisions: 3700000, publicDebt: 56, internet: 5300000 }), new WorldStatsItem({ code: `EGY`, short: `EG`, name: `Egypt`, continent: `Africa`, population: 97041072, gdpTotal: 1105000, economy: `Emerging`, region: `Middle East`, status: `Country`, x: 30.787, y: 26.825, gdpPerPerson: 11387, rank: 14, unemployment: 9, oilProduction: 665000, birthRate: 22, medianAge: 25, electricity: 102500, televisions: 7700000, publicDebt: 106, internet: 8620000 }), new WorldStatsItem({ code: `VNM`, short: `VN`, name: `Vietnam`, continent: `Asia`, population: 96160163, gdpTotal: 594900, economy: `Emerging`, region: `Eastern Asia`, status: `Country`, x: 108.46, y: 13.711, gdpPerPerson: 6187, rank: 15, unemployment: 4, oilProduction: 324000, birthRate: 16, medianAge: 27, electricity: 59010, televisions: 3570000, publicDebt: 42, internet: 17870000 }), - new WorldStatsItem({ code: `COD`, short: `CD`, name: `Dem. Rep. Congo`, continent: `Africa`, population: 83301151, gdpTotal: 66010, economy: `Least Developed`, region: `Middle Africa`, status: `Country`, x: 21.738, y: -4.071, gdpPerPerson: 792, rank: 16, unemployment: 3, oilProduction: 4, birthRate: 13, medianAge: 41, electricity: 48913, televisions: 55942436, publicDebt: 16, internet: 8903936 }), + new WorldStatsItem({ code: `COD`, short: `CD`, name: `DR Congo`, continent: `Africa`, population: 83301151, gdpTotal: 66010, economy: `Least Developed`, region: `Middle Africa`, status: `Country`, x: 21.738, y: -4.071, gdpPerPerson: 792, rank: 16, unemployment: 3, oilProduction: 4, birthRate: 13, medianAge: 41, electricity: 48913, televisions: 55942436, publicDebt: 16, internet: 8903936 }), new WorldStatsItem({ code: `IRN`, short: `IR`, name: `Iran`, continent: `Asia`, population: 82021564, gdpTotal: 1459000, economy: `Emerging`, region: `Middle East`, status: `Country`, x: 53.664, y: 32.435, gdpPerPerson: 17788, rank: 17, unemployment: 12, oilProduction: 3956000, birthRate: 17, medianAge: 26, electricity: 170400, televisions: 4610000, publicDebt: 17, internet: 23000000 }), new WorldStatsItem({ code: `TUR`, short: `TR`, name: `Turkey`, continent: `Asia`, population: 80845215, gdpTotal: 1670000, economy: `Emerging`, region: `Middle East`, status: `Country`, x: 35.243, y: 38.962, gdpPerPerson: 20657, rank: 18, unemployment: 10, oilProduction: 45460, birthRate: 16, medianAge: 29, electricity: 154200, televisions: 20900000, publicDebt: 39, internet: 13150000 }), new WorldStatsItem({ code: `DEU`, short: `DE`, name: `Germany`, continent: `Europe`, population: 80594017, gdpTotal: 3979000, economy: `Developed`, region: `Western Europe`, status: `Country`, x: 11.43, y: 52.237, gdpPerPerson: 49371, rank: 19, unemployment: 9, oilProduction: 141700, birthRate: 8, medianAge: 43, electricity: 579400, televisions: 51400000, publicDebt: 65, internet: 42500000 }), @@ -67,6 +67,7 @@ export class WorldStats extends Array { new WorldStatsItem({ code: `DZA`, short: `DZ`, name: `Algeria`, continent: `Africa`, population: 40969443, gdpTotal: 609400, economy: `Developing`, region: `Northern Africa`, status: `Country`, x: 1.642, y: 28.04, gdpPerPerson: 14875, rank: 33, unemployment: 12, oilProduction: 1358000, birthRate: 17, medianAge: 26, electricity: 31910, televisions: 3100000, publicDebt: 18, internet: 3500000 }), new WorldStatsItem({ code: `UGA`, short: `UG`, name: `Uganda`, continent: `Africa`, population: 39570125, gdpTotal: 84930, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 32.27, y: 1.375, gdpPerPerson: 2146, rank: 34, unemployment: 10, oilProduction: 1, birthRate: 10, medianAge: 32, electricity: 35388, televisions: 27867123, publicDebt: 21, internet: 2000000 }), new WorldStatsItem({ code: `IRQ`, short: `IQ`, name: `Iraq`, continent: `Asia`, population: 39192111, gdpTotal: 596700, economy: `Developing`, region: `Middle East`, status: `Country`, x: 43.66, y: 33.218, gdpPerPerson: 15225, rank: 35, unemployment: 6, oilProduction: 0, birthRate: 20, medianAge: 44, electricity: 48545, televisions: 13178804, publicDebt: 40, internet: 9538092 }), + new WorldStatsItem({ code: `KUR`, short: `KU`, name: `Kurdistan`, continent: `Asia`, population: 6370668, gdpTotal: 66000, economy: `Developing`, region: `Middle East`, status: `Dependency`, x: 43.6, y: 36.05, gdpPerPerson: 10360, rank: 241, unemployment: 8, oilProduction: 4, birthRate: 22, medianAge: 46, electricity: 49545, televisions: 3178804, publicDebt: 35, internet: 2178804 }), new WorldStatsItem({ code: `POL`, short: `PL`, name: `Poland`, continent: `Europe`, population: 38476269, gdpTotal: 1052000, economy: `Developed`, region: `Eastern Europe`, status: `Country`, x: 20.073, y: 52.374, gdpPerPerson: 27342, rank: 36, unemployment: 13, oilProduction: 0, birthRate: 10, medianAge: 38, electricity: 146200, televisions: 13050000, publicDebt: 43, internet: 16000000 }), new WorldStatsItem({ code: `SDN`, short: `SD`, name: `Sudan`, continent: `Africa`, population: 37345935, gdpTotal: 176300, economy: `Developing`, region: `Northern Africa`, status: `Country`, x: 30.217, y: 15.434, gdpPerPerson: 4721, rank: 37, unemployment: 19, oilProduction: 484500, birthRate: 34, medianAge: 19, electricity: 3944, televisions: 2380000, publicDebt: 106, internet: 1500000 }), new WorldStatsItem({ code: `CAN`, short: `CA`, name: `Canada`, continent: `North America`, population: 35623680, gdpTotal: 1674000, economy: `Developed`, region: `Northern America`, status: `Country`, x: -108, y: 55.855, gdpPerPerson: 46991, rank: 38, unemployment: 6, oilProduction: 3310000, birthRate: 10, medianAge: 40, electricity: 609600, televisions: 21500000, publicDebt: 64, internet: 28000000 }), @@ -153,7 +154,7 @@ export class WorldStats extends Array { new WorldStatsItem({ code: `TKM`, short: `TM`, name: `Turkmenistan`, continent: `Asia`, population: 5351277, gdpTotal: 94720, economy: `Developing`, region: `Central Asia`, status: `Country`, x: 59.562, y: 38.975, gdpPerPerson: 17700, rank: 119, unemployment: 11, oilProduction: 4, birthRate: 11, medianAge: 43, electricity: 91281, televisions: 2935468, publicDebt: 17, internet: 3203210 }), new WorldStatsItem({ code: `NOR`, short: `NO`, name: `Norway`, continent: `Europe`, population: 5320045, gdpTotal: 364700, economy: `Developed`, region: `Northern Europe`, status: `Country`, x: 9.66, y: 60.712, gdpPerPerson: 68552, rank: 120, unemployment: 3, oilProduction: 2560000, birthRate: 11, medianAge: 39, electricity: 135800, televisions: 2030000, publicDebt: 83, internet: 3800000 }), new WorldStatsItem({ code: `IRL`, short: `IE`, name: `Ireland`, continent: `Europe`, population: 5011102, gdpTotal: 322000, economy: `Developed`, region: `Northern Europe`, status: `Country`, x: -8.209, y: 53.42, gdpPerPerson: 64257, rank: 121, unemployment: 5, oilProduction: 0, birthRate: 14, medianAge: 35, electricity: 24130, televisions: 1820000, publicDebt: 25, internet: 1708000 }), - new WorldStatsItem({ code: `COG`, short: `CG`, name: `Congo`, continent: `Africa`, population: 4954674, gdpTotal: 30270, economy: `Developing`, region: `Middle Africa`, status: `Country`, x: 16.264, y: -0.07, gdpPerPerson: 6109, rank: 122, unemployment: 13, oilProduction: 4, birthRate: 11, medianAge: 52, electricity: 83556, televisions: 1560800, publicDebt: 6, internet: 2650237 }), + new WorldStatsItem({ code: `COG`, short: `CG`, name: `Congo Republic`, continent: `Africa`, population: 4954674, gdpTotal: 30270, economy: `Developing`, region: `Middle Africa`, status: `Country`, x: 16.264, y: -0.07, gdpPerPerson: 6109, rank: 122, unemployment: 13, oilProduction: 4, birthRate: 11, medianAge: 52, electricity: 83556, televisions: 1560800, publicDebt: 6, internet: 2650237 }), new WorldStatsItem({ code: `CRI`, short: `CR`, name: `Costa Rica`, continent: `North America`, population: 4930258, gdpTotal: 79260, economy: `Emerging`, region: `Central America`, status: `Country`, x: -83.91, y: 9.92, gdpPerPerson: 16076, rank: 123, unemployment: 5, oilProduction: 0, birthRate: 18, medianAge: 27, electricity: 8349, televisions: 525000, publicDebt: 47, internet: 1500000 }), new WorldStatsItem({ code: `GEO`, short: `GE`, name: `Georgia`, continent: `Asia`, population: 4926330, gdpTotal: 37270, economy: `Developing`, region: `Middle East`, status: `Country`, x: 43.257, y: 42.162, gdpPerPerson: 7565, rank: 124, unemployment: 15, oilProduction: 5, birthRate: 10, medianAge: 43, electricity: 44936, televisions: 2728128, publicDebt: 29, internet: 3844448 }), new WorldStatsItem({ code: `LBR`, short: `LR`, name: `Liberia`, continent: `Africa`, population: 4689021, gdpTotal: 3881, economy: `Least Developed`, region: `Western Africa`, status: `Country`, x: -9.454, y: 6.445, gdpPerPerson: 828, rank: 125, unemployment: 4, oilProduction: 0, birthRate: 8, medianAge: 35, electricity: 89626, televisions: 3065112, publicDebt: 38, internet: 1475304 }), @@ -182,7 +183,7 @@ export class WorldStats extends Array { new WorldStatsItem({ code: `SVN`, short: `SI`, name: `Slovenia`, continent: `Europe`, population: 1972126, gdpTotal: 68350, economy: `Developed`, region: `Southern Europe`, status: `Country`, x: 14.947, y: 46.146, gdpPerPerson: 34658, rank: 148, unemployment: 8, oilProduction: 5, birthRate: 9, medianAge: 41, electricity: 14900, televisions: 710000, publicDebt: 24, internet: 1300000 }), new WorldStatsItem({ code: `LSO`, short: `LS`, name: `Lesotho`, continent: `Africa`, population: 1958042, gdpTotal: 6019, economy: `Least Developed`, region: `Southern Africa`, status: `Country`, x: 28.221, y: -29.61, gdpPerPerson: 3074, rank: 149, unemployment: 12, oilProduction: 2, birthRate: 8, medianAge: 32, electricity: 20229, televisions: 1457517, publicDebt: 14, internet: 1375222 }), new WorldStatsItem({ code: `LVA`, short: `LV`, name: `Latvia`, continent: `Europe`, population: 1944643, gdpTotal: 50650, economy: `Developed`, region: `Northern Europe`, status: `Country`, x: 26.505, y: 56.755, gdpPerPerson: 26046, rank: 150, unemployment: 6, oilProduction: 0, birthRate: 10, medianAge: 40, electricity: 4778, televisions: 1220000, publicDebt: 7, internet: 1770000 }), - new WorldStatsItem({ code: `RKS`, short: `RS`, name: `Kosovo`, continent: `Europe`, population: 1895250, gdpTotal: 18490, economy: `Developing`, region: `Southern Europe`, status: `Country`, x: 20.891, y: 42.557, gdpPerPerson: 9756, rank: 151, unemployment: 12, oilProduction: 0, birthRate: 8, medianAge: 55, electricity: 14878, televisions: 1287863, publicDebt: 20, internet: 1422193 }), + new WorldStatsItem({ code: `RKS`, short: `XK`, name: `Kosovo`, continent: `Europe`, population: 1895250, gdpTotal: 18490, economy: `Developing`, region: `Southern Europe`, status: `Country`, x: 20.891, y: 42.557, gdpPerPerson: 9756, rank: 151, unemployment: 12, oilProduction: 0, birthRate: 8, medianAge: 55, electricity: 14878, televisions: 1287863, publicDebt: 20, internet: 1422193 }), new WorldStatsItem({ code: `GNB`, short: `GW`, name: `Guinea-Bissau`, continent: `Africa`, population: 1792338, gdpTotal: 2851, economy: `Least Developed`, region: `Western Africa`, status: `Country`, x: -14.59, y: 11.942, gdpPerPerson: 1591, rank: 152, unemployment: 5, oilProduction: 5, birthRate: 5, medianAge: 55, electricity: 74684, televisions: 1427462, publicDebt: 8, internet: 365000 }), new WorldStatsItem({ code: `GAB`, short: `GA`, name: `Gabon`, continent: `Africa`, population: 1772255, gdpTotal: 35980, economy: `Developing`, region: `Middle Africa`, status: `Country`, x: 11.592, y: -0.807, gdpPerPerson: 20302, rank: 153, unemployment: 21, oilProduction: 240000, birthRate: 36, medianAge: 19, electricity: 1520, televisions: 63000, publicDebt: 53, internet: 145000 }), new WorldStatsItem({ code: `SWZ`, short: `SZ`, name: `Eswatini`, continent: `Africa`, population: 1467152, gdpTotal: 11060, economy: `Developing`, region: `Southern Africa`, status: `Country`, x: 31.45, y: -26.52, gdpPerPerson: 7538, rank: 154, unemployment: 6, oilProduction: 3, birthRate: 17, medianAge: 39, electricity: 72804, televisions: 229393, publicDebt: 5, internet: 427760 }), @@ -217,7 +218,7 @@ export class WorldStats extends Array { new WorldStatsItem({ code: `MYT`, short: `YT`, name: `Mayotte`, continent: `Africa`, population: 320901, gdpTotal: 2932, economy: `Developing`, region: `Central America`, status: `Country`, x: 45.14, y: -12.84, gdpPerPerson: 9137, rank: 183, unemployment: 35, oilProduction: 0, birthRate: 46, medianAge: 50, electricity: 1604505, televisions: 256721, publicDebt: 29, internet: 192541 }), new WorldStatsItem({ code: `GUF`, short: `GF`, name: `French Guiana`, continent: `South America`, population: 296161, gdpTotal: 4562, economy: `Developed`, region: `South America`, status: `Dependency`, x: -53.13, y: 3.893, gdpPerPerson: 4386, rank: 184, unemployment: 3, oilProduction: 0, birthRate: 15, medianAge: 55, electricity: 73845, televisions: 147489, publicDebt: 35, internet: 209593 }), new WorldStatsItem({ code: `BRB`, short: `BB`, name: `Barbados`, continent: `North America`, population: 292336, gdpTotal: 4804, economy: `Developing`, region: `Central America`, status: `Country`, x: -59.53, y: 13.19, gdpPerPerson: 16433, rank: 186, unemployment: 8, oilProduction: 3, birthRate: 21, medianAge: 51, electricity: 28728, televisions: 173392, publicDebt: 12, internet: 73593 }), - new WorldStatsItem({ code: `PYF`, short: `PF`, name: `Fr. Polynesia`, continent: `Oceania`, population: 287881, gdpTotal: 5490, economy: `Developing`, region: `Polynesia`, status: `Dependency`, x: -143.9, y: -14.82, gdpPerPerson: 19070, rank: 187, unemployment: 1, oilProduction: 4, birthRate: 6, medianAge: 45, electricity: 46206, televisions: 43757, publicDebt: 12, internet: 172560 }), + new WorldStatsItem({ code: `PYF`, short: `PF`, name: `French Polynesia`, continent: `Oceania`, population: 287881, gdpTotal: 5490, economy: `Developing`, region: `Polynesia`, status: `Dependency`, x: -143.9, y: -14.82, gdpPerPerson: 19070, rank: 187, unemployment: 1, oilProduction: 4, birthRate: 6, medianAge: 45, electricity: 46206, televisions: 43757, publicDebt: 12, internet: 172560 }), new WorldStatsItem({ code: `VUT`, short: `VU`, name: `Vanuatu`, continent: `Oceania`, population: 282814, gdpTotal: 723, economy: `Least Developed`, region: `Melanesia`, status: `Country`, x: 168.21, y: -16.97, gdpPerPerson: 2556, rank: 188, unemployment: 11, oilProduction: 4, birthRate: 17, medianAge: 39, electricity: 50581, televisions: 187584, publicDebt: 42, internet: 223352 }), new WorldStatsItem({ code: `NCL`, short: `NC`, name: `New Caledonia`, continent: `Oceania`, population: 279070, gdpTotal: 10770, economy: `Developing`, region: `Melanesia`, status: `Dependency`, x: 165.26, y: -21.09, gdpPerPerson: 38592, rank: 189, unemployment: 10, oilProduction: 3, birthRate: 6, medianAge: 49, electricity: 18361, televisions: 79923, publicDebt: 45, internet: 149003 }), new WorldStatsItem({ code: `NCP`, short: `XC`, name: `Northern Cyprus`, continent: `Asia`, population: 265100, gdpTotal: 3600, economy: `Developing`, region: `Middle East`, status: `Country`, x: 33.714, y: 35.257, gdpPerPerson: 13580, rank: 190, unemployment: 4, oilProduction: 5, birthRate: 25, medianAge: 51, electricity: 84000, televisions: 135551, publicDebt: 30, internet: 167480 }), @@ -229,10 +230,10 @@ export class WorldStats extends Array { new WorldStatsItem({ code: `ABW`, short: `AW`, name: `Aruba`, continent: `North America`, population: 115120, gdpTotal: 2516, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -69.98, y: 12.519, gdpPerPerson: 21855, rank: 196, unemployment: 7, oilProduction: 2356, birthRate: 13, medianAge: 38, electricity: 770, televisions: 20000, publicDebt: 46, internet: 24000 }), new WorldStatsItem({ code: `GRD`, short: `GD`, name: `Grenada`, continent: `North America`, population: 111724, gdpTotal: 1511, economy: `Developing`, region: `Central America`, status: `Country`, x: -61.69, y: 12.123, gdpPerPerson: 13524, rank: 197, unemployment: 10, oilProduction: 0, birthRate: 10, medianAge: 50, electricity: 4992, televisions: 58674, publicDebt: 42, internet: 33132 }), new WorldStatsItem({ code: `KIR`, short: `KI`, name: `Kiribati`, continent: `Oceania`, population: 108145, gdpTotal: 211, economy: `Least Developed`, region: `Micronesia`, status: `Country`, x: -157.333, y: 1.884, gdpPerPerson: 1951, rank: 198, unemployment: 13, oilProduction: 4, birthRate: 9, medianAge: 52, electricity: 37081, televisions: 52395, publicDebt: 40, internet: 36620 }), - new WorldStatsItem({ code: `VIR`, short: `VI`, name: `U.S. Virgin Island`, continent: `North America`, population: 107268, gdpTotal: 3792, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -64.77, y: 17.77, gdpPerPerson: 35351, rank: 199, unemployment: 11, oilProduction: 2, birthRate: 12, medianAge: 38, electricity: 13387, televisions: 77187, publicDebt: 43, internet: 40836 }), + new WorldStatsItem({ code: `VIR`, short: `VI`, name: `US Virgin Islands`, continent: `North America`, population: 107268, gdpTotal: 3792, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -64.77, y: 17.77, gdpPerPerson: 35351, rank: 199, unemployment: 11, oilProduction: 2, birthRate: 12, medianAge: 38, electricity: 13387, televisions: 77187, publicDebt: 43, internet: 40836 }), new WorldStatsItem({ code: `TON`, short: `TO`, name: `Tonga`, continent: `Oceania`, population: 106479, gdpTotal: 557, economy: `Developing`, region: `Polynesia`, status: `Country`, x: -173.9, y: -18.62, gdpPerPerson: 5231, rank: 200, unemployment: 4, oilProduction: 4, birthRate: 5, medianAge: 33, electricity: 88735, televisions: 30257, publicDebt: 25, internet: 71756 }), new WorldStatsItem({ code: `FSM`, short: `FM`, name: `Micronesia`, continent: `Oceania`, population: 104196, gdpTotal: 314, economy: `Developing`, region: `Micronesia`, status: `Country`, x: 150.52, y: 7.435, gdpPerPerson: 3014, rank: 201, unemployment: 9, oilProduction: 5, birthRate: 5, medianAge: 38, electricity: 39068, televisions: 45396, publicDebt: 40, internet: 29169 }), - new WorldStatsItem({ code: `VCT`, short: `VC`, name: `St. Vincent and Grenadines`, continent: `North America`, population: 102089, gdpTotal: 1241, economy: `Developing`, region: `Central America`, status: `Country`, x: -61.17, y: 13.239, gdpPerPerson: 12156, rank: 202, unemployment: 10, oilProduction: 5, birthRate: 7, medianAge: 30, electricity: 39467, televisions: 42804, publicDebt: 9, internet: 66754 }), + new WorldStatsItem({ code: `VCT`, short: `VC`, name: `St. Vincent`, continent: `North America`, population: 102089, gdpTotal: 1241, economy: `Developing`, region: `Central America`, status: `Country`, x: -61.17, y: 13.239, gdpPerPerson: 12156, rank: 202, unemployment: 10, oilProduction: 5, birthRate: 7, medianAge: 30, electricity: 39467, televisions: 42804, publicDebt: 9, internet: 66754 }), new WorldStatsItem({ code: `JEY`, short: `JE`, name: `Jersey`, continent: `Europe`, population: 98840, gdpTotal: 5080, economy: `Developed`, region: `Northern Europe`, status: `Territory`, x: -2.123, y: 49.218, gdpPerPerson: 51396, rank: 203, unemployment: 4, oilProduction: 1, birthRate: 18, medianAge: 30, electricity: 64261, televisions: 52453, publicDebt: 34, internet: 3026 }), new WorldStatsItem({ code: `ATG`, short: `AG`, name: `Antigua and Barbuda`, continent: `North America`, population: 94731, gdpTotal: 2171, economy: `Developing`, region: `Central America`, status: `Country`, x: -61.79, y: 17.096, gdpPerPerson: 22918, rank: 204, unemployment: 3, oilProduction: 1, birthRate: 5, medianAge: 36, electricity: 35849, televisions: 75384, publicDebt: 32, internet: 6170 }), new WorldStatsItem({ code: `SYC`, short: `SC`, name: `Seychelles`, continent: `Africa`, population: 93920, gdpTotal: 2608, economy: `Developing`, region: `Eastern Africa`, status: `Country`, x: 55.463, y: -4.672, gdpPerPerson: 27768, rank: 205, unemployment: 2, oilProduction: 0, birthRate: 16, medianAge: 29, electricity: 252, televisions: 11000, publicDebt: 92, internet: 32000 }), @@ -246,7 +247,7 @@ export class WorldStats extends Array { new WorldStatsItem({ code: `GRL`, short: `GL`, name: `Greenland`, continent: `North America`, population: 57713, gdpTotal: 2173, economy: `Developed`, region: `Northern America`, status: `Dependency`, x: -42.12, y: 69.547, gdpPerPerson: 37652, rank: 213, unemployment: 7, oilProduction: 5, birthRate: 19, medianAge: 42, electricity: 86090, televisions: 43741, publicDebt: 42, internet: 11423 }), new WorldStatsItem({ code: `KNA`, short: `KN`, name: `St. Kitts and Nevis`, continent: `North America`, population: 52715, gdpTotal: 1427, economy: `Developing`, region: `Central America`, status: `Country`, x: -62.77, y: 17.351, gdpPerPerson: 27070, rank: 214, unemployment: 5, oilProduction: 2, birthRate: 18, medianAge: 40, electricity: 65438, televisions: 17719, publicDebt: 11, internet: 8543 }), new WorldStatsItem({ code: `TCA`, short: `TC`, name: `Turks and Caicos Island`, continent: `North America`, population: 52570, gdpTotal: 632, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -71.96, y: 21.913, gdpPerPerson: 12022, rank: 215, unemployment: 6, oilProduction: 0, birthRate: 13, medianAge: 42, electricity: 51325, televisions: 13109, publicDebt: 13, internet: 24564 }), - new WorldStatsItem({ code: `MNP`, short: `MP`, name: `N. Mariana Island`, continent: `Oceania`, population: 52263, gdpTotal: 682, economy: `Developing`, region: `Micronesia`, status: `Dependency`, x: 145.49, y: 16.459, gdpPerPerson: 13049, rank: 216, unemployment: 10, oilProduction: 1, birthRate: 9, medianAge: 46, electricity: 87386, televisions: 13049, publicDebt: 20, internet: 5484 }), + new WorldStatsItem({ code: `MNP`, short: `MP`, name: `Northern Mariana Islands`, continent: `Oceania`, population: 52263, gdpTotal: 682, economy: `Developing`, region: `Micronesia`, status: `Dependency`, x: 145.49, y: 16.459, gdpPerPerson: 13049, rank: 216, unemployment: 10, oilProduction: 1, birthRate: 9, medianAge: 46, electricity: 87386, televisions: 13049, publicDebt: 20, internet: 5484 }), new WorldStatsItem({ code: `ASM`, short: `AS`, name: `American Samoa`, continent: `Oceania`, population: 51504, gdpTotal: 711, economy: `Developing`, region: `Polynesia`, status: `Dependency`, x: -170.6, y: -14.3, gdpPerPerson: 13805, rank: 217, unemployment: 3, oilProduction: 4, birthRate: 13, medianAge: 42, electricity: 65918, televisions: 18802, publicDebt: 23, internet: 14691 }), new WorldStatsItem({ code: `FRO`, short: `FO`, name: `Faeroe Island`, continent: `Europe`, population: 50730, gdpTotal: 2001, economy: `Developed`, region: `Northern Europe`, status: `Dependency`, x: -6.857, y: 62.178, gdpPerPerson: 39444, rank: 218, unemployment: 15, oilProduction: 2, birthRate: 11, medianAge: 46, electricity: 55029, televisions: 11762, publicDebt: 13, internet: 2412 }), new WorldStatsItem({ code: `SXM`, short: `SX`, name: `Sint Maarten`, continent: `North America`, population: 42083, gdpTotal: 366, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -63.06, y: 18.044, gdpPerPerson: 8697, rank: 219, unemployment: 14, oilProduction: 4, birthRate: 19, medianAge: 50, electricity: 17166, televisions: 8474, publicDebt: 33, internet: 14309 }), @@ -272,7 +273,7 @@ export class WorldStats extends Array { new WorldStatsItem({ code: `FLK`, short: `FK`, name: `Falkland Island`, continent: `South America`, population: 2931, gdpTotal: 282, economy: `Developed`, region: `South America`, status: `Dependency`, x: -59.46, y: -51.78, gdpPerPerson: 96213, rank: 239, unemployment: 3, oilProduction: 5, birthRate: 9, medianAge: 36, electricity: 68007, televisions: 1489, publicDebt: 22, internet: 1335 }), new WorldStatsItem({ code: `NFK`, short: `NF`, name: `Norfolk Island`, continent: `Oceania`, population: 2210, gdpTotal: 33, economy: `Developing`, region: `Australia`, status: `Dependency`, x: 167.94, y: -29.05, gdpPerPerson: 14932, rank: 240, unemployment: 1, oilProduction: 0, birthRate: 15, medianAge: 46, electricity: 91943, televisions: 583, publicDebt: 41, internet: 1183 }), new WorldStatsItem({ code: `NIU`, short: `NU`, name: `Niue`, continent: `Oceania`, population: 1626, gdpTotal: 10, economy: `Developing`, region: `Polynesia`, status: `Dependency`, x: -169.8, y: -19.05, gdpPerPerson: 6150, rank: 241, unemployment: 15, oilProduction: 4, birthRate: 17, medianAge: 51, electricity: 16785, televisions: 585, publicDebt: 31, internet: 1247 }), - new WorldStatsItem({ code: `VAT`, short: `VT`, name: `Vatican`, continent: `Europe`, population: 771, gdpTotal: 15, economy: `Developed`, region: `Western Europe`, status: `Country`, x: 12.433, y: 41.902, gdpPerPerson: 19450, rank: 242, unemployment: 0, oilProduction: 0, birthRate: 0, medianAge: 55, electricity: 771, televisions: 100, publicDebt: 0, internet: 771 }), + new WorldStatsItem({ code: `VAT`, short: `VA`, name: `Vatican`, continent: `Europe`, population: 771, gdpTotal: 15, economy: `Developed`, region: `Western Europe`, status: `Country`, x: 12.433, y: 41.902, gdpPerPerson: 19450, rank: 242, unemployment: 0, oilProduction: 0, birthRate: 0, medianAge: 55, electricity: 771, televisions: 100, publicDebt: 0, internet: 771 }), ]; super(...newItems.slice(0)); } diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/CountryStatsAfrica.ts b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/CountryStatsAfrica.ts index b75b627807..d2e0e24b88 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/CountryStatsAfrica.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/CountryStatsAfrica.ts @@ -27,9 +27,9 @@ export class CountryStatsAfrica extends Array { new CountryStatsAfricaItem({ code: `CAF`, population: 4493000, workedHours: 38, gDP: 622, name: `Central African Republic` }), new CountryStatsAfricaItem({ code: `TCD`, population: 14111000, workedHours: 40.4, gDP: 2067, name: `Chad` }), new CountryStatsAfricaItem({ code: `COM`, population: 777000, workedHours: 40.1, gDP: 1413, name: `Comoros` }), - new CountryStatsAfricaItem({ code: `COG`, population: 4856000, workedHours: 38.1, gDP: 5543, name: `Congo` }), + new CountryStatsAfricaItem({ code: `COG`, population: 4856000, workedHours: 38.1, gDP: 5543, name: `Congo Republic` }), new CountryStatsAfricaItem({ code: `CIV`, population: 23226000, workedHours: 39.7, gDP: 3242, name: `Cote Ivoire` }), - new CountryStatsAfricaItem({ code: `COD`, population: 76245000, workedHours: 44, gDP: 812, name: `Democratic Republic of Congo` }), + new CountryStatsAfricaItem({ code: `COD`, population: 76245000, workedHours: 44, gDP: 812, name: `DR Congo` }), new CountryStatsAfricaItem({ code: `EGY`, population: 92443000, workedHours: 39.7, gDP: 10096, name: `Egypt` }), new CountryStatsAfricaItem({ code: `GNQ`, population: 1169000, workedHours: 38.8, gDP: 27554, name: `Equatorial Guinea` }), new CountryStatsAfricaItem({ code: `SWZ`, population: 1104000, workedHours: 45.7, gDP: 7759, name: `Eswatini` }), diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/WorldStats.ts b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/WorldStats.ts index 442f0de331..8a4badaf09 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/WorldStats.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/WorldStats.ts @@ -47,7 +47,7 @@ export class WorldStats extends Array { new WorldStatsItem({ code: `PHL`, short: `PH`, name: `Philippines`, continent: `Asia`, population: 104256076, gdpTotal: 801900, economy: `Emerging`, region: `Eastern Asia`, status: `Country`, x: 121.4, y: 16.78, gdpPerPerson: 7692, rank: 13, unemployment: 7, oilProduction: 0, birthRate: 26, medianAge: 22, electricity: 53670, televisions: 3700000, publicDebt: 56, internet: 5300000 }), new WorldStatsItem({ code: `EGY`, short: `EG`, name: `Egypt`, continent: `Africa`, population: 97041072, gdpTotal: 1105000, economy: `Emerging`, region: `Middle East`, status: `Country`, x: 30.787, y: 26.825, gdpPerPerson: 11387, rank: 14, unemployment: 9, oilProduction: 665000, birthRate: 22, medianAge: 25, electricity: 102500, televisions: 7700000, publicDebt: 106, internet: 8620000 }), new WorldStatsItem({ code: `VNM`, short: `VN`, name: `Vietnam`, continent: `Asia`, population: 96160163, gdpTotal: 594900, economy: `Emerging`, region: `Eastern Asia`, status: `Country`, x: 108.46, y: 13.711, gdpPerPerson: 6187, rank: 15, unemployment: 4, oilProduction: 324000, birthRate: 16, medianAge: 27, electricity: 59010, televisions: 3570000, publicDebt: 42, internet: 17870000 }), - new WorldStatsItem({ code: `COD`, short: `CD`, name: `Dem. Rep. Congo`, continent: `Africa`, population: 83301151, gdpTotal: 66010, economy: `Least Developed`, region: `Middle Africa`, status: `Country`, x: 21.738, y: -4.071, gdpPerPerson: 792, rank: 16, unemployment: 3, oilProduction: 4, birthRate: 13, medianAge: 41, electricity: 48913, televisions: 55942436, publicDebt: 16, internet: 8903936 }), + new WorldStatsItem({ code: `COD`, short: `CD`, name: `DR Congo`, continent: `Africa`, population: 83301151, gdpTotal: 66010, economy: `Least Developed`, region: `Middle Africa`, status: `Country`, x: 21.738, y: -4.071, gdpPerPerson: 792, rank: 16, unemployment: 3, oilProduction: 4, birthRate: 13, medianAge: 41, electricity: 48913, televisions: 55942436, publicDebt: 16, internet: 8903936 }), new WorldStatsItem({ code: `IRN`, short: `IR`, name: `Iran`, continent: `Asia`, population: 82021564, gdpTotal: 1459000, economy: `Emerging`, region: `Middle East`, status: `Country`, x: 53.664, y: 32.435, gdpPerPerson: 17788, rank: 17, unemployment: 12, oilProduction: 3956000, birthRate: 17, medianAge: 26, electricity: 170400, televisions: 4610000, publicDebt: 17, internet: 23000000 }), new WorldStatsItem({ code: `TUR`, short: `TR`, name: `Turkey`, continent: `Asia`, population: 80845215, gdpTotal: 1670000, economy: `Emerging`, region: `Middle East`, status: `Country`, x: 35.243, y: 38.962, gdpPerPerson: 20657, rank: 18, unemployment: 10, oilProduction: 45460, birthRate: 16, medianAge: 29, electricity: 154200, televisions: 20900000, publicDebt: 39, internet: 13150000 }), new WorldStatsItem({ code: `DEU`, short: `DE`, name: `Germany`, continent: `Europe`, population: 80594017, gdpTotal: 3979000, economy: `Developed`, region: `Western Europe`, status: `Country`, x: 11.43, y: 52.237, gdpPerPerson: 49371, rank: 19, unemployment: 9, oilProduction: 141700, birthRate: 8, medianAge: 43, electricity: 579400, televisions: 51400000, publicDebt: 65, internet: 42500000 }), @@ -67,6 +67,7 @@ export class WorldStats extends Array { new WorldStatsItem({ code: `DZA`, short: `DZ`, name: `Algeria`, continent: `Africa`, population: 40969443, gdpTotal: 609400, economy: `Developing`, region: `Northern Africa`, status: `Country`, x: 1.642, y: 28.04, gdpPerPerson: 14875, rank: 33, unemployment: 12, oilProduction: 1358000, birthRate: 17, medianAge: 26, electricity: 31910, televisions: 3100000, publicDebt: 18, internet: 3500000 }), new WorldStatsItem({ code: `UGA`, short: `UG`, name: `Uganda`, continent: `Africa`, population: 39570125, gdpTotal: 84930, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 32.27, y: 1.375, gdpPerPerson: 2146, rank: 34, unemployment: 10, oilProduction: 1, birthRate: 10, medianAge: 32, electricity: 35388, televisions: 27867123, publicDebt: 21, internet: 2000000 }), new WorldStatsItem({ code: `IRQ`, short: `IQ`, name: `Iraq`, continent: `Asia`, population: 39192111, gdpTotal: 596700, economy: `Developing`, region: `Middle East`, status: `Country`, x: 43.66, y: 33.218, gdpPerPerson: 15225, rank: 35, unemployment: 6, oilProduction: 0, birthRate: 20, medianAge: 44, electricity: 48545, televisions: 13178804, publicDebt: 40, internet: 9538092 }), + new WorldStatsItem({ code: `KUR`, short: `KU`, name: `Kurdistan`, continent: `Asia`, population: 6370668, gdpTotal: 66000, economy: `Developing`, region: `Middle East`, status: `Dependency`, x: 43.6, y: 36.05, gdpPerPerson: 10360, rank: 241, unemployment: 8, oilProduction: 4, birthRate: 22, medianAge: 46, electricity: 49545, televisions: 3178804, publicDebt: 35, internet: 2178804 }), new WorldStatsItem({ code: `POL`, short: `PL`, name: `Poland`, continent: `Europe`, population: 38476269, gdpTotal: 1052000, economy: `Developed`, region: `Eastern Europe`, status: `Country`, x: 20.073, y: 52.374, gdpPerPerson: 27342, rank: 36, unemployment: 13, oilProduction: 0, birthRate: 10, medianAge: 38, electricity: 146200, televisions: 13050000, publicDebt: 43, internet: 16000000 }), new WorldStatsItem({ code: `SDN`, short: `SD`, name: `Sudan`, continent: `Africa`, population: 37345935, gdpTotal: 176300, economy: `Developing`, region: `Northern Africa`, status: `Country`, x: 30.217, y: 15.434, gdpPerPerson: 4721, rank: 37, unemployment: 19, oilProduction: 484500, birthRate: 34, medianAge: 19, electricity: 3944, televisions: 2380000, publicDebt: 106, internet: 1500000 }), new WorldStatsItem({ code: `CAN`, short: `CA`, name: `Canada`, continent: `North America`, population: 35623680, gdpTotal: 1674000, economy: `Developed`, region: `Northern America`, status: `Country`, x: -108, y: 55.855, gdpPerPerson: 46991, rank: 38, unemployment: 6, oilProduction: 3310000, birthRate: 10, medianAge: 40, electricity: 609600, televisions: 21500000, publicDebt: 64, internet: 28000000 }), @@ -153,7 +154,7 @@ export class WorldStats extends Array { new WorldStatsItem({ code: `TKM`, short: `TM`, name: `Turkmenistan`, continent: `Asia`, population: 5351277, gdpTotal: 94720, economy: `Developing`, region: `Central Asia`, status: `Country`, x: 59.562, y: 38.975, gdpPerPerson: 17700, rank: 119, unemployment: 11, oilProduction: 4, birthRate: 11, medianAge: 43, electricity: 91281, televisions: 2935468, publicDebt: 17, internet: 3203210 }), new WorldStatsItem({ code: `NOR`, short: `NO`, name: `Norway`, continent: `Europe`, population: 5320045, gdpTotal: 364700, economy: `Developed`, region: `Northern Europe`, status: `Country`, x: 9.66, y: 60.712, gdpPerPerson: 68552, rank: 120, unemployment: 3, oilProduction: 2560000, birthRate: 11, medianAge: 39, electricity: 135800, televisions: 2030000, publicDebt: 83, internet: 3800000 }), new WorldStatsItem({ code: `IRL`, short: `IE`, name: `Ireland`, continent: `Europe`, population: 5011102, gdpTotal: 322000, economy: `Developed`, region: `Northern Europe`, status: `Country`, x: -8.209, y: 53.42, gdpPerPerson: 64257, rank: 121, unemployment: 5, oilProduction: 0, birthRate: 14, medianAge: 35, electricity: 24130, televisions: 1820000, publicDebt: 25, internet: 1708000 }), - new WorldStatsItem({ code: `COG`, short: `CG`, name: `Congo`, continent: `Africa`, population: 4954674, gdpTotal: 30270, economy: `Developing`, region: `Middle Africa`, status: `Country`, x: 16.264, y: -0.07, gdpPerPerson: 6109, rank: 122, unemployment: 13, oilProduction: 4, birthRate: 11, medianAge: 52, electricity: 83556, televisions: 1560800, publicDebt: 6, internet: 2650237 }), + new WorldStatsItem({ code: `COG`, short: `CG`, name: `Congo Republic`, continent: `Africa`, population: 4954674, gdpTotal: 30270, economy: `Developing`, region: `Middle Africa`, status: `Country`, x: 16.264, y: -0.07, gdpPerPerson: 6109, rank: 122, unemployment: 13, oilProduction: 4, birthRate: 11, medianAge: 52, electricity: 83556, televisions: 1560800, publicDebt: 6, internet: 2650237 }), new WorldStatsItem({ code: `CRI`, short: `CR`, name: `Costa Rica`, continent: `North America`, population: 4930258, gdpTotal: 79260, economy: `Emerging`, region: `Central America`, status: `Country`, x: -83.91, y: 9.92, gdpPerPerson: 16076, rank: 123, unemployment: 5, oilProduction: 0, birthRate: 18, medianAge: 27, electricity: 8349, televisions: 525000, publicDebt: 47, internet: 1500000 }), new WorldStatsItem({ code: `GEO`, short: `GE`, name: `Georgia`, continent: `Asia`, population: 4926330, gdpTotal: 37270, economy: `Developing`, region: `Middle East`, status: `Country`, x: 43.257, y: 42.162, gdpPerPerson: 7565, rank: 124, unemployment: 15, oilProduction: 5, birthRate: 10, medianAge: 43, electricity: 44936, televisions: 2728128, publicDebt: 29, internet: 3844448 }), new WorldStatsItem({ code: `LBR`, short: `LR`, name: `Liberia`, continent: `Africa`, population: 4689021, gdpTotal: 3881, economy: `Least Developed`, region: `Western Africa`, status: `Country`, x: -9.454, y: 6.445, gdpPerPerson: 828, rank: 125, unemployment: 4, oilProduction: 0, birthRate: 8, medianAge: 35, electricity: 89626, televisions: 3065112, publicDebt: 38, internet: 1475304 }), @@ -182,7 +183,7 @@ export class WorldStats extends Array { new WorldStatsItem({ code: `SVN`, short: `SI`, name: `Slovenia`, continent: `Europe`, population: 1972126, gdpTotal: 68350, economy: `Developed`, region: `Southern Europe`, status: `Country`, x: 14.947, y: 46.146, gdpPerPerson: 34658, rank: 148, unemployment: 8, oilProduction: 5, birthRate: 9, medianAge: 41, electricity: 14900, televisions: 710000, publicDebt: 24, internet: 1300000 }), new WorldStatsItem({ code: `LSO`, short: `LS`, name: `Lesotho`, continent: `Africa`, population: 1958042, gdpTotal: 6019, economy: `Least Developed`, region: `Southern Africa`, status: `Country`, x: 28.221, y: -29.61, gdpPerPerson: 3074, rank: 149, unemployment: 12, oilProduction: 2, birthRate: 8, medianAge: 32, electricity: 20229, televisions: 1457517, publicDebt: 14, internet: 1375222 }), new WorldStatsItem({ code: `LVA`, short: `LV`, name: `Latvia`, continent: `Europe`, population: 1944643, gdpTotal: 50650, economy: `Developed`, region: `Northern Europe`, status: `Country`, x: 26.505, y: 56.755, gdpPerPerson: 26046, rank: 150, unemployment: 6, oilProduction: 0, birthRate: 10, medianAge: 40, electricity: 4778, televisions: 1220000, publicDebt: 7, internet: 1770000 }), - new WorldStatsItem({ code: `RKS`, short: `RS`, name: `Kosovo`, continent: `Europe`, population: 1895250, gdpTotal: 18490, economy: `Developing`, region: `Southern Europe`, status: `Country`, x: 20.891, y: 42.557, gdpPerPerson: 9756, rank: 151, unemployment: 12, oilProduction: 0, birthRate: 8, medianAge: 55, electricity: 14878, televisions: 1287863, publicDebt: 20, internet: 1422193 }), + new WorldStatsItem({ code: `RKS`, short: `XK`, name: `Kosovo`, continent: `Europe`, population: 1895250, gdpTotal: 18490, economy: `Developing`, region: `Southern Europe`, status: `Country`, x: 20.891, y: 42.557, gdpPerPerson: 9756, rank: 151, unemployment: 12, oilProduction: 0, birthRate: 8, medianAge: 55, electricity: 14878, televisions: 1287863, publicDebt: 20, internet: 1422193 }), new WorldStatsItem({ code: `GNB`, short: `GW`, name: `Guinea-Bissau`, continent: `Africa`, population: 1792338, gdpTotal: 2851, economy: `Least Developed`, region: `Western Africa`, status: `Country`, x: -14.59, y: 11.942, gdpPerPerson: 1591, rank: 152, unemployment: 5, oilProduction: 5, birthRate: 5, medianAge: 55, electricity: 74684, televisions: 1427462, publicDebt: 8, internet: 365000 }), new WorldStatsItem({ code: `GAB`, short: `GA`, name: `Gabon`, continent: `Africa`, population: 1772255, gdpTotal: 35980, economy: `Developing`, region: `Middle Africa`, status: `Country`, x: 11.592, y: -0.807, gdpPerPerson: 20302, rank: 153, unemployment: 21, oilProduction: 240000, birthRate: 36, medianAge: 19, electricity: 1520, televisions: 63000, publicDebt: 53, internet: 145000 }), new WorldStatsItem({ code: `SWZ`, short: `SZ`, name: `Eswatini`, continent: `Africa`, population: 1467152, gdpTotal: 11060, economy: `Developing`, region: `Southern Africa`, status: `Country`, x: 31.45, y: -26.52, gdpPerPerson: 7538, rank: 154, unemployment: 6, oilProduction: 3, birthRate: 17, medianAge: 39, electricity: 72804, televisions: 229393, publicDebt: 5, internet: 427760 }), @@ -217,7 +218,7 @@ export class WorldStats extends Array { new WorldStatsItem({ code: `MYT`, short: `YT`, name: `Mayotte`, continent: `Africa`, population: 320901, gdpTotal: 2932, economy: `Developing`, region: `Central America`, status: `Country`, x: 45.14, y: -12.84, gdpPerPerson: 9137, rank: 183, unemployment: 35, oilProduction: 0, birthRate: 46, medianAge: 50, electricity: 1604505, televisions: 256721, publicDebt: 29, internet: 192541 }), new WorldStatsItem({ code: `GUF`, short: `GF`, name: `French Guiana`, continent: `South America`, population: 296161, gdpTotal: 4562, economy: `Developed`, region: `South America`, status: `Dependency`, x: -53.13, y: 3.893, gdpPerPerson: 4386, rank: 184, unemployment: 3, oilProduction: 0, birthRate: 15, medianAge: 55, electricity: 73845, televisions: 147489, publicDebt: 35, internet: 209593 }), new WorldStatsItem({ code: `BRB`, short: `BB`, name: `Barbados`, continent: `North America`, population: 292336, gdpTotal: 4804, economy: `Developing`, region: `Central America`, status: `Country`, x: -59.53, y: 13.19, gdpPerPerson: 16433, rank: 186, unemployment: 8, oilProduction: 3, birthRate: 21, medianAge: 51, electricity: 28728, televisions: 173392, publicDebt: 12, internet: 73593 }), - new WorldStatsItem({ code: `PYF`, short: `PF`, name: `Fr. Polynesia`, continent: `Oceania`, population: 287881, gdpTotal: 5490, economy: `Developing`, region: `Polynesia`, status: `Dependency`, x: -143.9, y: -14.82, gdpPerPerson: 19070, rank: 187, unemployment: 1, oilProduction: 4, birthRate: 6, medianAge: 45, electricity: 46206, televisions: 43757, publicDebt: 12, internet: 172560 }), + new WorldStatsItem({ code: `PYF`, short: `PF`, name: `French Polynesia`, continent: `Oceania`, population: 287881, gdpTotal: 5490, economy: `Developing`, region: `Polynesia`, status: `Dependency`, x: -143.9, y: -14.82, gdpPerPerson: 19070, rank: 187, unemployment: 1, oilProduction: 4, birthRate: 6, medianAge: 45, electricity: 46206, televisions: 43757, publicDebt: 12, internet: 172560 }), new WorldStatsItem({ code: `VUT`, short: `VU`, name: `Vanuatu`, continent: `Oceania`, population: 282814, gdpTotal: 723, economy: `Least Developed`, region: `Melanesia`, status: `Country`, x: 168.21, y: -16.97, gdpPerPerson: 2556, rank: 188, unemployment: 11, oilProduction: 4, birthRate: 17, medianAge: 39, electricity: 50581, televisions: 187584, publicDebt: 42, internet: 223352 }), new WorldStatsItem({ code: `NCL`, short: `NC`, name: `New Caledonia`, continent: `Oceania`, population: 279070, gdpTotal: 10770, economy: `Developing`, region: `Melanesia`, status: `Dependency`, x: 165.26, y: -21.09, gdpPerPerson: 38592, rank: 189, unemployment: 10, oilProduction: 3, birthRate: 6, medianAge: 49, electricity: 18361, televisions: 79923, publicDebt: 45, internet: 149003 }), new WorldStatsItem({ code: `NCP`, short: `XC`, name: `Northern Cyprus`, continent: `Asia`, population: 265100, gdpTotal: 3600, economy: `Developing`, region: `Middle East`, status: `Country`, x: 33.714, y: 35.257, gdpPerPerson: 13580, rank: 190, unemployment: 4, oilProduction: 5, birthRate: 25, medianAge: 51, electricity: 84000, televisions: 135551, publicDebt: 30, internet: 167480 }), @@ -229,10 +230,10 @@ export class WorldStats extends Array { new WorldStatsItem({ code: `ABW`, short: `AW`, name: `Aruba`, continent: `North America`, population: 115120, gdpTotal: 2516, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -69.98, y: 12.519, gdpPerPerson: 21855, rank: 196, unemployment: 7, oilProduction: 2356, birthRate: 13, medianAge: 38, electricity: 770, televisions: 20000, publicDebt: 46, internet: 24000 }), new WorldStatsItem({ code: `GRD`, short: `GD`, name: `Grenada`, continent: `North America`, population: 111724, gdpTotal: 1511, economy: `Developing`, region: `Central America`, status: `Country`, x: -61.69, y: 12.123, gdpPerPerson: 13524, rank: 197, unemployment: 10, oilProduction: 0, birthRate: 10, medianAge: 50, electricity: 4992, televisions: 58674, publicDebt: 42, internet: 33132 }), new WorldStatsItem({ code: `KIR`, short: `KI`, name: `Kiribati`, continent: `Oceania`, population: 108145, gdpTotal: 211, economy: `Least Developed`, region: `Micronesia`, status: `Country`, x: -157.333, y: 1.884, gdpPerPerson: 1951, rank: 198, unemployment: 13, oilProduction: 4, birthRate: 9, medianAge: 52, electricity: 37081, televisions: 52395, publicDebt: 40, internet: 36620 }), - new WorldStatsItem({ code: `VIR`, short: `VI`, name: `U.S. Virgin Island`, continent: `North America`, population: 107268, gdpTotal: 3792, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -64.77, y: 17.77, gdpPerPerson: 35351, rank: 199, unemployment: 11, oilProduction: 2, birthRate: 12, medianAge: 38, electricity: 13387, televisions: 77187, publicDebt: 43, internet: 40836 }), + new WorldStatsItem({ code: `VIR`, short: `VI`, name: `US Virgin Islands`, continent: `North America`, population: 107268, gdpTotal: 3792, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -64.77, y: 17.77, gdpPerPerson: 35351, rank: 199, unemployment: 11, oilProduction: 2, birthRate: 12, medianAge: 38, electricity: 13387, televisions: 77187, publicDebt: 43, internet: 40836 }), new WorldStatsItem({ code: `TON`, short: `TO`, name: `Tonga`, continent: `Oceania`, population: 106479, gdpTotal: 557, economy: `Developing`, region: `Polynesia`, status: `Country`, x: -173.9, y: -18.62, gdpPerPerson: 5231, rank: 200, unemployment: 4, oilProduction: 4, birthRate: 5, medianAge: 33, electricity: 88735, televisions: 30257, publicDebt: 25, internet: 71756 }), new WorldStatsItem({ code: `FSM`, short: `FM`, name: `Micronesia`, continent: `Oceania`, population: 104196, gdpTotal: 314, economy: `Developing`, region: `Micronesia`, status: `Country`, x: 150.52, y: 7.435, gdpPerPerson: 3014, rank: 201, unemployment: 9, oilProduction: 5, birthRate: 5, medianAge: 38, electricity: 39068, televisions: 45396, publicDebt: 40, internet: 29169 }), - new WorldStatsItem({ code: `VCT`, short: `VC`, name: `St. Vincent and Grenadines`, continent: `North America`, population: 102089, gdpTotal: 1241, economy: `Developing`, region: `Central America`, status: `Country`, x: -61.17, y: 13.239, gdpPerPerson: 12156, rank: 202, unemployment: 10, oilProduction: 5, birthRate: 7, medianAge: 30, electricity: 39467, televisions: 42804, publicDebt: 9, internet: 66754 }), + new WorldStatsItem({ code: `VCT`, short: `VC`, name: `St. Vincent`, continent: `North America`, population: 102089, gdpTotal: 1241, economy: `Developing`, region: `Central America`, status: `Country`, x: -61.17, y: 13.239, gdpPerPerson: 12156, rank: 202, unemployment: 10, oilProduction: 5, birthRate: 7, medianAge: 30, electricity: 39467, televisions: 42804, publicDebt: 9, internet: 66754 }), new WorldStatsItem({ code: `JEY`, short: `JE`, name: `Jersey`, continent: `Europe`, population: 98840, gdpTotal: 5080, economy: `Developed`, region: `Northern Europe`, status: `Territory`, x: -2.123, y: 49.218, gdpPerPerson: 51396, rank: 203, unemployment: 4, oilProduction: 1, birthRate: 18, medianAge: 30, electricity: 64261, televisions: 52453, publicDebt: 34, internet: 3026 }), new WorldStatsItem({ code: `ATG`, short: `AG`, name: `Antigua and Barbuda`, continent: `North America`, population: 94731, gdpTotal: 2171, economy: `Developing`, region: `Central America`, status: `Country`, x: -61.79, y: 17.096, gdpPerPerson: 22918, rank: 204, unemployment: 3, oilProduction: 1, birthRate: 5, medianAge: 36, electricity: 35849, televisions: 75384, publicDebt: 32, internet: 6170 }), new WorldStatsItem({ code: `SYC`, short: `SC`, name: `Seychelles`, continent: `Africa`, population: 93920, gdpTotal: 2608, economy: `Developing`, region: `Eastern Africa`, status: `Country`, x: 55.463, y: -4.672, gdpPerPerson: 27768, rank: 205, unemployment: 2, oilProduction: 0, birthRate: 16, medianAge: 29, electricity: 252, televisions: 11000, publicDebt: 92, internet: 32000 }), @@ -246,7 +247,7 @@ export class WorldStats extends Array { new WorldStatsItem({ code: `GRL`, short: `GL`, name: `Greenland`, continent: `North America`, population: 57713, gdpTotal: 2173, economy: `Developed`, region: `Northern America`, status: `Dependency`, x: -42.12, y: 69.547, gdpPerPerson: 37652, rank: 213, unemployment: 7, oilProduction: 5, birthRate: 19, medianAge: 42, electricity: 86090, televisions: 43741, publicDebt: 42, internet: 11423 }), new WorldStatsItem({ code: `KNA`, short: `KN`, name: `St. Kitts and Nevis`, continent: `North America`, population: 52715, gdpTotal: 1427, economy: `Developing`, region: `Central America`, status: `Country`, x: -62.77, y: 17.351, gdpPerPerson: 27070, rank: 214, unemployment: 5, oilProduction: 2, birthRate: 18, medianAge: 40, electricity: 65438, televisions: 17719, publicDebt: 11, internet: 8543 }), new WorldStatsItem({ code: `TCA`, short: `TC`, name: `Turks and Caicos Island`, continent: `North America`, population: 52570, gdpTotal: 632, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -71.96, y: 21.913, gdpPerPerson: 12022, rank: 215, unemployment: 6, oilProduction: 0, birthRate: 13, medianAge: 42, electricity: 51325, televisions: 13109, publicDebt: 13, internet: 24564 }), - new WorldStatsItem({ code: `MNP`, short: `MP`, name: `N. Mariana Island`, continent: `Oceania`, population: 52263, gdpTotal: 682, economy: `Developing`, region: `Micronesia`, status: `Dependency`, x: 145.49, y: 16.459, gdpPerPerson: 13049, rank: 216, unemployment: 10, oilProduction: 1, birthRate: 9, medianAge: 46, electricity: 87386, televisions: 13049, publicDebt: 20, internet: 5484 }), + new WorldStatsItem({ code: `MNP`, short: `MP`, name: `Northern Mariana Islands`, continent: `Oceania`, population: 52263, gdpTotal: 682, economy: `Developing`, region: `Micronesia`, status: `Dependency`, x: 145.49, y: 16.459, gdpPerPerson: 13049, rank: 216, unemployment: 10, oilProduction: 1, birthRate: 9, medianAge: 46, electricity: 87386, televisions: 13049, publicDebt: 20, internet: 5484 }), new WorldStatsItem({ code: `ASM`, short: `AS`, name: `American Samoa`, continent: `Oceania`, population: 51504, gdpTotal: 711, economy: `Developing`, region: `Polynesia`, status: `Dependency`, x: -170.6, y: -14.3, gdpPerPerson: 13805, rank: 217, unemployment: 3, oilProduction: 4, birthRate: 13, medianAge: 42, electricity: 65918, televisions: 18802, publicDebt: 23, internet: 14691 }), new WorldStatsItem({ code: `FRO`, short: `FO`, name: `Faeroe Island`, continent: `Europe`, population: 50730, gdpTotal: 2001, economy: `Developed`, region: `Northern Europe`, status: `Dependency`, x: -6.857, y: 62.178, gdpPerPerson: 39444, rank: 218, unemployment: 15, oilProduction: 2, birthRate: 11, medianAge: 46, electricity: 55029, televisions: 11762, publicDebt: 13, internet: 2412 }), new WorldStatsItem({ code: `SXM`, short: `SX`, name: `Sint Maarten`, continent: `North America`, population: 42083, gdpTotal: 366, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -63.06, y: 18.044, gdpPerPerson: 8697, rank: 219, unemployment: 14, oilProduction: 4, birthRate: 19, medianAge: 50, electricity: 17166, televisions: 8474, publicDebt: 33, internet: 14309 }), @@ -272,7 +273,7 @@ export class WorldStats extends Array { new WorldStatsItem({ code: `FLK`, short: `FK`, name: `Falkland Island`, continent: `South America`, population: 2931, gdpTotal: 282, economy: `Developed`, region: `South America`, status: `Dependency`, x: -59.46, y: -51.78, gdpPerPerson: 96213, rank: 239, unemployment: 3, oilProduction: 5, birthRate: 9, medianAge: 36, electricity: 68007, televisions: 1489, publicDebt: 22, internet: 1335 }), new WorldStatsItem({ code: `NFK`, short: `NF`, name: `Norfolk Island`, continent: `Oceania`, population: 2210, gdpTotal: 33, economy: `Developing`, region: `Australia`, status: `Dependency`, x: 167.94, y: -29.05, gdpPerPerson: 14932, rank: 240, unemployment: 1, oilProduction: 0, birthRate: 15, medianAge: 46, electricity: 91943, televisions: 583, publicDebt: 41, internet: 1183 }), new WorldStatsItem({ code: `NIU`, short: `NU`, name: `Niue`, continent: `Oceania`, population: 1626, gdpTotal: 10, economy: `Developing`, region: `Polynesia`, status: `Dependency`, x: -169.8, y: -19.05, gdpPerPerson: 6150, rank: 241, unemployment: 15, oilProduction: 4, birthRate: 17, medianAge: 51, electricity: 16785, televisions: 585, publicDebt: 31, internet: 1247 }), - new WorldStatsItem({ code: `VAT`, short: `VT`, name: `Vatican`, continent: `Europe`, population: 771, gdpTotal: 15, economy: `Developed`, region: `Western Europe`, status: `Country`, x: 12.433, y: 41.902, gdpPerPerson: 19450, rank: 242, unemployment: 0, oilProduction: 0, birthRate: 0, medianAge: 55, electricity: 771, televisions: 100, publicDebt: 0, internet: 771 }), + new WorldStatsItem({ code: `VAT`, short: `VA`, name: `Vatican`, continent: `Europe`, population: 771, gdpTotal: 15, economy: `Developed`, region: `Western Europe`, status: `Country`, x: 12.433, y: 41.902, gdpPerPerson: 19450, rank: 242, unemployment: 0, oilProduction: 0, birthRate: 0, medianAge: 55, electricity: 771, televisions: 100, publicDebt: 0, internet: 771 }), ]; super(...newItems.slice(0)); } diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/src/WorldStats.ts b/samples/charts/data-chart/scatter-bubble-chart-styling/src/WorldStats.ts index 442f0de331..8a4badaf09 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/src/WorldStats.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/src/WorldStats.ts @@ -47,7 +47,7 @@ export class WorldStats extends Array { new WorldStatsItem({ code: `PHL`, short: `PH`, name: `Philippines`, continent: `Asia`, population: 104256076, gdpTotal: 801900, economy: `Emerging`, region: `Eastern Asia`, status: `Country`, x: 121.4, y: 16.78, gdpPerPerson: 7692, rank: 13, unemployment: 7, oilProduction: 0, birthRate: 26, medianAge: 22, electricity: 53670, televisions: 3700000, publicDebt: 56, internet: 5300000 }), new WorldStatsItem({ code: `EGY`, short: `EG`, name: `Egypt`, continent: `Africa`, population: 97041072, gdpTotal: 1105000, economy: `Emerging`, region: `Middle East`, status: `Country`, x: 30.787, y: 26.825, gdpPerPerson: 11387, rank: 14, unemployment: 9, oilProduction: 665000, birthRate: 22, medianAge: 25, electricity: 102500, televisions: 7700000, publicDebt: 106, internet: 8620000 }), new WorldStatsItem({ code: `VNM`, short: `VN`, name: `Vietnam`, continent: `Asia`, population: 96160163, gdpTotal: 594900, economy: `Emerging`, region: `Eastern Asia`, status: `Country`, x: 108.46, y: 13.711, gdpPerPerson: 6187, rank: 15, unemployment: 4, oilProduction: 324000, birthRate: 16, medianAge: 27, electricity: 59010, televisions: 3570000, publicDebt: 42, internet: 17870000 }), - new WorldStatsItem({ code: `COD`, short: `CD`, name: `Dem. Rep. Congo`, continent: `Africa`, population: 83301151, gdpTotal: 66010, economy: `Least Developed`, region: `Middle Africa`, status: `Country`, x: 21.738, y: -4.071, gdpPerPerson: 792, rank: 16, unemployment: 3, oilProduction: 4, birthRate: 13, medianAge: 41, electricity: 48913, televisions: 55942436, publicDebt: 16, internet: 8903936 }), + new WorldStatsItem({ code: `COD`, short: `CD`, name: `DR Congo`, continent: `Africa`, population: 83301151, gdpTotal: 66010, economy: `Least Developed`, region: `Middle Africa`, status: `Country`, x: 21.738, y: -4.071, gdpPerPerson: 792, rank: 16, unemployment: 3, oilProduction: 4, birthRate: 13, medianAge: 41, electricity: 48913, televisions: 55942436, publicDebt: 16, internet: 8903936 }), new WorldStatsItem({ code: `IRN`, short: `IR`, name: `Iran`, continent: `Asia`, population: 82021564, gdpTotal: 1459000, economy: `Emerging`, region: `Middle East`, status: `Country`, x: 53.664, y: 32.435, gdpPerPerson: 17788, rank: 17, unemployment: 12, oilProduction: 3956000, birthRate: 17, medianAge: 26, electricity: 170400, televisions: 4610000, publicDebt: 17, internet: 23000000 }), new WorldStatsItem({ code: `TUR`, short: `TR`, name: `Turkey`, continent: `Asia`, population: 80845215, gdpTotal: 1670000, economy: `Emerging`, region: `Middle East`, status: `Country`, x: 35.243, y: 38.962, gdpPerPerson: 20657, rank: 18, unemployment: 10, oilProduction: 45460, birthRate: 16, medianAge: 29, electricity: 154200, televisions: 20900000, publicDebt: 39, internet: 13150000 }), new WorldStatsItem({ code: `DEU`, short: `DE`, name: `Germany`, continent: `Europe`, population: 80594017, gdpTotal: 3979000, economy: `Developed`, region: `Western Europe`, status: `Country`, x: 11.43, y: 52.237, gdpPerPerson: 49371, rank: 19, unemployment: 9, oilProduction: 141700, birthRate: 8, medianAge: 43, electricity: 579400, televisions: 51400000, publicDebt: 65, internet: 42500000 }), @@ -67,6 +67,7 @@ export class WorldStats extends Array { new WorldStatsItem({ code: `DZA`, short: `DZ`, name: `Algeria`, continent: `Africa`, population: 40969443, gdpTotal: 609400, economy: `Developing`, region: `Northern Africa`, status: `Country`, x: 1.642, y: 28.04, gdpPerPerson: 14875, rank: 33, unemployment: 12, oilProduction: 1358000, birthRate: 17, medianAge: 26, electricity: 31910, televisions: 3100000, publicDebt: 18, internet: 3500000 }), new WorldStatsItem({ code: `UGA`, short: `UG`, name: `Uganda`, continent: `Africa`, population: 39570125, gdpTotal: 84930, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 32.27, y: 1.375, gdpPerPerson: 2146, rank: 34, unemployment: 10, oilProduction: 1, birthRate: 10, medianAge: 32, electricity: 35388, televisions: 27867123, publicDebt: 21, internet: 2000000 }), new WorldStatsItem({ code: `IRQ`, short: `IQ`, name: `Iraq`, continent: `Asia`, population: 39192111, gdpTotal: 596700, economy: `Developing`, region: `Middle East`, status: `Country`, x: 43.66, y: 33.218, gdpPerPerson: 15225, rank: 35, unemployment: 6, oilProduction: 0, birthRate: 20, medianAge: 44, electricity: 48545, televisions: 13178804, publicDebt: 40, internet: 9538092 }), + new WorldStatsItem({ code: `KUR`, short: `KU`, name: `Kurdistan`, continent: `Asia`, population: 6370668, gdpTotal: 66000, economy: `Developing`, region: `Middle East`, status: `Dependency`, x: 43.6, y: 36.05, gdpPerPerson: 10360, rank: 241, unemployment: 8, oilProduction: 4, birthRate: 22, medianAge: 46, electricity: 49545, televisions: 3178804, publicDebt: 35, internet: 2178804 }), new WorldStatsItem({ code: `POL`, short: `PL`, name: `Poland`, continent: `Europe`, population: 38476269, gdpTotal: 1052000, economy: `Developed`, region: `Eastern Europe`, status: `Country`, x: 20.073, y: 52.374, gdpPerPerson: 27342, rank: 36, unemployment: 13, oilProduction: 0, birthRate: 10, medianAge: 38, electricity: 146200, televisions: 13050000, publicDebt: 43, internet: 16000000 }), new WorldStatsItem({ code: `SDN`, short: `SD`, name: `Sudan`, continent: `Africa`, population: 37345935, gdpTotal: 176300, economy: `Developing`, region: `Northern Africa`, status: `Country`, x: 30.217, y: 15.434, gdpPerPerson: 4721, rank: 37, unemployment: 19, oilProduction: 484500, birthRate: 34, medianAge: 19, electricity: 3944, televisions: 2380000, publicDebt: 106, internet: 1500000 }), new WorldStatsItem({ code: `CAN`, short: `CA`, name: `Canada`, continent: `North America`, population: 35623680, gdpTotal: 1674000, economy: `Developed`, region: `Northern America`, status: `Country`, x: -108, y: 55.855, gdpPerPerson: 46991, rank: 38, unemployment: 6, oilProduction: 3310000, birthRate: 10, medianAge: 40, electricity: 609600, televisions: 21500000, publicDebt: 64, internet: 28000000 }), @@ -153,7 +154,7 @@ export class WorldStats extends Array { new WorldStatsItem({ code: `TKM`, short: `TM`, name: `Turkmenistan`, continent: `Asia`, population: 5351277, gdpTotal: 94720, economy: `Developing`, region: `Central Asia`, status: `Country`, x: 59.562, y: 38.975, gdpPerPerson: 17700, rank: 119, unemployment: 11, oilProduction: 4, birthRate: 11, medianAge: 43, electricity: 91281, televisions: 2935468, publicDebt: 17, internet: 3203210 }), new WorldStatsItem({ code: `NOR`, short: `NO`, name: `Norway`, continent: `Europe`, population: 5320045, gdpTotal: 364700, economy: `Developed`, region: `Northern Europe`, status: `Country`, x: 9.66, y: 60.712, gdpPerPerson: 68552, rank: 120, unemployment: 3, oilProduction: 2560000, birthRate: 11, medianAge: 39, electricity: 135800, televisions: 2030000, publicDebt: 83, internet: 3800000 }), new WorldStatsItem({ code: `IRL`, short: `IE`, name: `Ireland`, continent: `Europe`, population: 5011102, gdpTotal: 322000, economy: `Developed`, region: `Northern Europe`, status: `Country`, x: -8.209, y: 53.42, gdpPerPerson: 64257, rank: 121, unemployment: 5, oilProduction: 0, birthRate: 14, medianAge: 35, electricity: 24130, televisions: 1820000, publicDebt: 25, internet: 1708000 }), - new WorldStatsItem({ code: `COG`, short: `CG`, name: `Congo`, continent: `Africa`, population: 4954674, gdpTotal: 30270, economy: `Developing`, region: `Middle Africa`, status: `Country`, x: 16.264, y: -0.07, gdpPerPerson: 6109, rank: 122, unemployment: 13, oilProduction: 4, birthRate: 11, medianAge: 52, electricity: 83556, televisions: 1560800, publicDebt: 6, internet: 2650237 }), + new WorldStatsItem({ code: `COG`, short: `CG`, name: `Congo Republic`, continent: `Africa`, population: 4954674, gdpTotal: 30270, economy: `Developing`, region: `Middle Africa`, status: `Country`, x: 16.264, y: -0.07, gdpPerPerson: 6109, rank: 122, unemployment: 13, oilProduction: 4, birthRate: 11, medianAge: 52, electricity: 83556, televisions: 1560800, publicDebt: 6, internet: 2650237 }), new WorldStatsItem({ code: `CRI`, short: `CR`, name: `Costa Rica`, continent: `North America`, population: 4930258, gdpTotal: 79260, economy: `Emerging`, region: `Central America`, status: `Country`, x: -83.91, y: 9.92, gdpPerPerson: 16076, rank: 123, unemployment: 5, oilProduction: 0, birthRate: 18, medianAge: 27, electricity: 8349, televisions: 525000, publicDebt: 47, internet: 1500000 }), new WorldStatsItem({ code: `GEO`, short: `GE`, name: `Georgia`, continent: `Asia`, population: 4926330, gdpTotal: 37270, economy: `Developing`, region: `Middle East`, status: `Country`, x: 43.257, y: 42.162, gdpPerPerson: 7565, rank: 124, unemployment: 15, oilProduction: 5, birthRate: 10, medianAge: 43, electricity: 44936, televisions: 2728128, publicDebt: 29, internet: 3844448 }), new WorldStatsItem({ code: `LBR`, short: `LR`, name: `Liberia`, continent: `Africa`, population: 4689021, gdpTotal: 3881, economy: `Least Developed`, region: `Western Africa`, status: `Country`, x: -9.454, y: 6.445, gdpPerPerson: 828, rank: 125, unemployment: 4, oilProduction: 0, birthRate: 8, medianAge: 35, electricity: 89626, televisions: 3065112, publicDebt: 38, internet: 1475304 }), @@ -182,7 +183,7 @@ export class WorldStats extends Array { new WorldStatsItem({ code: `SVN`, short: `SI`, name: `Slovenia`, continent: `Europe`, population: 1972126, gdpTotal: 68350, economy: `Developed`, region: `Southern Europe`, status: `Country`, x: 14.947, y: 46.146, gdpPerPerson: 34658, rank: 148, unemployment: 8, oilProduction: 5, birthRate: 9, medianAge: 41, electricity: 14900, televisions: 710000, publicDebt: 24, internet: 1300000 }), new WorldStatsItem({ code: `LSO`, short: `LS`, name: `Lesotho`, continent: `Africa`, population: 1958042, gdpTotal: 6019, economy: `Least Developed`, region: `Southern Africa`, status: `Country`, x: 28.221, y: -29.61, gdpPerPerson: 3074, rank: 149, unemployment: 12, oilProduction: 2, birthRate: 8, medianAge: 32, electricity: 20229, televisions: 1457517, publicDebt: 14, internet: 1375222 }), new WorldStatsItem({ code: `LVA`, short: `LV`, name: `Latvia`, continent: `Europe`, population: 1944643, gdpTotal: 50650, economy: `Developed`, region: `Northern Europe`, status: `Country`, x: 26.505, y: 56.755, gdpPerPerson: 26046, rank: 150, unemployment: 6, oilProduction: 0, birthRate: 10, medianAge: 40, electricity: 4778, televisions: 1220000, publicDebt: 7, internet: 1770000 }), - new WorldStatsItem({ code: `RKS`, short: `RS`, name: `Kosovo`, continent: `Europe`, population: 1895250, gdpTotal: 18490, economy: `Developing`, region: `Southern Europe`, status: `Country`, x: 20.891, y: 42.557, gdpPerPerson: 9756, rank: 151, unemployment: 12, oilProduction: 0, birthRate: 8, medianAge: 55, electricity: 14878, televisions: 1287863, publicDebt: 20, internet: 1422193 }), + new WorldStatsItem({ code: `RKS`, short: `XK`, name: `Kosovo`, continent: `Europe`, population: 1895250, gdpTotal: 18490, economy: `Developing`, region: `Southern Europe`, status: `Country`, x: 20.891, y: 42.557, gdpPerPerson: 9756, rank: 151, unemployment: 12, oilProduction: 0, birthRate: 8, medianAge: 55, electricity: 14878, televisions: 1287863, publicDebt: 20, internet: 1422193 }), new WorldStatsItem({ code: `GNB`, short: `GW`, name: `Guinea-Bissau`, continent: `Africa`, population: 1792338, gdpTotal: 2851, economy: `Least Developed`, region: `Western Africa`, status: `Country`, x: -14.59, y: 11.942, gdpPerPerson: 1591, rank: 152, unemployment: 5, oilProduction: 5, birthRate: 5, medianAge: 55, electricity: 74684, televisions: 1427462, publicDebt: 8, internet: 365000 }), new WorldStatsItem({ code: `GAB`, short: `GA`, name: `Gabon`, continent: `Africa`, population: 1772255, gdpTotal: 35980, economy: `Developing`, region: `Middle Africa`, status: `Country`, x: 11.592, y: -0.807, gdpPerPerson: 20302, rank: 153, unemployment: 21, oilProduction: 240000, birthRate: 36, medianAge: 19, electricity: 1520, televisions: 63000, publicDebt: 53, internet: 145000 }), new WorldStatsItem({ code: `SWZ`, short: `SZ`, name: `Eswatini`, continent: `Africa`, population: 1467152, gdpTotal: 11060, economy: `Developing`, region: `Southern Africa`, status: `Country`, x: 31.45, y: -26.52, gdpPerPerson: 7538, rank: 154, unemployment: 6, oilProduction: 3, birthRate: 17, medianAge: 39, electricity: 72804, televisions: 229393, publicDebt: 5, internet: 427760 }), @@ -217,7 +218,7 @@ export class WorldStats extends Array { new WorldStatsItem({ code: `MYT`, short: `YT`, name: `Mayotte`, continent: `Africa`, population: 320901, gdpTotal: 2932, economy: `Developing`, region: `Central America`, status: `Country`, x: 45.14, y: -12.84, gdpPerPerson: 9137, rank: 183, unemployment: 35, oilProduction: 0, birthRate: 46, medianAge: 50, electricity: 1604505, televisions: 256721, publicDebt: 29, internet: 192541 }), new WorldStatsItem({ code: `GUF`, short: `GF`, name: `French Guiana`, continent: `South America`, population: 296161, gdpTotal: 4562, economy: `Developed`, region: `South America`, status: `Dependency`, x: -53.13, y: 3.893, gdpPerPerson: 4386, rank: 184, unemployment: 3, oilProduction: 0, birthRate: 15, medianAge: 55, electricity: 73845, televisions: 147489, publicDebt: 35, internet: 209593 }), new WorldStatsItem({ code: `BRB`, short: `BB`, name: `Barbados`, continent: `North America`, population: 292336, gdpTotal: 4804, economy: `Developing`, region: `Central America`, status: `Country`, x: -59.53, y: 13.19, gdpPerPerson: 16433, rank: 186, unemployment: 8, oilProduction: 3, birthRate: 21, medianAge: 51, electricity: 28728, televisions: 173392, publicDebt: 12, internet: 73593 }), - new WorldStatsItem({ code: `PYF`, short: `PF`, name: `Fr. Polynesia`, continent: `Oceania`, population: 287881, gdpTotal: 5490, economy: `Developing`, region: `Polynesia`, status: `Dependency`, x: -143.9, y: -14.82, gdpPerPerson: 19070, rank: 187, unemployment: 1, oilProduction: 4, birthRate: 6, medianAge: 45, electricity: 46206, televisions: 43757, publicDebt: 12, internet: 172560 }), + new WorldStatsItem({ code: `PYF`, short: `PF`, name: `French Polynesia`, continent: `Oceania`, population: 287881, gdpTotal: 5490, economy: `Developing`, region: `Polynesia`, status: `Dependency`, x: -143.9, y: -14.82, gdpPerPerson: 19070, rank: 187, unemployment: 1, oilProduction: 4, birthRate: 6, medianAge: 45, electricity: 46206, televisions: 43757, publicDebt: 12, internet: 172560 }), new WorldStatsItem({ code: `VUT`, short: `VU`, name: `Vanuatu`, continent: `Oceania`, population: 282814, gdpTotal: 723, economy: `Least Developed`, region: `Melanesia`, status: `Country`, x: 168.21, y: -16.97, gdpPerPerson: 2556, rank: 188, unemployment: 11, oilProduction: 4, birthRate: 17, medianAge: 39, electricity: 50581, televisions: 187584, publicDebt: 42, internet: 223352 }), new WorldStatsItem({ code: `NCL`, short: `NC`, name: `New Caledonia`, continent: `Oceania`, population: 279070, gdpTotal: 10770, economy: `Developing`, region: `Melanesia`, status: `Dependency`, x: 165.26, y: -21.09, gdpPerPerson: 38592, rank: 189, unemployment: 10, oilProduction: 3, birthRate: 6, medianAge: 49, electricity: 18361, televisions: 79923, publicDebt: 45, internet: 149003 }), new WorldStatsItem({ code: `NCP`, short: `XC`, name: `Northern Cyprus`, continent: `Asia`, population: 265100, gdpTotal: 3600, economy: `Developing`, region: `Middle East`, status: `Country`, x: 33.714, y: 35.257, gdpPerPerson: 13580, rank: 190, unemployment: 4, oilProduction: 5, birthRate: 25, medianAge: 51, electricity: 84000, televisions: 135551, publicDebt: 30, internet: 167480 }), @@ -229,10 +230,10 @@ export class WorldStats extends Array { new WorldStatsItem({ code: `ABW`, short: `AW`, name: `Aruba`, continent: `North America`, population: 115120, gdpTotal: 2516, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -69.98, y: 12.519, gdpPerPerson: 21855, rank: 196, unemployment: 7, oilProduction: 2356, birthRate: 13, medianAge: 38, electricity: 770, televisions: 20000, publicDebt: 46, internet: 24000 }), new WorldStatsItem({ code: `GRD`, short: `GD`, name: `Grenada`, continent: `North America`, population: 111724, gdpTotal: 1511, economy: `Developing`, region: `Central America`, status: `Country`, x: -61.69, y: 12.123, gdpPerPerson: 13524, rank: 197, unemployment: 10, oilProduction: 0, birthRate: 10, medianAge: 50, electricity: 4992, televisions: 58674, publicDebt: 42, internet: 33132 }), new WorldStatsItem({ code: `KIR`, short: `KI`, name: `Kiribati`, continent: `Oceania`, population: 108145, gdpTotal: 211, economy: `Least Developed`, region: `Micronesia`, status: `Country`, x: -157.333, y: 1.884, gdpPerPerson: 1951, rank: 198, unemployment: 13, oilProduction: 4, birthRate: 9, medianAge: 52, electricity: 37081, televisions: 52395, publicDebt: 40, internet: 36620 }), - new WorldStatsItem({ code: `VIR`, short: `VI`, name: `U.S. Virgin Island`, continent: `North America`, population: 107268, gdpTotal: 3792, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -64.77, y: 17.77, gdpPerPerson: 35351, rank: 199, unemployment: 11, oilProduction: 2, birthRate: 12, medianAge: 38, electricity: 13387, televisions: 77187, publicDebt: 43, internet: 40836 }), + new WorldStatsItem({ code: `VIR`, short: `VI`, name: `US Virgin Islands`, continent: `North America`, population: 107268, gdpTotal: 3792, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -64.77, y: 17.77, gdpPerPerson: 35351, rank: 199, unemployment: 11, oilProduction: 2, birthRate: 12, medianAge: 38, electricity: 13387, televisions: 77187, publicDebt: 43, internet: 40836 }), new WorldStatsItem({ code: `TON`, short: `TO`, name: `Tonga`, continent: `Oceania`, population: 106479, gdpTotal: 557, economy: `Developing`, region: `Polynesia`, status: `Country`, x: -173.9, y: -18.62, gdpPerPerson: 5231, rank: 200, unemployment: 4, oilProduction: 4, birthRate: 5, medianAge: 33, electricity: 88735, televisions: 30257, publicDebt: 25, internet: 71756 }), new WorldStatsItem({ code: `FSM`, short: `FM`, name: `Micronesia`, continent: `Oceania`, population: 104196, gdpTotal: 314, economy: `Developing`, region: `Micronesia`, status: `Country`, x: 150.52, y: 7.435, gdpPerPerson: 3014, rank: 201, unemployment: 9, oilProduction: 5, birthRate: 5, medianAge: 38, electricity: 39068, televisions: 45396, publicDebt: 40, internet: 29169 }), - new WorldStatsItem({ code: `VCT`, short: `VC`, name: `St. Vincent and Grenadines`, continent: `North America`, population: 102089, gdpTotal: 1241, economy: `Developing`, region: `Central America`, status: `Country`, x: -61.17, y: 13.239, gdpPerPerson: 12156, rank: 202, unemployment: 10, oilProduction: 5, birthRate: 7, medianAge: 30, electricity: 39467, televisions: 42804, publicDebt: 9, internet: 66754 }), + new WorldStatsItem({ code: `VCT`, short: `VC`, name: `St. Vincent`, continent: `North America`, population: 102089, gdpTotal: 1241, economy: `Developing`, region: `Central America`, status: `Country`, x: -61.17, y: 13.239, gdpPerPerson: 12156, rank: 202, unemployment: 10, oilProduction: 5, birthRate: 7, medianAge: 30, electricity: 39467, televisions: 42804, publicDebt: 9, internet: 66754 }), new WorldStatsItem({ code: `JEY`, short: `JE`, name: `Jersey`, continent: `Europe`, population: 98840, gdpTotal: 5080, economy: `Developed`, region: `Northern Europe`, status: `Territory`, x: -2.123, y: 49.218, gdpPerPerson: 51396, rank: 203, unemployment: 4, oilProduction: 1, birthRate: 18, medianAge: 30, electricity: 64261, televisions: 52453, publicDebt: 34, internet: 3026 }), new WorldStatsItem({ code: `ATG`, short: `AG`, name: `Antigua and Barbuda`, continent: `North America`, population: 94731, gdpTotal: 2171, economy: `Developing`, region: `Central America`, status: `Country`, x: -61.79, y: 17.096, gdpPerPerson: 22918, rank: 204, unemployment: 3, oilProduction: 1, birthRate: 5, medianAge: 36, electricity: 35849, televisions: 75384, publicDebt: 32, internet: 6170 }), new WorldStatsItem({ code: `SYC`, short: `SC`, name: `Seychelles`, continent: `Africa`, population: 93920, gdpTotal: 2608, economy: `Developing`, region: `Eastern Africa`, status: `Country`, x: 55.463, y: -4.672, gdpPerPerson: 27768, rank: 205, unemployment: 2, oilProduction: 0, birthRate: 16, medianAge: 29, electricity: 252, televisions: 11000, publicDebt: 92, internet: 32000 }), @@ -246,7 +247,7 @@ export class WorldStats extends Array { new WorldStatsItem({ code: `GRL`, short: `GL`, name: `Greenland`, continent: `North America`, population: 57713, gdpTotal: 2173, economy: `Developed`, region: `Northern America`, status: `Dependency`, x: -42.12, y: 69.547, gdpPerPerson: 37652, rank: 213, unemployment: 7, oilProduction: 5, birthRate: 19, medianAge: 42, electricity: 86090, televisions: 43741, publicDebt: 42, internet: 11423 }), new WorldStatsItem({ code: `KNA`, short: `KN`, name: `St. Kitts and Nevis`, continent: `North America`, population: 52715, gdpTotal: 1427, economy: `Developing`, region: `Central America`, status: `Country`, x: -62.77, y: 17.351, gdpPerPerson: 27070, rank: 214, unemployment: 5, oilProduction: 2, birthRate: 18, medianAge: 40, electricity: 65438, televisions: 17719, publicDebt: 11, internet: 8543 }), new WorldStatsItem({ code: `TCA`, short: `TC`, name: `Turks and Caicos Island`, continent: `North America`, population: 52570, gdpTotal: 632, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -71.96, y: 21.913, gdpPerPerson: 12022, rank: 215, unemployment: 6, oilProduction: 0, birthRate: 13, medianAge: 42, electricity: 51325, televisions: 13109, publicDebt: 13, internet: 24564 }), - new WorldStatsItem({ code: `MNP`, short: `MP`, name: `N. Mariana Island`, continent: `Oceania`, population: 52263, gdpTotal: 682, economy: `Developing`, region: `Micronesia`, status: `Dependency`, x: 145.49, y: 16.459, gdpPerPerson: 13049, rank: 216, unemployment: 10, oilProduction: 1, birthRate: 9, medianAge: 46, electricity: 87386, televisions: 13049, publicDebt: 20, internet: 5484 }), + new WorldStatsItem({ code: `MNP`, short: `MP`, name: `Northern Mariana Islands`, continent: `Oceania`, population: 52263, gdpTotal: 682, economy: `Developing`, region: `Micronesia`, status: `Dependency`, x: 145.49, y: 16.459, gdpPerPerson: 13049, rank: 216, unemployment: 10, oilProduction: 1, birthRate: 9, medianAge: 46, electricity: 87386, televisions: 13049, publicDebt: 20, internet: 5484 }), new WorldStatsItem({ code: `ASM`, short: `AS`, name: `American Samoa`, continent: `Oceania`, population: 51504, gdpTotal: 711, economy: `Developing`, region: `Polynesia`, status: `Dependency`, x: -170.6, y: -14.3, gdpPerPerson: 13805, rank: 217, unemployment: 3, oilProduction: 4, birthRate: 13, medianAge: 42, electricity: 65918, televisions: 18802, publicDebt: 23, internet: 14691 }), new WorldStatsItem({ code: `FRO`, short: `FO`, name: `Faeroe Island`, continent: `Europe`, population: 50730, gdpTotal: 2001, economy: `Developed`, region: `Northern Europe`, status: `Dependency`, x: -6.857, y: 62.178, gdpPerPerson: 39444, rank: 218, unemployment: 15, oilProduction: 2, birthRate: 11, medianAge: 46, electricity: 55029, televisions: 11762, publicDebt: 13, internet: 2412 }), new WorldStatsItem({ code: `SXM`, short: `SX`, name: `Sint Maarten`, continent: `North America`, population: 42083, gdpTotal: 366, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -63.06, y: 18.044, gdpPerPerson: 8697, rank: 219, unemployment: 14, oilProduction: 4, birthRate: 19, medianAge: 50, electricity: 17166, televisions: 8474, publicDebt: 33, internet: 14309 }), @@ -272,7 +273,7 @@ export class WorldStats extends Array { new WorldStatsItem({ code: `FLK`, short: `FK`, name: `Falkland Island`, continent: `South America`, population: 2931, gdpTotal: 282, economy: `Developed`, region: `South America`, status: `Dependency`, x: -59.46, y: -51.78, gdpPerPerson: 96213, rank: 239, unemployment: 3, oilProduction: 5, birthRate: 9, medianAge: 36, electricity: 68007, televisions: 1489, publicDebt: 22, internet: 1335 }), new WorldStatsItem({ code: `NFK`, short: `NF`, name: `Norfolk Island`, continent: `Oceania`, population: 2210, gdpTotal: 33, economy: `Developing`, region: `Australia`, status: `Dependency`, x: 167.94, y: -29.05, gdpPerPerson: 14932, rank: 240, unemployment: 1, oilProduction: 0, birthRate: 15, medianAge: 46, electricity: 91943, televisions: 583, publicDebt: 41, internet: 1183 }), new WorldStatsItem({ code: `NIU`, short: `NU`, name: `Niue`, continent: `Oceania`, population: 1626, gdpTotal: 10, economy: `Developing`, region: `Polynesia`, status: `Dependency`, x: -169.8, y: -19.05, gdpPerPerson: 6150, rank: 241, unemployment: 15, oilProduction: 4, birthRate: 17, medianAge: 51, electricity: 16785, televisions: 585, publicDebt: 31, internet: 1247 }), - new WorldStatsItem({ code: `VAT`, short: `VT`, name: `Vatican`, continent: `Europe`, population: 771, gdpTotal: 15, economy: `Developed`, region: `Western Europe`, status: `Country`, x: 12.433, y: 41.902, gdpPerPerson: 19450, rank: 242, unemployment: 0, oilProduction: 0, birthRate: 0, medianAge: 55, electricity: 771, televisions: 100, publicDebt: 0, internet: 771 }), + new WorldStatsItem({ code: `VAT`, short: `VA`, name: `Vatican`, continent: `Europe`, population: 771, gdpTotal: 15, economy: `Developed`, region: `Western Europe`, status: `Country`, x: 12.433, y: 41.902, gdpPerPerson: 19450, rank: 242, unemployment: 0, oilProduction: 0, birthRate: 0, medianAge: 55, electricity: 771, televisions: 100, publicDebt: 0, internet: 771 }), ]; super(...newItems.slice(0)); } diff --git a/samples/grids/grid/column-hiding-toolbar-style/src/index.css b/samples/grids/grid/column-hiding-toolbar-style/src/index.css index 1ea013b125..82c6c2e933 100644 --- a/samples/grids/grid/column-hiding-toolbar-style/src/index.css +++ b/samples/grids/grid/column-hiding-toolbar-style/src/index.css @@ -2,25 +2,29 @@ /* https://dl.infragistics.com/x/css/samples/shared.v8.css */ .grid igc-grid-toolbar-actions, igx-column-actions { - --ig-column-actions-background-color: #292826; - --ig-column-actions-title-color: #ffcd0f; - --ig-checkbox-tick-color: #292826; - --ig-checkbox-label-color: #ffcd0f; - --ig-checkbox-empty-color: #ffcd0f; - --ig-checkbox-fill-color: #ffcd0f; - --ig-input-group-idle-text-color: white; - --ig-input-group-filled-text-color: #ffcd0f; - --ig-input-group-focused-text-color: #ffcd0f; - --ig-input-group-focused-border-color: #ffcd0f; - --ig-input-group-focused-secondary-color: #ffcd0f; - --igx-button-foreground: #292826; - --igx-button-background: #ffcd0f; - --igx-button-hover-background: #404040; - --igx-button-hover-foreground: #ffcd0f; - --igx-button-focus-background: #ffcd0f; - --igx-button-focus-foreground: black; - --igx-button-focus-visible-background: #ffcd0f; - --igx-button-focus-visible-foreground: black; - --igx-button-disabled-foreground: #ffcd0f; + --ig-column-actions-background-color: #292826; + --ig-column-actions-title-color: #ffcd0f; + --ig-checkbox-tick-color: #292826; + --ig-checkbox-label-color: #ffcd0f; + --ig-checkbox-label-color-hover: #c5a11b; + --ig-checkbox-empty-color: #ffcd0f; + --ig-checkbox-focus-outline-color: #c5a11b; + --ig-checkbox-empty-fill-color: #292826; + --ig-checkbox-fill-color: #ffcd0f; + --ig-checkbox-fill-color-hover: #c5a11b; + --ig-input-group-idle-text-color: white; + --ig-input-group-filled-text-color: #ffcd0f; + --ig-input-group-focused-text-color: #ffcd0f; + --ig-input-group-focused-border-color: #ffcd0f; + --ig-input-group-focused-secondary-color: #ffcd0f; + --ig-flat-button-foreground: #292826; + --ig-flat-button-background: #ffcd0f; + --ig-flat-button-hover-background: #404040; + --ig-flat-button-hover-foreground: #ffcd0f; + --ig-flat-button-focus-background: #ffcd0f; + --ig-flat-button-focus-foreground: black; + --ig-flat-button-focus-visible-background: #ffcd0f; + --ig-flat-button-focus-visible-foreground: black; + --ig-flat-button-disabled-foreground: #ffcd0f; } diff --git a/samples/grids/grid/column-hiding-toolbar-style/src/index.tsx b/samples/grids/grid/column-hiding-toolbar-style/src/index.tsx index 051217c005..1337cc7bcf 100644 --- a/samples/grids/grid/column-hiding-toolbar-style/src/index.tsx +++ b/samples/grids/grid/column-hiding-toolbar-style/src/index.tsx @@ -56,7 +56,8 @@ export default class Sample extends React.Component { field="ID" header="ID" dataType="string" - sortable={true}> + hidden={true} + disableHiding={true}> { field="PostalCode" header="Postal Code" dataType="string" - sortable={true}> + sortable={true} + disableHiding={true}> + sortable={true} + disableHiding={true}> + sortable={true} + disableHiding={true}>
diff --git a/samples/grids/hierarchical-grid/cell-selection-mode/src/index.tsx b/samples/grids/hierarchical-grid/cell-selection-mode/src/index.tsx index 99d5757d93..5579a7cd32 100644 --- a/samples/grids/hierarchical-grid/cell-selection-mode/src/index.tsx +++ b/samples/grids/hierarchical-grid/cell-selection-mode/src/index.tsx @@ -57,7 +57,9 @@ export default class Sample extends React.Component { label="Hierarchical Grid Cell Selection" propertyPath="CellSelection" name="CellSelectionEditorHierarchicalGrid" - valueType="EnumValue"> + valueType="EnumValue" + dropDownNames={["None", "Single", "Multiple"]} + dropDownValues={["None", "Single", "Multiple"]}> { data={this.hierarchicalCustomersData} columnSelection="single" primaryKey="CustomerID"> - - - - - -
From 27dfeaaf04b3924b140f2ae02d5ce045817bc1a6 Mon Sep 17 00:00:00 2001 From: Maya Date: Tue, 13 Jan 2026 17:07:07 +0200 Subject: [PATCH 21/43] =?UTF-8?q?chore(*):=20Bump=20up=20igniteui-react-gr?= =?UTF-8?q?ids=20to=20get=20latest=20fixes=20for=20templa=E2=80=A6=20(#100?= =?UTF-8?q?3)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- browser/package-lock.json | 8 ++++---- browser/package.json | 2 +- browser/tasks/gulp-samples.js | 2 +- .../charts/dashboard-tile/chart-dashboard/package.json | 2 +- samples/charts/sparkline/grid/package.json | 2 +- .../excel-library/operations-on-workbooks/package.json | 2 +- .../excel/excel-library/working-with-charts/package.json | 2 +- .../excel-library/working-with-sparklines/package.json | 2 +- samples/grids/grid/action-strip/package.json | 2 +- .../grids/grid/advanced-filtering-options/package.json | 2 +- samples/grids/grid/advanced-filtering-style/package.json | 2 +- samples/grids/grid/binding-composite-data/package.json | 2 +- samples/grids/grid/binding-crud-data/package.json | 2 +- samples/grids/grid/binding-nested-data-1/package.json | 2 +- samples/grids/grid/cascading-combo/package.json | 2 +- samples/grids/grid/cell-editing-sample/package.json | 2 +- samples/grids/grid/cell-editing-styling/package.json | 2 +- samples/grids/grid/cell-merge-custom-sample/package.json | 2 +- samples/grids/grid/cell-merge/package.json | 2 +- samples/grids/grid/cell-selection-mode/package.json | 2 +- samples/grids/grid/cell-selection-style/package.json | 2 +- samples/grids/grid/change-icons-custom/package.json | 2 +- samples/grids/grid/clipboard-operations/package.json | 2 +- samples/grids/grid/column-auto-sizing/package.json | 2 +- samples/grids/grid/column-collapsible-groups/package.json | 2 +- samples/grids/grid/column-data-types/package.json | 2 +- samples/grids/grid/column-hiding-options/package.json | 2 +- .../grids/grid/column-hiding-toolbar-style/package.json | 2 +- samples/grids/grid/column-hiding-toolbar/package.json | 2 +- samples/grids/grid/column-moving-options/package.json | 2 +- samples/grids/grid/column-moving-styles/package.json | 2 +- samples/grids/grid/column-pinning-both-sides/package.json | 2 +- samples/grids/grid/column-pinning-options/package.json | 2 +- samples/grids/grid/column-pinning-right-side/package.json | 2 +- samples/grids/grid/column-pinning-styles/package.json | 2 +- samples/grids/grid/column-pinning/package.json | 2 +- samples/grids/grid/column-resize-styling/package.json | 2 +- samples/grids/grid/column-resizing/package.json | 2 +- samples/grids/grid/column-selection-group/package.json | 2 +- samples/grids/grid/column-selection-mode/package.json | 2 +- samples/grids/grid/column-selection-styles/package.json | 2 +- samples/grids/grid/column-sorting-indicators/package.json | 2 +- samples/grids/grid/column-sorting-options/package.json | 2 +- samples/grids/grid/column-sorting-style/package.json | 2 +- samples/grids/grid/conditional-cell-style-1/package.json | 2 +- samples/grids/grid/conditional-cell-style-2/package.json | 2 +- samples/grids/grid/conditional-row-selectors/package.json | 2 +- samples/grids/grid/custom-context-menu/package.json | 2 +- .../grids/grid/data-batch-editing-actions/package.json | 2 +- .../grid/data-performance-virtualization/package.json | 2 +- samples/grids/grid/data-searching/package.json | 2 +- samples/grids/grid/data-summary-formatter/package.json | 2 +- samples/grids/grid/data-summary-options/package.json | 2 +- samples/grids/grid/data-summary-template/package.json | 2 +- samples/grids/grid/data-validation-style/package.json | 2 +- .../grid/data-validator-service-cross-field/package.json | 2 +- .../grid/data-validator-service-extended/package.json | 2 +- samples/grids/grid/data-validator-service/package.json | 2 +- samples/grids/grid/disabled-summaries/package.json | 2 +- samples/grids/grid/editing-columns/package.json | 2 +- samples/grids/grid/editing-events/package.json | 2 +- samples/grids/grid/editing-excel-style/package.json | 2 +- samples/grids/grid/editing-lifecycle/package.json | 2 +- samples/grids/grid/excel-exporting/package.json | 2 +- .../grid/excel-style-filtering-sample-1/package.json | 2 +- .../grid/excel-style-filtering-sample-2/package.json | 2 +- .../grid/excel-style-filtering-sample-3/package.json | 2 +- .../grids/grid/excel-style-filtering-style/package.json | 2 +- .../grids/grid/external-advanced-filtering/package.json | 2 +- samples/grids/grid/filtering-options/package.json | 2 +- samples/grids/grid/filtering-strategy/package.json | 2 +- samples/grids/grid/filtering-style/package.json | 2 +- samples/grids/grid/finjs/package.json | 2 +- samples/grids/grid/groupby-custom/package.json | 2 +- samples/grids/grid/groupby-expressions/package.json | 2 +- samples/grids/grid/groupby-paging/package.json | 2 +- samples/grids/grid/groupby-styling/package.json | 2 +- samples/grids/grid/groupby-summary-options/package.json | 2 +- samples/grids/grid/groupby-summary-styling/package.json | 2 +- samples/grids/grid/infinite-scroll/package.json | 2 +- .../grids/grid/keyboard-custom-navigation/package.json | 2 +- samples/grids/grid/keyboard-mrl-navigation/package.json | 2 +- samples/grids/grid/layout-display-density/package.json | 2 +- samples/grids/grid/master-detail/package.json | 2 +- samples/grids/grid/multi-cell-selection-mode/package.json | 2 +- .../grids/grid/multi-column-headers-export/package.json | 2 +- .../grids/grid/multi-column-headers-overview/package.json | 2 +- .../grids/grid/multi-column-headers-styling/package.json | 2 +- .../grids/grid/multi-column-headers-template/package.json | 2 +- samples/grids/grid/multi-row-layout-options/package.json | 2 +- samples/grids/grid/multi-row-layout-style/package.json | 2 +- samples/grids/grid/overview/package.json | 2 +- samples/grids/grid/paste/package.json | 2 +- samples/grids/grid/remote-paging-data/package.json | 2 +- samples/grids/grid/remote-paging-grid/package.json | 2 +- samples/grids/grid/row-adding/package.json | 2 +- samples/grids/grid/row-classes/package.json | 2 +- samples/grids/grid/row-drag-base/package.json | 2 +- samples/grids/grid/row-editing-options/package.json | 2 +- samples/grids/grid/row-editing-style/package.json | 2 +- samples/grids/grid/row-paging-basic/package.json | 2 +- samples/grids/grid/row-paging-options/package.json | 2 +- samples/grids/grid/row-pinning-drag/package.json | 2 +- samples/grids/grid/row-pinning-extra-column/package.json | 2 +- samples/grids/grid/row-pinning-options/package.json | 2 +- samples/grids/grid/row-pinning-style/package.json | 2 +- samples/grids/grid/row-reorder/package.json | 2 +- samples/grids/grid/row-selection-mode/package.json | 2 +- .../grids/grid/row-selection-template-excel/package.json | 2 +- .../grid/row-selection-template-numbers/package.json | 2 +- samples/grids/grid/row-styles/package.json | 2 +- samples/grids/grid/state-persistence-about/package.json | 2 +- samples/grids/grid/state-persistence-main/package.json | 2 +- samples/grids/grid/styling-custom-CSS/package.json | 2 +- samples/grids/grid/toolbar-sample-1/package.json | 2 +- samples/grids/grid/toolbar-sample-2/package.json | 2 +- samples/grids/grid/toolbar-sample-3/package.json | 2 +- samples/grids/grid/toolbar-style/package.json | 2 +- samples/grids/hierarchical-grid/action-strip/package.json | 2 +- .../advanced-filtering-options/package.json | 2 +- .../advanced-filtering-style/package.json | 2 +- .../hierarchical-grid/cell-editing-sample/package.json | 2 +- .../hierarchical-grid/cell-editing-styling/package.json | 2 +- .../cell-merge-custom-sample/package.json | 2 +- samples/grids/hierarchical-grid/cell-merge/package.json | 2 +- .../hierarchical-grid/cell-selection-mode/package.json | 2 +- .../cell-selection-overview/package.json | 2 +- .../hierarchical-grid/cell-selection-style/package.json | 2 +- .../hierarchical-grid/column-auto-sizing/package.json | 2 +- .../column-collapsible-groups/package.json | 2 +- .../column-hiding-toolbar-style/package.json | 2 +- .../hierarchical-grid/column-hiding-toolbar/package.json | 2 +- .../hierarchical-grid/column-moving-options/package.json | 2 +- .../hierarchical-grid/column-moving-styles/package.json | 2 +- .../column-pinning-both-sides/package.json | 2 +- .../hierarchical-grid/column-pinning-options/package.json | 2 +- .../column-pinning-right-side/package.json | 2 +- .../hierarchical-grid/column-pinning-styles/package.json | 2 +- .../grids/hierarchical-grid/column-pinning/package.json | 2 +- .../hierarchical-grid/column-resize-styling/package.json | 2 +- .../grids/hierarchical-grid/column-resizing/package.json | 2 +- .../hierarchical-grid/column-selection-group/package.json | 2 +- .../hierarchical-grid/column-selection-mode/package.json | 2 +- .../column-selection-styles/package.json | 2 +- .../column-sorting-indicators/package.json | 2 +- .../hierarchical-grid/column-sorting-options/package.json | 2 +- .../hierarchical-grid/column-sorting-style/package.json | 2 +- .../conditional-cell-style-1/package.json | 2 +- .../conditional-cell-style-2/package.json | 2 +- .../conditional-row-selectors/package.json | 2 +- .../grids/hierarchical-grid/custom-filtering/package.json | 2 +- .../data-exporting-indicator/package.json | 2 +- .../data-performance-virtualization/package.json | 2 +- .../hierarchical-grid/data-summary-formatter/package.json | 2 +- .../data-summary-options-styling/package.json | 2 +- .../hierarchical-grid/data-summary-options/package.json | 2 +- .../hierarchical-grid/data-summary-template/package.json | 2 +- .../hierarchical-grid/disabled-summaries/package.json | 2 +- .../grids/hierarchical-grid/editing-columns/package.json | 2 +- .../grids/hierarchical-grid/editing-events/package.json | 2 +- .../hierarchical-grid/editing-lifecycle/package.json | 2 +- .../grids/hierarchical-grid/excel-exporting/package.json | 2 +- .../excel-style-filtering-sample-1/package.json | 2 +- .../excel-style-filtering-sample-2/package.json | 2 +- .../excel-style-filtering-sample-3/package.json | 2 +- .../excel-style-filtering-style/package.json | 2 +- .../hierarchical-grid/filtering-options/package.json | 2 +- .../grids/hierarchical-grid/filtering-style/package.json | 2 +- .../hierarchical-grid-options/package.json | 2 +- .../hierarchical-grid-paging-style/package.json | 2 +- .../hierarchical-grid-styling/package.json | 2 +- .../hierarchical-grid/layout-display-density/package.json | 2 +- .../multi-column-headers-export/package.json | 2 +- .../multi-column-headers-overview/package.json | 2 +- .../multi-column-headers-styling/package.json | 2 +- .../multi-column-headers-template/package.json | 2 +- samples/grids/hierarchical-grid/overview/package.json | 2 +- .../hierarchical-grid/remote-paging-hgrid/package.json | 2 +- samples/grids/hierarchical-grid/row-adding/package.json | 2 +- samples/grids/hierarchical-grid/row-classes/package.json | 2 +- .../grids/hierarchical-grid/row-drag-base/package.json | 2 +- .../hierarchical-grid/row-editing-options/package.json | 2 +- .../hierarchical-grid/row-editing-style/package.json | 2 +- .../row-pinning-extra-column/package.json | 2 +- .../hierarchical-grid/row-pinning-options/package.json | 2 +- .../hierarchical-grid/row-pinning-style/package.json | 2 +- samples/grids/hierarchical-grid/row-reorder/package.json | 2 +- .../hierarchical-grid/row-selection-mode/package.json | 2 +- .../row-selection-template-numbers/package.json | 2 +- samples/grids/hierarchical-grid/row-styles/package.json | 2 +- .../state-persistence-about/package.json | 2 +- .../hierarchical-grid/state-persistence-main/package.json | 2 +- .../grids/hierarchical-grid/toolbar-sample-3/package.json | 2 +- .../grids/hierarchical-grid/toolbar-sample-4/package.json | 2 +- .../grids/hierarchical-grid/toolbar-style/package.json | 2 +- samples/grids/pivot-grid/aggregate-max-sales/package.json | 2 +- .../grids/pivot-grid/aggregate-units-sold/package.json | 2 +- samples/grids/pivot-grid/data-selector/package.json | 2 +- samples/grids/pivot-grid/features/package.json | 2 +- .../grids/pivot-grid/state-persistence-about/package.json | 2 +- .../grids/pivot-grid/state-persistence-main/package.json | 2 +- samples/grids/tree-grid/action-strip/package.json | 2 +- .../tree-grid/advanced-filtering-options/package.json | 2 +- .../grids/tree-grid/advanced-filtering-style/package.json | 2 +- samples/grids/tree-grid/cell-editing-sample/package.json | 2 +- samples/grids/tree-grid/cell-editing-styling/package.json | 2 +- .../grids/tree-grid/cell-merge-custom-sample/package.json | 2 +- samples/grids/tree-grid/cell-merge/package.json | 2 +- samples/grids/tree-grid/cell-selection-mode/package.json | 2 +- samples/grids/tree-grid/cell-selection-style/package.json | 2 +- samples/grids/tree-grid/clipboard-operations/package.json | 2 +- samples/grids/tree-grid/column-auto-sizing/package.json | 2 +- .../tree-grid/column-collapsible-groups/package.json | 2 +- samples/grids/tree-grid/column-data-types/package.json | 2 +- .../tree-grid/column-hiding-toolbar-style/package.json | 2 +- .../grids/tree-grid/column-hiding-toolbar/package.json | 2 +- .../grids/tree-grid/column-moving-options/package.json | 2 +- samples/grids/tree-grid/column-moving-styles/package.json | 2 +- .../tree-grid/column-pinning-both-sides/package.json | 2 +- .../grids/tree-grid/column-pinning-options/package.json | 2 +- .../tree-grid/column-pinning-right-side/package.json | 2 +- .../grids/tree-grid/column-pinning-styles/package.json | 2 +- .../grids/tree-grid/column-pinning-toolbar/package.json | 2 +- samples/grids/tree-grid/column-pinning/package.json | 2 +- .../grids/tree-grid/column-resize-styling/package.json | 2 +- samples/grids/tree-grid/column-resizing/package.json | 2 +- .../grids/tree-grid/column-selection-group/package.json | 2 +- .../grids/tree-grid/column-selection-mode/package.json | 2 +- .../grids/tree-grid/column-selection-style/package.json | 2 +- .../grids/tree-grid/column-selection-styles/package.json | 2 +- .../tree-grid/column-sorting-indicators/package.json | 2 +- .../grids/tree-grid/column-sorting-options/package.json | 2 +- samples/grids/tree-grid/column-sorting-style/package.json | 2 +- .../grids/tree-grid/conditional-cell-style-1/package.json | 2 +- .../grids/tree-grid/conditional-cell-style-2/package.json | 2 +- .../tree-grid/conditional-row-selectors/package.json | 2 +- .../grids/tree-grid/data-exporting-indicator/package.json | 2 +- samples/grids/tree-grid/data-searching/package.json | 2 +- .../grids/tree-grid/data-summary-children/package.json | 2 +- .../grids/tree-grid/data-summary-formatter/package.json | 2 +- .../tree-grid/data-summary-options-styling/package.json | 2 +- samples/grids/tree-grid/data-summary-options/package.json | 2 +- .../grids/tree-grid/data-summary-template/package.json | 2 +- samples/grids/tree-grid/disabled-summaries/package.json | 2 +- samples/grids/tree-grid/editing-columns/package.json | 2 +- samples/grids/tree-grid/editing-events/package.json | 2 +- samples/grids/tree-grid/editing-lifecycle/package.json | 2 +- samples/grids/tree-grid/excel-exporting/package.json | 2 +- .../tree-grid/excel-style-filtering-sample-1/package.json | 2 +- .../tree-grid/excel-style-filtering-sample-2/package.json | 2 +- .../tree-grid/excel-style-filtering-sample-3/package.json | 2 +- .../tree-grid/excel-style-filtering-style/package.json | 2 +- samples/grids/tree-grid/filtering-options/package.json | 2 +- samples/grids/tree-grid/filtering-style/package.json | 2 +- .../tree-grid/keyboard-custom-navigation/package.json | 2 +- .../grids/tree-grid/layout-display-density/package.json | 2 +- .../tree-grid/multi-cell-selection-mode/package.json | 2 +- .../tree-grid/multi-column-headers-export/package.json | 2 +- .../tree-grid/multi-column-headers-overview/package.json | 2 +- .../tree-grid/multi-column-headers-styling/package.json | 2 +- .../tree-grid/multi-column-headers-template/package.json | 2 +- samples/grids/tree-grid/overview-styling/package.json | 2 +- samples/grids/tree-grid/overview/package.json | 2 +- samples/grids/tree-grid/row-adding/package.json | 2 +- samples/grids/tree-grid/row-classes/package.json | 2 +- samples/grids/tree-grid/row-drag-base/package.json | 2 +- samples/grids/tree-grid/row-editing-options/package.json | 2 +- samples/grids/tree-grid/row-editing-style/package.json | 2 +- samples/grids/tree-grid/row-paging-basic/package.json | 2 +- samples/grids/tree-grid/row-paging-options/package.json | 2 +- samples/grids/tree-grid/row-paging-style/package.json | 2 +- .../grids/tree-grid/row-pinning-extra-column/package.json | 2 +- samples/grids/tree-grid/row-pinning-options/package.json | 2 +- samples/grids/tree-grid/row-pinning-style/package.json | 2 +- samples/grids/tree-grid/row-reorder/package.json | 2 +- samples/grids/tree-grid/row-selection-mode/package.json | 2 +- .../tree-grid/row-selection-template-excel/package.json | 2 +- .../tree-grid/row-selection-template-numbers/package.json | 2 +- samples/grids/tree-grid/row-styles/package.json | 2 +- .../grids/tree-grid/state-persistence-about/package.json | 2 +- .../grids/tree-grid/state-persistence-main/package.json | 2 +- samples/grids/tree-grid/toolbar-sample-1/package.json | 2 +- samples/grids/tree-grid/toolbar-sample-2/package.json | 2 +- samples/grids/tree-grid/toolbar-sample-3/package.json | 2 +- samples/grids/tree-grid/toolbar-sample-4/package.json | 2 +- samples/grids/tree-grid/toolbar-style/package.json | 2 +- .../tree-grid/using-primary-foreign-keys/package.json | 2 +- samples/inputs/combo/templates/package.json | 2 +- 288 files changed, 291 insertions(+), 291 deletions(-) diff --git a/browser/package-lock.json b/browser/package-lock.json index 39f3b03683..2775750409 100644 --- a/browser/package-lock.json +++ b/browser/package-lock.json @@ -26,7 +26,7 @@ "igniteui-react-dockmanager": "^19.4.0", "igniteui-react-excel": "19.3.1", "igniteui-react-gauges": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-react-maps": "19.3.1", @@ -8173,9 +8173,9 @@ } }, "node_modules/igniteui-react-grids": { - "version": "19.4.0", - "resolved": "https://registry.npmjs.org/igniteui-react-grids/-/igniteui-react-grids-19.4.0.tgz", - "integrity": "sha512-6FlFCPAkKQfdaYR30yQXYouUW2lcoj9HtumP1vopLNP9dZnA3Aj6M6qGu3Q7WFliD82h7+iYRTifua0bGJF4mA==", + "version": "19.5.0-beta.0", + "resolved": "https://registry.npmjs.org/igniteui-react-grids/-/igniteui-react-grids-19.5.0-beta.0.tgz", + "integrity": "sha512-C/DC/DwJA6v8h6oi8IrR29LxALKI1EfnopGXU/s/CYIp6WuoI7y3n2RuS3v7Au3UhI6YUzbVT9OIPTENUmQlVA==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "@lit/react": "^1.0.7", diff --git a/browser/package.json b/browser/package.json index eb8f135ed7..bbced9a317 100644 --- a/browser/package.json +++ b/browser/package.json @@ -34,7 +34,7 @@ "igniteui-react-dockmanager": "^19.4.0", "igniteui-react-excel": "19.3.1", "igniteui-react-gauges": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-react-maps": "19.3.1", diff --git a/browser/tasks/gulp-samples.js b/browser/tasks/gulp-samples.js index fb582fbe1a..b7d7d93068 100644 --- a/browser/tasks/gulp-samples.js +++ b/browser/tasks/gulp-samples.js @@ -849,7 +849,7 @@ function updateIG(cb) { { version: "19.3.1", name: "igniteui-react-excel" }, { version: "19.3.1", name: "igniteui-react-gauges" }, { version: "19.3.1", name: "igniteui-react-data-grids" }, - { version: "^19.4.0", name: "igniteui-react-grids" }, + { version: "^19.5.0-beta.0", name: "igniteui-react-grids" }, { version: "19.3.1", name: "igniteui-react-inputs" }, { version: "19.3.1", name: "igniteui-react-layouts" }, { version: "19.3.1", name: "igniteui-react-maps" }, diff --git a/samples/charts/dashboard-tile/chart-dashboard/package.json b/samples/charts/dashboard-tile/chart-dashboard/package.json index 60d9c4592e..7a58ec3f8a 100644 --- a/samples/charts/dashboard-tile/chart-dashboard/package.json +++ b/samples/charts/dashboard-tile/chart-dashboard/package.json @@ -20,7 +20,7 @@ "igniteui-react-dashboards": "19.3.1", "igniteui-react-datasources": "19.3.1", "igniteui-react-gauges": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-react-maps": "19.3.1", diff --git a/samples/charts/sparkline/grid/package.json b/samples/charts/sparkline/grid/package.json index 4e037203a9..c462a535ab 100644 --- a/samples/charts/sparkline/grid/package.json +++ b/samples/charts/sparkline/grid/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-react-charts": "19.3.1", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "react": "^19.2.0", diff --git a/samples/excel/excel-library/operations-on-workbooks/package.json b/samples/excel/excel-library/operations-on-workbooks/package.json index fd1628208a..3b4369fa22 100644 --- a/samples/excel/excel-library/operations-on-workbooks/package.json +++ b/samples/excel/excel-library/operations-on-workbooks/package.json @@ -16,7 +16,7 @@ "file-saver": "^1.3.8", "igniteui-react-core": "19.3.1", "igniteui-react-excel": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "react": "^19.2.0", diff --git a/samples/excel/excel-library/working-with-charts/package.json b/samples/excel/excel-library/working-with-charts/package.json index 9e0e0a195f..e5a1bbf8b0 100644 --- a/samples/excel/excel-library/working-with-charts/package.json +++ b/samples/excel/excel-library/working-with-charts/package.json @@ -17,7 +17,7 @@ "igniteui-react-charts": "19.3.1", "igniteui-react-core": "19.3.1", "igniteui-react-excel": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "react": "^19.2.0", diff --git a/samples/excel/excel-library/working-with-sparklines/package.json b/samples/excel/excel-library/working-with-sparklines/package.json index efb39e5f8d..87022a338b 100644 --- a/samples/excel/excel-library/working-with-sparklines/package.json +++ b/samples/excel/excel-library/working-with-sparklines/package.json @@ -17,7 +17,7 @@ "igniteui-react-charts": "19.3.1", "igniteui-react-core": "19.3.1", "igniteui-react-excel": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "react": "^19.2.0", diff --git a/samples/grids/grid/action-strip/package.json b/samples/grids/grid/action-strip/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/grid/action-strip/package.json +++ b/samples/grids/grid/action-strip/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/advanced-filtering-options/package.json b/samples/grids/grid/advanced-filtering-options/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/advanced-filtering-options/package.json +++ b/samples/grids/grid/advanced-filtering-options/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/advanced-filtering-style/package.json b/samples/grids/grid/advanced-filtering-style/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/advanced-filtering-style/package.json +++ b/samples/grids/grid/advanced-filtering-style/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/binding-composite-data/package.json b/samples/grids/grid/binding-composite-data/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/binding-composite-data/package.json +++ b/samples/grids/grid/binding-composite-data/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/binding-crud-data/package.json b/samples/grids/grid/binding-crud-data/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/grid/binding-crud-data/package.json +++ b/samples/grids/grid/binding-crud-data/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/binding-nested-data-1/package.json b/samples/grids/grid/binding-nested-data-1/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/binding-nested-data-1/package.json +++ b/samples/grids/grid/binding-nested-data-1/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/cascading-combo/package.json b/samples/grids/grid/cascading-combo/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/cascading-combo/package.json +++ b/samples/grids/grid/cascading-combo/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/cell-editing-sample/package.json b/samples/grids/grid/cell-editing-sample/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/cell-editing-sample/package.json +++ b/samples/grids/grid/cell-editing-sample/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/cell-editing-styling/package.json b/samples/grids/grid/cell-editing-styling/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/cell-editing-styling/package.json +++ b/samples/grids/grid/cell-editing-styling/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/cell-merge-custom-sample/package.json b/samples/grids/grid/cell-merge-custom-sample/package.json index 31b7977b2e..50a37dabf1 100644 --- a/samples/grids/grid/cell-merge-custom-sample/package.json +++ b/samples/grids/grid/cell-merge-custom-sample/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/cell-merge/package.json b/samples/grids/grid/cell-merge/package.json index 31b7977b2e..50a37dabf1 100644 --- a/samples/grids/grid/cell-merge/package.json +++ b/samples/grids/grid/cell-merge/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/cell-selection-mode/package.json b/samples/grids/grid/cell-selection-mode/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/grid/cell-selection-mode/package.json +++ b/samples/grids/grid/cell-selection-mode/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/cell-selection-style/package.json b/samples/grids/grid/cell-selection-style/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/cell-selection-style/package.json +++ b/samples/grids/grid/cell-selection-style/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/change-icons-custom/package.json b/samples/grids/grid/change-icons-custom/package.json index 01bc9f166d..561900dfc2 100644 --- a/samples/grids/grid/change-icons-custom/package.json +++ b/samples/grids/grid/change-icons-custom/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/clipboard-operations/package.json b/samples/grids/grid/clipboard-operations/package.json index 01bc9f166d..561900dfc2 100644 --- a/samples/grids/grid/clipboard-operations/package.json +++ b/samples/grids/grid/clipboard-operations/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/column-auto-sizing/package.json b/samples/grids/grid/column-auto-sizing/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/column-auto-sizing/package.json +++ b/samples/grids/grid/column-auto-sizing/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-collapsible-groups/package.json b/samples/grids/grid/column-collapsible-groups/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/column-collapsible-groups/package.json +++ b/samples/grids/grid/column-collapsible-groups/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-data-types/package.json b/samples/grids/grid/column-data-types/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/column-data-types/package.json +++ b/samples/grids/grid/column-data-types/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-hiding-options/package.json b/samples/grids/grid/column-hiding-options/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/column-hiding-options/package.json +++ b/samples/grids/grid/column-hiding-options/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-hiding-toolbar-style/package.json b/samples/grids/grid/column-hiding-toolbar-style/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/column-hiding-toolbar-style/package.json +++ b/samples/grids/grid/column-hiding-toolbar-style/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-hiding-toolbar/package.json b/samples/grids/grid/column-hiding-toolbar/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/column-hiding-toolbar/package.json +++ b/samples/grids/grid/column-hiding-toolbar/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-moving-options/package.json b/samples/grids/grid/column-moving-options/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/column-moving-options/package.json +++ b/samples/grids/grid/column-moving-options/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-moving-styles/package.json b/samples/grids/grid/column-moving-styles/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/column-moving-styles/package.json +++ b/samples/grids/grid/column-moving-styles/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-pinning-both-sides/package.json b/samples/grids/grid/column-pinning-both-sides/package.json index 31b7977b2e..50a37dabf1 100644 --- a/samples/grids/grid/column-pinning-both-sides/package.json +++ b/samples/grids/grid/column-pinning-both-sides/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/column-pinning-options/package.json b/samples/grids/grid/column-pinning-options/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/column-pinning-options/package.json +++ b/samples/grids/grid/column-pinning-options/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-pinning-right-side/package.json b/samples/grids/grid/column-pinning-right-side/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/column-pinning-right-side/package.json +++ b/samples/grids/grid/column-pinning-right-side/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-pinning-styles/package.json b/samples/grids/grid/column-pinning-styles/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/column-pinning-styles/package.json +++ b/samples/grids/grid/column-pinning-styles/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-pinning/package.json b/samples/grids/grid/column-pinning/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/column-pinning/package.json +++ b/samples/grids/grid/column-pinning/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-resize-styling/package.json b/samples/grids/grid/column-resize-styling/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/column-resize-styling/package.json +++ b/samples/grids/grid/column-resize-styling/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-resizing/package.json b/samples/grids/grid/column-resizing/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/column-resizing/package.json +++ b/samples/grids/grid/column-resizing/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-selection-group/package.json b/samples/grids/grid/column-selection-group/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/column-selection-group/package.json +++ b/samples/grids/grid/column-selection-group/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-selection-mode/package.json b/samples/grids/grid/column-selection-mode/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/grid/column-selection-mode/package.json +++ b/samples/grids/grid/column-selection-mode/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/column-selection-styles/package.json b/samples/grids/grid/column-selection-styles/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/column-selection-styles/package.json +++ b/samples/grids/grid/column-selection-styles/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-sorting-indicators/package.json b/samples/grids/grid/column-sorting-indicators/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/column-sorting-indicators/package.json +++ b/samples/grids/grid/column-sorting-indicators/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-sorting-options/package.json b/samples/grids/grid/column-sorting-options/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/grid/column-sorting-options/package.json +++ b/samples/grids/grid/column-sorting-options/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/column-sorting-style/package.json b/samples/grids/grid/column-sorting-style/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/column-sorting-style/package.json +++ b/samples/grids/grid/column-sorting-style/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/conditional-cell-style-1/package.json b/samples/grids/grid/conditional-cell-style-1/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/grid/conditional-cell-style-1/package.json +++ b/samples/grids/grid/conditional-cell-style-1/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/conditional-cell-style-2/package.json b/samples/grids/grid/conditional-cell-style-2/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/conditional-cell-style-2/package.json +++ b/samples/grids/grid/conditional-cell-style-2/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/conditional-row-selectors/package.json b/samples/grids/grid/conditional-row-selectors/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/conditional-row-selectors/package.json +++ b/samples/grids/grid/conditional-row-selectors/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/custom-context-menu/package.json b/samples/grids/grid/custom-context-menu/package.json index 01bc9f166d..561900dfc2 100644 --- a/samples/grids/grid/custom-context-menu/package.json +++ b/samples/grids/grid/custom-context-menu/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/data-batch-editing-actions/package.json b/samples/grids/grid/data-batch-editing-actions/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/grid/data-batch-editing-actions/package.json +++ b/samples/grids/grid/data-batch-editing-actions/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/data-performance-virtualization/package.json b/samples/grids/grid/data-performance-virtualization/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/data-performance-virtualization/package.json +++ b/samples/grids/grid/data-performance-virtualization/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/data-searching/package.json b/samples/grids/grid/data-searching/package.json index 01bc9f166d..561900dfc2 100644 --- a/samples/grids/grid/data-searching/package.json +++ b/samples/grids/grid/data-searching/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/data-summary-formatter/package.json b/samples/grids/grid/data-summary-formatter/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/data-summary-formatter/package.json +++ b/samples/grids/grid/data-summary-formatter/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/data-summary-options/package.json b/samples/grids/grid/data-summary-options/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/data-summary-options/package.json +++ b/samples/grids/grid/data-summary-options/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/data-summary-template/package.json b/samples/grids/grid/data-summary-template/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/grid/data-summary-template/package.json +++ b/samples/grids/grid/data-summary-template/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/data-validation-style/package.json b/samples/grids/grid/data-validation-style/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/data-validation-style/package.json +++ b/samples/grids/grid/data-validation-style/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/data-validator-service-cross-field/package.json b/samples/grids/grid/data-validator-service-cross-field/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/grid/data-validator-service-cross-field/package.json +++ b/samples/grids/grid/data-validator-service-cross-field/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/data-validator-service-extended/package.json b/samples/grids/grid/data-validator-service-extended/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/grid/data-validator-service-extended/package.json +++ b/samples/grids/grid/data-validator-service-extended/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/data-validator-service/package.json b/samples/grids/grid/data-validator-service/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/grid/data-validator-service/package.json +++ b/samples/grids/grid/data-validator-service/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/disabled-summaries/package.json b/samples/grids/grid/disabled-summaries/package.json index 8757c77a59..41db2db72d 100644 --- a/samples/grids/grid/disabled-summaries/package.json +++ b/samples/grids/grid/disabled-summaries/package.json @@ -12,7 +12,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/editing-columns/package.json b/samples/grids/grid/editing-columns/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/editing-columns/package.json +++ b/samples/grids/grid/editing-columns/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/editing-events/package.json b/samples/grids/grid/editing-events/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/editing-events/package.json +++ b/samples/grids/grid/editing-events/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/editing-excel-style/package.json b/samples/grids/grid/editing-excel-style/package.json index 01bc9f166d..561900dfc2 100644 --- a/samples/grids/grid/editing-excel-style/package.json +++ b/samples/grids/grid/editing-excel-style/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/editing-lifecycle/package.json b/samples/grids/grid/editing-lifecycle/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/editing-lifecycle/package.json +++ b/samples/grids/grid/editing-lifecycle/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/excel-exporting/package.json b/samples/grids/grid/excel-exporting/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/excel-exporting/package.json +++ b/samples/grids/grid/excel-exporting/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/excel-style-filtering-sample-1/package.json b/samples/grids/grid/excel-style-filtering-sample-1/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/grid/excel-style-filtering-sample-1/package.json +++ b/samples/grids/grid/excel-style-filtering-sample-1/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/excel-style-filtering-sample-2/package.json b/samples/grids/grid/excel-style-filtering-sample-2/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/grid/excel-style-filtering-sample-2/package.json +++ b/samples/grids/grid/excel-style-filtering-sample-2/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/excel-style-filtering-sample-3/package.json b/samples/grids/grid/excel-style-filtering-sample-3/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/grid/excel-style-filtering-sample-3/package.json +++ b/samples/grids/grid/excel-style-filtering-sample-3/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/excel-style-filtering-style/package.json b/samples/grids/grid/excel-style-filtering-style/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/grid/excel-style-filtering-style/package.json +++ b/samples/grids/grid/excel-style-filtering-style/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/external-advanced-filtering/package.json b/samples/grids/grid/external-advanced-filtering/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/grid/external-advanced-filtering/package.json +++ b/samples/grids/grid/external-advanced-filtering/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/filtering-options/package.json b/samples/grids/grid/filtering-options/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/grid/filtering-options/package.json +++ b/samples/grids/grid/filtering-options/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/filtering-strategy/package.json b/samples/grids/grid/filtering-strategy/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/filtering-strategy/package.json +++ b/samples/grids/grid/filtering-strategy/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/filtering-style/package.json b/samples/grids/grid/filtering-style/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/grid/filtering-style/package.json +++ b/samples/grids/grid/filtering-style/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/finjs/package.json b/samples/grids/grid/finjs/package.json index b3a45e9ea4..287107a137 100644 --- a/samples/grids/grid/finjs/package.json +++ b/samples/grids/grid/finjs/package.json @@ -19,7 +19,7 @@ "igniteui-react-charts": "19.3.1", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/groupby-custom/package.json b/samples/grids/grid/groupby-custom/package.json index 01bc9f166d..561900dfc2 100644 --- a/samples/grids/grid/groupby-custom/package.json +++ b/samples/grids/grid/groupby-custom/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/groupby-expressions/package.json b/samples/grids/grid/groupby-expressions/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/groupby-expressions/package.json +++ b/samples/grids/grid/groupby-expressions/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/groupby-paging/package.json b/samples/grids/grid/groupby-paging/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/groupby-paging/package.json +++ b/samples/grids/grid/groupby-paging/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/groupby-styling/package.json b/samples/grids/grid/groupby-styling/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/groupby-styling/package.json +++ b/samples/grids/grid/groupby-styling/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/groupby-summary-options/package.json b/samples/grids/grid/groupby-summary-options/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/grid/groupby-summary-options/package.json +++ b/samples/grids/grid/groupby-summary-options/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/groupby-summary-styling/package.json b/samples/grids/grid/groupby-summary-styling/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/grid/groupby-summary-styling/package.json +++ b/samples/grids/grid/groupby-summary-styling/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/infinite-scroll/package.json b/samples/grids/grid/infinite-scroll/package.json index 01bc9f166d..561900dfc2 100644 --- a/samples/grids/grid/infinite-scroll/package.json +++ b/samples/grids/grid/infinite-scroll/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/keyboard-custom-navigation/package.json b/samples/grids/grid/keyboard-custom-navigation/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/grid/keyboard-custom-navigation/package.json +++ b/samples/grids/grid/keyboard-custom-navigation/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/keyboard-mrl-navigation/package.json b/samples/grids/grid/keyboard-mrl-navigation/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/keyboard-mrl-navigation/package.json +++ b/samples/grids/grid/keyboard-mrl-navigation/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/layout-display-density/package.json b/samples/grids/grid/layout-display-density/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/grid/layout-display-density/package.json +++ b/samples/grids/grid/layout-display-density/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/master-detail/package.json b/samples/grids/grid/master-detail/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/master-detail/package.json +++ b/samples/grids/grid/master-detail/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/multi-cell-selection-mode/package.json b/samples/grids/grid/multi-cell-selection-mode/package.json index 01bc9f166d..561900dfc2 100644 --- a/samples/grids/grid/multi-cell-selection-mode/package.json +++ b/samples/grids/grid/multi-cell-selection-mode/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/multi-column-headers-export/package.json b/samples/grids/grid/multi-column-headers-export/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/multi-column-headers-export/package.json +++ b/samples/grids/grid/multi-column-headers-export/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/multi-column-headers-overview/package.json b/samples/grids/grid/multi-column-headers-overview/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/grid/multi-column-headers-overview/package.json +++ b/samples/grids/grid/multi-column-headers-overview/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/multi-column-headers-styling/package.json b/samples/grids/grid/multi-column-headers-styling/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/multi-column-headers-styling/package.json +++ b/samples/grids/grid/multi-column-headers-styling/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/multi-column-headers-template/package.json b/samples/grids/grid/multi-column-headers-template/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/multi-column-headers-template/package.json +++ b/samples/grids/grid/multi-column-headers-template/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/multi-row-layout-options/package.json b/samples/grids/grid/multi-row-layout-options/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/multi-row-layout-options/package.json +++ b/samples/grids/grid/multi-row-layout-options/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/multi-row-layout-style/package.json b/samples/grids/grid/multi-row-layout-style/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/multi-row-layout-style/package.json +++ b/samples/grids/grid/multi-row-layout-style/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/overview/package.json b/samples/grids/grid/overview/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/overview/package.json +++ b/samples/grids/grid/overview/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/paste/package.json b/samples/grids/grid/paste/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/grid/paste/package.json +++ b/samples/grids/grid/paste/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/remote-paging-data/package.json b/samples/grids/grid/remote-paging-data/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/grid/remote-paging-data/package.json +++ b/samples/grids/grid/remote-paging-data/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/remote-paging-grid/package.json b/samples/grids/grid/remote-paging-grid/package.json index 2d44265ea8..dddd06b5f4 100644 --- a/samples/grids/grid/remote-paging-grid/package.json +++ b/samples/grids/grid/remote-paging-grid/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/row-adding/package.json b/samples/grids/grid/row-adding/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/row-adding/package.json +++ b/samples/grids/grid/row-adding/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/row-classes/package.json b/samples/grids/grid/row-classes/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/row-classes/package.json +++ b/samples/grids/grid/row-classes/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/row-drag-base/package.json b/samples/grids/grid/row-drag-base/package.json index 01bc9f166d..561900dfc2 100644 --- a/samples/grids/grid/row-drag-base/package.json +++ b/samples/grids/grid/row-drag-base/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/row-editing-options/package.json b/samples/grids/grid/row-editing-options/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/row-editing-options/package.json +++ b/samples/grids/grid/row-editing-options/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/row-editing-style/package.json b/samples/grids/grid/row-editing-style/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/row-editing-style/package.json +++ b/samples/grids/grid/row-editing-style/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/row-paging-basic/package.json b/samples/grids/grid/row-paging-basic/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/row-paging-basic/package.json +++ b/samples/grids/grid/row-paging-basic/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/row-paging-options/package.json b/samples/grids/grid/row-paging-options/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/grid/row-paging-options/package.json +++ b/samples/grids/grid/row-paging-options/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/row-pinning-drag/package.json b/samples/grids/grid/row-pinning-drag/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/grid/row-pinning-drag/package.json +++ b/samples/grids/grid/row-pinning-drag/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/row-pinning-extra-column/package.json b/samples/grids/grid/row-pinning-extra-column/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/grid/row-pinning-extra-column/package.json +++ b/samples/grids/grid/row-pinning-extra-column/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/row-pinning-options/package.json b/samples/grids/grid/row-pinning-options/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/grid/row-pinning-options/package.json +++ b/samples/grids/grid/row-pinning-options/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/row-pinning-style/package.json b/samples/grids/grid/row-pinning-style/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/row-pinning-style/package.json +++ b/samples/grids/grid/row-pinning-style/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/row-reorder/package.json b/samples/grids/grid/row-reorder/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/grid/row-reorder/package.json +++ b/samples/grids/grid/row-reorder/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/row-selection-mode/package.json b/samples/grids/grid/row-selection-mode/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/grid/row-selection-mode/package.json +++ b/samples/grids/grid/row-selection-mode/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/row-selection-template-excel/package.json b/samples/grids/grid/row-selection-template-excel/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/grid/row-selection-template-excel/package.json +++ b/samples/grids/grid/row-selection-template-excel/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/row-selection-template-numbers/package.json b/samples/grids/grid/row-selection-template-numbers/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/row-selection-template-numbers/package.json +++ b/samples/grids/grid/row-selection-template-numbers/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/row-styles/package.json b/samples/grids/grid/row-styles/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/row-styles/package.json +++ b/samples/grids/grid/row-styles/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/state-persistence-about/package.json b/samples/grids/grid/state-persistence-about/package.json index 01bc9f166d..561900dfc2 100644 --- a/samples/grids/grid/state-persistence-about/package.json +++ b/samples/grids/grid/state-persistence-about/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/state-persistence-main/package.json b/samples/grids/grid/state-persistence-main/package.json index 01bc9f166d..561900dfc2 100644 --- a/samples/grids/grid/state-persistence-main/package.json +++ b/samples/grids/grid/state-persistence-main/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/styling-custom-CSS/package.json b/samples/grids/grid/styling-custom-CSS/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/styling-custom-CSS/package.json +++ b/samples/grids/grid/styling-custom-CSS/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/toolbar-sample-1/package.json b/samples/grids/grid/toolbar-sample-1/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/toolbar-sample-1/package.json +++ b/samples/grids/grid/toolbar-sample-1/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/toolbar-sample-2/package.json b/samples/grids/grid/toolbar-sample-2/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/toolbar-sample-2/package.json +++ b/samples/grids/grid/toolbar-sample-2/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/toolbar-sample-3/package.json b/samples/grids/grid/toolbar-sample-3/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/toolbar-sample-3/package.json +++ b/samples/grids/grid/toolbar-sample-3/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/toolbar-style/package.json b/samples/grids/grid/toolbar-style/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/grid/toolbar-style/package.json +++ b/samples/grids/grid/toolbar-style/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/action-strip/package.json b/samples/grids/hierarchical-grid/action-strip/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/action-strip/package.json +++ b/samples/grids/hierarchical-grid/action-strip/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/advanced-filtering-options/package.json b/samples/grids/hierarchical-grid/advanced-filtering-options/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-options/package.json +++ b/samples/grids/hierarchical-grid/advanced-filtering-options/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/advanced-filtering-style/package.json b/samples/grids/hierarchical-grid/advanced-filtering-style/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-style/package.json +++ b/samples/grids/hierarchical-grid/advanced-filtering-style/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/cell-editing-sample/package.json b/samples/grids/hierarchical-grid/cell-editing-sample/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/cell-editing-sample/package.json +++ b/samples/grids/hierarchical-grid/cell-editing-sample/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/cell-editing-styling/package.json b/samples/grids/hierarchical-grid/cell-editing-styling/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/cell-editing-styling/package.json +++ b/samples/grids/hierarchical-grid/cell-editing-styling/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/cell-merge-custom-sample/package.json b/samples/grids/hierarchical-grid/cell-merge-custom-sample/package.json index 31b7977b2e..50a37dabf1 100644 --- a/samples/grids/hierarchical-grid/cell-merge-custom-sample/package.json +++ b/samples/grids/hierarchical-grid/cell-merge-custom-sample/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/cell-merge/package.json b/samples/grids/hierarchical-grid/cell-merge/package.json index 31b7977b2e..50a37dabf1 100644 --- a/samples/grids/hierarchical-grid/cell-merge/package.json +++ b/samples/grids/hierarchical-grid/cell-merge/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/cell-selection-mode/package.json b/samples/grids/hierarchical-grid/cell-selection-mode/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/hierarchical-grid/cell-selection-mode/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-mode/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/cell-selection-overview/package.json b/samples/grids/hierarchical-grid/cell-selection-overview/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/hierarchical-grid/cell-selection-overview/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-overview/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/cell-selection-style/package.json b/samples/grids/hierarchical-grid/cell-selection-style/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/hierarchical-grid/cell-selection-style/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-style/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/column-auto-sizing/package.json b/samples/grids/hierarchical-grid/column-auto-sizing/package.json index 01bc9f166d..561900dfc2 100644 --- a/samples/grids/hierarchical-grid/column-auto-sizing/package.json +++ b/samples/grids/hierarchical-grid/column-auto-sizing/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/column-collapsible-groups/package.json b/samples/grids/hierarchical-grid/column-collapsible-groups/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/column-collapsible-groups/package.json +++ b/samples/grids/hierarchical-grid/column-collapsible-groups/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json b/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json +++ b/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json b/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json +++ b/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-moving-options/package.json b/samples/grids/hierarchical-grid/column-moving-options/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/column-moving-options/package.json +++ b/samples/grids/hierarchical-grid/column-moving-options/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-moving-styles/package.json b/samples/grids/hierarchical-grid/column-moving-styles/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/column-moving-styles/package.json +++ b/samples/grids/hierarchical-grid/column-moving-styles/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-pinning-both-sides/package.json b/samples/grids/hierarchical-grid/column-pinning-both-sides/package.json index 31b7977b2e..50a37dabf1 100644 --- a/samples/grids/hierarchical-grid/column-pinning-both-sides/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-both-sides/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/column-pinning-options/package.json b/samples/grids/hierarchical-grid/column-pinning-options/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/column-pinning-options/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-options/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-pinning-right-side/package.json b/samples/grids/hierarchical-grid/column-pinning-right-side/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/column-pinning-right-side/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-right-side/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-pinning-styles/package.json b/samples/grids/hierarchical-grid/column-pinning-styles/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/column-pinning-styles/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-styles/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-pinning/package.json b/samples/grids/hierarchical-grid/column-pinning/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/column-pinning/package.json +++ b/samples/grids/hierarchical-grid/column-pinning/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-resize-styling/package.json b/samples/grids/hierarchical-grid/column-resize-styling/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/column-resize-styling/package.json +++ b/samples/grids/hierarchical-grid/column-resize-styling/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-resizing/package.json b/samples/grids/hierarchical-grid/column-resizing/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/column-resizing/package.json +++ b/samples/grids/hierarchical-grid/column-resizing/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-selection-group/package.json b/samples/grids/hierarchical-grid/column-selection-group/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/column-selection-group/package.json +++ b/samples/grids/hierarchical-grid/column-selection-group/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-selection-mode/package.json b/samples/grids/hierarchical-grid/column-selection-mode/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/hierarchical-grid/column-selection-mode/package.json +++ b/samples/grids/hierarchical-grid/column-selection-mode/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/column-selection-styles/package.json b/samples/grids/hierarchical-grid/column-selection-styles/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/column-selection-styles/package.json +++ b/samples/grids/hierarchical-grid/column-selection-styles/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-sorting-indicators/package.json b/samples/grids/hierarchical-grid/column-sorting-indicators/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/column-sorting-indicators/package.json +++ b/samples/grids/hierarchical-grid/column-sorting-indicators/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-sorting-options/package.json b/samples/grids/hierarchical-grid/column-sorting-options/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/column-sorting-options/package.json +++ b/samples/grids/hierarchical-grid/column-sorting-options/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-sorting-style/package.json b/samples/grids/hierarchical-grid/column-sorting-style/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/column-sorting-style/package.json +++ b/samples/grids/hierarchical-grid/column-sorting-style/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json b/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json +++ b/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json b/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json +++ b/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/conditional-row-selectors/package.json b/samples/grids/hierarchical-grid/conditional-row-selectors/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/conditional-row-selectors/package.json +++ b/samples/grids/hierarchical-grid/conditional-row-selectors/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/custom-filtering/package.json b/samples/grids/hierarchical-grid/custom-filtering/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/custom-filtering/package.json +++ b/samples/grids/hierarchical-grid/custom-filtering/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/data-exporting-indicator/package.json b/samples/grids/hierarchical-grid/data-exporting-indicator/package.json index 01bc9f166d..561900dfc2 100644 --- a/samples/grids/hierarchical-grid/data-exporting-indicator/package.json +++ b/samples/grids/hierarchical-grid/data-exporting-indicator/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/data-performance-virtualization/package.json b/samples/grids/hierarchical-grid/data-performance-virtualization/package.json index 01bc9f166d..561900dfc2 100644 --- a/samples/grids/hierarchical-grid/data-performance-virtualization/package.json +++ b/samples/grids/hierarchical-grid/data-performance-virtualization/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/data-summary-formatter/package.json b/samples/grids/hierarchical-grid/data-summary-formatter/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/data-summary-formatter/package.json +++ b/samples/grids/hierarchical-grid/data-summary-formatter/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/data-summary-options-styling/package.json b/samples/grids/hierarchical-grid/data-summary-options-styling/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/data-summary-options-styling/package.json +++ b/samples/grids/hierarchical-grid/data-summary-options-styling/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/data-summary-options/package.json b/samples/grids/hierarchical-grid/data-summary-options/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/data-summary-options/package.json +++ b/samples/grids/hierarchical-grid/data-summary-options/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/data-summary-template/package.json b/samples/grids/hierarchical-grid/data-summary-template/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/hierarchical-grid/data-summary-template/package.json +++ b/samples/grids/hierarchical-grid/data-summary-template/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/disabled-summaries/package.json b/samples/grids/hierarchical-grid/disabled-summaries/package.json index 8757c77a59..41db2db72d 100644 --- a/samples/grids/hierarchical-grid/disabled-summaries/package.json +++ b/samples/grids/hierarchical-grid/disabled-summaries/package.json @@ -12,7 +12,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/editing-columns/package.json b/samples/grids/hierarchical-grid/editing-columns/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/editing-columns/package.json +++ b/samples/grids/hierarchical-grid/editing-columns/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/editing-events/package.json b/samples/grids/hierarchical-grid/editing-events/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/editing-events/package.json +++ b/samples/grids/hierarchical-grid/editing-events/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/editing-lifecycle/package.json b/samples/grids/hierarchical-grid/editing-lifecycle/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/editing-lifecycle/package.json +++ b/samples/grids/hierarchical-grid/editing-lifecycle/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/excel-exporting/package.json b/samples/grids/hierarchical-grid/excel-exporting/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/excel-exporting/package.json +++ b/samples/grids/hierarchical-grid/excel-exporting/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/filtering-options/package.json b/samples/grids/hierarchical-grid/filtering-options/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/filtering-options/package.json +++ b/samples/grids/hierarchical-grid/filtering-options/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/filtering-style/package.json b/samples/grids/hierarchical-grid/filtering-style/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/filtering-style/package.json +++ b/samples/grids/hierarchical-grid/filtering-style/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json b/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json b/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json b/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/layout-display-density/package.json b/samples/grids/hierarchical-grid/layout-display-density/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/hierarchical-grid/layout-display-density/package.json +++ b/samples/grids/hierarchical-grid/layout-display-density/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/multi-column-headers-export/package.json b/samples/grids/hierarchical-grid/multi-column-headers-export/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-export/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-export/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json b/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json b/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/multi-column-headers-template/package.json b/samples/grids/hierarchical-grid/multi-column-headers-template/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-template/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-template/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/overview/package.json b/samples/grids/hierarchical-grid/overview/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/overview/package.json +++ b/samples/grids/hierarchical-grid/overview/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/remote-paging-hgrid/package.json b/samples/grids/hierarchical-grid/remote-paging-hgrid/package.json index 01bc9f166d..561900dfc2 100644 --- a/samples/grids/hierarchical-grid/remote-paging-hgrid/package.json +++ b/samples/grids/hierarchical-grid/remote-paging-hgrid/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/row-adding/package.json b/samples/grids/hierarchical-grid/row-adding/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/row-adding/package.json +++ b/samples/grids/hierarchical-grid/row-adding/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-classes/package.json b/samples/grids/hierarchical-grid/row-classes/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/row-classes/package.json +++ b/samples/grids/hierarchical-grid/row-classes/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-drag-base/package.json b/samples/grids/hierarchical-grid/row-drag-base/package.json index 01bc9f166d..561900dfc2 100644 --- a/samples/grids/hierarchical-grid/row-drag-base/package.json +++ b/samples/grids/hierarchical-grid/row-drag-base/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/row-editing-options/package.json b/samples/grids/hierarchical-grid/row-editing-options/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/row-editing-options/package.json +++ b/samples/grids/hierarchical-grid/row-editing-options/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-editing-style/package.json b/samples/grids/hierarchical-grid/row-editing-style/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/row-editing-style/package.json +++ b/samples/grids/hierarchical-grid/row-editing-style/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json b/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json +++ b/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/row-pinning-options/package.json b/samples/grids/hierarchical-grid/row-pinning-options/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/hierarchical-grid/row-pinning-options/package.json +++ b/samples/grids/hierarchical-grid/row-pinning-options/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/row-pinning-style/package.json b/samples/grids/hierarchical-grid/row-pinning-style/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/row-pinning-style/package.json +++ b/samples/grids/hierarchical-grid/row-pinning-style/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-reorder/package.json b/samples/grids/hierarchical-grid/row-reorder/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/row-reorder/package.json +++ b/samples/grids/hierarchical-grid/row-reorder/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-selection-mode/package.json b/samples/grids/hierarchical-grid/row-selection-mode/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/hierarchical-grid/row-selection-mode/package.json +++ b/samples/grids/hierarchical-grid/row-selection-mode/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json b/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json +++ b/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-styles/package.json b/samples/grids/hierarchical-grid/row-styles/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/row-styles/package.json +++ b/samples/grids/hierarchical-grid/row-styles/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/state-persistence-about/package.json b/samples/grids/hierarchical-grid/state-persistence-about/package.json index 01bc9f166d..561900dfc2 100644 --- a/samples/grids/hierarchical-grid/state-persistence-about/package.json +++ b/samples/grids/hierarchical-grid/state-persistence-about/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/state-persistence-main/package.json b/samples/grids/hierarchical-grid/state-persistence-main/package.json index 01bc9f166d..561900dfc2 100644 --- a/samples/grids/hierarchical-grid/state-persistence-main/package.json +++ b/samples/grids/hierarchical-grid/state-persistence-main/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/toolbar-sample-3/package.json b/samples/grids/hierarchical-grid/toolbar-sample-3/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-3/package.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-3/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/toolbar-sample-4/package.json b/samples/grids/hierarchical-grid/toolbar-sample-4/package.json index 01bc9f166d..561900dfc2 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-4/package.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-4/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/toolbar-style/package.json b/samples/grids/hierarchical-grid/toolbar-style/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/hierarchical-grid/toolbar-style/package.json +++ b/samples/grids/hierarchical-grid/toolbar-style/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/pivot-grid/aggregate-max-sales/package.json b/samples/grids/pivot-grid/aggregate-max-sales/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/pivot-grid/aggregate-max-sales/package.json +++ b/samples/grids/pivot-grid/aggregate-max-sales/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/pivot-grid/aggregate-units-sold/package.json b/samples/grids/pivot-grid/aggregate-units-sold/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/pivot-grid/aggregate-units-sold/package.json +++ b/samples/grids/pivot-grid/aggregate-units-sold/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/pivot-grid/data-selector/package.json b/samples/grids/pivot-grid/data-selector/package.json index 01bc9f166d..561900dfc2 100644 --- a/samples/grids/pivot-grid/data-selector/package.json +++ b/samples/grids/pivot-grid/data-selector/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/pivot-grid/features/package.json b/samples/grids/pivot-grid/features/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/pivot-grid/features/package.json +++ b/samples/grids/pivot-grid/features/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/pivot-grid/state-persistence-about/package.json b/samples/grids/pivot-grid/state-persistence-about/package.json index 01bc9f166d..561900dfc2 100644 --- a/samples/grids/pivot-grid/state-persistence-about/package.json +++ b/samples/grids/pivot-grid/state-persistence-about/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/pivot-grid/state-persistence-main/package.json b/samples/grids/pivot-grid/state-persistence-main/package.json index 01bc9f166d..561900dfc2 100644 --- a/samples/grids/pivot-grid/state-persistence-main/package.json +++ b/samples/grids/pivot-grid/state-persistence-main/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/action-strip/package.json b/samples/grids/tree-grid/action-strip/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/action-strip/package.json +++ b/samples/grids/tree-grid/action-strip/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/advanced-filtering-options/package.json b/samples/grids/tree-grid/advanced-filtering-options/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/advanced-filtering-options/package.json +++ b/samples/grids/tree-grid/advanced-filtering-options/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/advanced-filtering-style/package.json b/samples/grids/tree-grid/advanced-filtering-style/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/advanced-filtering-style/package.json +++ b/samples/grids/tree-grid/advanced-filtering-style/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/cell-editing-sample/package.json b/samples/grids/tree-grid/cell-editing-sample/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/cell-editing-sample/package.json +++ b/samples/grids/tree-grid/cell-editing-sample/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/cell-editing-styling/package.json b/samples/grids/tree-grid/cell-editing-styling/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/cell-editing-styling/package.json +++ b/samples/grids/tree-grid/cell-editing-styling/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/cell-merge-custom-sample/package.json b/samples/grids/tree-grid/cell-merge-custom-sample/package.json index 31b7977b2e..50a37dabf1 100644 --- a/samples/grids/tree-grid/cell-merge-custom-sample/package.json +++ b/samples/grids/tree-grid/cell-merge-custom-sample/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/cell-merge/package.json b/samples/grids/tree-grid/cell-merge/package.json index 31b7977b2e..50a37dabf1 100644 --- a/samples/grids/tree-grid/cell-merge/package.json +++ b/samples/grids/tree-grid/cell-merge/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/cell-selection-mode/package.json b/samples/grids/tree-grid/cell-selection-mode/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/tree-grid/cell-selection-mode/package.json +++ b/samples/grids/tree-grid/cell-selection-mode/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/cell-selection-style/package.json b/samples/grids/tree-grid/cell-selection-style/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/cell-selection-style/package.json +++ b/samples/grids/tree-grid/cell-selection-style/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/clipboard-operations/package.json b/samples/grids/tree-grid/clipboard-operations/package.json index 01bc9f166d..561900dfc2 100644 --- a/samples/grids/tree-grid/clipboard-operations/package.json +++ b/samples/grids/tree-grid/clipboard-operations/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/column-auto-sizing/package.json b/samples/grids/tree-grid/column-auto-sizing/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/column-auto-sizing/package.json +++ b/samples/grids/tree-grid/column-auto-sizing/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-collapsible-groups/package.json b/samples/grids/tree-grid/column-collapsible-groups/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/column-collapsible-groups/package.json +++ b/samples/grids/tree-grid/column-collapsible-groups/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-data-types/package.json b/samples/grids/tree-grid/column-data-types/package.json index 01bc9f166d..561900dfc2 100644 --- a/samples/grids/tree-grid/column-data-types/package.json +++ b/samples/grids/tree-grid/column-data-types/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/column-hiding-toolbar-style/package.json b/samples/grids/tree-grid/column-hiding-toolbar-style/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar-style/package.json +++ b/samples/grids/tree-grid/column-hiding-toolbar-style/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-hiding-toolbar/package.json b/samples/grids/tree-grid/column-hiding-toolbar/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar/package.json +++ b/samples/grids/tree-grid/column-hiding-toolbar/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-moving-options/package.json b/samples/grids/tree-grid/column-moving-options/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/column-moving-options/package.json +++ b/samples/grids/tree-grid/column-moving-options/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-moving-styles/package.json b/samples/grids/tree-grid/column-moving-styles/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/column-moving-styles/package.json +++ b/samples/grids/tree-grid/column-moving-styles/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-pinning-both-sides/package.json b/samples/grids/tree-grid/column-pinning-both-sides/package.json index 31b7977b2e..50a37dabf1 100644 --- a/samples/grids/tree-grid/column-pinning-both-sides/package.json +++ b/samples/grids/tree-grid/column-pinning-both-sides/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/column-pinning-options/package.json b/samples/grids/tree-grid/column-pinning-options/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/column-pinning-options/package.json +++ b/samples/grids/tree-grid/column-pinning-options/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-pinning-right-side/package.json b/samples/grids/tree-grid/column-pinning-right-side/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/column-pinning-right-side/package.json +++ b/samples/grids/tree-grid/column-pinning-right-side/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-pinning-styles/package.json b/samples/grids/tree-grid/column-pinning-styles/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/column-pinning-styles/package.json +++ b/samples/grids/tree-grid/column-pinning-styles/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-pinning-toolbar/package.json b/samples/grids/tree-grid/column-pinning-toolbar/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/column-pinning-toolbar/package.json +++ b/samples/grids/tree-grid/column-pinning-toolbar/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-pinning/package.json b/samples/grids/tree-grid/column-pinning/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/column-pinning/package.json +++ b/samples/grids/tree-grid/column-pinning/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-resize-styling/package.json b/samples/grids/tree-grid/column-resize-styling/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/column-resize-styling/package.json +++ b/samples/grids/tree-grid/column-resize-styling/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-resizing/package.json b/samples/grids/tree-grid/column-resizing/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/column-resizing/package.json +++ b/samples/grids/tree-grid/column-resizing/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-selection-group/package.json b/samples/grids/tree-grid/column-selection-group/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/column-selection-group/package.json +++ b/samples/grids/tree-grid/column-selection-group/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-selection-mode/package.json b/samples/grids/tree-grid/column-selection-mode/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/tree-grid/column-selection-mode/package.json +++ b/samples/grids/tree-grid/column-selection-mode/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/column-selection-style/package.json b/samples/grids/tree-grid/column-selection-style/package.json index 01bc9f166d..561900dfc2 100644 --- a/samples/grids/tree-grid/column-selection-style/package.json +++ b/samples/grids/tree-grid/column-selection-style/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/column-selection-styles/package.json b/samples/grids/tree-grid/column-selection-styles/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/column-selection-styles/package.json +++ b/samples/grids/tree-grid/column-selection-styles/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-sorting-indicators/package.json b/samples/grids/tree-grid/column-sorting-indicators/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/column-sorting-indicators/package.json +++ b/samples/grids/tree-grid/column-sorting-indicators/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-sorting-options/package.json b/samples/grids/tree-grid/column-sorting-options/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/tree-grid/column-sorting-options/package.json +++ b/samples/grids/tree-grid/column-sorting-options/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/column-sorting-style/package.json b/samples/grids/tree-grid/column-sorting-style/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/tree-grid/column-sorting-style/package.json +++ b/samples/grids/tree-grid/column-sorting-style/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/conditional-cell-style-1/package.json b/samples/grids/tree-grid/conditional-cell-style-1/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/conditional-cell-style-1/package.json +++ b/samples/grids/tree-grid/conditional-cell-style-1/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/conditional-cell-style-2/package.json b/samples/grids/tree-grid/conditional-cell-style-2/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/conditional-cell-style-2/package.json +++ b/samples/grids/tree-grid/conditional-cell-style-2/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/conditional-row-selectors/package.json b/samples/grids/tree-grid/conditional-row-selectors/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/conditional-row-selectors/package.json +++ b/samples/grids/tree-grid/conditional-row-selectors/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/data-exporting-indicator/package.json b/samples/grids/tree-grid/data-exporting-indicator/package.json index 01bc9f166d..561900dfc2 100644 --- a/samples/grids/tree-grid/data-exporting-indicator/package.json +++ b/samples/grids/tree-grid/data-exporting-indicator/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/data-searching/package.json b/samples/grids/tree-grid/data-searching/package.json index ade58e4102..09146368ea 100644 --- a/samples/grids/tree-grid/data-searching/package.json +++ b/samples/grids/tree-grid/data-searching/package.json @@ -15,7 +15,7 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "lit-html": "^2.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/data-summary-children/package.json b/samples/grids/tree-grid/data-summary-children/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/tree-grid/data-summary-children/package.json +++ b/samples/grids/tree-grid/data-summary-children/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/data-summary-formatter/package.json b/samples/grids/tree-grid/data-summary-formatter/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/data-summary-formatter/package.json +++ b/samples/grids/tree-grid/data-summary-formatter/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/data-summary-options-styling/package.json b/samples/grids/tree-grid/data-summary-options-styling/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/data-summary-options-styling/package.json +++ b/samples/grids/tree-grid/data-summary-options-styling/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/data-summary-options/package.json b/samples/grids/tree-grid/data-summary-options/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/data-summary-options/package.json +++ b/samples/grids/tree-grid/data-summary-options/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/data-summary-template/package.json b/samples/grids/tree-grid/data-summary-template/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/tree-grid/data-summary-template/package.json +++ b/samples/grids/tree-grid/data-summary-template/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/disabled-summaries/package.json b/samples/grids/tree-grid/disabled-summaries/package.json index 8757c77a59..41db2db72d 100644 --- a/samples/grids/tree-grid/disabled-summaries/package.json +++ b/samples/grids/tree-grid/disabled-summaries/package.json @@ -12,7 +12,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/editing-columns/package.json b/samples/grids/tree-grid/editing-columns/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/editing-columns/package.json +++ b/samples/grids/tree-grid/editing-columns/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/editing-events/package.json b/samples/grids/tree-grid/editing-events/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/editing-events/package.json +++ b/samples/grids/tree-grid/editing-events/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/editing-lifecycle/package.json b/samples/grids/tree-grid/editing-lifecycle/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/editing-lifecycle/package.json +++ b/samples/grids/tree-grid/editing-lifecycle/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/excel-exporting/package.json b/samples/grids/tree-grid/excel-exporting/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/excel-exporting/package.json +++ b/samples/grids/tree-grid/excel-exporting/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json b/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json b/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json b/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/excel-style-filtering-style/package.json b/samples/grids/tree-grid/excel-style-filtering-style/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/excel-style-filtering-style/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-style/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/filtering-options/package.json b/samples/grids/tree-grid/filtering-options/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/filtering-options/package.json +++ b/samples/grids/tree-grid/filtering-options/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/filtering-style/package.json b/samples/grids/tree-grid/filtering-style/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/filtering-style/package.json +++ b/samples/grids/tree-grid/filtering-style/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/keyboard-custom-navigation/package.json b/samples/grids/tree-grid/keyboard-custom-navigation/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/tree-grid/keyboard-custom-navigation/package.json +++ b/samples/grids/tree-grid/keyboard-custom-navigation/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/layout-display-density/package.json b/samples/grids/tree-grid/layout-display-density/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/tree-grid/layout-display-density/package.json +++ b/samples/grids/tree-grid/layout-display-density/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/multi-cell-selection-mode/package.json b/samples/grids/tree-grid/multi-cell-selection-mode/package.json index 01bc9f166d..561900dfc2 100644 --- a/samples/grids/tree-grid/multi-cell-selection-mode/package.json +++ b/samples/grids/tree-grid/multi-cell-selection-mode/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/multi-column-headers-export/package.json b/samples/grids/tree-grid/multi-column-headers-export/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/multi-column-headers-export/package.json +++ b/samples/grids/tree-grid/multi-column-headers-export/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/multi-column-headers-overview/package.json b/samples/grids/tree-grid/multi-column-headers-overview/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/tree-grid/multi-column-headers-overview/package.json +++ b/samples/grids/tree-grid/multi-column-headers-overview/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/multi-column-headers-styling/package.json b/samples/grids/tree-grid/multi-column-headers-styling/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/multi-column-headers-styling/package.json +++ b/samples/grids/tree-grid/multi-column-headers-styling/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/multi-column-headers-template/package.json b/samples/grids/tree-grid/multi-column-headers-template/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/multi-column-headers-template/package.json +++ b/samples/grids/tree-grid/multi-column-headers-template/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/overview-styling/package.json b/samples/grids/tree-grid/overview-styling/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/overview-styling/package.json +++ b/samples/grids/tree-grid/overview-styling/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/overview/package.json b/samples/grids/tree-grid/overview/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/tree-grid/overview/package.json +++ b/samples/grids/tree-grid/overview/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/row-adding/package.json b/samples/grids/tree-grid/row-adding/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/row-adding/package.json +++ b/samples/grids/tree-grid/row-adding/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/row-classes/package.json b/samples/grids/tree-grid/row-classes/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/row-classes/package.json +++ b/samples/grids/tree-grid/row-classes/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/row-drag-base/package.json b/samples/grids/tree-grid/row-drag-base/package.json index 01bc9f166d..561900dfc2 100644 --- a/samples/grids/tree-grid/row-drag-base/package.json +++ b/samples/grids/tree-grid/row-drag-base/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/row-editing-options/package.json b/samples/grids/tree-grid/row-editing-options/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/row-editing-options/package.json +++ b/samples/grids/tree-grid/row-editing-options/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/row-editing-style/package.json b/samples/grids/tree-grid/row-editing-style/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/row-editing-style/package.json +++ b/samples/grids/tree-grid/row-editing-style/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/row-paging-basic/package.json b/samples/grids/tree-grid/row-paging-basic/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/row-paging-basic/package.json +++ b/samples/grids/tree-grid/row-paging-basic/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/row-paging-options/package.json b/samples/grids/tree-grid/row-paging-options/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/tree-grid/row-paging-options/package.json +++ b/samples/grids/tree-grid/row-paging-options/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/row-paging-style/package.json b/samples/grids/tree-grid/row-paging-style/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/row-paging-style/package.json +++ b/samples/grids/tree-grid/row-paging-style/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/row-pinning-extra-column/package.json b/samples/grids/tree-grid/row-pinning-extra-column/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/row-pinning-extra-column/package.json +++ b/samples/grids/tree-grid/row-pinning-extra-column/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/row-pinning-options/package.json b/samples/grids/tree-grid/row-pinning-options/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/tree-grid/row-pinning-options/package.json +++ b/samples/grids/tree-grid/row-pinning-options/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/row-pinning-style/package.json b/samples/grids/tree-grid/row-pinning-style/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/row-pinning-style/package.json +++ b/samples/grids/tree-grid/row-pinning-style/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/row-reorder/package.json b/samples/grids/tree-grid/row-reorder/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/row-reorder/package.json +++ b/samples/grids/tree-grid/row-reorder/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/row-selection-mode/package.json b/samples/grids/tree-grid/row-selection-mode/package.json index 20cde988e6..777c424c5b 100644 --- a/samples/grids/tree-grid/row-selection-mode/package.json +++ b/samples/grids/tree-grid/row-selection-mode/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/row-selection-template-excel/package.json b/samples/grids/tree-grid/row-selection-template-excel/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/row-selection-template-excel/package.json +++ b/samples/grids/tree-grid/row-selection-template-excel/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/row-selection-template-numbers/package.json b/samples/grids/tree-grid/row-selection-template-numbers/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/row-selection-template-numbers/package.json +++ b/samples/grids/tree-grid/row-selection-template-numbers/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/row-styles/package.json b/samples/grids/tree-grid/row-styles/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/row-styles/package.json +++ b/samples/grids/tree-grid/row-styles/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/state-persistence-about/package.json b/samples/grids/tree-grid/state-persistence-about/package.json index 01bc9f166d..561900dfc2 100644 --- a/samples/grids/tree-grid/state-persistence-about/package.json +++ b/samples/grids/tree-grid/state-persistence-about/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/state-persistence-main/package.json b/samples/grids/tree-grid/state-persistence-main/package.json index 01bc9f166d..561900dfc2 100644 --- a/samples/grids/tree-grid/state-persistence-main/package.json +++ b/samples/grids/tree-grid/state-persistence-main/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/toolbar-sample-1/package.json b/samples/grids/tree-grid/toolbar-sample-1/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/toolbar-sample-1/package.json +++ b/samples/grids/tree-grid/toolbar-sample-1/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/toolbar-sample-2/package.json b/samples/grids/tree-grid/toolbar-sample-2/package.json index 01bc9f166d..561900dfc2 100644 --- a/samples/grids/tree-grid/toolbar-sample-2/package.json +++ b/samples/grids/tree-grid/toolbar-sample-2/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/toolbar-sample-3/package.json b/samples/grids/tree-grid/toolbar-sample-3/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/toolbar-sample-3/package.json +++ b/samples/grids/tree-grid/toolbar-sample-3/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/toolbar-sample-4/package.json b/samples/grids/tree-grid/toolbar-sample-4/package.json index 01bc9f166d..561900dfc2 100644 --- a/samples/grids/tree-grid/toolbar-sample-4/package.json +++ b/samples/grids/tree-grid/toolbar-sample-4/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/toolbar-style/package.json b/samples/grids/tree-grid/toolbar-style/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/toolbar-style/package.json +++ b/samples/grids/tree-grid/toolbar-style/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/using-primary-foreign-keys/package.json b/samples/grids/tree-grid/using-primary-foreign-keys/package.json index 877d480a3a..11e321e91a 100644 --- a/samples/grids/tree-grid/using-primary-foreign-keys/package.json +++ b/samples/grids/tree-grid/using-primary-foreign-keys/package.json @@ -17,7 +17,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/inputs/combo/templates/package.json b/samples/inputs/combo/templates/package.json index 430aec8e85..125f3245f7 100644 --- a/samples/inputs/combo/templates/package.json +++ b/samples/inputs/combo/templates/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "^19.4.0", + "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-react-inputs": "19.3.1", "igniteui-react-layouts": "19.3.1", "igniteui-webcomponents": "^6.3.0", From f8175fc6f2260caebcd702074e3b39e69b020e38 Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Wed, 21 Jan 2026 13:06:17 -0500 Subject: [PATCH 22/43] Adding changes from build igniteui-xplat-examples-output+PRs_2026.1.13.1 (#1002) Co-authored-by: tfsbuild Co-authored-by: Deyan Kamburov Co-authored-by: HUSSAR-mtrela (Martin Trela) --- .../grids/grid/column-moving-options/src/index.tsx | 2 +- .../grids/grid/column-moving-styles/src/index.tsx | 2 +- .../grids/grid/column-pinning-options/src/index.tsx | 2 +- .../grids/grid/column-selection-mode/src/index.tsx | 6 ++++-- .../grid/multi-column-headers-template/src/index.tsx | 2 +- .../grid/row-pinning-extra-column/src/index.css | 11 +++++++++++ .../grid/row-pinning-extra-column/src/index.tsx | 12 ++++++++++-- samples/grids/grid/row-selection-mode/src/index.tsx | 6 +++++- .../column-moving-options/src/index.tsx | 2 +- .../column-moving-styles/src/index.tsx | 2 +- .../column-pinning-options/src/index.tsx | 2 +- .../column-selection-mode/src/index.tsx | 6 ++++-- .../filtering-options/src/index.tsx | 4 ++-- .../row-selection-mode/src/index.tsx | 6 +++++- .../tree-grid/column-moving-options/src/index.tsx | 2 +- .../tree-grid/column-moving-styles/src/index.tsx | 2 +- .../tree-grid/column-pinning-options/src/index.tsx | 2 +- .../tree-grid/column-pinning-styles/src/index.tsx | 2 +- .../tree-grid/column-selection-mode/src/index.tsx | 6 ++++-- .../grids/tree-grid/row-selection-mode/src/index.tsx | 5 ++++- 20 files changed, 60 insertions(+), 24 deletions(-) diff --git a/samples/grids/grid/column-moving-options/src/index.tsx b/samples/grids/grid/column-moving-options/src/index.tsx index 4fd453d4d0..208ccb1f92 100644 --- a/samples/grids/grid/column-moving-options/src/index.tsx +++ b/samples/grids/grid/column-moving-options/src/index.tsx @@ -159,7 +159,7 @@ export default class Sample extends React.Component { return (
{column.field} - this.toggleColumnPin(column.field)}>📌 + this.toggleColumnPin(column.field)}>📌
); } diff --git a/samples/grids/grid/column-moving-styles/src/index.tsx b/samples/grids/grid/column-moving-styles/src/index.tsx index e7289ab61a..5a833b1ef8 100644 --- a/samples/grids/grid/column-moving-styles/src/index.tsx +++ b/samples/grids/grid/column-moving-styles/src/index.tsx @@ -153,7 +153,7 @@ export default class Sample extends React.Component { return (
{column.field} - this.toggleColumnPin(column.field)}>📌 + this.toggleColumnPin(column.field)}>📌
); } diff --git a/samples/grids/grid/column-pinning-options/src/index.tsx b/samples/grids/grid/column-pinning-options/src/index.tsx index 7c8a09942d..2ddb59b241 100644 --- a/samples/grids/grid/column-pinning-options/src/index.tsx +++ b/samples/grids/grid/column-pinning-options/src/index.tsx @@ -118,7 +118,7 @@ export default class Sample extends React.Component { return (
{column.field} - this.toggleColumnPin(column.field)}>📌 + this.toggleColumnPin(column.field)}>📌
); } diff --git a/samples/grids/grid/column-selection-mode/src/index.tsx b/samples/grids/grid/column-selection-mode/src/index.tsx index fd5b42a4cb..9a0f16a99a 100644 --- a/samples/grids/grid/column-selection-mode/src/index.tsx +++ b/samples/grids/grid/column-selection-mode/src/index.tsx @@ -51,8 +51,10 @@ export default class Sample extends React.Component { isWrappingEnabled="true"> + name="ColumnSelectionEditor" + valueType="EnumValue" + dropDownNames={["None", "Single", "Multiple", "MultipleCascade"]} + dropDownValues={["None", "Single", "Multiple", "MultipleCascade"]}>
diff --git a/samples/grids/grid/multi-column-headers-template/src/index.tsx b/samples/grids/grid/multi-column-headers-template/src/index.tsx index 8c6c4c327d..8fabeaeed3 100644 --- a/samples/grids/grid/multi-column-headers-template/src/index.tsx +++ b/samples/grids/grid/multi-column-headers-template/src/index.tsx @@ -153,7 +153,7 @@ export default class Sample extends React.Component { const column = e.dataContext.column; return (
- this.toggleColumnGroup(column)}> + this.toggleColumnGroup(column)}> {this.columnGroupStates.get(column) ? "🔽" : "🔼"} {column.header} diff --git a/samples/grids/grid/row-pinning-extra-column/src/index.css b/samples/grids/grid/row-pinning-extra-column/src/index.css index 7eb1c7c38e..af7019403b 100644 --- a/samples/grids/grid/row-pinning-extra-column/src/index.css +++ b/samples/grids/grid/row-pinning-extra-column/src/index.css @@ -1,2 +1,13 @@ /* shared styles are loaded from: */ /* https://dl.infragistics.com/x/css/samples/shared.v8.css */ + +.customIcon { + display: flex; + width: 100%; + justify-content: center; +} + +.customIconSpan { + cursor: pointer; +} + diff --git a/samples/grids/grid/row-pinning-extra-column/src/index.tsx b/samples/grids/grid/row-pinning-extra-column/src/index.tsx index 0ebbd05002..fc257db07d 100644 --- a/samples/grids/grid/row-pinning-extra-column/src/index.tsx +++ b/samples/grids/grid/row-pinning-extra-column/src/index.tsx @@ -41,7 +41,7 @@ export default class Sample extends React.Component { primaryKey="ID" cellSelection="none"> @@ -103,15 +103,23 @@ export default class Sample extends React.Component { } public webGridRowPinCellTemplate = (e: {dataContext: IgrCellTemplateContext}) => { + const grid = this.grid; const index = e.dataContext.cell.row.index; + const row = grid.rowList.toArray().find(x => x.index === index); + if (row && row.pinned && row.disabled) { + return (<>); + } return ( - this.toggleRowPin(index)} style={{ cursor: 'pointer'}}>📌 +
+ this.toggleRowPin(index)} className='customIconSpan'>📌 +
); } public toggleRowPin(index: number) { let grid = this.grid; grid.getRowByIndex(index).pinned = !grid.getRowByIndex(index).pinned; + grid.markForCheck(); } } diff --git a/samples/grids/grid/row-selection-mode/src/index.tsx b/samples/grids/grid/row-selection-mode/src/index.tsx index 71965838f4..4975d04360 100644 --- a/samples/grids/grid/row-selection-mode/src/index.tsx +++ b/samples/grids/grid/row-selection-mode/src/index.tsx @@ -92,7 +92,11 @@ export default class Sample extends React.Component { ref={this.propertyEditorPanel1Ref}> + propertyPath="RowSelection" + valueType="EnumValue" + label="Row Selection" + dropDownNames={["None", "Single", "Multiple"]} + dropDownValues={["None", "Single", "Multiple"]}> { return (
{column.field} - this.toggleColumnPin(column)}>📌 + this.toggleColumnPin(column)}>📌
); } diff --git a/samples/grids/hierarchical-grid/column-moving-styles/src/index.tsx b/samples/grids/hierarchical-grid/column-moving-styles/src/index.tsx index 053b41a5fb..578c497e62 100644 --- a/samples/grids/hierarchical-grid/column-moving-styles/src/index.tsx +++ b/samples/grids/hierarchical-grid/column-moving-styles/src/index.tsx @@ -186,7 +186,7 @@ export default class Sample extends React.Component { return (
{column.field} - this.toggleColumnPin(column)}>📌 + this.toggleColumnPin(column)}>📌
); } diff --git a/samples/grids/hierarchical-grid/column-pinning-options/src/index.tsx b/samples/grids/hierarchical-grid/column-pinning-options/src/index.tsx index f136f9125c..84d681fcb2 100644 --- a/samples/grids/hierarchical-grid/column-pinning-options/src/index.tsx +++ b/samples/grids/hierarchical-grid/column-pinning-options/src/index.tsx @@ -196,7 +196,7 @@ export default class Sample extends React.Component { return (
{column.field} - this.toggleColumnPin(column)}>📌 + this.toggleColumnPin(column)}>📌
); } diff --git a/samples/grids/hierarchical-grid/column-selection-mode/src/index.tsx b/samples/grids/hierarchical-grid/column-selection-mode/src/index.tsx index 0ccfbcbbe3..2cb87378cd 100644 --- a/samples/grids/hierarchical-grid/column-selection-mode/src/index.tsx +++ b/samples/grids/hierarchical-grid/column-selection-mode/src/index.tsx @@ -51,8 +51,10 @@ export default class Sample extends React.Component { isWrappingEnabled="true"> + name="ColumnSelectionEditor" + valueType="EnumValue" + dropDownNames={["None", "Single", "Multiple", "MultipleCascade"]} + dropDownValues={["None", "Single", "Multiple", "MultipleCascade"]}>
diff --git a/samples/grids/hierarchical-grid/filtering-options/src/index.tsx b/samples/grids/hierarchical-grid/filtering-options/src/index.tsx index d430fa5bea..f62d22f07e 100644 --- a/samples/grids/hierarchical-grid/filtering-options/src/index.tsx +++ b/samples/grids/hierarchical-grid/filtering-options/src/index.tsx @@ -64,13 +64,13 @@ export default class Sample extends React.Component { { ref={this.propertyEditorPanel1Ref}> + propertyPath="RowSelection" + valueType="EnumValue" + label="Row Selection" + dropDownNames={["None", "Single", "Multiple"]} + dropDownValues={["None", "Single", "Multiple"]}> { return (
{column.field} - this.toggleColumnPin(column.field)}>📌 + this.toggleColumnPin(column.field)}>📌
); } diff --git a/samples/grids/tree-grid/column-moving-styles/src/index.tsx b/samples/grids/tree-grid/column-moving-styles/src/index.tsx index 1e8fe50f62..69d1f38883 100644 --- a/samples/grids/tree-grid/column-moving-styles/src/index.tsx +++ b/samples/grids/tree-grid/column-moving-styles/src/index.tsx @@ -131,7 +131,7 @@ export default class Sample extends React.Component { return (
{column.field} - this.toggleColumnPin(column.field)}>📌 + this.toggleColumnPin(column.field)}>📌
); } diff --git a/samples/grids/tree-grid/column-pinning-options/src/index.tsx b/samples/grids/tree-grid/column-pinning-options/src/index.tsx index fc7a9b64c8..c69763f02e 100644 --- a/samples/grids/tree-grid/column-pinning-options/src/index.tsx +++ b/samples/grids/tree-grid/column-pinning-options/src/index.tsx @@ -102,7 +102,7 @@ export default class Sample extends React.Component { return (
{column.field} - this.toggleColumnPin(column.field)}>📌 + this.toggleColumnPin(column.field)}>📌
); } diff --git a/samples/grids/tree-grid/column-pinning-styles/src/index.tsx b/samples/grids/tree-grid/column-pinning-styles/src/index.tsx index fc7a9b64c8..c69763f02e 100644 --- a/samples/grids/tree-grid/column-pinning-styles/src/index.tsx +++ b/samples/grids/tree-grid/column-pinning-styles/src/index.tsx @@ -102,7 +102,7 @@ export default class Sample extends React.Component { return (
{column.field} - this.toggleColumnPin(column.field)}>📌 + this.toggleColumnPin(column.field)}>📌
); } diff --git a/samples/grids/tree-grid/column-selection-mode/src/index.tsx b/samples/grids/tree-grid/column-selection-mode/src/index.tsx index 16ce4ced9c..fd9fe061ca 100644 --- a/samples/grids/tree-grid/column-selection-mode/src/index.tsx +++ b/samples/grids/tree-grid/column-selection-mode/src/index.tsx @@ -51,8 +51,10 @@ export default class Sample extends React.Component { isWrappingEnabled="true"> + name="ColumnSelectionEditor" + valueType="EnumValue" + dropDownNames={["None", "Single", "Multiple", "MultipleCascade"]} + dropDownValues={["None", "Single", "Multiple", "MultipleCascade"]}>
diff --git a/samples/grids/tree-grid/row-selection-mode/src/index.tsx b/samples/grids/tree-grid/row-selection-mode/src/index.tsx index 2b4e3f1dec..93a7bcddfc 100644 --- a/samples/grids/tree-grid/row-selection-mode/src/index.tsx +++ b/samples/grids/tree-grid/row-selection-mode/src/index.tsx @@ -53,7 +53,10 @@ export default class Sample extends React.Component { + valueType="EnumValue" + label="Row Selection" + dropDownNames={["None", "Single", "Multiple"]} + dropDownValues={["None", "Single", "Multiple"]}> Date: Mon, 26 Jan 2026 16:59:25 +0200 Subject: [PATCH 23/43] =?UTF-8?q?fix(sample):=20clear=20pin=20position=20b?= =?UTF-8?q?efore=20pinning=20to=20make=20sure=20column=20pi=E2=80=A6=20(#9?= =?UTF-8?q?45)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../grid/column-pinning-both-sides/src/index.tsx | 14 +++++++++----- .../column-pinning-both-sides/src/index.tsx | 14 +++++++++----- .../column-pinning-both-sides/src/index.tsx | 14 +++++++++----- 3 files changed, 27 insertions(+), 15 deletions(-) diff --git a/samples/grids/grid/column-pinning-both-sides/src/index.tsx b/samples/grids/grid/column-pinning-both-sides/src/index.tsx index 7a3f40a11d..27bfee5a49 100644 --- a/samples/grids/grid/column-pinning-both-sides/src/index.tsx +++ b/samples/grids/grid/column-pinning-both-sides/src/index.tsx @@ -55,19 +55,23 @@ export default function App() { const pinLeft = () => { gridRef.current?.selectedColumns().forEach((col: IgrColumn) => { - col.pinningPosition = ColumnPinningPosition.Start; - col.pinned = true; + if (col.pinned) { + col.unpin(); + } + col.pin(undefined, ColumnPinningPosition.Start); }); }; const pinRight = () => { gridRef.current?.selectedColumns().forEach((col: IgrColumn) => { - col.pinningPosition = ColumnPinningPosition.End; - col.pinned = true; + if (col.pinned) { + col.unpin(); + } + col.pin(undefined, ColumnPinningPosition.End); }); }; const unpinColumn = () => { gridRef.current?.selectedColumns().forEach((col: IgrColumn) => { - col.pinned = false; + col.unpin(); }); }; diff --git a/samples/grids/hierarchical-grid/column-pinning-both-sides/src/index.tsx b/samples/grids/hierarchical-grid/column-pinning-both-sides/src/index.tsx index 0830e8f57e..5c18cc10e9 100644 --- a/samples/grids/hierarchical-grid/column-pinning-both-sides/src/index.tsx +++ b/samples/grids/hierarchical-grid/column-pinning-both-sides/src/index.tsx @@ -33,8 +33,10 @@ export default function App() { const grid = gridRef.current; if (!grid) return; grid.selectedColumns().forEach((col) => { - col.pinningPosition = ColumnPinningPosition.Start; - col.pinned = true; + if (col.pinned) { + col.unpin(); + } + col.pin(undefined, ColumnPinningPosition.Start); }); }; @@ -42,8 +44,10 @@ export default function App() { const grid = gridRef.current; if (!grid) return; grid.selectedColumns().forEach((col) => { - col.pinningPosition = ColumnPinningPosition.End; - col.pinned = true; + if (col.pinned) { + col.unpin(); + } + col.pin(undefined, ColumnPinningPosition.End); }); }; @@ -51,7 +55,7 @@ export default function App() { const grid = gridRef.current; if (!grid) return; grid.selectedColumns().forEach((col) => { - col.pinned = false; + col.unpin(); }); }; diff --git a/samples/grids/tree-grid/column-pinning-both-sides/src/index.tsx b/samples/grids/tree-grid/column-pinning-both-sides/src/index.tsx index 12e84785ea..fa315b9d9d 100644 --- a/samples/grids/tree-grid/column-pinning-both-sides/src/index.tsx +++ b/samples/grids/tree-grid/column-pinning-both-sides/src/index.tsx @@ -32,8 +32,10 @@ export default function App() { const grid = gridRef.current; if (!grid) return; grid.selectedColumns().forEach((col) => { - col.pinningPosition = ColumnPinningPosition.Start; - col.pinned = true; + if (col.pinned) { + col.unpin(); + } + col.pin(undefined, ColumnPinningPosition.Start); }); }; @@ -41,8 +43,10 @@ export default function App() { const grid = gridRef.current; if (!grid) return; grid.selectedColumns().forEach((col) => { - col.pinningPosition = ColumnPinningPosition.End; - col.pinned = true; + if (col.pinned) { + col.unpin(); + } + col.pin(undefined, ColumnPinningPosition.End); }); }; @@ -50,7 +54,7 @@ export default function App() { const grid = gridRef.current; if (!grid) return; grid.selectedColumns().forEach((col) => { - col.pinned = false; + col.unpin(); }); }; From 0782131118bdeb4038135be9fdf283c89a28ff07 Mon Sep 17 00:00:00 2001 From: Mariela Tihova Date: Wed, 28 Jan 2026 15:05:52 +0200 Subject: [PATCH 24/43] feat(tabs): Add styling sample (#1013) --- .../styling/.devcontainer/devcontainer.json | 4 + samples/layouts/tabs/styling/.eslintrc.js | 75 +++++++++++++++++++ samples/layouts/tabs/styling/README.md | 56 ++++++++++++++ samples/layouts/tabs/styling/index.html | 11 +++ samples/layouts/tabs/styling/package.json | 42 +++++++++++ .../layouts/tabs/styling/sandbox.config.json | 5 ++ samples/layouts/tabs/styling/src/index.css | 37 +++++++++ samples/layouts/tabs/styling/src/index.tsx | 45 +++++++++++ samples/layouts/tabs/styling/tsconfig.json | 44 +++++++++++ samples/layouts/tabs/styling/vite.config.js | 12 +++ 10 files changed, 331 insertions(+) create mode 100644 samples/layouts/tabs/styling/.devcontainer/devcontainer.json create mode 100644 samples/layouts/tabs/styling/.eslintrc.js create mode 100644 samples/layouts/tabs/styling/README.md create mode 100644 samples/layouts/tabs/styling/index.html create mode 100644 samples/layouts/tabs/styling/package.json create mode 100644 samples/layouts/tabs/styling/sandbox.config.json create mode 100644 samples/layouts/tabs/styling/src/index.css create mode 100644 samples/layouts/tabs/styling/src/index.tsx create mode 100644 samples/layouts/tabs/styling/tsconfig.json create mode 100644 samples/layouts/tabs/styling/vite.config.js diff --git a/samples/layouts/tabs/styling/.devcontainer/devcontainer.json b/samples/layouts/tabs/styling/.devcontainer/devcontainer.json new file mode 100644 index 0000000000..e0b8e9c925 --- /dev/null +++ b/samples/layouts/tabs/styling/.devcontainer/devcontainer.json @@ -0,0 +1,4 @@ +{ + "name": "Node.js", + "image": "mcr.microsoft.com/devcontainers/javascript-node:22" +} \ No newline at end of file diff --git a/samples/layouts/tabs/styling/.eslintrc.js b/samples/layouts/tabs/styling/.eslintrc.js new file mode 100644 index 0000000000..b45160a9ee --- /dev/null +++ b/samples/layouts/tabs/styling/.eslintrc.js @@ -0,0 +1,75 @@ +// https://www.robertcooper.me/using-eslint-and-prettier-in-a-typescript-project +module.exports = { + parser: "@typescript-eslint/parser", // Specifies the ESLint parser + parserOptions: { + ecmaVersion: 2020, // Allows for the parsing of modern ECMAScript features + sourceType: "module", // Allows for the use of imports + ecmaFeatures: { + jsx: true // Allows for the parsing of JSX + } + }, + settings: { + react: { + version: "999.999.999" // Tells eslint-plugin-react to automatically detect the version of React to use + } + }, + extends: [ + "eslint:recommended", + "plugin:react/recommended", // Uses the recommended rules from @eslint-plugin-react + "plugin:@typescript-eslint/recommended" // Uses the recommended rules from @typescript-eslint/eslint-plugin + ], + rules: { + // Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs + "default-case": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + }, + "overrides": [ + { + "files": ["*.ts", "*.tsx"], + "rules": { + "default-case": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + } + } + ] + }; \ No newline at end of file diff --git a/samples/layouts/tabs/styling/README.md b/samples/layouts/tabs/styling/README.md new file mode 100644 index 0000000000..08c1d914d9 --- /dev/null +++ b/samples/layouts/tabs/styling/README.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of React application with example of Styling feature using [Tabs](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-react-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-react-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +``` +git clone https://github.com/IgniteUI/igniteui-react-examples.git +git checkout master +cd ./igniteui-react-examples +cd ./samples/layouts/tabs/styling +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for React** components, check out the [React documentation](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html). diff --git a/samples/layouts/tabs/styling/index.html b/samples/layouts/tabs/styling/index.html new file mode 100644 index 0000000000..c7551077f1 --- /dev/null +++ b/samples/layouts/tabs/styling/index.html @@ -0,0 +1,11 @@ + + + + RadioGroup + + + +
+ + + \ No newline at end of file diff --git a/samples/layouts/tabs/styling/package.json b/samples/layouts/tabs/styling/package.json new file mode 100644 index 0000000000..9d2b9274ff --- /dev/null +++ b/samples/layouts/tabs/styling/package.json @@ -0,0 +1,42 @@ +{ + "name": "react-radio-group", + "description": "This project provides example of Radio Group using Infragistics React components", + "author": "Infragistics", + "homepage": ".", + "version": "1.4.0", + "private": true, + "scripts": { + "start": "vite --port 4200", + "build": "tsc && node --max-old-space-size=4096 node_modules/vite/bin/vite build", + "preview": "vite preview", + "test": "vitest" + }, + "dependencies": { + "igniteui-dockmanager": "^1.17.0", + "igniteui-react": "^19.4.0", + "igniteui-react-core": "19.3.1", + "igniteui-webcomponents": "^6.3.0", + "react": "^19.2.0", + "react-dom": "^19.2.0", + "tslib": "^2.4.0" + }, + "devDependencies": { + "@types/jest": "^29.2.0", + "@types/node": "^24.7.1", + "@types/react": "^18.0.24", + "@types/react-dom": "^18.0.8", + "@vitejs/plugin-react": "^5.0.4", + "@vitest/browser": "^3.2.4", + "typescript": "^4.8.4", + "vite": "^7.1.9", + "vitest": "^3.2.4", + "vitest-canvas-mock": "^0.3.3", + "worker-loader": "^3.0.8" + }, + "browserslist": [ + ">0.2%", + "not dead", + "not ie <= 11", + "not op_mini all" + ] +} diff --git a/samples/layouts/tabs/styling/sandbox.config.json b/samples/layouts/tabs/styling/sandbox.config.json new file mode 100644 index 0000000000..00acba0c10 --- /dev/null +++ b/samples/layouts/tabs/styling/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/layouts/tabs/styling/src/index.css b/samples/layouts/tabs/styling/src/index.css new file mode 100644 index 0000000000..d6590468e3 --- /dev/null +++ b/samples/layouts/tabs/styling/src/index.css @@ -0,0 +1,37 @@ +/* shared styles are loaded from: */ +/* https://dl.infragistics.com/x/css/samples/shared.v8.css */ + +igc-tab::part(tab-header), +igc-tabs::part(inner)::after { + --item-background: var(--ig-surface-600); + --border-color: var(--ig-success-300); +} + +igc-tab::part(tab-body), +igc-tab[selected] igc-icon { + --item-active-icon-color: var(--ig-success-300); +} + +igc-tab:not([selected]) igc-icon { + --item-icon-color: var(--ig-gray-500); +} + +igc-tabs::part(start-scroll-button), +igc-tabs::part(end-scroll-button) { + --background: var(--ig-surface-600); + --hover-background: var(--ig-surface-700); + --active-background: var(--ig-surface-700); + --disabled-background: var(--ig-gray-100); + --button-color: var(--ig-gray-700); + --button-hover-color: var(--ig-gray-800); + --button-disabled-color: var(--ig-gray-300); + --border-color: var(--ig-surface-600); +} + +igc-tab::part(tab-header) { + --item-hover-color: var(--ig-success-500); +} + +igc-tab::part(tab-header)::before { + --border-color--hover: var(--ig-gray-500); +} \ No newline at end of file diff --git a/samples/layouts/tabs/styling/src/index.tsx b/samples/layouts/tabs/styling/src/index.tsx new file mode 100644 index 0000000000..d184547eab --- /dev/null +++ b/samples/layouts/tabs/styling/src/index.tsx @@ -0,0 +1,45 @@ +import React from "react"; +import ReactDOM from "react-dom/client"; +import "./index.css"; +import { IgrTabs, IgrTab, IgrIcon, registerIconFromText } from "igniteui-react"; +import "igniteui-webcomponents/themes/light/bootstrap.css"; + +const home = ''; +const search = ''; +const favorite = ''; +registerIconFromText("home", home, "material"); +registerIconFromText("search", search, "material"); +registerIconFromText("favorite", favorite, "material"); + +export default class TabsStyling extends React.Component { + + constructor(props: any) { + super(props); + } + + public render(): JSX.Element { + return ( +
+ + + + Home tab panel + + + + Search tab panel + + + + Favorite tab panel + + +
+ ); + } + +} + +// rendering above class to the React DOM +const root = ReactDOM.createRoot(document.getElementById("root")); +root.render(); diff --git a/samples/layouts/tabs/styling/tsconfig.json b/samples/layouts/tabs/styling/tsconfig.json new file mode 100644 index 0000000000..e7db8a94f5 --- /dev/null +++ b/samples/layouts/tabs/styling/tsconfig.json @@ -0,0 +1,44 @@ +{ + "compilerOptions": { + "resolveJsonModule": true, + "esModuleInterop": true, + "baseUrl": ".", + "outDir": "build/dist", + "module": "esnext", + "target": "es5", + "lib": [ + "es6", + "dom" + ], + "sourceMap": true, + "allowJs": true, + "jsx": "react", + "moduleResolution": "node", + "rootDir": "src", + "forceConsistentCasingInFileNames": true, + "noImplicitReturns": true, + "noImplicitThis": true, + "noImplicitAny": true, + "noUnusedLocals": false, + "importHelpers": true, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "strict": false, + "isolatedModules": true, + "noEmit": true + }, + "exclude": [ + "node_modules", + "build", + "scripts", + "acceptance-tests", + "webpack", + "jest", + "src/setupTests.ts", + "**/odatajs-4.0.0.js", + "config-overrides.js" + ], + "include": [ + "src" + ] +} diff --git a/samples/layouts/tabs/styling/vite.config.js b/samples/layouts/tabs/styling/vite.config.js new file mode 100644 index 0000000000..1744dbc719 --- /dev/null +++ b/samples/layouts/tabs/styling/vite.config.js @@ -0,0 +1,12 @@ +import { defineConfig } from 'vite'; +import react from '@vitejs/plugin-react'; + +export default defineConfig({ + plugins: [react()], + build: { + outDir: 'build' + }, + server: { + open: false + }, +}); \ No newline at end of file From c1b0412af4e4c96e07702806201503a459ae0387 Mon Sep 17 00:00:00 2001 From: Mariela Tihova Date: Wed, 28 Jan 2026 15:25:18 +0200 Subject: [PATCH 25/43] feat(badge): add a styling sample (#1019) --- .../styling/.devcontainer/devcontainer.json | 4 + samples/inputs/badge/styling/.eslintrc.js | 75 +++++++++++++++++++ samples/inputs/badge/styling/README.md | 56 ++++++++++++++ samples/inputs/badge/styling/index.html | 11 +++ samples/inputs/badge/styling/package.json | 42 +++++++++++ .../inputs/badge/styling/sandbox.config.json | 5 ++ samples/inputs/badge/styling/src/index.css | 7 ++ samples/inputs/badge/styling/src/index.tsx | 24 ++++++ samples/inputs/badge/styling/tsconfig.json | 44 +++++++++++ samples/inputs/badge/styling/vite.config.js | 12 +++ 10 files changed, 280 insertions(+) create mode 100644 samples/inputs/badge/styling/.devcontainer/devcontainer.json create mode 100644 samples/inputs/badge/styling/.eslintrc.js create mode 100644 samples/inputs/badge/styling/README.md create mode 100644 samples/inputs/badge/styling/index.html create mode 100644 samples/inputs/badge/styling/package.json create mode 100644 samples/inputs/badge/styling/sandbox.config.json create mode 100644 samples/inputs/badge/styling/src/index.css create mode 100644 samples/inputs/badge/styling/src/index.tsx create mode 100644 samples/inputs/badge/styling/tsconfig.json create mode 100644 samples/inputs/badge/styling/vite.config.js diff --git a/samples/inputs/badge/styling/.devcontainer/devcontainer.json b/samples/inputs/badge/styling/.devcontainer/devcontainer.json new file mode 100644 index 0000000000..e0b8e9c925 --- /dev/null +++ b/samples/inputs/badge/styling/.devcontainer/devcontainer.json @@ -0,0 +1,4 @@ +{ + "name": "Node.js", + "image": "mcr.microsoft.com/devcontainers/javascript-node:22" +} \ No newline at end of file diff --git a/samples/inputs/badge/styling/.eslintrc.js b/samples/inputs/badge/styling/.eslintrc.js new file mode 100644 index 0000000000..b45160a9ee --- /dev/null +++ b/samples/inputs/badge/styling/.eslintrc.js @@ -0,0 +1,75 @@ +// https://www.robertcooper.me/using-eslint-and-prettier-in-a-typescript-project +module.exports = { + parser: "@typescript-eslint/parser", // Specifies the ESLint parser + parserOptions: { + ecmaVersion: 2020, // Allows for the parsing of modern ECMAScript features + sourceType: "module", // Allows for the use of imports + ecmaFeatures: { + jsx: true // Allows for the parsing of JSX + } + }, + settings: { + react: { + version: "999.999.999" // Tells eslint-plugin-react to automatically detect the version of React to use + } + }, + extends: [ + "eslint:recommended", + "plugin:react/recommended", // Uses the recommended rules from @eslint-plugin-react + "plugin:@typescript-eslint/recommended" // Uses the recommended rules from @typescript-eslint/eslint-plugin + ], + rules: { + // Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs + "default-case": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + }, + "overrides": [ + { + "files": ["*.ts", "*.tsx"], + "rules": { + "default-case": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + } + } + ] + }; \ No newline at end of file diff --git a/samples/inputs/badge/styling/README.md b/samples/inputs/badge/styling/README.md new file mode 100644 index 0000000000..a424e4b8a2 --- /dev/null +++ b/samples/inputs/badge/styling/README.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of React application with example of Styling feature using [Badge](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-react-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-react-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +``` +git clone https://github.com/IgniteUI/igniteui-react-examples.git +git checkout master +cd ./igniteui-react-examples +cd ./samples/inputs/badge/styling +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for React** components, check out the [React documentation](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html). diff --git a/samples/inputs/badge/styling/index.html b/samples/inputs/badge/styling/index.html new file mode 100644 index 0000000000..be7d653435 --- /dev/null +++ b/samples/inputs/badge/styling/index.html @@ -0,0 +1,11 @@ + + + + BadgeShape + + + +
+ + + \ No newline at end of file diff --git a/samples/inputs/badge/styling/package.json b/samples/inputs/badge/styling/package.json new file mode 100644 index 0000000000..37d7b3227f --- /dev/null +++ b/samples/inputs/badge/styling/package.json @@ -0,0 +1,42 @@ +{ + "name": "react-badge-shape", + "description": "This project provides example of Badge Shape using Infragistics React components", + "author": "Infragistics", + "homepage": ".", + "version": "1.4.0", + "private": true, + "scripts": { + "start": "vite --port 4200", + "build": "tsc && node --max-old-space-size=4096 node_modules/vite/bin/vite build", + "preview": "vite preview", + "test": "vitest" + }, + "dependencies": { + "igniteui-dockmanager": "^1.17.0", + "igniteui-react": "^19.4.0", + "igniteui-react-core": "19.3.1", + "igniteui-webcomponents": "^6.3.0", + "react": "^19.2.0", + "react-dom": "^19.2.0", + "tslib": "^2.4.0" + }, + "devDependencies": { + "@types/jest": "^29.2.0", + "@types/node": "^24.7.1", + "@types/react": "^18.0.24", + "@types/react-dom": "^18.0.8", + "@vitejs/plugin-react": "^5.0.4", + "@vitest/browser": "^3.2.4", + "typescript": "^4.8.4", + "vite": "^7.1.9", + "vitest": "^3.2.4", + "vitest-canvas-mock": "^0.3.3", + "worker-loader": "^3.0.8" + }, + "browserslist": [ + ">0.2%", + "not dead", + "not ie <= 11", + "not op_mini all" + ] +} diff --git a/samples/inputs/badge/styling/sandbox.config.json b/samples/inputs/badge/styling/sandbox.config.json new file mode 100644 index 0000000000..00acba0c10 --- /dev/null +++ b/samples/inputs/badge/styling/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/inputs/badge/styling/src/index.css b/samples/inputs/badge/styling/src/index.css new file mode 100644 index 0000000000..516c162995 --- /dev/null +++ b/samples/inputs/badge/styling/src/index.css @@ -0,0 +1,7 @@ +/* shared styles are loaded from: */ +/* https://dl.infragistics.com/x/css/samples/shared.v8.css */ + +igc-badge::part(base) { + --background-color: var(--ig-error-A100); + --border-radius: 2px; +} \ No newline at end of file diff --git a/samples/inputs/badge/styling/src/index.tsx b/samples/inputs/badge/styling/src/index.tsx new file mode 100644 index 0000000000..a1ef9955ab --- /dev/null +++ b/samples/inputs/badge/styling/src/index.tsx @@ -0,0 +1,24 @@ +import React from 'react'; +import ReactDOM from 'react-dom/client'; +import './index.css'; +import { IgrBadge } from 'igniteui-react'; +import 'igniteui-webcomponents/themes/light/bootstrap.css'; + +export default class BadgeStyling extends React.Component { + + constructor(props: any) { + super(props); + } + + public render(): JSX.Element { + return ( +
+ +
+ ); + } +} + +// rendering above class to the React DOM +const root = ReactDOM.createRoot(document.getElementById('root')); +root.render(); diff --git a/samples/inputs/badge/styling/tsconfig.json b/samples/inputs/badge/styling/tsconfig.json new file mode 100644 index 0000000000..e7db8a94f5 --- /dev/null +++ b/samples/inputs/badge/styling/tsconfig.json @@ -0,0 +1,44 @@ +{ + "compilerOptions": { + "resolveJsonModule": true, + "esModuleInterop": true, + "baseUrl": ".", + "outDir": "build/dist", + "module": "esnext", + "target": "es5", + "lib": [ + "es6", + "dom" + ], + "sourceMap": true, + "allowJs": true, + "jsx": "react", + "moduleResolution": "node", + "rootDir": "src", + "forceConsistentCasingInFileNames": true, + "noImplicitReturns": true, + "noImplicitThis": true, + "noImplicitAny": true, + "noUnusedLocals": false, + "importHelpers": true, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "strict": false, + "isolatedModules": true, + "noEmit": true + }, + "exclude": [ + "node_modules", + "build", + "scripts", + "acceptance-tests", + "webpack", + "jest", + "src/setupTests.ts", + "**/odatajs-4.0.0.js", + "config-overrides.js" + ], + "include": [ + "src" + ] +} diff --git a/samples/inputs/badge/styling/vite.config.js b/samples/inputs/badge/styling/vite.config.js new file mode 100644 index 0000000000..1744dbc719 --- /dev/null +++ b/samples/inputs/badge/styling/vite.config.js @@ -0,0 +1,12 @@ +import { defineConfig } from 'vite'; +import react from '@vitejs/plugin-react'; + +export default defineConfig({ + plugins: [react()], + build: { + outDir: 'build' + }, + server: { + open: false + }, +}); \ No newline at end of file From 6439e5cf9d94884bb8470e69438a4596dfd92770 Mon Sep 17 00:00:00 2001 From: Mariela Tihova Date: Wed, 28 Jan 2026 15:32:49 +0200 Subject: [PATCH 26/43] feat(tree): Add a styling sample (#1014) --- .../styling/.devcontainer/devcontainer.json | 4 + samples/grids/tree/styling/.eslintrc.js | 75 +++++++++++++++++++ samples/grids/tree/styling/README.md | 56 ++++++++++++++ samples/grids/tree/styling/index.html | 11 +++ samples/grids/tree/styling/package.json | 41 ++++++++++ .../grids/tree/styling/sandbox.config.json | 5 ++ samples/grids/tree/styling/src/index.css | 4 + samples/grids/tree/styling/src/index.tsx | 39 ++++++++++ samples/grids/tree/styling/tsconfig.json | 44 +++++++++++ samples/grids/tree/styling/vite.config.js | 12 +++ 10 files changed, 291 insertions(+) create mode 100644 samples/grids/tree/styling/.devcontainer/devcontainer.json create mode 100644 samples/grids/tree/styling/.eslintrc.js create mode 100644 samples/grids/tree/styling/README.md create mode 100644 samples/grids/tree/styling/index.html create mode 100644 samples/grids/tree/styling/package.json create mode 100644 samples/grids/tree/styling/sandbox.config.json create mode 100644 samples/grids/tree/styling/src/index.css create mode 100644 samples/grids/tree/styling/src/index.tsx create mode 100644 samples/grids/tree/styling/tsconfig.json create mode 100644 samples/grids/tree/styling/vite.config.js diff --git a/samples/grids/tree/styling/.devcontainer/devcontainer.json b/samples/grids/tree/styling/.devcontainer/devcontainer.json new file mode 100644 index 0000000000..e0b8e9c925 --- /dev/null +++ b/samples/grids/tree/styling/.devcontainer/devcontainer.json @@ -0,0 +1,4 @@ +{ + "name": "Node.js", + "image": "mcr.microsoft.com/devcontainers/javascript-node:22" +} \ No newline at end of file diff --git a/samples/grids/tree/styling/.eslintrc.js b/samples/grids/tree/styling/.eslintrc.js new file mode 100644 index 0000000000..b45160a9ee --- /dev/null +++ b/samples/grids/tree/styling/.eslintrc.js @@ -0,0 +1,75 @@ +// https://www.robertcooper.me/using-eslint-and-prettier-in-a-typescript-project +module.exports = { + parser: "@typescript-eslint/parser", // Specifies the ESLint parser + parserOptions: { + ecmaVersion: 2020, // Allows for the parsing of modern ECMAScript features + sourceType: "module", // Allows for the use of imports + ecmaFeatures: { + jsx: true // Allows for the parsing of JSX + } + }, + settings: { + react: { + version: "999.999.999" // Tells eslint-plugin-react to automatically detect the version of React to use + } + }, + extends: [ + "eslint:recommended", + "plugin:react/recommended", // Uses the recommended rules from @eslint-plugin-react + "plugin:@typescript-eslint/recommended" // Uses the recommended rules from @typescript-eslint/eslint-plugin + ], + rules: { + // Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs + "default-case": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + }, + "overrides": [ + { + "files": ["*.ts", "*.tsx"], + "rules": { + "default-case": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + } + } + ] + }; \ No newline at end of file diff --git a/samples/grids/tree/styling/README.md b/samples/grids/tree/styling/README.md new file mode 100644 index 0000000000..5d310d1764 --- /dev/null +++ b/samples/grids/tree/styling/README.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of React application with example of Styling feature using [Tree](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-react-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-react-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +``` +git clone https://github.com/IgniteUI/igniteui-react-examples.git +git checkout master +cd ./igniteui-react-examples +cd ./samples/grids/tree/styling +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for React** components, check out the [React documentation](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html). diff --git a/samples/grids/tree/styling/index.html b/samples/grids/tree/styling/index.html new file mode 100644 index 0000000000..786f9e89bb --- /dev/null +++ b/samples/grids/tree/styling/index.html @@ -0,0 +1,11 @@ + + + + TreeBasicExample + + + +
+ + + \ No newline at end of file diff --git a/samples/grids/tree/styling/package.json b/samples/grids/tree/styling/package.json new file mode 100644 index 0000000000..2ef000db44 --- /dev/null +++ b/samples/grids/tree/styling/package.json @@ -0,0 +1,41 @@ +{ + "name": "react-tree-basic-example", + "description": "This project provides example of Card Overview using Infragistics React components", + "author": "Infragistics", + "homepage": ".", + "version": "1.4.0", + "private": true, + "scripts": { + "start": "vite --port 4200", + "build": "tsc && node --max-old-space-size=4096 node_modules/vite/bin/vite build", + "preview": "vite preview", + "test": "vitest" + }, + "dependencies": { + "igniteui-dockmanager": "^1.17.0", + "igniteui-react": "^19.4.0", + "igniteui-react-core": "19.3.1", + "react": "^19.2.0", + "react-dom": "^19.2.0", + "tslib": "^2.4.0" + }, + "devDependencies": { + "@types/jest": "^29.2.0", + "@types/node": "^24.7.1", + "@types/react": "^18.0.24", + "@types/react-dom": "^18.0.8", + "@vitejs/plugin-react": "^5.0.4", + "@vitest/browser": "^3.2.4", + "typescript": "^4.8.4", + "vite": "^7.1.9", + "vitest": "^3.2.4", + "vitest-canvas-mock": "^0.3.3", + "worker-loader": "^3.0.8" + }, + "browserslist": [ + ">0.2%", + "not dead", + "not ie <= 11", + "not op_mini all" + ] +} diff --git a/samples/grids/tree/styling/sandbox.config.json b/samples/grids/tree/styling/sandbox.config.json new file mode 100644 index 0000000000..00acba0c10 --- /dev/null +++ b/samples/grids/tree/styling/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/grids/tree/styling/src/index.css b/samples/grids/tree/styling/src/index.css new file mode 100644 index 0000000000..4df814eba6 --- /dev/null +++ b/samples/grids/tree/styling/src/index.css @@ -0,0 +1,4 @@ +igc-tree-item { + --background-active: var(--ig-secondary-500); + --foreground-active: var(--ig-secondary-500-contrast); +} \ No newline at end of file diff --git a/samples/grids/tree/styling/src/index.tsx b/samples/grids/tree/styling/src/index.tsx new file mode 100644 index 0000000000..672322d209 --- /dev/null +++ b/samples/grids/tree/styling/src/index.tsx @@ -0,0 +1,39 @@ +import React from 'react'; +import ReactDOM from 'react-dom/client'; +import './index.css'; +import { IgrTree, IgrTreeItem } from 'igniteui-react'; +import 'igniteui-webcomponents/themes/light/bootstrap.css'; + +export default class TreeStyling extends React.Component { + + constructor(props: any) { + super(props); + } + + public render(): JSX.Element { + return ( +
+ + + + + + + + + + + + + + + + +
+ ); + } +} + +// rendering above class to the React DOM +const root = ReactDOM.createRoot(document.getElementById('root')); +root.render(); diff --git a/samples/grids/tree/styling/tsconfig.json b/samples/grids/tree/styling/tsconfig.json new file mode 100644 index 0000000000..e7db8a94f5 --- /dev/null +++ b/samples/grids/tree/styling/tsconfig.json @@ -0,0 +1,44 @@ +{ + "compilerOptions": { + "resolveJsonModule": true, + "esModuleInterop": true, + "baseUrl": ".", + "outDir": "build/dist", + "module": "esnext", + "target": "es5", + "lib": [ + "es6", + "dom" + ], + "sourceMap": true, + "allowJs": true, + "jsx": "react", + "moduleResolution": "node", + "rootDir": "src", + "forceConsistentCasingInFileNames": true, + "noImplicitReturns": true, + "noImplicitThis": true, + "noImplicitAny": true, + "noUnusedLocals": false, + "importHelpers": true, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "strict": false, + "isolatedModules": true, + "noEmit": true + }, + "exclude": [ + "node_modules", + "build", + "scripts", + "acceptance-tests", + "webpack", + "jest", + "src/setupTests.ts", + "**/odatajs-4.0.0.js", + "config-overrides.js" + ], + "include": [ + "src" + ] +} diff --git a/samples/grids/tree/styling/vite.config.js b/samples/grids/tree/styling/vite.config.js new file mode 100644 index 0000000000..1744dbc719 --- /dev/null +++ b/samples/grids/tree/styling/vite.config.js @@ -0,0 +1,12 @@ +import { defineConfig } from 'vite'; +import react from '@vitejs/plugin-react'; + +export default defineConfig({ + plugins: [react()], + build: { + outDir: 'build' + }, + server: { + open: false + }, +}); \ No newline at end of file From dd2c3600b42087764f4da2f06ffa57f9454f32a3 Mon Sep 17 00:00:00 2001 From: Mariela Tihova Date: Wed, 28 Jan 2026 15:43:46 +0200 Subject: [PATCH 27/43] feat(date-time-input): Add a styling sample (#1015) --- .../styling/.devcontainer/devcontainer.json | 4 + .../date-time-input/styling/.eslintrc.js | 75 +++++++++++++++++++ .../inputs/date-time-input/styling/README.md | 56 ++++++++++++++ .../inputs/date-time-input/styling/index.html | 11 +++ .../date-time-input/styling/package.json | 42 +++++++++++ .../styling/sandbox.config.json | 5 ++ .../date-time-input/styling/src/index.css | 17 +++++ .../date-time-input/styling/src/index.tsx | 49 ++++++++++++ .../date-time-input/styling/tsconfig.json | 44 +++++++++++ .../date-time-input/styling/vite.config.js | 12 +++ 10 files changed, 315 insertions(+) create mode 100644 samples/inputs/date-time-input/styling/.devcontainer/devcontainer.json create mode 100644 samples/inputs/date-time-input/styling/.eslintrc.js create mode 100644 samples/inputs/date-time-input/styling/README.md create mode 100644 samples/inputs/date-time-input/styling/index.html create mode 100644 samples/inputs/date-time-input/styling/package.json create mode 100644 samples/inputs/date-time-input/styling/sandbox.config.json create mode 100644 samples/inputs/date-time-input/styling/src/index.css create mode 100644 samples/inputs/date-time-input/styling/src/index.tsx create mode 100644 samples/inputs/date-time-input/styling/tsconfig.json create mode 100644 samples/inputs/date-time-input/styling/vite.config.js diff --git a/samples/inputs/date-time-input/styling/.devcontainer/devcontainer.json b/samples/inputs/date-time-input/styling/.devcontainer/devcontainer.json new file mode 100644 index 0000000000..e0b8e9c925 --- /dev/null +++ b/samples/inputs/date-time-input/styling/.devcontainer/devcontainer.json @@ -0,0 +1,4 @@ +{ + "name": "Node.js", + "image": "mcr.microsoft.com/devcontainers/javascript-node:22" +} \ No newline at end of file diff --git a/samples/inputs/date-time-input/styling/.eslintrc.js b/samples/inputs/date-time-input/styling/.eslintrc.js new file mode 100644 index 0000000000..b45160a9ee --- /dev/null +++ b/samples/inputs/date-time-input/styling/.eslintrc.js @@ -0,0 +1,75 @@ +// https://www.robertcooper.me/using-eslint-and-prettier-in-a-typescript-project +module.exports = { + parser: "@typescript-eslint/parser", // Specifies the ESLint parser + parserOptions: { + ecmaVersion: 2020, // Allows for the parsing of modern ECMAScript features + sourceType: "module", // Allows for the use of imports + ecmaFeatures: { + jsx: true // Allows for the parsing of JSX + } + }, + settings: { + react: { + version: "999.999.999" // Tells eslint-plugin-react to automatically detect the version of React to use + } + }, + extends: [ + "eslint:recommended", + "plugin:react/recommended", // Uses the recommended rules from @eslint-plugin-react + "plugin:@typescript-eslint/recommended" // Uses the recommended rules from @typescript-eslint/eslint-plugin + ], + rules: { + // Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs + "default-case": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + }, + "overrides": [ + { + "files": ["*.ts", "*.tsx"], + "rules": { + "default-case": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + } + } + ] + }; \ No newline at end of file diff --git a/samples/inputs/date-time-input/styling/README.md b/samples/inputs/date-time-input/styling/README.md new file mode 100644 index 0000000000..2930dcde5a --- /dev/null +++ b/samples/inputs/date-time-input/styling/README.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of React application with example of Date Time Input Styling feature using [Date Time-Input](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-react-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-react-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +``` +git clone https://github.com/IgniteUI/igniteui-react-examples.git +git checkout master +cd ./igniteui-react-examples +cd ./samples/inputs/date-time-input/styling +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for React** components, check out the [React documentation](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html). diff --git a/samples/inputs/date-time-input/styling/index.html b/samples/inputs/date-time-input/styling/index.html new file mode 100644 index 0000000000..174235ed9d --- /dev/null +++ b/samples/inputs/date-time-input/styling/index.html @@ -0,0 +1,11 @@ + + + + Date Time Input Overview + + + +
+ + + \ No newline at end of file diff --git a/samples/inputs/date-time-input/styling/package.json b/samples/inputs/date-time-input/styling/package.json new file mode 100644 index 0000000000..0b896d8047 --- /dev/null +++ b/samples/inputs/date-time-input/styling/package.json @@ -0,0 +1,42 @@ +{ + "name": "react-date-time-input-overview", + "description": "This project provides example of Date Time Input Overview using Infragistics React components", + "author": "Infragistics", + "homepage": ".", + "version": "1.4.0", + "private": true, + "scripts": { + "start": "vite --port 4200", + "build": "tsc && node --max-old-space-size=4096 node_modules/vite/bin/vite build", + "preview": "vite preview", + "test": "vitest" + }, + "dependencies": { + "igniteui-dockmanager": "^1.17.0", + "igniteui-react": "^19.4.0", + "igniteui-react-core": "19.3.1", + "igniteui-webcomponents": "^6.3.0", + "react": "^19.2.0", + "react-dom": "^19.2.0", + "tslib": "^2.4.0" + }, + "devDependencies": { + "@types/jest": "^29.2.0", + "@types/node": "^24.7.1", + "@types/react": "^18.0.24", + "@types/react-dom": "^18.0.8", + "@vitejs/plugin-react": "^5.0.4", + "@vitest/browser": "^3.2.4", + "typescript": "^4.8.4", + "vite": "^7.1.9", + "vitest": "^3.2.4", + "vitest-canvas-mock": "^0.3.3", + "worker-loader": "^3.0.8" + }, + "browserslist": [ + ">0.2%", + "not dead", + "not ie <= 11", + "not op_mini all" + ] +} \ No newline at end of file diff --git a/samples/inputs/date-time-input/styling/sandbox.config.json b/samples/inputs/date-time-input/styling/sandbox.config.json new file mode 100644 index 0000000000..00acba0c10 --- /dev/null +++ b/samples/inputs/date-time-input/styling/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/inputs/date-time-input/styling/src/index.css b/samples/inputs/date-time-input/styling/src/index.css new file mode 100644 index 0000000000..abad41d9a2 --- /dev/null +++ b/samples/inputs/date-time-input/styling/src/index.css @@ -0,0 +1,17 @@ +igc-date-time-input { + --_background: var(--ig-primary-200); + --_foreground: var(--ig-gray-900); + + --input-prefix-color: var(--_foreground); + --input-suffix-color: var(--_foreground); + --input-prefix-color--filled: var(--_foreground); + --input-suffix-color--filled: var(--_foreground); + --input-prefix-background: var(--_background); + --input-suffix-background: var(--_background); + --input-prefix-background--filled: var(--_background); + --input-suffix-background--filled: var(--_background); + --input-prefix-color--focused: var(--_foreground); + --input-suffix-color--focused: var(--_foreground); + --input-prefix-background--focused: var(--_background); + --input-suffix-background--focused: var(--_background); + } \ No newline at end of file diff --git a/samples/inputs/date-time-input/styling/src/index.tsx b/samples/inputs/date-time-input/styling/src/index.tsx new file mode 100644 index 0000000000..383094139f --- /dev/null +++ b/samples/inputs/date-time-input/styling/src/index.tsx @@ -0,0 +1,49 @@ +import React from 'react'; +import ReactDOM from 'react-dom/client'; +import './index.css'; +import { IgrIcon, IgrDateTimeInput, DatePart, registerIconFromText } from 'igniteui-react'; +import 'igniteui-webcomponents/themes/light/bootstrap.css'; + +const upIconText = ''; +const downIconText = ''; +const clearIconText = ''; + +export default class DateTimeInputStyling extends React.Component { + + private dateTimeInput: IgrDateTimeInput; + constructor(props: any) { + super(props); + registerIconFromText("up", upIconText, "material"); + registerIconFromText("down", downIconText, "material"); + registerIconFromText("clear", clearIconText, "material"); + this.dateTimeInputRef = this.dateTimeInputRef.bind(this); + } + + public render(): JSX.Element { + return ( +
+ + this.dateTimeInput.clear()}> + + + this.dateTimeInput.stepUp(DatePart.Month)}> + + + this.dateTimeInput.stepDown(DatePart.Month)}> + + + +
+ ); + } + + public dateTimeInputRef(input: IgrDateTimeInput) { + if (!input) { return; } + this.dateTimeInput = input; + } + +} + +// rendering above class to the React DOM +const root = ReactDOM.createRoot(document.getElementById('root')); +root.render(); diff --git a/samples/inputs/date-time-input/styling/tsconfig.json b/samples/inputs/date-time-input/styling/tsconfig.json new file mode 100644 index 0000000000..8c0d146f95 --- /dev/null +++ b/samples/inputs/date-time-input/styling/tsconfig.json @@ -0,0 +1,44 @@ +{ + "compilerOptions": { + "resolveJsonModule": true, + "esModuleInterop": true, + "baseUrl": ".", + "outDir": "build/dist", + "module": "esnext", + "target": "es5", + "lib": [ + "es6", + "dom" + ], + "sourceMap": true, + "allowJs": true, + "jsx": "react-jsx", + "moduleResolution": "node", + "rootDir": "src", + "forceConsistentCasingInFileNames": true, + "noImplicitReturns": true, + "noImplicitThis": true, + "noImplicitAny": true, + "noUnusedLocals": false, + "importHelpers": true, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "strict": false, + "isolatedModules": true, + "noEmit": true + }, + "exclude": [ + "node_modules", + "build", + "scripts", + "acceptance-tests", + "webpack", + "jest", + "src/setupTests.ts", + "**/odatajs-4.0.0.js", + "config-overrides.js" + ], + "include": [ + "src" + ] +} diff --git a/samples/inputs/date-time-input/styling/vite.config.js b/samples/inputs/date-time-input/styling/vite.config.js new file mode 100644 index 0000000000..1744dbc719 --- /dev/null +++ b/samples/inputs/date-time-input/styling/vite.config.js @@ -0,0 +1,12 @@ +import { defineConfig } from 'vite'; +import react from '@vitejs/plugin-react'; + +export default defineConfig({ + plugins: [react()], + build: { + outDir: 'build' + }, + server: { + open: false + }, +}); \ No newline at end of file From 95453fb81f7e62c071f707f9bdbf51c457702b4d Mon Sep 17 00:00:00 2001 From: Mariela Tihova Date: Thu, 29 Jan 2026 09:52:38 +0200 Subject: [PATCH 28/43] Add a styling sample for Checkbox (#1018) * feat(checkbox): Add a styling sample * fix(checkbox): add correct colors for styling sample --- .../styling/.devcontainer/devcontainer.json | 4 + samples/inputs/checkbox/styling/.eslintrc.js | 75 +++++++++++++++++++ samples/inputs/checkbox/styling/README.md | 56 ++++++++++++++ samples/inputs/checkbox/styling/index.html | 11 +++ samples/inputs/checkbox/styling/package.json | 42 +++++++++++ .../checkbox/styling/sandbox.config.json | 5 ++ samples/inputs/checkbox/styling/src/index.css | 10 +++ samples/inputs/checkbox/styling/src/index.tsx | 26 +++++++ samples/inputs/checkbox/styling/tsconfig.json | 44 +++++++++++ .../inputs/checkbox/styling/vite.config.js | 12 +++ 10 files changed, 285 insertions(+) create mode 100644 samples/inputs/checkbox/styling/.devcontainer/devcontainer.json create mode 100644 samples/inputs/checkbox/styling/.eslintrc.js create mode 100644 samples/inputs/checkbox/styling/README.md create mode 100644 samples/inputs/checkbox/styling/index.html create mode 100644 samples/inputs/checkbox/styling/package.json create mode 100644 samples/inputs/checkbox/styling/sandbox.config.json create mode 100644 samples/inputs/checkbox/styling/src/index.css create mode 100644 samples/inputs/checkbox/styling/src/index.tsx create mode 100644 samples/inputs/checkbox/styling/tsconfig.json create mode 100644 samples/inputs/checkbox/styling/vite.config.js diff --git a/samples/inputs/checkbox/styling/.devcontainer/devcontainer.json b/samples/inputs/checkbox/styling/.devcontainer/devcontainer.json new file mode 100644 index 0000000000..e0b8e9c925 --- /dev/null +++ b/samples/inputs/checkbox/styling/.devcontainer/devcontainer.json @@ -0,0 +1,4 @@ +{ + "name": "Node.js", + "image": "mcr.microsoft.com/devcontainers/javascript-node:22" +} \ No newline at end of file diff --git a/samples/inputs/checkbox/styling/.eslintrc.js b/samples/inputs/checkbox/styling/.eslintrc.js new file mode 100644 index 0000000000..b45160a9ee --- /dev/null +++ b/samples/inputs/checkbox/styling/.eslintrc.js @@ -0,0 +1,75 @@ +// https://www.robertcooper.me/using-eslint-and-prettier-in-a-typescript-project +module.exports = { + parser: "@typescript-eslint/parser", // Specifies the ESLint parser + parserOptions: { + ecmaVersion: 2020, // Allows for the parsing of modern ECMAScript features + sourceType: "module", // Allows for the use of imports + ecmaFeatures: { + jsx: true // Allows for the parsing of JSX + } + }, + settings: { + react: { + version: "999.999.999" // Tells eslint-plugin-react to automatically detect the version of React to use + } + }, + extends: [ + "eslint:recommended", + "plugin:react/recommended", // Uses the recommended rules from @eslint-plugin-react + "plugin:@typescript-eslint/recommended" // Uses the recommended rules from @typescript-eslint/eslint-plugin + ], + rules: { + // Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs + "default-case": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + }, + "overrides": [ + { + "files": ["*.ts", "*.tsx"], + "rules": { + "default-case": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + } + } + ] + }; \ No newline at end of file diff --git a/samples/inputs/checkbox/styling/README.md b/samples/inputs/checkbox/styling/README.md new file mode 100644 index 0000000000..7436b1d009 --- /dev/null +++ b/samples/inputs/checkbox/styling/README.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of React application with example of Styling feature using [Checkbox](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-react-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-react-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +``` +git clone https://github.com/IgniteUI/igniteui-react-examples.git +git checkout master +cd ./igniteui-react-examples +cd ./samples/inputs/checkbox/styling +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for React** components, check out the [React documentation](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html). diff --git a/samples/inputs/checkbox/styling/index.html b/samples/inputs/checkbox/styling/index.html new file mode 100644 index 0000000000..66efc1b31c --- /dev/null +++ b/samples/inputs/checkbox/styling/index.html @@ -0,0 +1,11 @@ + + + + CheckboxOverview + + + +
+ + + \ No newline at end of file diff --git a/samples/inputs/checkbox/styling/package.json b/samples/inputs/checkbox/styling/package.json new file mode 100644 index 0000000000..327fd02b45 --- /dev/null +++ b/samples/inputs/checkbox/styling/package.json @@ -0,0 +1,42 @@ +{ + "name": "react-checkbox-overview", + "description": "This project provides example of Checkbox Overview using Infragistics React components", + "author": "Infragistics", + "homepage": ".", + "version": "1.4.0", + "private": true, + "scripts": { + "start": "vite --port 4200", + "build": "tsc && node --max-old-space-size=4096 node_modules/vite/bin/vite build", + "preview": "vite preview", + "test": "vitest" + }, + "dependencies": { + "igniteui-dockmanager": "^1.17.0", + "igniteui-react": "^19.4.0", + "igniteui-react-core": "19.3.1", + "igniteui-webcomponents": "^6.3.0", + "react": "^19.2.0", + "react-dom": "^19.2.0", + "tslib": "^2.4.0" + }, + "devDependencies": { + "@types/jest": "^29.2.0", + "@types/node": "^24.7.1", + "@types/react": "^18.0.24", + "@types/react-dom": "^18.0.8", + "@vitejs/plugin-react": "^5.0.4", + "@vitest/browser": "^3.2.4", + "typescript": "^4.8.4", + "vite": "^7.1.9", + "vitest": "^3.2.4", + "vitest-canvas-mock": "^0.3.3", + "worker-loader": "^3.0.8" + }, + "browserslist": [ + ">0.2%", + "not dead", + "not ie <= 11", + "not op_mini all" + ] +} diff --git a/samples/inputs/checkbox/styling/sandbox.config.json b/samples/inputs/checkbox/styling/sandbox.config.json new file mode 100644 index 0000000000..00acba0c10 --- /dev/null +++ b/samples/inputs/checkbox/styling/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/inputs/checkbox/styling/src/index.css b/samples/inputs/checkbox/styling/src/index.css new file mode 100644 index 0000000000..4ab6ad20e1 --- /dev/null +++ b/samples/inputs/checkbox/styling/src/index.css @@ -0,0 +1,10 @@ +/* shared styles are loaded from: */ +/* https://dl.infragistics.com/x/css/samples/shared.v8.css */ + +igc-checkbox::part(indicator) { + --tick-color: var(--ig-secondary-500-contrast); /* check icon color */ +} + +igc-checkbox::part(control checked)::after { + --fill-color: var(--ig-secondary-500); /* checkbox background color */ +} \ No newline at end of file diff --git a/samples/inputs/checkbox/styling/src/index.tsx b/samples/inputs/checkbox/styling/src/index.tsx new file mode 100644 index 0000000000..255b14044c --- /dev/null +++ b/samples/inputs/checkbox/styling/src/index.tsx @@ -0,0 +1,26 @@ +import React from 'react'; +import ReactDOM from 'react-dom/client'; +import './index.css'; +import { IgrCheckbox } from 'igniteui-react'; +import 'igniteui-webcomponents/themes/light/bootstrap.css'; + +export default class CheckboxStyling extends React.Component { + + constructor(props: any) { + super(props); + } + + public render(): JSX.Element { + return ( +
+ + Checkbox + +
+ ); + } +} + +// rendering above class to the React DOM +const root = ReactDOM.createRoot(document.getElementById('root')); +root.render(); diff --git a/samples/inputs/checkbox/styling/tsconfig.json b/samples/inputs/checkbox/styling/tsconfig.json new file mode 100644 index 0000000000..e7db8a94f5 --- /dev/null +++ b/samples/inputs/checkbox/styling/tsconfig.json @@ -0,0 +1,44 @@ +{ + "compilerOptions": { + "resolveJsonModule": true, + "esModuleInterop": true, + "baseUrl": ".", + "outDir": "build/dist", + "module": "esnext", + "target": "es5", + "lib": [ + "es6", + "dom" + ], + "sourceMap": true, + "allowJs": true, + "jsx": "react", + "moduleResolution": "node", + "rootDir": "src", + "forceConsistentCasingInFileNames": true, + "noImplicitReturns": true, + "noImplicitThis": true, + "noImplicitAny": true, + "noUnusedLocals": false, + "importHelpers": true, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "strict": false, + "isolatedModules": true, + "noEmit": true + }, + "exclude": [ + "node_modules", + "build", + "scripts", + "acceptance-tests", + "webpack", + "jest", + "src/setupTests.ts", + "**/odatajs-4.0.0.js", + "config-overrides.js" + ], + "include": [ + "src" + ] +} diff --git a/samples/inputs/checkbox/styling/vite.config.js b/samples/inputs/checkbox/styling/vite.config.js new file mode 100644 index 0000000000..1744dbc719 --- /dev/null +++ b/samples/inputs/checkbox/styling/vite.config.js @@ -0,0 +1,12 @@ +import { defineConfig } from 'vite'; +import react from '@vitejs/plugin-react'; + +export default defineConfig({ + plugins: [react()], + build: { + outDir: 'build' + }, + server: { + open: false + }, +}); \ No newline at end of file From 962377f040fa06e538cf84f017531b61b8fcfffc Mon Sep 17 00:00:00 2001 From: Mariela Tihova Date: Thu, 29 Jan 2026 09:58:29 +0200 Subject: [PATCH 29/43] Add Styling sample fo Switch (#1012) * feat(switch): Add Styling sample * fix(switch): updating css to use vars --- .../styling/.devcontainer/devcontainer.json | 4 + samples/inputs/switches/styling/.eslintrc.js | 75 +++++++++++++++++++ samples/inputs/switches/styling/README.md | 56 ++++++++++++++ samples/inputs/switches/styling/index.html | 11 +++ samples/inputs/switches/styling/package.json | 42 +++++++++++ .../switches/styling/sandbox.config.json | 5 ++ samples/inputs/switches/styling/src/index.css | 10 +++ samples/inputs/switches/styling/src/index.tsx | 18 +++++ samples/inputs/switches/styling/tsconfig.json | 44 +++++++++++ .../inputs/switches/styling/vite.config.js | 12 +++ 10 files changed, 277 insertions(+) create mode 100644 samples/inputs/switches/styling/.devcontainer/devcontainer.json create mode 100644 samples/inputs/switches/styling/.eslintrc.js create mode 100644 samples/inputs/switches/styling/README.md create mode 100644 samples/inputs/switches/styling/index.html create mode 100644 samples/inputs/switches/styling/package.json create mode 100644 samples/inputs/switches/styling/sandbox.config.json create mode 100644 samples/inputs/switches/styling/src/index.css create mode 100644 samples/inputs/switches/styling/src/index.tsx create mode 100644 samples/inputs/switches/styling/tsconfig.json create mode 100644 samples/inputs/switches/styling/vite.config.js diff --git a/samples/inputs/switches/styling/.devcontainer/devcontainer.json b/samples/inputs/switches/styling/.devcontainer/devcontainer.json new file mode 100644 index 0000000000..e0b8e9c925 --- /dev/null +++ b/samples/inputs/switches/styling/.devcontainer/devcontainer.json @@ -0,0 +1,4 @@ +{ + "name": "Node.js", + "image": "mcr.microsoft.com/devcontainers/javascript-node:22" +} \ No newline at end of file diff --git a/samples/inputs/switches/styling/.eslintrc.js b/samples/inputs/switches/styling/.eslintrc.js new file mode 100644 index 0000000000..b45160a9ee --- /dev/null +++ b/samples/inputs/switches/styling/.eslintrc.js @@ -0,0 +1,75 @@ +// https://www.robertcooper.me/using-eslint-and-prettier-in-a-typescript-project +module.exports = { + parser: "@typescript-eslint/parser", // Specifies the ESLint parser + parserOptions: { + ecmaVersion: 2020, // Allows for the parsing of modern ECMAScript features + sourceType: "module", // Allows for the use of imports + ecmaFeatures: { + jsx: true // Allows for the parsing of JSX + } + }, + settings: { + react: { + version: "999.999.999" // Tells eslint-plugin-react to automatically detect the version of React to use + } + }, + extends: [ + "eslint:recommended", + "plugin:react/recommended", // Uses the recommended rules from @eslint-plugin-react + "plugin:@typescript-eslint/recommended" // Uses the recommended rules from @typescript-eslint/eslint-plugin + ], + rules: { + // Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs + "default-case": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + }, + "overrides": [ + { + "files": ["*.ts", "*.tsx"], + "rules": { + "default-case": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + } + } + ] + }; \ No newline at end of file diff --git a/samples/inputs/switches/styling/README.md b/samples/inputs/switches/styling/README.md new file mode 100644 index 0000000000..4fabc5d775 --- /dev/null +++ b/samples/inputs/switches/styling/README.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of React application with example of Styling feature using [Switches](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-react-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-react-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +``` +git clone https://github.com/IgniteUI/igniteui-react-examples.git +git checkout master +cd ./igniteui-react-examples +cd ./samples/inputs/switches/styling +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for React** components, check out the [React documentation](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html). diff --git a/samples/inputs/switches/styling/index.html b/samples/inputs/switches/styling/index.html new file mode 100644 index 0000000000..304d0bb440 --- /dev/null +++ b/samples/inputs/switches/styling/index.html @@ -0,0 +1,11 @@ + + + + SwitchChecking + + + +
+ + + \ No newline at end of file diff --git a/samples/inputs/switches/styling/package.json b/samples/inputs/switches/styling/package.json new file mode 100644 index 0000000000..87113634e4 --- /dev/null +++ b/samples/inputs/switches/styling/package.json @@ -0,0 +1,42 @@ +{ + "name": "react-switch-checking", + "description": "This project provides example of Switch Checking using Infragistics React components", + "author": "Infragistics", + "homepage": ".", + "version": "1.4.0", + "private": true, + "scripts": { + "start": "vite --port 4200", + "build": "tsc && node --max-old-space-size=4096 node_modules/vite/bin/vite build", + "preview": "vite preview", + "test": "vitest" + }, + "dependencies": { + "igniteui-dockmanager": "^1.17.0", + "igniteui-react": "^19.4.0", + "igniteui-react-core": "19.3.1", + "igniteui-webcomponents": "^6.3.0", + "react": "^19.2.0", + "react-dom": "^19.2.0", + "tslib": "^2.4.0" + }, + "devDependencies": { + "@types/jest": "^29.2.0", + "@types/node": "^24.7.1", + "@types/react": "^18.0.24", + "@types/react-dom": "^18.0.8", + "@vitejs/plugin-react": "^5.0.4", + "@vitest/browser": "^3.2.4", + "typescript": "^4.8.4", + "vite": "^7.1.9", + "vitest": "^3.2.4", + "vitest-canvas-mock": "^0.3.3", + "worker-loader": "^3.0.8" + }, + "browserslist": [ + ">0.2%", + "not dead", + "not ie <= 11", + "not op_mini all" + ] +} diff --git a/samples/inputs/switches/styling/sandbox.config.json b/samples/inputs/switches/styling/sandbox.config.json new file mode 100644 index 0000000000..00acba0c10 --- /dev/null +++ b/samples/inputs/switches/styling/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/inputs/switches/styling/src/index.css b/samples/inputs/switches/styling/src/index.css new file mode 100644 index 0000000000..fc42274b5e --- /dev/null +++ b/samples/inputs/switches/styling/src/index.css @@ -0,0 +1,10 @@ +/* shared styles are loaded from: */ +/* https://dl.infragistics.com/x/css/samples/shared.v8.css */ + + igc-switch { + --thumb-on-color: white; + --thumb-off-color: var(--ig-success-500); + --track-on-color: var(--ig-success-500); /* Background color when checked */ + --track-off-color: white; /* Background color when unchecked */ + --track-on-hover-color: var(--ig-success-500); /* Background hover color when checked */ + } diff --git a/samples/inputs/switches/styling/src/index.tsx b/samples/inputs/switches/styling/src/index.tsx new file mode 100644 index 0000000000..db4492f79e --- /dev/null +++ b/samples/inputs/switches/styling/src/index.tsx @@ -0,0 +1,18 @@ +import React from 'react'; +import ReactDOM from 'react-dom/client'; +import './index.css'; +import { IgrSwitch } from 'igniteui-react'; +import 'igniteui-webcomponents/themes/light/bootstrap.css'; + +export default function SwitchStyling() { + + return ( +
+ Label +
+ ); +} + +// rendering above component to the React DOM +const root = ReactDOM.createRoot(document.getElementById('root')); +root.render(); diff --git a/samples/inputs/switches/styling/tsconfig.json b/samples/inputs/switches/styling/tsconfig.json new file mode 100644 index 0000000000..e7db8a94f5 --- /dev/null +++ b/samples/inputs/switches/styling/tsconfig.json @@ -0,0 +1,44 @@ +{ + "compilerOptions": { + "resolveJsonModule": true, + "esModuleInterop": true, + "baseUrl": ".", + "outDir": "build/dist", + "module": "esnext", + "target": "es5", + "lib": [ + "es6", + "dom" + ], + "sourceMap": true, + "allowJs": true, + "jsx": "react", + "moduleResolution": "node", + "rootDir": "src", + "forceConsistentCasingInFileNames": true, + "noImplicitReturns": true, + "noImplicitThis": true, + "noImplicitAny": true, + "noUnusedLocals": false, + "importHelpers": true, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "strict": false, + "isolatedModules": true, + "noEmit": true + }, + "exclude": [ + "node_modules", + "build", + "scripts", + "acceptance-tests", + "webpack", + "jest", + "src/setupTests.ts", + "**/odatajs-4.0.0.js", + "config-overrides.js" + ], + "include": [ + "src" + ] +} diff --git a/samples/inputs/switches/styling/vite.config.js b/samples/inputs/switches/styling/vite.config.js new file mode 100644 index 0000000000..1744dbc719 --- /dev/null +++ b/samples/inputs/switches/styling/vite.config.js @@ -0,0 +1,12 @@ +import { defineConfig } from 'vite'; +import react from '@vitejs/plugin-react'; + +export default defineConfig({ + plugins: [react()], + build: { + outDir: 'build' + }, + server: { + open: false + }, +}); \ No newline at end of file From c69a991c715c99f88355e723808e6aa2b2d61a4c Mon Sep 17 00:00:00 2001 From: Mariela Tihova Date: Fri, 30 Jan 2026 16:42:01 +0200 Subject: [PATCH 30/43] Fix interactive part of the Circular Progress sample (#1020) * fix(circular-progress): Fix interactive part of the sample * fix(circular-progress): Edit increment and decrement to handle state correctly --- .../src/DynamicCircularProgressStyle.css | 17 ++++ .../dynamic/src/index.tsx | 99 ++++++++----------- 2 files changed, 58 insertions(+), 58 deletions(-) diff --git a/samples/inputs/circular-progress-indicator/dynamic/src/DynamicCircularProgressStyle.css b/samples/inputs/circular-progress-indicator/dynamic/src/DynamicCircularProgressStyle.css index b5b21b6e2f..e05d779cfd 100644 --- a/samples/inputs/circular-progress-indicator/dynamic/src/DynamicCircularProgressStyle.css +++ b/samples/inputs/circular-progress-indicator/dynamic/src/DynamicCircularProgressStyle.css @@ -1,4 +1,21 @@ igc-circular-progress { --diameter: 100px; --stroke-thickness: 5px; +} + +.sample-content { + width: 300px; + display: flex; + align-items: center; + margin-top: 30px; +} + +.circular-progress-container { + margin-right: 50px; + margin-left: 20px; +} + +.buttons-container { + display: flex; + gap: 10px; } \ No newline at end of file diff --git a/samples/inputs/circular-progress-indicator/dynamic/src/index.tsx b/samples/inputs/circular-progress-indicator/dynamic/src/index.tsx index 92eee138bc..9ec6e04d48 100644 --- a/samples/inputs/circular-progress-indicator/dynamic/src/index.tsx +++ b/samples/inputs/circular-progress-indicator/dynamic/src/index.tsx @@ -1,4 +1,4 @@ -import React from 'react'; +import React, { useEffect, useState } from 'react'; import ReactDOM from 'react-dom/client'; import './index.css'; import { IgrCircularProgress, IgrCircularGradient, IgrIconButton, IgrCircularProgressModule, IgrCircularGradientModule, IgrIconButtonModule, registerIconFromText } from 'igniteui-react'; @@ -12,70 +12,53 @@ IgrIconButtonModule.register(); const addIconText = ''; const removeIconText = ''; -export default class DynamicCircularProgress extends React.Component { +export default function DynamicCircularProgress() { - public circularProgress: IgrCircularProgress; - public addIcon: IgrIconButton; - public removeIcon: IgrIconButton; + const [currentValue, setCurrentValue] = useState(0); - constructor(props: any) { - super(props); + useEffect(() => { + registerIconFromText("add", addIconText, "material"); + registerIconFromText("remove", removeIconText, "material"); + }, []); - registerIconFromText( - "add", addIconText, "material" - ); - registerIconFromText( - "remove", removeIconText, "material" - ); - - this.circularProgressRef = this.circularProgressRef.bind(this); - this.onIconClick = this.onIconClick.bind(this); - } - - public render(): JSX.Element { - return ( -
- - - - - - - - -
- - - - -
-
- ); - } - - public circularProgressRef(progress: IgrCircularProgress) - { - if(!progress) { return; } - this.circularProgress = progress; + const incrementProgress = () => { + setCurrentValue((oldValue) => { + const newValue = oldValue + 10; + if (newValue > 100) { + return 100; + } + return newValue; + }); } - public onIconClick(e: any) { - const target = e.target as HTMLElement; - const iconButton: any = target.closest('igc-icon-button'); - if(iconButton.getAttribute("classname") === "removeIcon") - { - if(this.circularProgress.value > 0) { - this.circularProgress.value = this.circularProgress.value - 10; - } - else { - this.circularProgress.value = 0; + const decrementProgress = () => { + setCurrentValue((oldValue) => { + const newValue = oldValue - 10; + if (newValue < 0) { + return 0; } - } - else { - this.circularProgress.value = this.circularProgress.value + 10; - } - + return newValue; + }); } + + return ( +
+ + + + + + + + +
+ + + + +
+
+ ); } // rendering above class to the React DOM From caac521fce0a7b6535f13fa1620c2886a7dd2945 Mon Sep 17 00:00:00 2001 From: Deyan Kamburov Date: Tue, 3 Feb 2026 15:48:01 +0200 Subject: [PATCH 31/43] chore: update react packages to 19.3.2 --- browser/package-lock.json | 146 +++++++++--------- browser/package.json | 26 ++-- browser/public/meta.json | 2 +- browser/src/navigation/SamplesBrowser.json | 2 +- browser/tasks/gulp-samples.js | 24 +-- .../annotations-all/package.json | 8 +- .../annotations-callouts/package.json | 8 +- .../annotations-crosshairs/package.json | 8 +- .../annotations-custom/package.json | 8 +- .../annotations-final-value/package.json | 8 +- .../annotations-highlighting/package.json | 8 +- .../category-chart/annotations/package.json | 4 +- .../area-chart-multiple-sources/package.json | 4 +- .../area-chart-single-source/package.json | 4 +- .../area-chart-styling/package.json | 4 +- .../category-chart/axis-gap/package.json | 8 +- .../axis-gridlines/package.json | 8 +- .../category-chart/axis-inverted/package.json | 8 +- .../category-chart/axis-labels/package.json | 8 +- .../axis-locations/package.json | 8 +- .../category-chart/axis-options/package.json | 4 +- .../category-chart/axis-overlap/package.json | 8 +- .../category-chart/axis-range/package.json | 8 +- .../axis-tickmarks/package.json | 8 +- .../category-chart/axis-titles/package.json | 4 +- .../chart-highlight-filter/package.json | 8 +- .../package.json | 4 +- .../column-chart-single-source/package.json | 4 +- .../column-chart-styling/package.json | 4 +- .../package.json | 4 +- .../column-chart-with-tooltips/package.json | 8 +- .../custom-selection/package.json | 4 +- .../data-aggregations/package.json | 8 +- .../category-chart/data-filter/package.json | 8 +- .../package.json | 4 +- .../category-chart/data-legend/package.json | 4 +- .../package.json | 4 +- .../data-tooltip-positioning/package.json | 8 +- .../category-chart/data-tooltip/package.json | 4 +- .../format-specifiers/package.json | 8 +- .../high-frequency/package.json | 4 +- .../category-chart/high-volume/package.json | 4 +- .../highlighting-behavior/package.json | 8 +- .../highlighting-mode/package.json | 8 +- .../category-chart/highlighting/package.json | 4 +- .../legend-highlighting/package.json | 4 +- .../line-chart-multiple-sources/package.json | 4 +- .../line-chart-single-source/package.json | 4 +- .../line-chart-styling/package.json | 4 +- .../line-chart-with-animations/package.json | 4 +- .../line-chart-with-annotations/package.json | 4 +- .../marker-options/package.json | 8 +- .../marker-templates/package.json | 4 +- .../category-chart/overview/package.json | 4 +- .../point-chart-multiple-sources/package.json | 4 +- .../point-chart-single-source/package.json | 4 +- .../point-chart-styling/package.json | 4 +- .../selection-matcher/package.json | 4 +- .../selection-modes/package.json | 4 +- .../selection-multiple-modes/package.json | 8 +- .../spline-area-multiple-sources/package.json | 4 +- .../spline-area-single-source/package.json | 4 +- .../spline-area-styling/package.json | 4 +- .../spline-multiple-sources/package.json | 4 +- .../spline-single-source/package.json | 4 +- .../spline-styling/package.json | 4 +- .../category-chart/stack-columns/package.json | 4 +- .../step-area-multiple-sources/package.json | 4 +- .../step-area-single-source/package.json | 4 +- .../step-area-styling/package.json | 4 +- .../step-line-multiple-sources/package.json | 4 +- .../step-line-single-source/package.json | 4 +- .../step-line-styling/package.json | 4 +- .../tooltip-template/package.json | 4 +- .../category-chart/tooltip-types/package.json | 4 +- .../category-chart/trendline/package.json | 4 +- .../category-chart/value-lines/package.json | 8 +- .../chart-dashboard/package.json | 16 +- .../financial-dashboard/package.json | 18 +-- .../gauge-dashboard/package.json | 18 +-- .../local-data-source-dashboard/package.json | 18 +-- .../dashboard-tile/map-dashboard/package.json | 18 +-- .../dashboard-tile/pie-dashboard/package.json | 18 +-- .../annotations-custom/package.json | 4 +- .../package.json | 4 +- .../data-chart/axis-annotations/package.json | 4 +- .../data-chart/axis-crossing/package.json | 4 +- .../axis-label-rotation/package.json | 8 +- .../data-chart/axis-locations/package.json | 4 +- .../data-chart/axis-min-max-gap/package.json | 4 +- .../data-chart/axis-settings/package.json | 4 +- .../data-chart/axis-sharing/package.json | 4 +- .../charts/data-chart/axis-types/package.json | 4 +- .../bar-chart-multiple-sources/package.json | 4 +- .../bar-chart-overlapping/package.json | 4 +- .../bar-chart-single-source/package.json | 4 +- .../data-chart/bar-chart-styling/package.json | 4 +- .../callout-layer-styling/package.json | 4 +- .../package.json | 8 +- .../package.json | 8 +- .../chart-highlight-filter/package.json | 8 +- .../data-chart/chart-navigation/package.json | 4 +- .../data-chart/chart-overview/package.json | 4 +- .../data-chart/chart-performance/package.json | 4 +- .../chart-synchronization/package.json | 4 +- .../data-chart/chart-titles/package.json | 4 +- .../data-chart/composite-chart/package.json | 4 +- .../crosshair-layer-styling/package.json | 4 +- .../custom-drawing-annotations/package.json | 8 +- .../custom-editing-data/package.json | 4 +- .../data-chart/dash-array-axes/package.json | 4 +- .../data-chart/dash-array-series/package.json | 4 +- .../dash-array-tickmarks/package.json | 4 +- .../dash-array-trendline/package.json | 4 +- .../data-annotation-band-layer/package.json | 4 +- .../data-annotation-line-layer/package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../data-annotation-rect-layer/package.json | 4 +- .../data-annotation-slice-layer/package.json | 4 +- .../data-annotation-strip-layer/package.json | 4 +- .../package.json | 4 +- .../data-legend-grouping/package.json | 4 +- .../data-legend-styling/package.json | 4 +- .../data-chart/data-legend/package.json | 4 +- .../package.json | 8 +- .../data-tooltip-grouping/package.json | 8 +- .../data-tooltip-styling/package.json | 8 +- .../data-chart/data-tooltip/package.json | 4 +- .../final-value-layer-styling/package.json | 4 +- .../financial-price-series/package.json | 4 +- .../data-chart/format-specifiers/package.json | 4 +- .../itemized-bar-chart/package.json | 4 +- .../itemized-column-chart/package.json | 4 +- .../itemized-stacked-bar-chart/package.json | 4 +- .../package.json | 4 +- .../charts/data-chart/legends/package.json | 4 +- .../polar-area-chart-styling/package.json | 4 +- .../data-chart/polar-area-chart/package.json | 4 +- .../data-chart/polar-chart-types/package.json | 4 +- .../data-chart/polar-line-chart/package.json | 4 +- .../polar-scatter-chart/package.json | 4 +- .../polar-spline-area-chart/package.json | 4 +- .../polar-spline-chart/package.json | 4 +- .../radial-area-chart-styling/package.json | 4 +- .../data-chart/radial-area-chart/package.json | 4 +- .../radial-chart-types/package.json | 4 +- .../package.json | 4 +- .../radial-column-chart/package.json | 4 +- .../data-chart/radial-label-mode/package.json | 8 +- .../data-chart/radial-line-chart/package.json | 4 +- .../data-chart/radial-pie-chart/package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../data-chart/range-area-chart/package.json | 4 +- .../range-column-chart/package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../scatter-bubble-chart-styling/package.json | 4 +- .../scatter-line-chart/package.json | 4 +- .../scatter-line-threshold/package.json | 4 +- .../scatter-point-chart/package.json | 4 +- .../scatter-spline-chart/package.json | 4 +- .../data-chart/selection-matcher/package.json | 4 +- .../series-annotations/package.json | 4 +- .../series-highlighting/package.json | 4 +- .../series-marker-template/package.json | 4 +- .../data-chart/series-markers/package.json | 4 +- .../data-chart/series-tooltips/package.json | 4 +- .../data-chart/series-trendlines/package.json | 4 +- .../series-value-overlay/package.json | 4 +- .../stacked-100-area-chart/package.json | 4 +- .../stacked-100-bar-chart/package.json | 4 +- .../stacked-100-column-chart/package.json | 4 +- .../stacked-100-line-chart/package.json | 4 +- .../package.json | 4 +- .../stacked-100-spline-chart/package.json | 4 +- .../stacked-area-chart/package.json | 4 +- .../data-chart/stacked-bar-chart/package.json | 4 +- .../stacked-chart-types/package.json | 4 +- .../stacked-column-chart/package.json | 4 +- .../stacked-line-chart/package.json | 4 +- .../stacked-spline-area-chart/package.json | 4 +- .../stacked-spline-chart/package.json | 4 +- .../data-chart/tooltip-template/package.json | 4 +- .../data-chart/transition-event/package.json | 8 +- .../data-chart/trendline-layer/package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../type-financial-ohlc-series/package.json | 4 +- .../type-financial-overlays/package.json | 4 +- .../type-financial-series/package.json | 4 +- .../type-range-area-series/package.json | 4 +- .../type-range-column-series/package.json | 4 +- .../data-chart/type-range-series/package.json | 4 +- .../type-scatter-area-series/package.json | 4 +- .../type-scatter-bubble-series/package.json | 4 +- .../type-scatter-contour-series/package.json | 4 +- .../type-scatter-hd-series/package.json | 4 +- .../type-scatter-polygon-series/package.json | 4 +- .../type-scatter-polyline-series/package.json | 4 +- .../type-scatter-series/package.json | 4 +- .../data-chart/type-shape-series/package.json | 4 +- .../user-annotation-layer/package.json | 8 +- .../data-chart/waterfall-chart/package.json | 4 +- .../animation-replay/package.json | 8 +- .../data-pie-chart/animation/package.json | 8 +- .../highlight-filter/package.json | 4 +- .../data-pie-chart/highlighting/package.json | 8 +- .../charts/data-pie-chart/legend/package.json | 8 +- .../charts/data-pie-chart/others/package.json | 8 +- .../data-pie-chart/overview/package.json | 4 +- .../data-pie-chart/selection/package.json | 8 +- .../doughnut-chart/animation/package.json | 4 +- .../doughnut-chart/explosion/package.json | 4 +- .../charts/doughnut-chart/legend/package.json | 4 +- .../doughnut-chart/overview/package.json | 4 +- .../charts/doughnut-chart/rings/package.json | 4 +- .../doughnut-chart/selection/package.json | 4 +- .../financial-chart/annotations/package.json | 4 +- .../financial-chart/axis-types/package.json | 4 +- .../package.json | 4 +- .../data-legend-styling-props/package.json | 4 +- .../financial-chart/data-legend/package.json | 4 +- .../package.json | 4 +- .../data-tooltip-styling-props/package.json | 4 +- .../financial-chart/data-tooltip/package.json | 4 +- .../format-specifiers/package.json | 4 +- .../high-frequency/package.json | 4 +- .../financial-chart/high-volume/package.json | 4 +- .../indicator-customization/package.json | 4 +- .../indicator-types/package.json | 4 +- .../multiple-data/package.json | 4 +- .../financial-chart/overview/package.json | 4 +- .../charts/financial-chart/panes/package.json | 4 +- .../financial-chart/performance/package.json | 4 +- .../financial-chart/scrollbars/package.json | 4 +- .../stock-index-chart/package.json | 4 +- .../financial-chart/styling/package.json | 4 +- .../financial-chart/titles/package.json | 4 +- .../tooltip-types/package.json | 4 +- .../financial-chart/trendlines/package.json | 4 +- .../financial-chart/volume-types/package.json | 4 +- .../charts/pie-chart/animation/package.json | 4 +- .../charts/pie-chart/explosion/package.json | 4 +- samples/charts/pie-chart/legend/package.json | 4 +- samples/charts/pie-chart/others/package.json | 4 +- .../charts/pie-chart/overview/package.json | 4 +- .../charts/pie-chart/selection/package.json | 4 +- samples/charts/pie-chart/styling/package.json | 4 +- .../sparkline/display-area/package.json | 4 +- .../sparkline/display-column/package.json | 4 +- .../sparkline/display-lines/package.json | 8 +- .../sparkline/display-types/package.json | 4 +- .../sparkline/display-winloss/package.json | 4 +- samples/charts/sparkline/grid/package.json | 8 +- samples/charts/sparkline/markers/package.json | 8 +- .../sparkline/normal-range/package.json | 8 +- .../charts/sparkline/trendlines/package.json | 8 +- .../sparkline/unknown-values/package.json | 8 +- .../package.json | 10 +- .../actions-built-in-data-chart/package.json | 8 +- .../toolbar/color-editor-support/package.json | 8 +- .../charts/toolbar/custom-tool/package.json | 8 +- .../package.json | 8 +- .../package.json | 8 +- samples/charts/toolbar/theming/package.json | 8 +- samples/charts/tree-map/events/package.json | 4 +- .../highlighting-percent-based/package.json | 4 +- .../charts/tree-map/highlighting/package.json | 8 +- samples/charts/tree-map/layout/package.json | 8 +- samples/charts/tree-map/overview/package.json | 4 +- samples/charts/tree-map/styling/package.json | 4 +- .../charts/zoomslider/overview/package.json | 4 +- .../overview/package.json | 8 +- .../x-date-picker/date-limits/package.json | 6 +- .../x-date-picker/editing/package.json | 6 +- .../editors/x-date-picker/format/package.json | 6 +- .../x-date-picker/overview/package.json | 6 +- .../editors/x-date-picker/range/package.json | 6 +- .../operations-on-workbooks/package.json | 8 +- .../operations-on-worksheets/package.json | 4 +- .../excel/excel-library/overview/package.json | 4 +- .../working-with-cells/package.json | 4 +- .../working-with-charts/package.json | 10 +- .../working-with-sparklines/package.json | 10 +- .../excel/spreadsheet/activation/package.json | 6 +- .../spreadsheet/adapter-chart/package.json | 10 +- .../spreadsheet/adapter-combo/package.json | 10 +- .../excel/spreadsheet/clipboard/package.json | 6 +- .../excel/spreadsheet/commands/package.json | 6 +- .../conditional-formatting/package.json | 6 +- .../spreadsheet/config-options/package.json | 6 +- .../spreadsheet/data-validation/package.json | 6 +- .../spreadsheet/filter-dialog/package.json | 6 +- .../spreadsheet/format-dialog/package.json | 6 +- .../excel/spreadsheet/hyperlinks/package.json | 6 +- .../excel/spreadsheet/overview/package.json | 6 +- .../spreadsheet/sort-dialog/package.json | 6 +- .../bullet-graph/animation/package.json | 4 +- .../bullet-graph/background/package.json | 4 +- .../highlight-needle/package.json | 4 +- .../gauges/bullet-graph/labels/package.json | 4 +- .../gauges/bullet-graph/measures/package.json | 4 +- .../gauges/bullet-graph/ranges/package.json | 4 +- .../gauges/bullet-graph/scale/package.json | 4 +- .../bullet-graph/tickmarks/package.json | 4 +- .../bullet-graph/type-filled/package.json | 4 +- .../bullet-graph/type-horizontal/package.json | 4 +- .../bullet-graph/type-reversed/package.json | 4 +- .../bullet-graph/type-segmented/package.json | 4 +- .../bullet-graph/type-vertical/package.json | 4 +- .../linear-gauge/animation/package.json | 4 +- .../gauges/linear-gauge/backing/package.json | 4 +- .../highlight-needle/package.json | 4 +- .../gauges/linear-gauge/labels/package.json | 4 +- .../gauges/linear-gauge/needle/package.json | 4 +- .../gauges/linear-gauge/ranges/package.json | 4 +- .../gauges/linear-gauge/scale/package.json | 4 +- .../linear-gauge/tickmarks/package.json | 4 +- .../linear-gauge/type-curved/package.json | 4 +- .../linear-gauge/type-filled/package.json | 4 +- .../linear-gauge/type-horizontal/package.json | 4 +- .../type-multi-range/package.json | 4 +- .../type-multi-scale/package.json | 4 +- .../linear-gauge/type-segmented/package.json | 4 +- .../linear-gauge/type-vertical/package.json | 4 +- .../radial-gauge/animation/package.json | 4 +- .../gauges/radial-gauge/backing/package.json | 4 +- .../highlight-needle/package.json | 4 +- .../gauges/radial-gauge/labels/package.json | 4 +- .../gauges/radial-gauge/needle/package.json | 4 +- .../radial-gauge/optical-scaling/package.json | 4 +- .../gauges/radial-gauge/ranges/package.json | 4 +- .../gauges/radial-gauge/scale/package.json | 4 +- .../radial-gauge/tickmarks/package.json | 4 +- .../radial-gauge/type-column/package.json | 4 +- .../radial-gauge/type-curved/package.json | 4 +- .../radial-gauge/type-direction/package.json | 4 +- .../radial-gauge/type-full/package.json | 4 +- .../radial-gauge/type-half/package.json | 4 +- .../radial-gauge/type-quatre/package.json | 4 +- .../radial-gauge/type-ring/package.json | 4 +- .../radial-gauge/type-segmented/package.json | 4 +- .../radial-gauge/type-semi/package.json | 4 +- .../data-grid/accessibility/package.json | 8 +- .../binding-data-service/package.json | 8 +- .../data-grid/binding-live-data/package.json | 10 +- .../data-grid/binding-local-data/package.json | 8 +- .../binding-remote-data/package.json | 10 +- .../data-grid/cell-activation/package.json | 8 +- .../grids/data-grid/cell-editing/package.json | 8 +- .../grids/data-grid/cell-merging/package.json | 8 +- .../data-grid/cell-selection/package.json | 8 +- .../data-grid/column-animation/package.json | 8 +- .../column-chooser-picker/package.json | 8 +- .../column-chooser-toolbar/package.json | 8 +- .../column-filter-expressions/package.json | 8 +- .../column-filter-operands/package.json | 8 +- .../data-grid/column-filtering/package.json | 8 +- .../data-grid/column-moving/package.json | 8 +- .../data-grid/column-options/package.json | 8 +- .../column-pinning-picker/package.json | 8 +- .../column-pinning-toolbar/package.json | 8 +- .../data-grid/column-resizing/package.json | 8 +- .../data-grid/column-scrolling/package.json | 8 +- .../data-grid/column-sorting/package.json | 8 +- .../data-grid/column-summaries/package.json | 8 +- .../grids/data-grid/column-types/package.json | 10 +- .../data-grid/load-save-layout/package.json | 10 +- .../grids/data-grid/localization/package.json | 8 +- samples/grids/data-grid/overview/package.json | 10 +- samples/grids/data-grid/pager/package.json | 8 +- .../grids/data-grid/performance/package.json | 8 +- .../row-group-descriptions/package.json | 8 +- .../grids/data-grid/row-grouping/package.json | 8 +- .../data-grid/row-highlighting/package.json | 8 +- .../grids/data-grid/row-paging/package.json | 8 +- .../grids/data-grid/row-pinning/package.json | 8 +- .../data-grid/row-selection/package.json | 8 +- .../type-comparison-table/package.json | 8 +- .../data-grid/type-heatmap-table/package.json | 8 +- .../type-marketing-table/package.json | 8 +- .../data-grid/type-matrix-table/package.json | 8 +- .../type-periodic-table/package.json | 8 +- samples/grids/grid/action-strip/package.json | 6 +- .../advanced-filtering-options/package.json | 2 +- .../advanced-filtering-style/package.json | 2 +- .../grid/binding-composite-data/package.json | 2 +- .../grids/grid/binding-crud-data/package.json | 6 +- .../grid/binding-nested-data-1/package.json | 2 +- .../grids/grid/cascading-combo/package.json | 2 +- .../grid/cell-editing-sample/package.json | 2 +- .../grid/cell-editing-styling/package.json | 2 +- .../cell-merge-custom-sample/package.json | 8 +- samples/grids/grid/cell-merge/package.json | 8 +- .../grid/cell-selection-mode/package.json | 6 +- .../grid/cell-selection-style/package.json | 2 +- .../grid/change-icons-custom/package.json | 8 +- .../grid/clipboard-operations/package.json | 8 +- .../grid/column-auto-sizing/package.json | 2 +- .../column-collapsible-groups/package.json | 2 +- .../grids/grid/column-data-types/package.json | 2 +- .../grid/column-hiding-options/package.json | 2 +- .../column-hiding-toolbar-style/package.json | 2 +- .../grid/column-hiding-toolbar/package.json | 2 +- .../grid/column-moving-options/package.json | 2 +- .../grid/column-moving-styles/package.json | 2 +- .../column-pinning-both-sides/package.json | 8 +- .../grid/column-pinning-options/package.json | 2 +- .../column-pinning-right-side/package.json | 2 +- .../grid/column-pinning-styles/package.json | 2 +- .../grids/grid/column-pinning/package.json | 2 +- .../grid/column-resize-styling/package.json | 2 +- .../grids/grid/column-resizing/package.json | 2 +- .../grid/column-selection-group/package.json | 2 +- .../grid/column-selection-mode/package.json | 6 +- .../grid/column-selection-styles/package.json | 2 +- .../column-sorting-indicators/package.json | 2 +- .../grid/column-sorting-options/package.json | 6 +- .../grid/column-sorting-style/package.json | 2 +- .../conditional-cell-style-1/package.json | 6 +- .../conditional-cell-style-2/package.json | 2 +- .../conditional-row-selectors/package.json | 2 +- .../grid/custom-context-menu/package.json | 8 +- .../data-batch-editing-actions/package.json | 6 +- .../package.json | 2 +- .../grids/grid/data-searching/package.json | 8 +- .../grid/data-summary-formatter/package.json | 2 +- .../grid/data-summary-options/package.json | 2 +- .../grid/data-summary-template/package.json | 6 +- .../grid/data-validation-style/package.json | 2 +- .../package.json | 6 +- .../package.json | 6 +- .../grid/data-validator-service/package.json | 6 +- .../grid/disabled-summaries/package.json | 8 +- .../grids/grid/editing-columns/package.json | 2 +- .../grids/grid/editing-events/package.json | 2 +- .../grid/editing-excel-style/package.json | 8 +- .../grids/grid/editing-lifecycle/package.json | 2 +- .../grids/grid/excel-exporting/package.json | 2 +- .../package.json | 6 +- .../package.json | 6 +- .../package.json | 6 +- .../excel-style-filtering-style/package.json | 6 +- .../external-advanced-filtering/package.json | 6 +- .../grids/grid/filtering-options/package.json | 6 +- .../grid/filtering-strategy/package.json | 2 +- .../grids/grid/filtering-style/package.json | 6 +- samples/grids/grid/finjs/package.json | 10 +- .../grids/grid/groupby-custom/package.json | 8 +- .../grid/groupby-expressions/package.json | 2 +- .../grids/grid/groupby-paging/package.json | 2 +- .../grids/grid/groupby-styling/package.json | 2 +- .../grid/groupby-summary-options/package.json | 6 +- .../grid/groupby-summary-styling/package.json | 6 +- .../grids/grid/infinite-scroll/package.json | 8 +- .../keyboard-custom-navigation/package.json | 6 +- .../grid/keyboard-mrl-navigation/package.json | 2 +- .../grid/layout-display-density/package.json | 6 +- samples/grids/grid/master-detail/package.json | 2 +- .../multi-cell-selection-mode/package.json | 8 +- .../multi-column-headers-export/package.json | 2 +- .../package.json | 6 +- .../multi-column-headers-styling/package.json | 2 +- .../package.json | 2 +- .../multi-row-layout-options/package.json | 2 +- .../grid/multi-row-layout-style/package.json | 2 +- samples/grids/grid/overview/package.json | 2 +- samples/grids/grid/paste/package.json | 6 +- .../grid/remote-paging-data/package.json | 6 +- .../grid/remote-paging-grid/package.json | 8 +- samples/grids/grid/row-adding/package.json | 2 +- samples/grids/grid/row-classes/package.json | 2 +- samples/grids/grid/row-drag-base/package.json | 8 +- .../grid/row-editing-options/package.json | 2 +- .../grids/grid/row-editing-style/package.json | 2 +- .../grids/grid/row-paging-basic/package.json | 2 +- .../grid/row-paging-options/package.json | 6 +- .../grids/grid/row-pinning-drag/package.json | 6 +- .../row-pinning-extra-column/package.json | 6 +- .../grid/row-pinning-options/package.json | 6 +- .../grids/grid/row-pinning-style/package.json | 2 +- samples/grids/grid/row-reorder/package.json | 6 +- .../grid/row-selection-mode/package.json | 6 +- .../row-selection-template-excel/package.json | 6 +- .../package.json | 2 +- samples/grids/grid/row-styles/package.json | 2 +- .../grid/state-persistence-about/package.json | 8 +- .../grid/state-persistence-main/package.json | 8 +- .../grid/styling-custom-CSS/package.json | 2 +- .../grids/grid/toolbar-sample-1/package.json | 2 +- .../grids/grid/toolbar-sample-2/package.json | 2 +- .../grids/grid/toolbar-sample-3/package.json | 2 +- samples/grids/grid/toolbar-style/package.json | 2 +- .../action-strip/package.json | 2 +- .../advanced-filtering-options/package.json | 2 +- .../advanced-filtering-style/package.json | 2 +- .../cell-editing-sample/package.json | 2 +- .../cell-editing-styling/package.json | 2 +- .../cell-merge-custom-sample/package.json | 8 +- .../hierarchical-grid/cell-merge/package.json | 8 +- .../cell-selection-mode/package.json | 6 +- .../cell-selection-overview/package.json | 6 +- .../cell-selection-style/package.json | 6 +- .../column-auto-sizing/package.json | 8 +- .../column-collapsible-groups/package.json | 2 +- .../column-hiding-toolbar-style/package.json | 2 +- .../column-hiding-toolbar/package.json | 2 +- .../column-moving-options/package.json | 2 +- .../column-moving-styles/package.json | 2 +- .../column-pinning-both-sides/package.json | 8 +- .../column-pinning-options/package.json | 2 +- .../column-pinning-right-side/package.json | 2 +- .../column-pinning-styles/package.json | 2 +- .../column-pinning/package.json | 2 +- .../column-resize-styling/package.json | 2 +- .../column-resizing/package.json | 2 +- .../column-selection-group/package.json | 2 +- .../column-selection-mode/package.json | 6 +- .../column-selection-styles/package.json | 2 +- .../column-sorting-indicators/package.json | 2 +- .../column-sorting-options/package.json | 2 +- .../column-sorting-style/package.json | 2 +- .../conditional-cell-style-1/package.json | 2 +- .../conditional-cell-style-2/package.json | 2 +- .../conditional-row-selectors/package.json | 2 +- .../custom-filtering/package.json | 2 +- .../data-exporting-indicator/package.json | 8 +- .../package.json | 8 +- .../data-summary-formatter/package.json | 2 +- .../data-summary-options-styling/package.json | 2 +- .../data-summary-options/package.json | 2 +- .../data-summary-template/package.json | 6 +- .../disabled-summaries/package.json | 8 +- .../editing-columns/package.json | 2 +- .../editing-events/package.json | 2 +- .../editing-lifecycle/package.json | 2 +- .../excel-exporting/package.json | 2 +- .../package.json | 2 +- .../package.json | 2 +- .../package.json | 2 +- .../excel-style-filtering-style/package.json | 2 +- .../filtering-options/package.json | 2 +- .../filtering-style/package.json | 2 +- .../hierarchical-grid-options/package.json | 2 +- .../package.json | 2 +- .../hierarchical-grid-styling/package.json | 2 +- .../layout-display-density/package.json | 6 +- .../multi-column-headers-export/package.json | 2 +- .../package.json | 6 +- .../multi-column-headers-styling/package.json | 2 +- .../package.json | 2 +- .../hierarchical-grid/overview/package.json | 2 +- .../remote-paging-hgrid/package.json | 8 +- .../hierarchical-grid/row-adding/package.json | 2 +- .../row-classes/package.json | 2 +- .../row-drag-base/package.json | 8 +- .../row-editing-options/package.json | 2 +- .../row-editing-style/package.json | 2 +- .../row-pinning-extra-column/package.json | 6 +- .../row-pinning-options/package.json | 6 +- .../row-pinning-style/package.json | 2 +- .../row-reorder/package.json | 2 +- .../row-selection-mode/package.json | 6 +- .../package.json | 2 +- .../hierarchical-grid/row-styles/package.json | 2 +- .../state-persistence-about/package.json | 8 +- .../state-persistence-main/package.json | 8 +- .../toolbar-sample-3/package.json | 2 +- .../toolbar-sample-4/package.json | 8 +- .../toolbar-style/package.json | 2 +- .../grids/list/add-list-items/package.json | 2 +- .../grids/list/list-item-content/package.json | 2 +- samples/grids/list/overview/package.json | 2 +- samples/grids/list/styling/package.json | 2 +- .../aggregate-max-sales/package.json | 2 +- .../aggregate-units-sold/package.json | 2 +- .../pivot-grid/data-selector/package.json | 8 +- .../grids/pivot-grid/features/package.json | 2 +- .../state-persistence-about/package.json | 8 +- .../state-persistence-main/package.json | 8 +- .../grids/tree-grid/action-strip/package.json | 2 +- .../advanced-filtering-options/package.json | 2 +- .../advanced-filtering-style/package.json | 2 +- .../cell-editing-sample/package.json | 2 +- .../cell-editing-styling/package.json | 2 +- .../cell-merge-custom-sample/package.json | 8 +- .../grids/tree-grid/cell-merge/package.json | 8 +- .../cell-selection-mode/package.json | 6 +- .../cell-selection-style/package.json | 2 +- .../clipboard-operations/package.json | 8 +- .../tree-grid/column-auto-sizing/package.json | 2 +- .../column-collapsible-groups/package.json | 2 +- .../tree-grid/column-data-types/package.json | 8 +- .../column-hiding-toolbar-style/package.json | 2 +- .../column-hiding-toolbar/package.json | 2 +- .../column-moving-options/package.json | 2 +- .../column-moving-styles/package.json | 2 +- .../column-pinning-both-sides/package.json | 8 +- .../column-pinning-options/package.json | 2 +- .../column-pinning-right-side/package.json | 2 +- .../column-pinning-styles/package.json | 2 +- .../column-pinning-toolbar/package.json | 2 +- .../tree-grid/column-pinning/package.json | 2 +- .../column-resize-styling/package.json | 2 +- .../tree-grid/column-resizing/package.json | 2 +- .../column-selection-group/package.json | 2 +- .../column-selection-mode/package.json | 6 +- .../column-selection-style/package.json | 8 +- .../column-selection-styles/package.json | 2 +- .../column-sorting-indicators/package.json | 2 +- .../column-sorting-options/package.json | 6 +- .../column-sorting-style/package.json | 6 +- .../conditional-cell-style-1/package.json | 2 +- .../conditional-cell-style-2/package.json | 2 +- .../conditional-row-selectors/package.json | 2 +- .../data-exporting-indicator/package.json | 8 +- .../data-summary-children/package.json | 6 +- .../data-summary-formatter/package.json | 2 +- .../data-summary-options-styling/package.json | 2 +- .../data-summary-options/package.json | 2 +- .../data-summary-template/package.json | 6 +- .../tree-grid/disabled-summaries/package.json | 8 +- .../tree-grid/editing-columns/package.json | 2 +- .../tree-grid/editing-events/package.json | 2 +- .../tree-grid/editing-lifecycle/package.json | 2 +- .../tree-grid/excel-exporting/package.json | 2 +- .../package.json | 6 +- .../package.json | 2 +- .../package.json | 2 +- .../excel-style-filtering-style/package.json | 2 +- .../tree-grid/filtering-options/package.json | 2 +- .../tree-grid/filtering-style/package.json | 2 +- .../keyboard-custom-navigation/package.json | 6 +- .../layout-display-density/package.json | 6 +- .../multi-cell-selection-mode/package.json | 8 +- .../multi-column-headers-export/package.json | 2 +- .../package.json | 6 +- .../multi-column-headers-styling/package.json | 2 +- .../package.json | 2 +- .../tree-grid/overview-styling/package.json | 2 +- samples/grids/tree-grid/overview/package.json | 6 +- .../grids/tree-grid/row-adding/package.json | 2 +- .../grids/tree-grid/row-classes/package.json | 2 +- .../tree-grid/row-drag-base/package.json | 8 +- .../row-editing-options/package.json | 2 +- .../tree-grid/row-editing-style/package.json | 2 +- .../tree-grid/row-paging-basic/package.json | 2 +- .../tree-grid/row-paging-options/package.json | 6 +- .../tree-grid/row-paging-style/package.json | 2 +- .../row-pinning-extra-column/package.json | 2 +- .../row-pinning-options/package.json | 6 +- .../tree-grid/row-pinning-style/package.json | 2 +- .../grids/tree-grid/row-reorder/package.json | 2 +- .../tree-grid/row-selection-mode/package.json | 6 +- .../row-selection-template-excel/package.json | 2 +- .../package.json | 2 +- .../grids/tree-grid/row-styles/package.json | 2 +- .../state-persistence-about/package.json | 8 +- .../state-persistence-main/package.json | 8 +- .../tree-grid/toolbar-sample-1/package.json | 2 +- .../tree-grid/toolbar-sample-2/package.json | 8 +- .../tree-grid/toolbar-sample-3/package.json | 2 +- .../tree-grid/toolbar-sample-4/package.json | 8 +- .../tree-grid/toolbar-style/package.json | 2 +- .../using-primary-foreign-keys/package.json | 2 +- samples/grids/tree/basic-example/package.json | 2 +- samples/grids/tree/styling/package.json | 2 +- samples/inputs/badge/outlined/package.json | 2 +- samples/inputs/badge/shape/package.json | 2 +- samples/inputs/badge/styling/package.json | 2 +- samples/inputs/badge/variants/package.json | 2 +- .../button-group/alignment/package.json | 2 +- .../inputs/button-group/overview/package.json | 2 +- .../button-group/selection/package.json | 2 +- samples/inputs/button-group/size/package.json | 2 +- .../inputs/button-group/styling/package.json | 2 +- samples/inputs/button/contained/package.json | 2 +- samples/inputs/button/download/package.json | 2 +- samples/inputs/button/fab/package.json | 2 +- samples/inputs/button/flat/package.json | 2 +- samples/inputs/button/outlined/package.json | 2 +- samples/inputs/button/overview/package.json | 2 +- samples/inputs/button/size/package.json | 2 +- samples/inputs/button/styling/package.json | 2 +- samples/inputs/checkbox/checking/package.json | 2 +- samples/inputs/checkbox/disabled/package.json | 2 +- .../checkbox/indeterminate/package.json | 2 +- samples/inputs/checkbox/label/package.json | 2 +- samples/inputs/checkbox/overview/package.json | 2 +- samples/inputs/checkbox/styling/package.json | 2 +- samples/inputs/chip/multiple/package.json | 2 +- samples/inputs/chip/overview/package.json | 2 +- samples/inputs/chip/size/package.json | 2 +- samples/inputs/chip/styling/package.json | 2 +- samples/inputs/chip/variants/package.json | 2 +- .../dynamic/package.json | 2 +- .../indeterminate/package.json | 2 +- .../simple/package.json | 2 +- .../styling/package.json | 2 +- .../inputs/color-editor/overview/package.json | 4 +- samples/inputs/combo/features/package.json | 2 +- samples/inputs/combo/overview/package.json | 2 +- samples/inputs/combo/selection/package.json | 2 +- samples/inputs/combo/simplified/package.json | 2 +- samples/inputs/combo/styling/package.json | 2 +- samples/inputs/combo/templates/package.json | 6 +- .../input-format-display-format/package.json | 2 +- .../min-max-value/package.json | 2 +- .../date-time-input/overview/package.json | 2 +- .../date-time-input/step-up-down/package.json | 2 +- .../date-time-input/styling/package.json | 2 +- samples/inputs/dropdown/group/package.json | 2 +- samples/inputs/dropdown/header/package.json | 2 +- samples/inputs/dropdown/item/package.json | 2 +- samples/inputs/dropdown/overview/package.json | 2 +- samples/inputs/dropdown/position/package.json | 2 +- samples/inputs/dropdown/styling/package.json | 2 +- samples/inputs/dropdown/target/package.json | 2 +- samples/inputs/icon-button/size/package.json | 2 +- .../inputs/icon-button/styling/package.json | 2 +- .../inputs/icon-button/variant/package.json | 2 +- samples/inputs/input/helper-text/package.json | 2 +- samples/inputs/input/overview/package.json | 2 +- .../inputs/input/prefix-suffix/package.json | 2 +- samples/inputs/input/size/package.json | 2 +- samples/inputs/input/styling/package.json | 2 +- .../dynamic/package.json | 2 +- .../simple/package.json | 2 +- .../striped/package.json | 2 +- .../styling/package.json | 2 +- .../types/package.json | 2 +- .../mask-input/applying-mask/package.json | 2 +- .../inputs/mask-input/overview/package.json | 2 +- .../mask-input/value-modes/package.json | 2 +- samples/inputs/radio/alignment/package.json | 2 +- samples/inputs/radio/disabled/package.json | 2 +- samples/inputs/radio/group/package.json | 2 +- samples/inputs/radio/invalid/package.json | 2 +- samples/inputs/radio/label/package.json | 2 +- samples/inputs/radio/styling/package.json | 2 +- samples/inputs/rating/basic/package.json | 2 +- samples/inputs/rating/custom/package.json | 2 +- samples/inputs/rating/empty/package.json | 2 +- .../rating/single-selection/package.json | 2 +- samples/inputs/rating/styling/package.json | 2 +- samples/inputs/ripple/button/package.json | 2 +- samples/inputs/ripple/color/package.json | 2 +- samples/inputs/select/group/package.json | 2 +- samples/inputs/select/header/package.json | 2 +- samples/inputs/select/item/package.json | 2 +- samples/inputs/select/overview/package.json | 2 +- samples/inputs/select/styling/package.json | 2 +- .../inputs/slider/constraints/package.json | 2 +- samples/inputs/slider/disabled/package.json | 2 +- samples/inputs/slider/discrete/package.json | 2 +- samples/inputs/slider/labels/package.json | 2 +- samples/inputs/slider/overview/package.json | 2 +- samples/inputs/slider/styling/package.json | 2 +- .../inputs/slider/tick-labels/package.json | 2 +- samples/inputs/slider/ticks/package.json | 2 +- .../inputs/slider/value-format/package.json | 2 +- samples/inputs/slider/value/package.json | 2 +- samples/inputs/switches/checking/package.json | 2 +- samples/inputs/switches/disabled/package.json | 2 +- samples/inputs/switches/label/package.json | 2 +- samples/inputs/switches/overview/package.json | 2 +- samples/inputs/switches/styling/package.json | 2 +- .../textarea/form-integration/package.json | 2 +- samples/inputs/textarea/overview/package.json | 2 +- samples/inputs/textarea/resize/package.json | 2 +- samples/inputs/textarea/slots/package.json | 2 +- samples/inputs/textarea/styling/package.json | 2 +- samples/inputs/tooltip/advanced/package.json | 4 +- samples/inputs/tooltip/overview/package.json | 2 +- samples/inputs/tooltip/placement/package.json | 2 +- samples/inputs/tooltip/rich/package.json | 2 +- samples/inputs/tooltip/styling/package.json | 2 +- samples/inputs/tooltip/triggers/package.json | 2 +- .../interactions/chat/features/package.json | 2 +- .../interactions/chat/overview/package.json | 2 +- .../interactions/chat/styling/package.json | 2 +- .../accordion/customization/package.json | 2 +- .../accordion/nested-scenario/package.json | 2 +- .../layouts/accordion/overview/package.json | 2 +- samples/layouts/avatar/icon/package.json | 2 +- samples/layouts/avatar/image/package.json | 2 +- samples/layouts/avatar/initials/package.json | 2 +- samples/layouts/avatar/shape/package.json | 2 +- samples/layouts/avatar/size/package.json | 2 +- samples/layouts/avatar/styling/package.json | 2 +- samples/layouts/card/horizontal/package.json | 2 +- samples/layouts/card/overview/package.json | 2 +- .../layouts/card/semi-horizontal/package.json | 2 +- samples/layouts/card/styling/package.json | 2 +- .../layouts/carousel/animations/package.json | 2 +- .../layouts/carousel/components/package.json | 2 +- .../layouts/carousel/overview/package.json | 2 +- .../layouts/carousel/thumbnail/package.json | 2 +- samples/layouts/divider/dashed/package.json | 2 +- samples/layouts/divider/middle/package.json | 2 +- samples/layouts/divider/overview/package.json | 2 +- samples/layouts/divider/select/package.json | 2 +- samples/layouts/divider/vertical/package.json | 2 +- .../customize-buttons/package.json | 2 +- .../embedding-frames/package.json | 2 +- .../dock-manager/overview/package.json | 2 +- .../layouts/dock-manager/styling/package.json | 2 +- .../dock-manager/updating-panes/package.json | 6 +- .../component-customization/package.json | 2 +- .../properties-and-events/package.json | 2 +- .../expansion-panel/styling/package.json | 2 +- .../expansion-panel/usage/package.json | 2 +- samples/layouts/icon/sizing/package.json | 2 +- samples/layouts/icon/styling/package.json | 2 +- .../layouts/stepper/animations/package.json | 2 +- samples/layouts/stepper/linear/package.json | 2 +- .../layouts/stepper/orientation/package.json | 2 +- .../layouts/stepper/steptypes/package.json | 2 +- samples/layouts/stepper/styling/package.json | 2 +- samples/layouts/tabs/alignment/package.json | 2 +- samples/layouts/tabs/overview/package.json | 2 +- .../layouts/tabs/prefix-suffix/package.json | 2 +- samples/layouts/tabs/scrolling/package.json | 2 +- samples/layouts/tabs/styling/package.json | 2 +- .../layouts/tile-manager/actions/package.json | 2 +- .../tile-manager/columngap/package.json | 2 +- .../tile-manager/dragndrop/package.json | 2 +- .../layouts/tile-manager/layout/package.json | 2 +- .../tile-manager/overview/package.json | 2 +- .../layouts/tile-manager/resize/package.json | 2 +- .../layouts/tile-manager/styling/package.json | 2 +- .../geo-map/binding-data-csv/package.json | 6 +- .../binding-data-json-points/package.json | 6 +- .../binding-data-json-shapes/package.json | 6 +- .../geo-map/binding-data-model/package.json | 6 +- .../binding-multiple-shapes/package.json | 6 +- .../binding-multiple-sources/package.json | 6 +- .../geo-map/binding-shp-points/package.json | 6 +- .../geo-map/binding-shp-polygons/package.json | 6 +- .../binding-shp-polylines/package.json | 6 +- .../maps/geo-map/custom-tooltips/package.json | 6 +- .../geo-map/display-all-imagery/package.json | 6 +- .../display-azure-imagery/package.json | 6 +- .../geo-map/display-bing-imagery/package.json | 6 +- .../display-custom-imagery/package.json | 6 +- .../geo-map/display-esri-imagery/package.json | 6 +- .../geo-map/display-heat-imagery/package.json | 6 +- .../geo-map/display-osm-imagery/package.json | 6 +- .../maps/geo-map/marker-layouts/package.json | 6 +- .../maps/geo-map/marker-template/package.json | 6 +- samples/maps/geo-map/marker-type/package.json | 6 +- samples/maps/geo-map/nav-grid/package.json | 6 +- .../navigation-only-panning/package.json | 6 +- samples/maps/geo-map/navigation/package.json | 6 +- samples/maps/geo-map/overview/package.json | 6 +- .../maps/geo-map/shape-selection/package.json | 8 +- .../maps/geo-map/shape-styling/package.json | 6 +- .../maps/geo-map/synchronization/package.json | 6 +- .../geo-map/triangulating-data/package.json | 6 +- .../type-scatter-area-series/package.json | 6 +- .../type-scatter-bubble-series/package.json | 6 +- .../type-scatter-contour-series/package.json | 6 +- .../type-scatter-density-series/package.json | 6 +- .../type-scatter-symbol-series/package.json | 6 +- .../type-shape-polygon-series/package.json | 6 +- .../type-shape-polyline-series/package.json | 6 +- samples/menus/nav-bar/overview/package.json | 2 +- samples/menus/nav-bar/styling/package.json | 2 +- .../nav-drawer/add-drawer-items/package.json | 2 +- .../menus/nav-drawer/add-mini/package.json | 2 +- .../add-positions-navbar/package.json | 2 +- samples/menus/nav-drawer/styling/package.json | 2 +- .../banner-advanced-sample/package.json | 2 +- .../banner/banner-sample-1/package.json | 2 +- .../banner/banner-sample-2/package.json | 2 +- .../banner/banner-styling/package.json | 2 +- .../dialog/closing-variations/package.json | 2 +- .../notifications/dialog/form/package.json | 2 +- .../dialog/overview/package.json | 2 +- .../notifications/dialog/styling/package.json | 2 +- .../snackbar/action-text/package.json | 2 +- .../snackbar/display-time/package.json | 2 +- .../snackbar/overview/package.json | 2 +- .../snackbar/styling/package.json | 2 +- .../notifications/toast/overview/package.json | 2 +- .../toast/properties/package.json | 2 +- .../notifications/toast/styling/package.json | 2 +- .../calendar/disabled-dates/package.json | 2 +- .../calendar/formatting/package.json | 2 +- .../scheduling/calendar/header/package.json | 2 +- .../calendar/multiple-months/package.json | 2 +- .../calendar/multiple-selection/package.json | 2 +- .../scheduling/calendar/overview/package.json | 2 +- .../calendar/range-selection/package.json | 2 +- samples/scheduling/calendar/size/package.json | 2 +- .../calendar/special-dates/package.json | 2 +- .../scheduling/calendar/styling/package.json | 2 +- .../calendar/week-numbers/package.json | 2 +- .../date-picker/dialog-mode/package.json | 2 +- .../scheduling/date-picker/form/package.json | 2 +- .../date-picker/format/package.json | 2 +- .../date-picker/overview/package.json | 2 +- .../date-picker/styling/package.json | 2 +- .../custom-ranges/package.json | 2 +- .../date-range-picker/form/package.json | 2 +- .../date-range-picker/overview/package.json | 2 +- .../date-range-picker/slots/package.json | 2 +- .../date-range-picker/styling/package.json | 2 +- 912 files changed, 1990 insertions(+), 1990 deletions(-) diff --git a/browser/package-lock.json b/browser/package-lock.json index 0c459ada18..e3b6b174f1 100644 --- a/browser/package-lock.json +++ b/browser/package-lock.json @@ -18,20 +18,20 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-grid-lite": "^0.0.1", "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-dashboards": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-dashboards": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-dockmanager": "^19.4.0", - "igniteui-react-excel": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-excel": "19.3.2", + "igniteui-react-gauges": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", - "igniteui-react-maps": "19.3.1", - "igniteui-react-spreadsheet": "19.3.1", - "igniteui-react-spreadsheet-chart-adapter": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", + "igniteui-react-maps": "19.3.2", + "igniteui-react-spreadsheet": "19.3.2", + "igniteui-react-spreadsheet-chart-adapter": "19.3.2", "igniteui-theming": "^24.0.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", @@ -8418,68 +8418,68 @@ } }, "node_modules/igniteui-react-charts": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/igniteui-react-charts/-/igniteui-react-charts-19.3.1.tgz", - "integrity": "sha512-sW4MtSHfZ/nD9kbHNzyFkiuHZnQ+VFykaXZaulwiJGC10oAjZMhQJQEuIYlNdasThI7fVEcXcC8HaNog5UbnCQ==", + "version": "19.3.2", + "resolved": "https://registry.npmjs.org/igniteui-react-charts/-/igniteui-react-charts-19.3.2.tgz", + "integrity": "sha512-gZaj1LZ/OoFwBAovwBX5cUhLfipl4FdI8d6zsEQCm1s0YddvFProGBgV0I0pqcKTHAGW7iJmNPq1ERvcQLwtCw==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-react-core": "19.3.1" + "igniteui-react-core": "19.3.2" } }, "node_modules/igniteui-react-core": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/igniteui-react-core/-/igniteui-react-core-19.3.1.tgz", - "integrity": "sha512-YaNMlUCvXav5qrsLm6mBN2pYOXZaFA4YBpGdAVni96Zvg/NFLWF1qYQ6qbkP2A4nLnWC5yLcBCmzQrre5c/B5w==", + "version": "19.3.2", + "resolved": "https://registry.npmjs.org/igniteui-react-core/-/igniteui-react-core-19.3.2.tgz", + "integrity": "sha512-4pXVO2qa/ik4HfyziJQCsIpJogkT+OEWs9JHLvfnyEX2gthHy48DvhfdfOIDDKM3NJUBZKhVFy1q843jsr1Big==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" } }, "node_modules/igniteui-react-dashboards": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/igniteui-react-dashboards/-/igniteui-react-dashboards-19.3.1.tgz", - "integrity": "sha512-2GkGJrzZz4WqU87ue7f1uaxz1t4SOug8mysx2hZLQcK3j3hbZ1SxA2y6AbvqJrvAv5zcrkJVhROgljXhM8tqrQ==", + "version": "19.3.2", + "resolved": "https://registry.npmjs.org/igniteui-react-dashboards/-/igniteui-react-dashboards-19.3.2.tgz", + "integrity": "sha512-C6PIBTRzDtWj9gnEvhsjYCd9R8vNHgaLMQVJQnSuNeQzu8MkcVatHXJI68k1gY8+Yk9cxIoUthZc9jCkFwE3fw==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-gauges": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", - "igniteui-react-maps": "19.3.1" + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-gauges": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", + "igniteui-react-maps": "19.3.2" } }, "node_modules/igniteui-react-data-grids": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/igniteui-react-data-grids/-/igniteui-react-data-grids-19.3.1.tgz", - "integrity": "sha512-+7IEj5aDHlA8CX66OpZvIsxuArPVFYc5ORCTLDOfEXzZr9ctkKDifAXVlkdUL/EYRCyKngvtwLMPZxlMmCKHXA==", + "version": "19.3.2", + "resolved": "https://registry.npmjs.org/igniteui-react-data-grids/-/igniteui-react-data-grids-19.3.2.tgz", + "integrity": "sha512-u6mOdWL1er1gEWAodrq/8iFs+ya01b2b3YRNXs5dCSk+SfuDxTVx83bktdr7gs8Z50IgdzgesGLr/JE24Pzwaw==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1" + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2" } }, "node_modules/igniteui-react-datasources": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/igniteui-react-datasources/-/igniteui-react-datasources-19.3.1.tgz", - "integrity": "sha512-O8D0MXCoyVk54v8WtuTVj04huMQET0dRWNAIl0vUCOG67VpP01HC8gKu+ibEa87eUZO5GYXWZX/xinKWVtXNPw==", + "version": "19.3.2", + "resolved": "https://registry.npmjs.org/igniteui-react-datasources/-/igniteui-react-datasources-19.3.2.tgz", + "integrity": "sha512-XL4I/HT5NSu/Ru6klo6StRHikbJ4bbkkyxnTQLLc8rM1KjRiyby6bNhWKAtT4ubVdzJomrw4JoC0igA+8eeXaQ==", "license": "MIT", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-react-core": "19.3.1" + "igniteui-react-core": "19.3.2" } }, "node_modules/igniteui-react-dockmanager": { @@ -8494,9 +8494,9 @@ } }, "node_modules/igniteui-react-excel": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/igniteui-react-excel/-/igniteui-react-excel-19.3.1.tgz", - "integrity": "sha512-15j8YsJRc0yWUavv6uvLe8P9ik8EM16RotSnlwWk1RyBhGP+w2px3EOpsGB94BNAaZF//hUPGSX+tanEfEDMhw==", + "version": "19.3.2", + "resolved": "https://registry.npmjs.org/igniteui-react-excel/-/igniteui-react-excel-19.3.2.tgz", + "integrity": "sha512-7rp4ortnp7tFQSTINsOrqHN1J8UvznyAU7t6AM05o08BRDXfgfiWB40HFrg/aFna/SbSR8W//a7V9+i9iyBDnA==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "jszip": "^3.1.5", @@ -8504,19 +8504,19 @@ "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-react-core": "19.3.1" + "igniteui-react-core": "19.3.2" } }, "node_modules/igniteui-react-gauges": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/igniteui-react-gauges/-/igniteui-react-gauges-19.3.1.tgz", - "integrity": "sha512-5VFXAvlOA9h5zJ1LNk4OjvBbrMbYAzwYRFehz+vap4E69MfLKD5p9/Gsch2eCFu5qd6Lz7fDTuxUs/biH6mlOQ==", + "version": "19.3.2", + "resolved": "https://registry.npmjs.org/igniteui-react-gauges/-/igniteui-react-gauges-19.3.2.tgz", + "integrity": "sha512-07Jh7M2InRKYROl9AxOcE655clpG593AsWhAFqZgdYG6glEqklGPLMSp3nCzIsa4uik/Wft9HWRpa9DFojKXwQ==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-react-core": "19.3.1" + "igniteui-react-core": "19.3.2" } }, "node_modules/igniteui-react-grids": { @@ -8531,69 +8531,69 @@ } }, "node_modules/igniteui-react-inputs": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/igniteui-react-inputs/-/igniteui-react-inputs-19.3.1.tgz", - "integrity": "sha512-h3goQE93UdXzZO7+ctz07gjnCjclUQqqfYRapZ4KAxb333i6LrdEa8NerZGx5QWJoGW9Biz+Fhh9+2emHKb7Fg==", + "version": "19.3.2", + "resolved": "https://registry.npmjs.org/igniteui-react-inputs/-/igniteui-react-inputs-19.3.2.tgz", + "integrity": "sha512-jEAY/BDzehiZ7ouZjyLvvekuUY9xj6g/JNCG02bLL71WfFkBItXv8kXbPwUX04cAyjrOfK8QY/v4tdCiguAZLg==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-react-core": "19.3.1" + "igniteui-react-core": "19.3.2" } }, "node_modules/igniteui-react-layouts": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/igniteui-react-layouts/-/igniteui-react-layouts-19.3.1.tgz", - "integrity": "sha512-j0hq6O38Xm9NegqlZ2JTgW+cmsLqfmW2tg4xASNWrTh9erfEdkNLILl83Bdg0XQjk9b1jnPVSrU2HbRDh40AsQ==", + "version": "19.3.2", + "resolved": "https://registry.npmjs.org/igniteui-react-layouts/-/igniteui-react-layouts-19.3.2.tgz", + "integrity": "sha512-O4mmN2tGNUvQ9aLuXs8vYVenWDbbPBzNq+ccRQgWRvZr0ZNsYJaK7fhChgZK982BjLwk5EVjo6mNYeEiQbDQow==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1" + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2" } }, "node_modules/igniteui-react-maps": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/igniteui-react-maps/-/igniteui-react-maps-19.3.1.tgz", - "integrity": "sha512-AIXYlCdweR162IS2+HflZ5dNhpxN/f2vTBZVTJawJ43KWVV+DJSdROgT0Nz9kA9hdnEFvbQvF7nAvEA4vKH+nA==", + "version": "19.3.2", + "resolved": "https://registry.npmjs.org/igniteui-react-maps/-/igniteui-react-maps-19.3.2.tgz", + "integrity": "sha512-uFUtf6bWH46nMBkf81nemvnHARorhPOgYWNKOJOCqTEOL4BFS3aBPfMtOe8fz+14vs15HD4Cj6PKIwSdcPlC4g==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1" + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2" } }, "node_modules/igniteui-react-spreadsheet": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/igniteui-react-spreadsheet/-/igniteui-react-spreadsheet-19.3.1.tgz", - "integrity": "sha512-OFGNC3RvMv4JOOWjZ3/4TvhEEFM6vRfQN4OHfeiUhTndKkDl/sSrH1ncylTpXbYb0xLdBO4mqpqjBdLod6D6NA==", + "version": "19.3.2", + "resolved": "https://registry.npmjs.org/igniteui-react-spreadsheet/-/igniteui-react-spreadsheet-19.3.2.tgz", + "integrity": "sha512-ptWLY7dRXFCmcHfAV5WRjpNapFiK8e0EXHJLeQ9B39d8w0HN4mDk4HQtAJso06eHkVrH4pCEz/NbNNp6g5RPqg==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1" + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2" } }, "node_modules/igniteui-react-spreadsheet-chart-adapter": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/igniteui-react-spreadsheet-chart-adapter/-/igniteui-react-spreadsheet-chart-adapter-19.3.1.tgz", - "integrity": "sha512-dsZlIqkEbWGg09i+dniKDjmhrEjY8axWeK4BBoJpyLaSF4AgJlN3jcM6e5XA6hLxD7DWSbv7avgt5Ns/dumS7g==", + "version": "19.3.2", + "resolved": "https://registry.npmjs.org/igniteui-react-spreadsheet-chart-adapter/-/igniteui-react-spreadsheet-chart-adapter-19.3.2.tgz", + "integrity": "sha512-bnQUyb94hIrQoSP1YBrQIGEomQbqHde4Qr43AyhZoKwN+pcHTOK2tNuUk1+640TAIjai0YSFazArxp8EyzGkVw==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", - "igniteui-react-spreadsheet": "19.3.1" + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", + "igniteui-react-spreadsheet": "19.3.2" } }, "node_modules/igniteui-theming": { diff --git a/browser/package.json b/browser/package.json index 0171ebd869..5c2c33f197 100644 --- a/browser/package.json +++ b/browser/package.json @@ -26,21 +26,21 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-grid-lite": "^0.0.1", "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-theming": "^24.0.2", - "igniteui-react-core": "19.3.1", - "igniteui-react-dashboards": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-dashboards": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-dockmanager": "^19.4.0", - "igniteui-react-excel": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-excel": "19.3.2", + "igniteui-react-gauges": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", - "igniteui-react-maps": "19.3.1", - "igniteui-react-spreadsheet": "19.3.1", - "igniteui-react-spreadsheet-chart-adapter": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", + "igniteui-react-maps": "19.3.2", + "igniteui-react-spreadsheet": "19.3.2", + "igniteui-react-spreadsheet-chart-adapter": "19.3.2", + "igniteui-theming": "^24.0.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "marked": "^16.4.1", diff --git a/browser/public/meta.json b/browser/public/meta.json index 0f3e9648e2..53f58987cb 100644 --- a/browser/public/meta.json +++ b/browser/public/meta.json @@ -1 +1 @@ -{"version":"23.2.915","date":"2025-12-09 11:38:38","note":"this file is auto-generated"} \ No newline at end of file +{"version":"23.2.915","date":"2026-02-02 17:54:15","note":"this file is auto-generated"} \ No newline at end of file diff --git a/browser/src/navigation/SamplesBrowser.json b/browser/src/navigation/SamplesBrowser.json index 0f3e9648e2..53f58987cb 100644 --- a/browser/src/navigation/SamplesBrowser.json +++ b/browser/src/navigation/SamplesBrowser.json @@ -1 +1 @@ -{"version":"23.2.915","date":"2025-12-09 11:38:38","note":"this file is auto-generated"} \ No newline at end of file +{"version":"23.2.915","date":"2026-02-02 17:54:15","note":"this file is auto-generated"} \ No newline at end of file diff --git a/browser/tasks/gulp-samples.js b/browser/tasks/gulp-samples.js index b7d7d93068..0ee3e9ec49 100644 --- a/browser/tasks/gulp-samples.js +++ b/browser/tasks/gulp-samples.js @@ -844,19 +844,19 @@ function updateIG(cb) { // { name: "igniteui-react-charts", version: "16.16.2" }, // npm let packageUpgrades = [ // these IG packages are often updated: - { version: "19.3.1", name: "igniteui-react-core" }, - { version: "19.3.1", name: "igniteui-react-charts" }, - { version: "19.3.1", name: "igniteui-react-excel" }, - { version: "19.3.1", name: "igniteui-react-gauges" }, - { version: "19.3.1", name: "igniteui-react-data-grids" }, + { version: "19.3.2", name: "igniteui-react-core" }, + { version: "19.3.2", name: "igniteui-react-charts" }, + { version: "19.3.2", name: "igniteui-react-excel" }, + { version: "19.3.2", name: "igniteui-react-gauges" }, + { version: "19.3.2", name: "igniteui-react-data-grids" }, { version: "^19.5.0-beta.0", name: "igniteui-react-grids" }, - { version: "19.3.1", name: "igniteui-react-inputs" }, - { version: "19.3.1", name: "igniteui-react-layouts" }, - { version: "19.3.1", name: "igniteui-react-maps" }, - { version: "19.3.1", name: "igniteui-react-spreadsheet-chart-adapter" }, - { version: "19.3.1", name: "igniteui-react-spreadsheet" }, - { version: "19.3.1", name: "igniteui-react-datasources" }, - { version: "19.3.1", name: "igniteui-react-dashboards" }, + { version: "19.3.2", name: "igniteui-react-inputs" }, + { version: "19.3.2", name: "igniteui-react-layouts" }, + { version: "19.3.2", name: "igniteui-react-maps" }, + { version: "19.3.2", name: "igniteui-react-spreadsheet-chart-adapter" }, + { version: "19.3.2", name: "igniteui-react-spreadsheet" }, + { version: "19.3.2", name: "igniteui-react-datasources" }, + { version: "19.3.2", name: "igniteui-react-dashboards" }, { version: "^19.4.0", name: "igniteui-react" }, // these IG packages are sometimes updated: { version: "^6.3.0", name: "igniteui-webcomponents" }, diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/annotations/package.json b/samples/charts/category-chart/annotations/package.json index 3dd14e9e2e..7f9d30fdb0 100644 --- a/samples/charts/category-chart/annotations/package.json +++ b/samples/charts/category-chart/annotations/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/category-chart/area-chart-multiple-sources/package.json b/samples/charts/category-chart/area-chart-multiple-sources/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/area-chart-single-source/package.json b/samples/charts/category-chart/area-chart-single-source/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/column-chart-multiple-sources/package.json b/samples/charts/category-chart/column-chart-multiple-sources/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/column-chart-single-source/package.json b/samples/charts/category-chart/column-chart-single-source/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/column-chart-with-highlighting/package.json b/samples/charts/category-chart/column-chart-with-highlighting/package.json index 8a3e6e7286..86f8397210 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/package.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/custom-selection/package.json b/samples/charts/category-chart/custom-selection/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/custom-selection/package.json +++ b/samples/charts/category-chart/custom-selection/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/data-filter/package.json b/samples/charts/category-chart/data-filter/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/data-filter/package.json +++ b/samples/charts/category-chart/data-filter/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/package.json b/samples/charts/category-chart/data-legend-formatting-decimals/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/format-specifiers/package.json b/samples/charts/category-chart/format-specifiers/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/format-specifiers/package.json +++ b/samples/charts/category-chart/format-specifiers/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/high-frequency/package.json b/samples/charts/category-chart/high-frequency/package.json index ac4bd70424..80969fcc0e 100644 --- a/samples/charts/category-chart/high-frequency/package.json +++ b/samples/charts/category-chart/high-frequency/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/category-chart/high-volume/package.json b/samples/charts/category-chart/high-volume/package.json index db979cf88c..261b2d6b22 100644 --- a/samples/charts/category-chart/high-volume/package.json +++ b/samples/charts/category-chart/high-volume/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/highlighting-behavior/package.json +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/highlighting-mode/package.json +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/highlighting/package.json b/samples/charts/category-chart/highlighting/package.json index 8a3e6e7286..86f8397210 100644 --- a/samples/charts/category-chart/highlighting/package.json +++ b/samples/charts/category-chart/highlighting/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/category-chart/legend-highlighting/package.json b/samples/charts/category-chart/legend-highlighting/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/legend-highlighting/package.json +++ b/samples/charts/category-chart/legend-highlighting/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/line-chart-multiple-sources/package.json b/samples/charts/category-chart/line-chart-multiple-sources/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/line-chart-single-source/package.json b/samples/charts/category-chart/line-chart-single-source/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/line-chart-with-animations/package.json b/samples/charts/category-chart/line-chart-with-animations/package.json index 0fefe4949d..d183bf0768 100644 --- a/samples/charts/category-chart/line-chart-with-animations/package.json +++ b/samples/charts/category-chart/line-chart-with-animations/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/category-chart/line-chart-with-annotations/package.json b/samples/charts/category-chart/line-chart-with-annotations/package.json index 0fefe4949d..d183bf0768 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/package.json +++ b/samples/charts/category-chart/line-chart-with-annotations/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/marker-templates/package.json b/samples/charts/category-chart/marker-templates/package.json index a438c2c97e..ea9766553b 100644 --- a/samples/charts/category-chart/marker-templates/package.json +++ b/samples/charts/category-chart/marker-templates/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/point-chart-multiple-sources/package.json b/samples/charts/category-chart/point-chart-multiple-sources/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/point-chart-single-source/package.json b/samples/charts/category-chart/point-chart-single-source/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/selection-matcher/package.json b/samples/charts/category-chart/selection-matcher/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/selection-matcher/package.json +++ b/samples/charts/category-chart/selection-matcher/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/selection-modes/package.json b/samples/charts/category-chart/selection-modes/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/selection-modes/package.json +++ b/samples/charts/category-chart/selection-modes/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/selection-multiple-modes/package.json b/samples/charts/category-chart/selection-multiple-modes/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/selection-multiple-modes/package.json +++ b/samples/charts/category-chart/selection-multiple-modes/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/spline-area-multiple-sources/package.json b/samples/charts/category-chart/spline-area-multiple-sources/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/spline-area-single-source/package.json b/samples/charts/category-chart/spline-area-single-source/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/stack-columns/package.json b/samples/charts/category-chart/stack-columns/package.json index ace768131f..87c771f323 100644 --- a/samples/charts/category-chart/stack-columns/package.json +++ b/samples/charts/category-chart/stack-columns/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/category-chart/step-area-multiple-sources/package.json b/samples/charts/category-chart/step-area-multiple-sources/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/step-area-single-source/package.json b/samples/charts/category-chart/step-area-single-source/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/step-line-multiple-sources/package.json b/samples/charts/category-chart/step-line-multiple-sources/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/step-line-single-source/package.json b/samples/charts/category-chart/step-line-single-source/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/tooltip-template/package.json b/samples/charts/category-chart/tooltip-template/package.json index 9a5ce1155d..3318a4e6e3 100644 --- a/samples/charts/category-chart/tooltip-template/package.json +++ b/samples/charts/category-chart/tooltip-template/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/category-chart/tooltip-types/package.json b/samples/charts/category-chart/tooltip-types/package.json index 6f5f12d1c1..9b6ab1340a 100644 --- a/samples/charts/category-chart/tooltip-types/package.json +++ b/samples/charts/category-chart/tooltip-types/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/category-chart/trendline/package.json b/samples/charts/category-chart/trendline/package.json index 0d33b324ad..ef4ebd58c7 100644 --- a/samples/charts/category-chart/trendline/package.json +++ b/samples/charts/category-chart/trendline/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/dashboard-tile/chart-dashboard/package.json b/samples/charts/dashboard-tile/chart-dashboard/package.json index 7a58ec3f8a..2a8b2422d4 100644 --- a/samples/charts/dashboard-tile/chart-dashboard/package.json +++ b/samples/charts/dashboard-tile/chart-dashboard/package.json @@ -15,15 +15,15 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-dashboards": "19.3.1", - "igniteui-react-datasources": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-dashboards": "19.3.2", + "igniteui-react-datasources": "19.3.2", + "igniteui-react-gauges": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", + "igniteui-react-maps": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/dashboard-tile/financial-dashboard/package.json b/samples/charts/dashboard-tile/financial-dashboard/package.json index 3219191ab4..a66198854b 100644 --- a/samples/charts/dashboard-tile/financial-dashboard/package.json +++ b/samples/charts/dashboard-tile/financial-dashboard/package.json @@ -15,15 +15,15 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-dashboards": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-datasources": "19.3.1", - "igniteui-react-gauges": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-dashboards": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-datasources": "19.3.2", + "igniteui-react-gauges": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", + "igniteui-react-maps": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/dashboard-tile/gauge-dashboard/package.json b/samples/charts/dashboard-tile/gauge-dashboard/package.json index 3219191ab4..a66198854b 100644 --- a/samples/charts/dashboard-tile/gauge-dashboard/package.json +++ b/samples/charts/dashboard-tile/gauge-dashboard/package.json @@ -15,15 +15,15 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-dashboards": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-datasources": "19.3.1", - "igniteui-react-gauges": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-dashboards": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-datasources": "19.3.2", + "igniteui-react-gauges": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", + "igniteui-react-maps": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/dashboard-tile/local-data-source-dashboard/package.json b/samples/charts/dashboard-tile/local-data-source-dashboard/package.json index 3219191ab4..a66198854b 100644 --- a/samples/charts/dashboard-tile/local-data-source-dashboard/package.json +++ b/samples/charts/dashboard-tile/local-data-source-dashboard/package.json @@ -15,15 +15,15 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-dashboards": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-datasources": "19.3.1", - "igniteui-react-gauges": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-dashboards": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-datasources": "19.3.2", + "igniteui-react-gauges": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", + "igniteui-react-maps": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/dashboard-tile/map-dashboard/package.json b/samples/charts/dashboard-tile/map-dashboard/package.json index 3219191ab4..a66198854b 100644 --- a/samples/charts/dashboard-tile/map-dashboard/package.json +++ b/samples/charts/dashboard-tile/map-dashboard/package.json @@ -15,15 +15,15 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-dashboards": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-datasources": "19.3.1", - "igniteui-react-gauges": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-dashboards": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-datasources": "19.3.2", + "igniteui-react-gauges": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", + "igniteui-react-maps": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/dashboard-tile/pie-dashboard/package.json b/samples/charts/dashboard-tile/pie-dashboard/package.json index 3219191ab4..a66198854b 100644 --- a/samples/charts/dashboard-tile/pie-dashboard/package.json +++ b/samples/charts/dashboard-tile/pie-dashboard/package.json @@ -15,15 +15,15 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-dashboards": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-datasources": "19.3.1", - "igniteui-react-gauges": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-dashboards": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-datasources": "19.3.2", + "igniteui-react-gauges": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", + "igniteui-react-maps": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/package.json b/samples/charts/data-chart/axis-annotations-corner-radius/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/axis-annotations/package.json b/samples/charts/data-chart/axis-annotations/package.json index ace634e52e..fd40c14030 100644 --- a/samples/charts/data-chart/axis-annotations/package.json +++ b/samples/charts/data-chart/axis-annotations/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/axis-crossing/package.json b/samples/charts/data-chart/axis-crossing/package.json index 7fb34136bf..c176edca3c 100644 --- a/samples/charts/data-chart/axis-crossing/package.json +++ b/samples/charts/data-chart/axis-crossing/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/axis-locations/package.json b/samples/charts/data-chart/axis-locations/package.json index 03e1eff287..89cbd099f6 100644 --- a/samples/charts/data-chart/axis-locations/package.json +++ b/samples/charts/data-chart/axis-locations/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/axis-min-max-gap/package.json b/samples/charts/data-chart/axis-min-max-gap/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/axis-settings/package.json b/samples/charts/data-chart/axis-settings/package.json index fd24e336fe..548fb3fe18 100644 --- a/samples/charts/data-chart/axis-settings/package.json +++ b/samples/charts/data-chart/axis-settings/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/axis-sharing/package.json b/samples/charts/data-chart/axis-sharing/package.json index 7fb34136bf..c176edca3c 100644 --- a/samples/charts/data-chart/axis-sharing/package.json +++ b/samples/charts/data-chart/axis-sharing/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/axis-types/package.json b/samples/charts/data-chart/axis-types/package.json index fe450f1d8b..2d8b3e839e 100644 --- a/samples/charts/data-chart/axis-types/package.json +++ b/samples/charts/data-chart/axis-types/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/package.json b/samples/charts/data-chart/bar-chart-multiple-sources/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/bar-chart-single-source/package.json b/samples/charts/data-chart/bar-chart-single-source/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/chart-navigation/package.json b/samples/charts/data-chart/chart-navigation/package.json index b5b76230a4..c2d699e0da 100644 --- a/samples/charts/data-chart/chart-navigation/package.json +++ b/samples/charts/data-chart/chart-navigation/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/chart-overview/package.json b/samples/charts/data-chart/chart-overview/package.json index 512d9c1e81..9ed37854b2 100644 --- a/samples/charts/data-chart/chart-overview/package.json +++ b/samples/charts/data-chart/chart-overview/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/chart-performance/package.json b/samples/charts/data-chart/chart-performance/package.json index 332c9a2b46..9d9b154e49 100644 --- a/samples/charts/data-chart/chart-performance/package.json +++ b/samples/charts/data-chart/chart-performance/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/chart-synchronization/package.json b/samples/charts/data-chart/chart-synchronization/package.json index 40d365e29f..9248df6e7c 100644 --- a/samples/charts/data-chart/chart-synchronization/package.json +++ b/samples/charts/data-chart/chart-synchronization/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/chart-titles/package.json b/samples/charts/data-chart/chart-titles/package.json index 1933266c38..98217a7336 100644 --- a/samples/charts/data-chart/chart-titles/package.json +++ b/samples/charts/data-chart/chart-titles/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/composite-chart/package.json b/samples/charts/data-chart/composite-chart/package.json index 512d9c1e81..9ed37854b2 100644 --- a/samples/charts/data-chart/composite-chart/package.json +++ b/samples/charts/data-chart/composite-chart/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/crosshair-layer-styling/package.json b/samples/charts/data-chart/crosshair-layer-styling/package.json index 64f348cc55..9e050faacc 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/package.json +++ b/samples/charts/data-chart/crosshair-layer-styling/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/custom-drawing-annotations/package.json b/samples/charts/data-chart/custom-drawing-annotations/package.json index 7c6fa46b02..5f9c027518 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/package.json +++ b/samples/charts/data-chart/custom-drawing-annotations/package.json @@ -13,10 +13,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/custom-editing-data/package.json b/samples/charts/data-chart/custom-editing-data/package.json index 0572a4b6bd..e748d8e71b 100644 --- a/samples/charts/data-chart/custom-editing-data/package.json +++ b/samples/charts/data-chart/custom-editing-data/package.json @@ -13,8 +13,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/dash-array-axes/package.json b/samples/charts/data-chart/dash-array-axes/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/dash-array-axes/package.json +++ b/samples/charts/data-chart/dash-array-axes/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/dash-array-series/package.json b/samples/charts/data-chart/dash-array-series/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/dash-array-series/package.json +++ b/samples/charts/data-chart/dash-array-series/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/dash-array-tickmarks/package.json b/samples/charts/data-chart/dash-array-tickmarks/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/package.json +++ b/samples/charts/data-chart/dash-array-tickmarks/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/dash-array-trendline/package.json b/samples/charts/data-chart/dash-array-trendline/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/dash-array-trendline/package.json +++ b/samples/charts/data-chart/dash-array-trendline/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/data-annotation-band-layer/package.json b/samples/charts/data-chart/data-annotation-band-layer/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/data-annotation-band-layer/package.json +++ b/samples/charts/data-chart/data-annotation-band-layer/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/data-annotation-line-layer/package.json b/samples/charts/data-chart/data-annotation-line-layer/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/data-annotation-line-layer/package.json +++ b/samples/charts/data-chart/data-annotation-line-layer/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json b/samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/data-annotation-rect-layer/package.json b/samples/charts/data-chart/data-annotation-rect-layer/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/data-annotation-rect-layer/package.json +++ b/samples/charts/data-chart/data-annotation-rect-layer/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/data-annotation-slice-layer/package.json b/samples/charts/data-chart/data-annotation-slice-layer/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/data-annotation-slice-layer/package.json +++ b/samples/charts/data-chart/data-annotation-slice-layer/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/data-annotation-strip-layer/package.json b/samples/charts/data-chart/data-annotation-strip-layer/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/data-annotation-strip-layer/package.json +++ b/samples/charts/data-chart/data-annotation-strip-layer/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/data-legend-grouping/package.json b/samples/charts/data-chart/data-legend-grouping/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/data-legend-grouping/package.json +++ b/samples/charts/data-chart/data-legend-grouping/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/data-legend-styling/package.json b/samples/charts/data-chart/data-legend-styling/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/data-legend-styling/package.json +++ b/samples/charts/data-chart/data-legend-styling/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/data-tooltip-grouping/package.json b/samples/charts/data-chart/data-tooltip-grouping/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/data-tooltip-styling/package.json b/samples/charts/data-chart/data-tooltip-styling/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/data-chart/data-tooltip-styling/package.json +++ b/samples/charts/data-chart/data-tooltip-styling/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/final-value-layer-styling/package.json b/samples/charts/data-chart/final-value-layer-styling/package.json index a5b92c630a..bca1320dd9 100644 --- a/samples/charts/data-chart/final-value-layer-styling/package.json +++ b/samples/charts/data-chart/final-value-layer-styling/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/format-specifiers/package.json b/samples/charts/data-chart/format-specifiers/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/format-specifiers/package.json +++ b/samples/charts/data-chart/format-specifiers/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/itemized-bar-chart/package.json b/samples/charts/data-chart/itemized-bar-chart/package.json index f8d54b477a..bb68d0047e 100644 --- a/samples/charts/data-chart/itemized-bar-chart/package.json +++ b/samples/charts/data-chart/itemized-bar-chart/package.json @@ -14,8 +14,8 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/itemized-column-chart/package.json b/samples/charts/data-chart/itemized-column-chart/package.json index f8d54b477a..bb68d0047e 100644 --- a/samples/charts/data-chart/itemized-column-chart/package.json +++ b/samples/charts/data-chart/itemized-column-chart/package.json @@ -14,8 +14,8 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/itemized-stacked-bar-chart/package.json b/samples/charts/data-chart/itemized-stacked-bar-chart/package.json index f8d54b477a..bb68d0047e 100644 --- a/samples/charts/data-chart/itemized-stacked-bar-chart/package.json +++ b/samples/charts/data-chart/itemized-stacked-bar-chart/package.json @@ -14,8 +14,8 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/itemized-stacked-column-chart/package.json b/samples/charts/data-chart/itemized-stacked-column-chart/package.json index f8d54b477a..bb68d0047e 100644 --- a/samples/charts/data-chart/itemized-stacked-column-chart/package.json +++ b/samples/charts/data-chart/itemized-stacked-column-chart/package.json @@ -14,8 +14,8 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/legends/package.json b/samples/charts/data-chart/legends/package.json index 25ae7e8481..52aa3b3081 100644 --- a/samples/charts/data-chart/legends/package.json +++ b/samples/charts/data-chart/legends/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/polar-area-chart-styling/package.json b/samples/charts/data-chart/polar-area-chart-styling/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/package.json +++ b/samples/charts/data-chart/polar-area-chart-styling/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/polar-area-chart/package.json b/samples/charts/data-chart/polar-area-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/polar-area-chart/package.json +++ b/samples/charts/data-chart/polar-area-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/polar-chart-types/package.json b/samples/charts/data-chart/polar-chart-types/package.json index 69b27e6bee..7768fcf9a7 100644 --- a/samples/charts/data-chart/polar-chart-types/package.json +++ b/samples/charts/data-chart/polar-chart-types/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/polar-line-chart/package.json b/samples/charts/data-chart/polar-line-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/polar-line-chart/package.json +++ b/samples/charts/data-chart/polar-line-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/polar-scatter-chart/package.json b/samples/charts/data-chart/polar-scatter-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/polar-scatter-chart/package.json +++ b/samples/charts/data-chart/polar-scatter-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/polar-spline-area-chart/package.json b/samples/charts/data-chart/polar-spline-area-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/package.json +++ b/samples/charts/data-chart/polar-spline-area-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/polar-spline-chart/package.json b/samples/charts/data-chart/polar-spline-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/polar-spline-chart/package.json +++ b/samples/charts/data-chart/polar-spline-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/radial-area-chart-styling/package.json b/samples/charts/data-chart/radial-area-chart-styling/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/package.json +++ b/samples/charts/data-chart/radial-area-chart-styling/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/radial-area-chart/package.json b/samples/charts/data-chart/radial-area-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/radial-area-chart/package.json +++ b/samples/charts/data-chart/radial-area-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/radial-chart-types/package.json b/samples/charts/data-chart/radial-chart-types/package.json index ed1956999a..5f5a914e9a 100644 --- a/samples/charts/data-chart/radial-chart-types/package.json +++ b/samples/charts/data-chart/radial-chart-types/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/radial-column-chart-selection/package.json b/samples/charts/data-chart/radial-column-chart-selection/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/radial-column-chart-selection/package.json +++ b/samples/charts/data-chart/radial-column-chart-selection/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/radial-column-chart/package.json b/samples/charts/data-chart/radial-column-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/radial-column-chart/package.json +++ b/samples/charts/data-chart/radial-column-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/radial-label-mode/package.json b/samples/charts/data-chart/radial-label-mode/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/data-chart/radial-label-mode/package.json +++ b/samples/charts/data-chart/radial-label-mode/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/radial-line-chart/package.json b/samples/charts/data-chart/radial-line-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/radial-line-chart/package.json +++ b/samples/charts/data-chart/radial-line-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/radial-pie-chart/package.json b/samples/charts/data-chart/radial-pie-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/radial-pie-chart/package.json +++ b/samples/charts/data-chart/radial-pie-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/range-area-chart/package.json b/samples/charts/data-chart/range-area-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/range-area-chart/package.json +++ b/samples/charts/data-chart/range-area-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/range-column-chart/package.json b/samples/charts/data-chart/range-column-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/range-column-chart/package.json +++ b/samples/charts/data-chart/range-column-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/scatter-line-chart/package.json b/samples/charts/data-chart/scatter-line-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/scatter-line-chart/package.json +++ b/samples/charts/data-chart/scatter-line-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/scatter-line-threshold/package.json b/samples/charts/data-chart/scatter-line-threshold/package.json index f8d54b477a..bb68d0047e 100644 --- a/samples/charts/data-chart/scatter-line-threshold/package.json +++ b/samples/charts/data-chart/scatter-line-threshold/package.json @@ -14,8 +14,8 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/scatter-point-chart/package.json b/samples/charts/data-chart/scatter-point-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/scatter-point-chart/package.json +++ b/samples/charts/data-chart/scatter-point-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/scatter-spline-chart/package.json b/samples/charts/data-chart/scatter-spline-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/scatter-spline-chart/package.json +++ b/samples/charts/data-chart/scatter-spline-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/selection-matcher/package.json b/samples/charts/data-chart/selection-matcher/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/selection-matcher/package.json +++ b/samples/charts/data-chart/selection-matcher/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/series-annotations/package.json b/samples/charts/data-chart/series-annotations/package.json index a0a5df8185..f0cb6cc030 100644 --- a/samples/charts/data-chart/series-annotations/package.json +++ b/samples/charts/data-chart/series-annotations/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/series-highlighting/package.json b/samples/charts/data-chart/series-highlighting/package.json index c556864e20..53e6051289 100644 --- a/samples/charts/data-chart/series-highlighting/package.json +++ b/samples/charts/data-chart/series-highlighting/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/series-marker-template/package.json b/samples/charts/data-chart/series-marker-template/package.json index 853c2c8a67..2bb08fc34f 100644 --- a/samples/charts/data-chart/series-marker-template/package.json +++ b/samples/charts/data-chart/series-marker-template/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/series-markers/package.json b/samples/charts/data-chart/series-markers/package.json index 55c69cd4bf..5121a0702d 100644 --- a/samples/charts/data-chart/series-markers/package.json +++ b/samples/charts/data-chart/series-markers/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/series-tooltips/package.json b/samples/charts/data-chart/series-tooltips/package.json index ba46585c32..61207577bd 100644 --- a/samples/charts/data-chart/series-tooltips/package.json +++ b/samples/charts/data-chart/series-tooltips/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/series-trendlines/package.json b/samples/charts/data-chart/series-trendlines/package.json index bc431630ab..d5e9fc1c6e 100644 --- a/samples/charts/data-chart/series-trendlines/package.json +++ b/samples/charts/data-chart/series-trendlines/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/series-value-overlay/package.json b/samples/charts/data-chart/series-value-overlay/package.json index c97745cd50..d34748fb02 100644 --- a/samples/charts/data-chart/series-value-overlay/package.json +++ b/samples/charts/data-chart/series-value-overlay/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/stacked-100-area-chart/package.json b/samples/charts/data-chart/stacked-100-area-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-area-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-100-bar-chart/package.json b/samples/charts/data-chart/stacked-100-bar-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-100-column-chart/package.json b/samples/charts/data-chart/stacked-100-column-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/package.json +++ b/samples/charts/data-chart/stacked-100-column-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-100-line-chart/package.json b/samples/charts/data-chart/stacked-100-line-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/package.json +++ b/samples/charts/data-chart/stacked-100-line-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-100-spline-chart/package.json b/samples/charts/data-chart/stacked-100-spline-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-area-chart/package.json b/samples/charts/data-chart/stacked-area-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/stacked-area-chart/package.json +++ b/samples/charts/data-chart/stacked-area-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-bar-chart/package.json b/samples/charts/data-chart/stacked-bar-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/stacked-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-bar-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-chart-types/package.json b/samples/charts/data-chart/stacked-chart-types/package.json index df3ff32a0b..bc59d3259d 100644 --- a/samples/charts/data-chart/stacked-chart-types/package.json +++ b/samples/charts/data-chart/stacked-chart-types/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/stacked-column-chart/package.json b/samples/charts/data-chart/stacked-column-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/stacked-column-chart/package.json +++ b/samples/charts/data-chart/stacked-column-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-line-chart/package.json b/samples/charts/data-chart/stacked-line-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/stacked-line-chart/package.json +++ b/samples/charts/data-chart/stacked-line-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-spline-area-chart/package.json b/samples/charts/data-chart/stacked-spline-area-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-spline-chart/package.json b/samples/charts/data-chart/stacked-spline-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/stacked-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/tooltip-template/package.json b/samples/charts/data-chart/tooltip-template/package.json index c71ff5e6f3..7fc37f0f27 100644 --- a/samples/charts/data-chart/tooltip-template/package.json +++ b/samples/charts/data-chart/tooltip-template/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/trendline-layer/package.json b/samples/charts/data-chart/trendline-layer/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/trendline-layer/package.json +++ b/samples/charts/data-chart/trendline-layer/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/type-financial-candlestick-series/package.json b/samples/charts/data-chart/type-financial-candlestick-series/package.json index 5678f8482d..a681aae72f 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/package.json +++ b/samples/charts/data-chart/type-financial-candlestick-series/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/type-financial-indicators-column/package.json b/samples/charts/data-chart/type-financial-indicators-column/package.json index cec9e00965..0e5ec9b4b0 100644 --- a/samples/charts/data-chart/type-financial-indicators-column/package.json +++ b/samples/charts/data-chart/type-financial-indicators-column/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/type-financial-indicators-line/package.json b/samples/charts/data-chart/type-financial-indicators-line/package.json index 18d4170379..410d66a90e 100644 --- a/samples/charts/data-chart/type-financial-indicators-line/package.json +++ b/samples/charts/data-chart/type-financial-indicators-line/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/type-financial-ohlc-series/package.json b/samples/charts/data-chart/type-financial-ohlc-series/package.json index 5155767a5c..ae7ea5b7a6 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/package.json +++ b/samples/charts/data-chart/type-financial-ohlc-series/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/type-financial-overlays/package.json b/samples/charts/data-chart/type-financial-overlays/package.json index 116544bbbd..94c96accdd 100644 --- a/samples/charts/data-chart/type-financial-overlays/package.json +++ b/samples/charts/data-chart/type-financial-overlays/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/type-financial-series/package.json b/samples/charts/data-chart/type-financial-series/package.json index 98db9ce8e7..b8801a2181 100644 --- a/samples/charts/data-chart/type-financial-series/package.json +++ b/samples/charts/data-chart/type-financial-series/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/type-range-area-series/package.json b/samples/charts/data-chart/type-range-area-series/package.json index f8f83fe69a..505f71e4e5 100644 --- a/samples/charts/data-chart/type-range-area-series/package.json +++ b/samples/charts/data-chart/type-range-area-series/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/type-range-column-series/package.json b/samples/charts/data-chart/type-range-column-series/package.json index 12071c1878..a68dee1b13 100644 --- a/samples/charts/data-chart/type-range-column-series/package.json +++ b/samples/charts/data-chart/type-range-column-series/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/type-range-series/package.json b/samples/charts/data-chart/type-range-series/package.json index 8ca7506e07..27764896a0 100644 --- a/samples/charts/data-chart/type-range-series/package.json +++ b/samples/charts/data-chart/type-range-series/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/type-scatter-area-series/package.json b/samples/charts/data-chart/type-scatter-area-series/package.json index 5a494b0102..fe9edb4b73 100644 --- a/samples/charts/data-chart/type-scatter-area-series/package.json +++ b/samples/charts/data-chart/type-scatter-area-series/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/type-scatter-bubble-series/package.json b/samples/charts/data-chart/type-scatter-bubble-series/package.json index a78f44b24d..1e62f690d1 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/package.json +++ b/samples/charts/data-chart/type-scatter-bubble-series/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/type-scatter-contour-series/package.json b/samples/charts/data-chart/type-scatter-contour-series/package.json index 5be3d1fba5..1762385cec 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/package.json +++ b/samples/charts/data-chart/type-scatter-contour-series/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/type-scatter-hd-series/package.json b/samples/charts/data-chart/type-scatter-hd-series/package.json index 4af37764c4..e1f75b1b19 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/package.json +++ b/samples/charts/data-chart/type-scatter-hd-series/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/type-scatter-polygon-series/package.json b/samples/charts/data-chart/type-scatter-polygon-series/package.json index 0830bc32ed..43599c983f 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/package.json +++ b/samples/charts/data-chart/type-scatter-polygon-series/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/type-scatter-polyline-series/package.json b/samples/charts/data-chart/type-scatter-polyline-series/package.json index d68e1e6d96..5b81d6aa7c 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/package.json +++ b/samples/charts/data-chart/type-scatter-polyline-series/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/type-scatter-series/package.json b/samples/charts/data-chart/type-scatter-series/package.json index a961be6613..8bf4bb8a85 100644 --- a/samples/charts/data-chart/type-scatter-series/package.json +++ b/samples/charts/data-chart/type-scatter-series/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/type-shape-series/package.json b/samples/charts/data-chart/type-shape-series/package.json index 3de40aab1f..d2d4254058 100644 --- a/samples/charts/data-chart/type-shape-series/package.json +++ b/samples/charts/data-chart/type-shape-series/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/user-annotation-layer/package.json b/samples/charts/data-chart/user-annotation-layer/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/data-chart/user-annotation-layer/package.json +++ b/samples/charts/data-chart/user-annotation-layer/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/waterfall-chart/package.json b/samples/charts/data-chart/waterfall-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/waterfall-chart/package.json +++ b/samples/charts/data-chart/waterfall-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-pie-chart/animation-replay/package.json b/samples/charts/data-pie-chart/animation-replay/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/data-pie-chart/animation-replay/package.json +++ b/samples/charts/data-pie-chart/animation-replay/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-pie-chart/animation/package.json b/samples/charts/data-pie-chart/animation/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/data-pie-chart/animation/package.json +++ b/samples/charts/data-pie-chart/animation/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-pie-chart/highlight-filter/package.json b/samples/charts/data-pie-chart/highlight-filter/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-pie-chart/highlight-filter/package.json +++ b/samples/charts/data-pie-chart/highlight-filter/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-pie-chart/highlighting/package.json b/samples/charts/data-pie-chart/highlighting/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/data-pie-chart/highlighting/package.json +++ b/samples/charts/data-pie-chart/highlighting/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-pie-chart/legend/package.json b/samples/charts/data-pie-chart/legend/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/data-pie-chart/legend/package.json +++ b/samples/charts/data-pie-chart/legend/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-pie-chart/others/package.json b/samples/charts/data-pie-chart/others/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/data-pie-chart/others/package.json +++ b/samples/charts/data-pie-chart/others/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-pie-chart/overview/package.json b/samples/charts/data-pie-chart/overview/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-pie-chart/overview/package.json +++ b/samples/charts/data-pie-chart/overview/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-pie-chart/selection/package.json b/samples/charts/data-pie-chart/selection/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/data-pie-chart/selection/package.json +++ b/samples/charts/data-pie-chart/selection/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/doughnut-chart/animation/package.json b/samples/charts/doughnut-chart/animation/package.json index 04e503042e..d316c93734 100644 --- a/samples/charts/doughnut-chart/animation/package.json +++ b/samples/charts/doughnut-chart/animation/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/doughnut-chart/explosion/package.json b/samples/charts/doughnut-chart/explosion/package.json index 646b0d64ee..79774f5bab 100644 --- a/samples/charts/doughnut-chart/explosion/package.json +++ b/samples/charts/doughnut-chart/explosion/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/doughnut-chart/legend/package.json b/samples/charts/doughnut-chart/legend/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/doughnut-chart/legend/package.json +++ b/samples/charts/doughnut-chart/legend/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/doughnut-chart/overview/package.json b/samples/charts/doughnut-chart/overview/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/doughnut-chart/overview/package.json +++ b/samples/charts/doughnut-chart/overview/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/doughnut-chart/rings/package.json b/samples/charts/doughnut-chart/rings/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/doughnut-chart/rings/package.json +++ b/samples/charts/doughnut-chart/rings/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/doughnut-chart/selection/package.json b/samples/charts/doughnut-chart/selection/package.json index c777207a67..940e5b893c 100644 --- a/samples/charts/doughnut-chart/selection/package.json +++ b/samples/charts/doughnut-chart/selection/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/financial-chart/annotations/package.json b/samples/charts/financial-chart/annotations/package.json index 2227cfcf57..56e597cb4e 100644 --- a/samples/charts/financial-chart/annotations/package.json +++ b/samples/charts/financial-chart/annotations/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/financial-chart/axis-types/package.json b/samples/charts/financial-chart/axis-types/package.json index 75d1426c32..2cb5681a05 100644 --- a/samples/charts/financial-chart/axis-types/package.json +++ b/samples/charts/financial-chart/axis-types/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/package.json b/samples/charts/financial-chart/data-legend-formatting-currency/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/financial-chart/data-legend-styling-props/package.json b/samples/charts/financial-chart/data-legend-styling-props/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/package.json +++ b/samples/charts/financial-chart/data-legend-styling-props/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/financial-chart/data-legend/package.json b/samples/charts/financial-chart/data-legend/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/financial-chart/data-legend/package.json +++ b/samples/charts/financial-chart/data-legend/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/package.json b/samples/charts/financial-chart/data-tooltip-styling-props/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/package.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/financial-chart/data-tooltip/package.json b/samples/charts/financial-chart/data-tooltip/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/financial-chart/data-tooltip/package.json +++ b/samples/charts/financial-chart/data-tooltip/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/financial-chart/format-specifiers/package.json b/samples/charts/financial-chart/format-specifiers/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/financial-chart/format-specifiers/package.json +++ b/samples/charts/financial-chart/format-specifiers/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/financial-chart/high-frequency/package.json b/samples/charts/financial-chart/high-frequency/package.json index 3568461b2a..63970a5b2c 100644 --- a/samples/charts/financial-chart/high-frequency/package.json +++ b/samples/charts/financial-chart/high-frequency/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/financial-chart/high-volume/package.json b/samples/charts/financial-chart/high-volume/package.json index 5b71981b04..f9e6af4851 100644 --- a/samples/charts/financial-chart/high-volume/package.json +++ b/samples/charts/financial-chart/high-volume/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/financial-chart/indicator-customization/package.json b/samples/charts/financial-chart/indicator-customization/package.json index 61cc947a91..a307b43ae9 100644 --- a/samples/charts/financial-chart/indicator-customization/package.json +++ b/samples/charts/financial-chart/indicator-customization/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/financial-chart/indicator-types/package.json b/samples/charts/financial-chart/indicator-types/package.json index 66c84d2307..9024591c2b 100644 --- a/samples/charts/financial-chart/indicator-types/package.json +++ b/samples/charts/financial-chart/indicator-types/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/financial-chart/multiple-data/package.json b/samples/charts/financial-chart/multiple-data/package.json index 00e3b17edf..7f9a97edab 100644 --- a/samples/charts/financial-chart/multiple-data/package.json +++ b/samples/charts/financial-chart/multiple-data/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/financial-chart/overview/package.json b/samples/charts/financial-chart/overview/package.json index 9c845bb9f7..3a525abdb0 100644 --- a/samples/charts/financial-chart/overview/package.json +++ b/samples/charts/financial-chart/overview/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/financial-chart/panes/package.json b/samples/charts/financial-chart/panes/package.json index c0d34c53bd..c5c97255d1 100644 --- a/samples/charts/financial-chart/panes/package.json +++ b/samples/charts/financial-chart/panes/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/financial-chart/performance/package.json b/samples/charts/financial-chart/performance/package.json index 380bf9c780..3705bc6119 100644 --- a/samples/charts/financial-chart/performance/package.json +++ b/samples/charts/financial-chart/performance/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/financial-chart/scrollbars/package.json b/samples/charts/financial-chart/scrollbars/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/financial-chart/stock-index-chart/package.json b/samples/charts/financial-chart/stock-index-chart/package.json index da460da17b..36b8832638 100644 --- a/samples/charts/financial-chart/stock-index-chart/package.json +++ b/samples/charts/financial-chart/stock-index-chart/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/financial-chart/styling/package.json b/samples/charts/financial-chart/styling/package.json index 90cb84694c..e3c91dda2a 100644 --- a/samples/charts/financial-chart/styling/package.json +++ b/samples/charts/financial-chart/styling/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/financial-chart/titles/package.json b/samples/charts/financial-chart/titles/package.json index 3202d8d1cf..c7bcc5ae82 100644 --- a/samples/charts/financial-chart/titles/package.json +++ b/samples/charts/financial-chart/titles/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/financial-chart/tooltip-types/package.json b/samples/charts/financial-chart/tooltip-types/package.json index 1638376303..d5bf10b6d4 100644 --- a/samples/charts/financial-chart/tooltip-types/package.json +++ b/samples/charts/financial-chart/tooltip-types/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/financial-chart/trendlines/package.json b/samples/charts/financial-chart/trendlines/package.json index 9c36161038..cb4f568c49 100644 --- a/samples/charts/financial-chart/trendlines/package.json +++ b/samples/charts/financial-chart/trendlines/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/financial-chart/volume-types/package.json b/samples/charts/financial-chart/volume-types/package.json index 985a92268a..8c52c95228 100644 --- a/samples/charts/financial-chart/volume-types/package.json +++ b/samples/charts/financial-chart/volume-types/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/pie-chart/animation/package.json b/samples/charts/pie-chart/animation/package.json index 4890b8d90b..46d6d763da 100644 --- a/samples/charts/pie-chart/animation/package.json +++ b/samples/charts/pie-chart/animation/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/pie-chart/explosion/package.json b/samples/charts/pie-chart/explosion/package.json index 1a738ddc44..fe968924ae 100644 --- a/samples/charts/pie-chart/explosion/package.json +++ b/samples/charts/pie-chart/explosion/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/pie-chart/legend/package.json b/samples/charts/pie-chart/legend/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/pie-chart/selection/package.json b/samples/charts/pie-chart/selection/package.json index ee66908f37..5b78d37da4 100644 --- a/samples/charts/pie-chart/selection/package.json +++ b/samples/charts/pie-chart/selection/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/pie-chart/styling/package.json b/samples/charts/pie-chart/styling/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/sparkline/display-types/package.json b/samples/charts/sparkline/display-types/package.json index 012493ea1a..fd8f49e279 100644 --- a/samples/charts/sparkline/display-types/package.json +++ b/samples/charts/sparkline/display-types/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/sparkline/display-winloss/package.json b/samples/charts/sparkline/display-winloss/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/sparkline/grid/package.json b/samples/charts/sparkline/grid/package.json index c462a535ab..6f45d7f9fb 100644 --- a/samples/charts/sparkline/grid/package.json +++ b/samples/charts/sparkline/grid/package.json @@ -12,11 +12,11 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/toolbar/actions-built-in-category-chart/package.json b/samples/charts/toolbar/actions-built-in-category-chart/package.json index d475d4b4ad..d2de8c3a10 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -15,11 +15,11 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/toolbar/actions-built-in-data-chart/package.json b/samples/charts/toolbar/actions-built-in-data-chart/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/toolbar/color-editor-support/package.json b/samples/charts/toolbar/color-editor-support/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/toolbar/color-editor-support/package.json +++ b/samples/charts/toolbar/color-editor-support/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/toolbar/custom-tool/package.json b/samples/charts/toolbar/custom-tool/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/toolbar/custom-tool/package.json +++ b/samples/charts/toolbar/custom-tool/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/package.json b/samples/charts/toolbar/layout-actions-for-data-chart/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/package.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/package.json b/samples/charts/toolbar/layout-in-vertical-orientation/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/package.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/tree-map/events/package.json b/samples/charts/tree-map/events/package.json index a1a16b352f..27bc8f44ae 100644 --- a/samples/charts/tree-map/events/package.json +++ b/samples/charts/tree-map/events/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/tree-map/highlighting-percent-based/package.json b/samples/charts/tree-map/highlighting-percent-based/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/tree-map/highlighting-percent-based/package.json +++ b/samples/charts/tree-map/highlighting-percent-based/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/tree-map/highlighting/package.json b/samples/charts/tree-map/highlighting/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/tree-map/highlighting/package.json +++ b/samples/charts/tree-map/highlighting/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/tree-map/overview/package.json b/samples/charts/tree-map/overview/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/tree-map/overview/package.json +++ b/samples/charts/tree-map/overview/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/tree-map/styling/package.json b/samples/charts/tree-map/styling/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/tree-map/styling/package.json +++ b/samples/charts/tree-map/styling/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/zoomslider/overview/package.json b/samples/charts/zoomslider/overview/package.json index a8f739656d..2d62cab9d9 100644 --- a/samples/charts/zoomslider/overview/package.json +++ b/samples/charts/zoomslider/overview/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/editors/multi-column-combobox/overview/package.json b/samples/editors/multi-column-combobox/overview/package.json index 530c464136..8ce34cf518 100644 --- a/samples/editors/multi-column-combobox/overview/package.json +++ b/samples/editors/multi-column-combobox/overview/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/editors/x-date-picker/date-limits/package.json b/samples/editors/x-date-picker/date-limits/package.json index a00129dba8..f89723ebfc 100644 --- a/samples/editors/x-date-picker/date-limits/package.json +++ b/samples/editors/x-date-picker/date-limits/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/editors/x-date-picker/editing/package.json b/samples/editors/x-date-picker/editing/package.json index 14e1d85134..db8f62ce77 100644 --- a/samples/editors/x-date-picker/editing/package.json +++ b/samples/editors/x-date-picker/editing/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/editors/x-date-picker/format/package.json b/samples/editors/x-date-picker/format/package.json index 14e1d85134..db8f62ce77 100644 --- a/samples/editors/x-date-picker/format/package.json +++ b/samples/editors/x-date-picker/format/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/editors/x-date-picker/overview/package.json b/samples/editors/x-date-picker/overview/package.json index 73c70f88e9..80378550d8 100644 --- a/samples/editors/x-date-picker/overview/package.json +++ b/samples/editors/x-date-picker/overview/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/editors/x-date-picker/range/package.json b/samples/editors/x-date-picker/range/package.json index d08e280507..74d4018232 100644 --- a/samples/editors/x-date-picker/range/package.json +++ b/samples/editors/x-date-picker/range/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/excel/excel-library/operations-on-workbooks/package.json b/samples/excel/excel-library/operations-on-workbooks/package.json index 3b4369fa22..8649918549 100644 --- a/samples/excel/excel-library/operations-on-workbooks/package.json +++ b/samples/excel/excel-library/operations-on-workbooks/package.json @@ -14,11 +14,11 @@ "dependencies": { "@types/file-saver": "^2.0.7", "file-saver": "^1.3.8", - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/excel/excel-library/operations-on-worksheets/package.json b/samples/excel/excel-library/operations-on-worksheets/package.json index ed0a16b69c..89e1bb7fcd 100644 --- a/samples/excel/excel-library/operations-on-worksheets/package.json +++ b/samples/excel/excel-library/operations-on-worksheets/package.json @@ -14,8 +14,8 @@ "dependencies": { "@types/file-saver": "^2.0.7", "file-saver": "^1.3.8", - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/excel/excel-library/overview/package.json b/samples/excel/excel-library/overview/package.json index 1f9c1ffb8d..f5436626bf 100644 --- a/samples/excel/excel-library/overview/package.json +++ b/samples/excel/excel-library/overview/package.json @@ -14,8 +14,8 @@ "dependencies": { "@types/file-saver": "^2.0.7", "file-saver": "^1.3.8", - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/excel/excel-library/working-with-cells/package.json b/samples/excel/excel-library/working-with-cells/package.json index c13d989cb3..859f77be10 100644 --- a/samples/excel/excel-library/working-with-cells/package.json +++ b/samples/excel/excel-library/working-with-cells/package.json @@ -14,8 +14,8 @@ "dependencies": { "@types/file-saver": "^2.0.7", "file-saver": "^1.3.8", - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/excel/excel-library/working-with-charts/package.json b/samples/excel/excel-library/working-with-charts/package.json index e5a1bbf8b0..0d5851d207 100644 --- a/samples/excel/excel-library/working-with-charts/package.json +++ b/samples/excel/excel-library/working-with-charts/package.json @@ -14,12 +14,12 @@ "dependencies": { "@types/file-saver": "^2.0.7", "file-saver": "^1.3.8", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/excel/excel-library/working-with-sparklines/package.json b/samples/excel/excel-library/working-with-sparklines/package.json index 87022a338b..9ec885cb2d 100644 --- a/samples/excel/excel-library/working-with-sparklines/package.json +++ b/samples/excel/excel-library/working-with-sparklines/package.json @@ -14,12 +14,12 @@ "dependencies": { "@types/file-saver": "^2.0.7", "file-saver": "^1.3.8", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/excel/spreadsheet/activation/package.json b/samples/excel/spreadsheet/activation/package.json index 4ff3fec574..c381a08771 100644 --- a/samples/excel/spreadsheet/activation/package.json +++ b/samples/excel/spreadsheet/activation/package.json @@ -14,9 +14,9 @@ "dependencies": { "@types/file-saver": "^2.0.7", "file-saver": "^1.3.8", - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", - "igniteui-react-spreadsheet": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", + "igniteui-react-spreadsheet": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/excel/spreadsheet/adapter-chart/package.json b/samples/excel/spreadsheet/adapter-chart/package.json index 91aa8692ef..203e405396 100644 --- a/samples/excel/spreadsheet/adapter-chart/package.json +++ b/samples/excel/spreadsheet/adapter-chart/package.json @@ -14,11 +14,11 @@ "dependencies": { "@types/file-saver": "^2.0.7", "file-saver": "^1.3.8", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", - "igniteui-react-spreadsheet": "19.3.1", - "igniteui-react-spreadsheet-chart-adapter": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", + "igniteui-react-spreadsheet": "19.3.2", + "igniteui-react-spreadsheet-chart-adapter": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/excel/spreadsheet/adapter-combo/package.json b/samples/excel/spreadsheet/adapter-combo/package.json index 12af88a9bd..6ce6dba1ee 100644 --- a/samples/excel/spreadsheet/adapter-combo/package.json +++ b/samples/excel/spreadsheet/adapter-combo/package.json @@ -12,11 +12,11 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", - "igniteui-react-spreadsheet": "19.3.1", - "igniteui-react-spreadsheet-chart-adapter": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", + "igniteui-react-spreadsheet": "19.3.2", + "igniteui-react-spreadsheet-chart-adapter": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/excel/spreadsheet/clipboard/package.json b/samples/excel/spreadsheet/clipboard/package.json index a3f32ab3c1..b5b1447bc7 100644 --- a/samples/excel/spreadsheet/clipboard/package.json +++ b/samples/excel/spreadsheet/clipboard/package.json @@ -14,9 +14,9 @@ "dependencies": { "@types/file-saver": "^2.0.7", "file-saver": "^1.3.8", - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", - "igniteui-react-spreadsheet": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", + "igniteui-react-spreadsheet": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/excel/spreadsheet/commands/package.json b/samples/excel/spreadsheet/commands/package.json index 5bace9fbb5..18c741c36b 100644 --- a/samples/excel/spreadsheet/commands/package.json +++ b/samples/excel/spreadsheet/commands/package.json @@ -14,9 +14,9 @@ "dependencies": { "@types/file-saver": "^2.0.7", "file-saver": "^1.3.8", - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", - "igniteui-react-spreadsheet": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", + "igniteui-react-spreadsheet": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/excel/spreadsheet/conditional-formatting/package.json b/samples/excel/spreadsheet/conditional-formatting/package.json index 8464cbe40b..e938306ead 100644 --- a/samples/excel/spreadsheet/conditional-formatting/package.json +++ b/samples/excel/spreadsheet/conditional-formatting/package.json @@ -14,9 +14,9 @@ "dependencies": { "@types/file-saver": "^2.0.7", "file-saver": "^1.3.8", - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", - "igniteui-react-spreadsheet": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", + "igniteui-react-spreadsheet": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/excel/spreadsheet/config-options/package.json b/samples/excel/spreadsheet/config-options/package.json index 006076b8f2..69b6730ed4 100644 --- a/samples/excel/spreadsheet/config-options/package.json +++ b/samples/excel/spreadsheet/config-options/package.json @@ -14,9 +14,9 @@ "dependencies": { "@types/file-saver": "^2.0.7", "file-saver": "^1.3.8", - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", - "igniteui-react-spreadsheet": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", + "igniteui-react-spreadsheet": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/excel/spreadsheet/data-validation/package.json b/samples/excel/spreadsheet/data-validation/package.json index 0c6a03c67d..c8c72c0e11 100644 --- a/samples/excel/spreadsheet/data-validation/package.json +++ b/samples/excel/spreadsheet/data-validation/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", - "igniteui-react-spreadsheet": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", + "igniteui-react-spreadsheet": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/excel/spreadsheet/filter-dialog/package.json b/samples/excel/spreadsheet/filter-dialog/package.json index 244a9c3284..431374524b 100644 --- a/samples/excel/spreadsheet/filter-dialog/package.json +++ b/samples/excel/spreadsheet/filter-dialog/package.json @@ -14,9 +14,9 @@ "dependencies": { "@types/file-saver": "^2.0.7", "file-saver": "^1.3.8", - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", - "igniteui-react-spreadsheet": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", + "igniteui-react-spreadsheet": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/excel/spreadsheet/format-dialog/package.json b/samples/excel/spreadsheet/format-dialog/package.json index 8b294e548b..d32f62b594 100644 --- a/samples/excel/spreadsheet/format-dialog/package.json +++ b/samples/excel/spreadsheet/format-dialog/package.json @@ -14,9 +14,9 @@ "dependencies": { "@types/file-saver": "^2.0.7", "file-saver": "^1.3.8", - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", - "igniteui-react-spreadsheet": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", + "igniteui-react-spreadsheet": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/excel/spreadsheet/hyperlinks/package.json b/samples/excel/spreadsheet/hyperlinks/package.json index 0967bfebb8..10364940e6 100644 --- a/samples/excel/spreadsheet/hyperlinks/package.json +++ b/samples/excel/spreadsheet/hyperlinks/package.json @@ -14,9 +14,9 @@ "dependencies": { "@types/file-saver": "^2.0.7", "file-saver": "^1.3.8", - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", - "igniteui-react-spreadsheet": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", + "igniteui-react-spreadsheet": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/excel/spreadsheet/overview/package.json b/samples/excel/spreadsheet/overview/package.json index 8359a45c53..c15d2fa9c5 100644 --- a/samples/excel/spreadsheet/overview/package.json +++ b/samples/excel/spreadsheet/overview/package.json @@ -14,9 +14,9 @@ "dependencies": { "@types/file-saver": "^2.0.7", "file-saver": "^1.3.8", - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", - "igniteui-react-spreadsheet": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", + "igniteui-react-spreadsheet": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/excel/spreadsheet/sort-dialog/package.json b/samples/excel/spreadsheet/sort-dialog/package.json index 73a7c3eab2..0e954c1ff5 100644 --- a/samples/excel/spreadsheet/sort-dialog/package.json +++ b/samples/excel/spreadsheet/sort-dialog/package.json @@ -14,9 +14,9 @@ "dependencies": { "@types/file-saver": "^2.0.7", "file-saver": "^1.3.8", - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", - "igniteui-react-spreadsheet": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", + "igniteui-react-spreadsheet": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/bullet-graph/animation/package.json b/samples/gauges/bullet-graph/animation/package.json index 50c16edf5d..ee7646cea4 100644 --- a/samples/gauges/bullet-graph/animation/package.json +++ b/samples/gauges/bullet-graph/animation/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/bullet-graph/background/package.json b/samples/gauges/bullet-graph/background/package.json index bd1cabce04..925e91ff69 100644 --- a/samples/gauges/bullet-graph/background/package.json +++ b/samples/gauges/bullet-graph/background/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/bullet-graph/highlight-needle/package.json b/samples/gauges/bullet-graph/highlight-needle/package.json index 5625a1e296..d63772fbc1 100644 --- a/samples/gauges/bullet-graph/highlight-needle/package.json +++ b/samples/gauges/bullet-graph/highlight-needle/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/bullet-graph/labels/package.json b/samples/gauges/bullet-graph/labels/package.json index 863470b026..84b9ca0d69 100644 --- a/samples/gauges/bullet-graph/labels/package.json +++ b/samples/gauges/bullet-graph/labels/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/bullet-graph/measures/package.json b/samples/gauges/bullet-graph/measures/package.json index d1545abf39..efa2d70608 100644 --- a/samples/gauges/bullet-graph/measures/package.json +++ b/samples/gauges/bullet-graph/measures/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/bullet-graph/ranges/package.json b/samples/gauges/bullet-graph/ranges/package.json index c731d3acc0..6629b24de8 100644 --- a/samples/gauges/bullet-graph/ranges/package.json +++ b/samples/gauges/bullet-graph/ranges/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/bullet-graph/scale/package.json b/samples/gauges/bullet-graph/scale/package.json index abb97e2e7b..a570f1b64e 100644 --- a/samples/gauges/bullet-graph/scale/package.json +++ b/samples/gauges/bullet-graph/scale/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/bullet-graph/tickmarks/package.json b/samples/gauges/bullet-graph/tickmarks/package.json index d7cfca2a5a..97a5459afc 100644 --- a/samples/gauges/bullet-graph/tickmarks/package.json +++ b/samples/gauges/bullet-graph/tickmarks/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/bullet-graph/type-filled/package.json b/samples/gauges/bullet-graph/type-filled/package.json index 2551a5a165..536fa9cb2b 100644 --- a/samples/gauges/bullet-graph/type-filled/package.json +++ b/samples/gauges/bullet-graph/type-filled/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/bullet-graph/type-horizontal/package.json b/samples/gauges/bullet-graph/type-horizontal/package.json index c1883eaf20..8723c5848e 100644 --- a/samples/gauges/bullet-graph/type-horizontal/package.json +++ b/samples/gauges/bullet-graph/type-horizontal/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/bullet-graph/type-reversed/package.json b/samples/gauges/bullet-graph/type-reversed/package.json index f017b0ec6f..7fef6cbfe4 100644 --- a/samples/gauges/bullet-graph/type-reversed/package.json +++ b/samples/gauges/bullet-graph/type-reversed/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/bullet-graph/type-segmented/package.json b/samples/gauges/bullet-graph/type-segmented/package.json index 02fa92b516..5faea7652b 100644 --- a/samples/gauges/bullet-graph/type-segmented/package.json +++ b/samples/gauges/bullet-graph/type-segmented/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/bullet-graph/type-vertical/package.json b/samples/gauges/bullet-graph/type-vertical/package.json index ed5ead0062..c25c396e95 100644 --- a/samples/gauges/bullet-graph/type-vertical/package.json +++ b/samples/gauges/bullet-graph/type-vertical/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/linear-gauge/animation/package.json b/samples/gauges/linear-gauge/animation/package.json index a7149c0560..6644fdb88e 100644 --- a/samples/gauges/linear-gauge/animation/package.json +++ b/samples/gauges/linear-gauge/animation/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/linear-gauge/backing/package.json b/samples/gauges/linear-gauge/backing/package.json index 955e4f6117..08cdc8dce6 100644 --- a/samples/gauges/linear-gauge/backing/package.json +++ b/samples/gauges/linear-gauge/backing/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/linear-gauge/highlight-needle/package.json b/samples/gauges/linear-gauge/highlight-needle/package.json index a3e3d09640..3643de8135 100644 --- a/samples/gauges/linear-gauge/highlight-needle/package.json +++ b/samples/gauges/linear-gauge/highlight-needle/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/linear-gauge/labels/package.json b/samples/gauges/linear-gauge/labels/package.json index f78b4e1b30..cdf3548cb8 100644 --- a/samples/gauges/linear-gauge/labels/package.json +++ b/samples/gauges/linear-gauge/labels/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/linear-gauge/needle/package.json b/samples/gauges/linear-gauge/needle/package.json index fdd8a1bf1a..33cb5cef66 100644 --- a/samples/gauges/linear-gauge/needle/package.json +++ b/samples/gauges/linear-gauge/needle/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/linear-gauge/ranges/package.json b/samples/gauges/linear-gauge/ranges/package.json index b3e1ad6b8d..20203f850f 100644 --- a/samples/gauges/linear-gauge/ranges/package.json +++ b/samples/gauges/linear-gauge/ranges/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/linear-gauge/scale/package.json b/samples/gauges/linear-gauge/scale/package.json index c139ca3c5d..623388f98b 100644 --- a/samples/gauges/linear-gauge/scale/package.json +++ b/samples/gauges/linear-gauge/scale/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/linear-gauge/tickmarks/package.json b/samples/gauges/linear-gauge/tickmarks/package.json index 7fa918de9f..753a4f07e4 100644 --- a/samples/gauges/linear-gauge/tickmarks/package.json +++ b/samples/gauges/linear-gauge/tickmarks/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/linear-gauge/type-curved/package.json b/samples/gauges/linear-gauge/type-curved/package.json index 0cef358b26..9cfa52ece0 100644 --- a/samples/gauges/linear-gauge/type-curved/package.json +++ b/samples/gauges/linear-gauge/type-curved/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/linear-gauge/type-filled/package.json b/samples/gauges/linear-gauge/type-filled/package.json index 82de5f7552..c6653e0363 100644 --- a/samples/gauges/linear-gauge/type-filled/package.json +++ b/samples/gauges/linear-gauge/type-filled/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/linear-gauge/type-horizontal/package.json b/samples/gauges/linear-gauge/type-horizontal/package.json index 25739e124b..380af90c49 100644 --- a/samples/gauges/linear-gauge/type-horizontal/package.json +++ b/samples/gauges/linear-gauge/type-horizontal/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/linear-gauge/type-multi-range/package.json b/samples/gauges/linear-gauge/type-multi-range/package.json index 1ad47d7d90..d391254010 100644 --- a/samples/gauges/linear-gauge/type-multi-range/package.json +++ b/samples/gauges/linear-gauge/type-multi-range/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/linear-gauge/type-multi-scale/package.json b/samples/gauges/linear-gauge/type-multi-scale/package.json index cb601dea11..6c51d6ce9a 100644 --- a/samples/gauges/linear-gauge/type-multi-scale/package.json +++ b/samples/gauges/linear-gauge/type-multi-scale/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/linear-gauge/type-segmented/package.json b/samples/gauges/linear-gauge/type-segmented/package.json index 7d0843d42f..c1ef1fe3ec 100644 --- a/samples/gauges/linear-gauge/type-segmented/package.json +++ b/samples/gauges/linear-gauge/type-segmented/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/linear-gauge/type-vertical/package.json b/samples/gauges/linear-gauge/type-vertical/package.json index bbd4c24188..d0889bbbd2 100644 --- a/samples/gauges/linear-gauge/type-vertical/package.json +++ b/samples/gauges/linear-gauge/type-vertical/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/radial-gauge/animation/package.json b/samples/gauges/radial-gauge/animation/package.json index 2fbcaa6051..2928e25c66 100644 --- a/samples/gauges/radial-gauge/animation/package.json +++ b/samples/gauges/radial-gauge/animation/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/radial-gauge/backing/package.json b/samples/gauges/radial-gauge/backing/package.json index 36a8ba54e3..43032b9643 100644 --- a/samples/gauges/radial-gauge/backing/package.json +++ b/samples/gauges/radial-gauge/backing/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/radial-gauge/highlight-needle/package.json b/samples/gauges/radial-gauge/highlight-needle/package.json index f273a9264c..76c68ad164 100644 --- a/samples/gauges/radial-gauge/highlight-needle/package.json +++ b/samples/gauges/radial-gauge/highlight-needle/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/radial-gauge/labels/package.json b/samples/gauges/radial-gauge/labels/package.json index 26fd7cfaa2..f06d069b06 100644 --- a/samples/gauges/radial-gauge/labels/package.json +++ b/samples/gauges/radial-gauge/labels/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/radial-gauge/needle/package.json b/samples/gauges/radial-gauge/needle/package.json index 64595e923a..1b3e8a374f 100644 --- a/samples/gauges/radial-gauge/needle/package.json +++ b/samples/gauges/radial-gauge/needle/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/radial-gauge/optical-scaling/package.json b/samples/gauges/radial-gauge/optical-scaling/package.json index 26fd7cfaa2..f06d069b06 100644 --- a/samples/gauges/radial-gauge/optical-scaling/package.json +++ b/samples/gauges/radial-gauge/optical-scaling/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/radial-gauge/ranges/package.json b/samples/gauges/radial-gauge/ranges/package.json index d9dc63153f..199899b674 100644 --- a/samples/gauges/radial-gauge/ranges/package.json +++ b/samples/gauges/radial-gauge/ranges/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/radial-gauge/scale/package.json b/samples/gauges/radial-gauge/scale/package.json index d8af2979c8..fa799b9b5b 100644 --- a/samples/gauges/radial-gauge/scale/package.json +++ b/samples/gauges/radial-gauge/scale/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/radial-gauge/tickmarks/package.json b/samples/gauges/radial-gauge/tickmarks/package.json index 8768d24bf7..28958794f3 100644 --- a/samples/gauges/radial-gauge/tickmarks/package.json +++ b/samples/gauges/radial-gauge/tickmarks/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/radial-gauge/type-column/package.json b/samples/gauges/radial-gauge/type-column/package.json index 51fa66f113..c41d8a32b4 100644 --- a/samples/gauges/radial-gauge/type-column/package.json +++ b/samples/gauges/radial-gauge/type-column/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/radial-gauge/type-curved/package.json b/samples/gauges/radial-gauge/type-curved/package.json index ddc4e18564..f0419a3a33 100644 --- a/samples/gauges/radial-gauge/type-curved/package.json +++ b/samples/gauges/radial-gauge/type-curved/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/radial-gauge/type-direction/package.json b/samples/gauges/radial-gauge/type-direction/package.json index 7238ccdb05..d4337a1327 100644 --- a/samples/gauges/radial-gauge/type-direction/package.json +++ b/samples/gauges/radial-gauge/type-direction/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/radial-gauge/type-full/package.json b/samples/gauges/radial-gauge/type-full/package.json index c3ae46056d..c65a8fdf85 100644 --- a/samples/gauges/radial-gauge/type-full/package.json +++ b/samples/gauges/radial-gauge/type-full/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/radial-gauge/type-half/package.json b/samples/gauges/radial-gauge/type-half/package.json index e9fbb6e3a9..029c48afc5 100644 --- a/samples/gauges/radial-gauge/type-half/package.json +++ b/samples/gauges/radial-gauge/type-half/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/radial-gauge/type-quatre/package.json b/samples/gauges/radial-gauge/type-quatre/package.json index a4a52e5d8e..2dd8031279 100644 --- a/samples/gauges/radial-gauge/type-quatre/package.json +++ b/samples/gauges/radial-gauge/type-quatre/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/radial-gauge/type-ring/package.json b/samples/gauges/radial-gauge/type-ring/package.json index 5faee91750..8203e04d18 100644 --- a/samples/gauges/radial-gauge/type-ring/package.json +++ b/samples/gauges/radial-gauge/type-ring/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/radial-gauge/type-segmented/package.json b/samples/gauges/radial-gauge/type-segmented/package.json index 8e6f6459ca..f566e9abea 100644 --- a/samples/gauges/radial-gauge/type-segmented/package.json +++ b/samples/gauges/radial-gauge/type-segmented/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/radial-gauge/type-semi/package.json b/samples/gauges/radial-gauge/type-semi/package.json index 2502535760..b42cd12777 100644 --- a/samples/gauges/radial-gauge/type-semi/package.json +++ b/samples/gauges/radial-gauge/type-semi/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/accessibility/package.json b/samples/grids/data-grid/accessibility/package.json index 1d92fb73cd..a3d8318643 100644 --- a/samples/grids/data-grid/accessibility/package.json +++ b/samples/grids/data-grid/accessibility/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/binding-data-service/package.json b/samples/grids/data-grid/binding-data-service/package.json index b675593e15..7f7ef6bcdf 100644 --- a/samples/grids/data-grid/binding-data-service/package.json +++ b/samples/grids/data-grid/binding-data-service/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/binding-live-data/package.json b/samples/grids/data-grid/binding-live-data/package.json index e9ec1ecbf2..10ffa15f11 100644 --- a/samples/grids/data-grid/binding-live-data/package.json +++ b/samples/grids/data-grid/binding-live-data/package.json @@ -14,11 +14,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/binding-local-data/package.json b/samples/grids/data-grid/binding-local-data/package.json index d87036c172..70d11d7a71 100644 --- a/samples/grids/data-grid/binding-local-data/package.json +++ b/samples/grids/data-grid/binding-local-data/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/binding-remote-data/package.json b/samples/grids/data-grid/binding-remote-data/package.json index 0a30eec1b6..19f72320b4 100644 --- a/samples/grids/data-grid/binding-remote-data/package.json +++ b/samples/grids/data-grid/binding-remote-data/package.json @@ -12,11 +12,11 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-datasources": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-datasources": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/cell-activation/package.json b/samples/grids/data-grid/cell-activation/package.json index be9def2561..63ba9cc6a9 100644 --- a/samples/grids/data-grid/cell-activation/package.json +++ b/samples/grids/data-grid/cell-activation/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/cell-editing/package.json b/samples/grids/data-grid/cell-editing/package.json index 3a19bcaa76..93b856f6c5 100644 --- a/samples/grids/data-grid/cell-editing/package.json +++ b/samples/grids/data-grid/cell-editing/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/cell-merging/package.json b/samples/grids/data-grid/cell-merging/package.json index 540bfe5379..aae15bb92d 100644 --- a/samples/grids/data-grid/cell-merging/package.json +++ b/samples/grids/data-grid/cell-merging/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/cell-selection/package.json b/samples/grids/data-grid/cell-selection/package.json index 81ed611d5d..a776208013 100644 --- a/samples/grids/data-grid/cell-selection/package.json +++ b/samples/grids/data-grid/cell-selection/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/column-animation/package.json b/samples/grids/data-grid/column-animation/package.json index 508c54535b..dc2c110dcc 100644 --- a/samples/grids/data-grid/column-animation/package.json +++ b/samples/grids/data-grid/column-animation/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/column-chooser-picker/package.json b/samples/grids/data-grid/column-chooser-picker/package.json index 65a88eb56f..7d7cc5c429 100644 --- a/samples/grids/data-grid/column-chooser-picker/package.json +++ b/samples/grids/data-grid/column-chooser-picker/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/column-chooser-toolbar/package.json b/samples/grids/data-grid/column-chooser-toolbar/package.json index 8e100c2d3d..421522a3af 100644 --- a/samples/grids/data-grid/column-chooser-toolbar/package.json +++ b/samples/grids/data-grid/column-chooser-toolbar/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/column-filter-expressions/package.json b/samples/grids/data-grid/column-filter-expressions/package.json index 285d2ce8ba..8a89a9b179 100644 --- a/samples/grids/data-grid/column-filter-expressions/package.json +++ b/samples/grids/data-grid/column-filter-expressions/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/column-filter-operands/package.json b/samples/grids/data-grid/column-filter-operands/package.json index e74ada5642..4182c06011 100644 --- a/samples/grids/data-grid/column-filter-operands/package.json +++ b/samples/grids/data-grid/column-filter-operands/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/column-filtering/package.json b/samples/grids/data-grid/column-filtering/package.json index e8c9ea9e10..177e1434a7 100644 --- a/samples/grids/data-grid/column-filtering/package.json +++ b/samples/grids/data-grid/column-filtering/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/column-moving/package.json b/samples/grids/data-grid/column-moving/package.json index 2ef7e1a811..efffc71d85 100644 --- a/samples/grids/data-grid/column-moving/package.json +++ b/samples/grids/data-grid/column-moving/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/column-options/package.json b/samples/grids/data-grid/column-options/package.json index 14de5e522a..454b4d5dfa 100644 --- a/samples/grids/data-grid/column-options/package.json +++ b/samples/grids/data-grid/column-options/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/column-pinning-picker/package.json b/samples/grids/data-grid/column-pinning-picker/package.json index 1a53992059..c12ac31c53 100644 --- a/samples/grids/data-grid/column-pinning-picker/package.json +++ b/samples/grids/data-grid/column-pinning-picker/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/column-pinning-toolbar/package.json b/samples/grids/data-grid/column-pinning-toolbar/package.json index c6a81df561..a9c3a6fbad 100644 --- a/samples/grids/data-grid/column-pinning-toolbar/package.json +++ b/samples/grids/data-grid/column-pinning-toolbar/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/column-resizing/package.json b/samples/grids/data-grid/column-resizing/package.json index 907499209a..737331a94e 100644 --- a/samples/grids/data-grid/column-resizing/package.json +++ b/samples/grids/data-grid/column-resizing/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/column-scrolling/package.json b/samples/grids/data-grid/column-scrolling/package.json index 9f08fc1647..3d0e4d3545 100644 --- a/samples/grids/data-grid/column-scrolling/package.json +++ b/samples/grids/data-grid/column-scrolling/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/column-sorting/package.json b/samples/grids/data-grid/column-sorting/package.json index 22c705f520..f9b394dbaf 100644 --- a/samples/grids/data-grid/column-sorting/package.json +++ b/samples/grids/data-grid/column-sorting/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/column-summaries/package.json b/samples/grids/data-grid/column-summaries/package.json index e838f1bfad..caebf8c6fd 100644 --- a/samples/grids/data-grid/column-summaries/package.json +++ b/samples/grids/data-grid/column-summaries/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/column-types/package.json b/samples/grids/data-grid/column-types/package.json index c7aff49b0e..802852b350 100644 --- a/samples/grids/data-grid/column-types/package.json +++ b/samples/grids/data-grid/column-types/package.json @@ -12,11 +12,11 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/load-save-layout/package.json b/samples/grids/data-grid/load-save-layout/package.json index 07c1567d24..77695b72a5 100644 --- a/samples/grids/data-grid/load-save-layout/package.json +++ b/samples/grids/data-grid/load-save-layout/package.json @@ -14,11 +14,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/localization/package.json b/samples/grids/data-grid/localization/package.json index 7de995d408..f88ef032c4 100644 --- a/samples/grids/data-grid/localization/package.json +++ b/samples/grids/data-grid/localization/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/overview/package.json b/samples/grids/data-grid/overview/package.json index 295c68a805..639304c200 100644 --- a/samples/grids/data-grid/overview/package.json +++ b/samples/grids/data-grid/overview/package.json @@ -12,11 +12,11 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/pager/package.json b/samples/grids/data-grid/pager/package.json index b58e3b6bf2..9a2f2e3e9f 100644 --- a/samples/grids/data-grid/pager/package.json +++ b/samples/grids/data-grid/pager/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/performance/package.json b/samples/grids/data-grid/performance/package.json index 7d5ca481f9..440a450f9c 100644 --- a/samples/grids/data-grid/performance/package.json +++ b/samples/grids/data-grid/performance/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/row-group-descriptions/package.json b/samples/grids/data-grid/row-group-descriptions/package.json index 92e76b9774..ad34eaf1a5 100644 --- a/samples/grids/data-grid/row-group-descriptions/package.json +++ b/samples/grids/data-grid/row-group-descriptions/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/row-grouping/package.json b/samples/grids/data-grid/row-grouping/package.json index 92e76b9774..ad34eaf1a5 100644 --- a/samples/grids/data-grid/row-grouping/package.json +++ b/samples/grids/data-grid/row-grouping/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/row-highlighting/package.json b/samples/grids/data-grid/row-highlighting/package.json index 335286740c..bce69d652d 100644 --- a/samples/grids/data-grid/row-highlighting/package.json +++ b/samples/grids/data-grid/row-highlighting/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/row-paging/package.json b/samples/grids/data-grid/row-paging/package.json index a78ef26911..dd0cd14164 100644 --- a/samples/grids/data-grid/row-paging/package.json +++ b/samples/grids/data-grid/row-paging/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/row-pinning/package.json b/samples/grids/data-grid/row-pinning/package.json index ca2b68ba60..2765e6124a 100644 --- a/samples/grids/data-grid/row-pinning/package.json +++ b/samples/grids/data-grid/row-pinning/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/row-selection/package.json b/samples/grids/data-grid/row-selection/package.json index fd427ecf32..0575335580 100644 --- a/samples/grids/data-grid/row-selection/package.json +++ b/samples/grids/data-grid/row-selection/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/type-comparison-table/package.json b/samples/grids/data-grid/type-comparison-table/package.json index 2880468004..e48ff8c063 100644 --- a/samples/grids/data-grid/type-comparison-table/package.json +++ b/samples/grids/data-grid/type-comparison-table/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/type-heatmap-table/package.json b/samples/grids/data-grid/type-heatmap-table/package.json index 8a6833f0b3..f30c773fc5 100644 --- a/samples/grids/data-grid/type-heatmap-table/package.json +++ b/samples/grids/data-grid/type-heatmap-table/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/type-marketing-table/package.json b/samples/grids/data-grid/type-marketing-table/package.json index d18a050c74..7f532c507c 100644 --- a/samples/grids/data-grid/type-marketing-table/package.json +++ b/samples/grids/data-grid/type-marketing-table/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/type-matrix-table/package.json b/samples/grids/data-grid/type-matrix-table/package.json index 61af44d537..29f2d2a9c6 100644 --- a/samples/grids/data-grid/type-matrix-table/package.json +++ b/samples/grids/data-grid/type-matrix-table/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/type-periodic-table/package.json b/samples/grids/data-grid/type-periodic-table/package.json index b943c76927..de79acb629 100644 --- a/samples/grids/data-grid/type-periodic-table/package.json +++ b/samples/grids/data-grid/type-periodic-table/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/action-strip/package.json b/samples/grids/grid/action-strip/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/action-strip/package.json +++ b/samples/grids/grid/action-strip/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/advanced-filtering-options/package.json b/samples/grids/grid/advanced-filtering-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/advanced-filtering-options/package.json +++ b/samples/grids/grid/advanced-filtering-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/advanced-filtering-style/package.json b/samples/grids/grid/advanced-filtering-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/advanced-filtering-style/package.json +++ b/samples/grids/grid/advanced-filtering-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/binding-composite-data/package.json b/samples/grids/grid/binding-composite-data/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/binding-composite-data/package.json +++ b/samples/grids/grid/binding-composite-data/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/binding-crud-data/package.json b/samples/grids/grid/binding-crud-data/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/binding-crud-data/package.json +++ b/samples/grids/grid/binding-crud-data/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/binding-nested-data-1/package.json b/samples/grids/grid/binding-nested-data-1/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/binding-nested-data-1/package.json +++ b/samples/grids/grid/binding-nested-data-1/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/cascading-combo/package.json b/samples/grids/grid/cascading-combo/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/cascading-combo/package.json +++ b/samples/grids/grid/cascading-combo/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/cell-editing-sample/package.json b/samples/grids/grid/cell-editing-sample/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/cell-editing-sample/package.json +++ b/samples/grids/grid/cell-editing-sample/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/cell-editing-styling/package.json b/samples/grids/grid/cell-editing-styling/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/cell-editing-styling/package.json +++ b/samples/grids/grid/cell-editing-styling/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/cell-merge-custom-sample/package.json b/samples/grids/grid/cell-merge-custom-sample/package.json index 50a37dabf1..6df749c048 100644 --- a/samples/grids/grid/cell-merge-custom-sample/package.json +++ b/samples/grids/grid/cell-merge-custom-sample/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/cell-merge/package.json b/samples/grids/grid/cell-merge/package.json index 50a37dabf1..6df749c048 100644 --- a/samples/grids/grid/cell-merge/package.json +++ b/samples/grids/grid/cell-merge/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/cell-selection-mode/package.json b/samples/grids/grid/cell-selection-mode/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/cell-selection-mode/package.json +++ b/samples/grids/grid/cell-selection-mode/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/cell-selection-style/package.json b/samples/grids/grid/cell-selection-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/cell-selection-style/package.json +++ b/samples/grids/grid/cell-selection-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/change-icons-custom/package.json b/samples/grids/grid/change-icons-custom/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/grid/change-icons-custom/package.json +++ b/samples/grids/grid/change-icons-custom/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/clipboard-operations/package.json b/samples/grids/grid/clipboard-operations/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/grid/clipboard-operations/package.json +++ b/samples/grids/grid/clipboard-operations/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-auto-sizing/package.json b/samples/grids/grid/column-auto-sizing/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/column-auto-sizing/package.json +++ b/samples/grids/grid/column-auto-sizing/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/column-collapsible-groups/package.json b/samples/grids/grid/column-collapsible-groups/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/column-collapsible-groups/package.json +++ b/samples/grids/grid/column-collapsible-groups/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/column-data-types/package.json b/samples/grids/grid/column-data-types/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/column-data-types/package.json +++ b/samples/grids/grid/column-data-types/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/column-hiding-options/package.json b/samples/grids/grid/column-hiding-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/column-hiding-options/package.json +++ b/samples/grids/grid/column-hiding-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/column-hiding-toolbar-style/package.json b/samples/grids/grid/column-hiding-toolbar-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/column-hiding-toolbar-style/package.json +++ b/samples/grids/grid/column-hiding-toolbar-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/column-hiding-toolbar/package.json b/samples/grids/grid/column-hiding-toolbar/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/column-hiding-toolbar/package.json +++ b/samples/grids/grid/column-hiding-toolbar/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/column-moving-options/package.json b/samples/grids/grid/column-moving-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/column-moving-options/package.json +++ b/samples/grids/grid/column-moving-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/column-moving-styles/package.json b/samples/grids/grid/column-moving-styles/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/column-moving-styles/package.json +++ b/samples/grids/grid/column-moving-styles/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/column-pinning-both-sides/package.json b/samples/grids/grid/column-pinning-both-sides/package.json index 50a37dabf1..6df749c048 100644 --- a/samples/grids/grid/column-pinning-both-sides/package.json +++ b/samples/grids/grid/column-pinning-both-sides/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-pinning-options/package.json b/samples/grids/grid/column-pinning-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/column-pinning-options/package.json +++ b/samples/grids/grid/column-pinning-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/column-pinning-right-side/package.json b/samples/grids/grid/column-pinning-right-side/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/column-pinning-right-side/package.json +++ b/samples/grids/grid/column-pinning-right-side/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/column-pinning-styles/package.json b/samples/grids/grid/column-pinning-styles/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/column-pinning-styles/package.json +++ b/samples/grids/grid/column-pinning-styles/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/column-pinning/package.json b/samples/grids/grid/column-pinning/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/column-pinning/package.json +++ b/samples/grids/grid/column-pinning/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/column-resize-styling/package.json b/samples/grids/grid/column-resize-styling/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/column-resize-styling/package.json +++ b/samples/grids/grid/column-resize-styling/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/column-resizing/package.json b/samples/grids/grid/column-resizing/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/column-resizing/package.json +++ b/samples/grids/grid/column-resizing/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/column-selection-group/package.json b/samples/grids/grid/column-selection-group/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/column-selection-group/package.json +++ b/samples/grids/grid/column-selection-group/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/column-selection-mode/package.json b/samples/grids/grid/column-selection-mode/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/column-selection-mode/package.json +++ b/samples/grids/grid/column-selection-mode/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-selection-styles/package.json b/samples/grids/grid/column-selection-styles/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/column-selection-styles/package.json +++ b/samples/grids/grid/column-selection-styles/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/column-sorting-indicators/package.json b/samples/grids/grid/column-sorting-indicators/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/column-sorting-indicators/package.json +++ b/samples/grids/grid/column-sorting-indicators/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/column-sorting-options/package.json b/samples/grids/grid/column-sorting-options/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/column-sorting-options/package.json +++ b/samples/grids/grid/column-sorting-options/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-sorting-style/package.json b/samples/grids/grid/column-sorting-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/column-sorting-style/package.json +++ b/samples/grids/grid/column-sorting-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/conditional-cell-style-1/package.json b/samples/grids/grid/conditional-cell-style-1/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/conditional-cell-style-1/package.json +++ b/samples/grids/grid/conditional-cell-style-1/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/conditional-cell-style-2/package.json b/samples/grids/grid/conditional-cell-style-2/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/conditional-cell-style-2/package.json +++ b/samples/grids/grid/conditional-cell-style-2/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/conditional-row-selectors/package.json b/samples/grids/grid/conditional-row-selectors/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/conditional-row-selectors/package.json +++ b/samples/grids/grid/conditional-row-selectors/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/custom-context-menu/package.json b/samples/grids/grid/custom-context-menu/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/grid/custom-context-menu/package.json +++ b/samples/grids/grid/custom-context-menu/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/data-batch-editing-actions/package.json b/samples/grids/grid/data-batch-editing-actions/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/data-batch-editing-actions/package.json +++ b/samples/grids/grid/data-batch-editing-actions/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/data-performance-virtualization/package.json b/samples/grids/grid/data-performance-virtualization/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/data-performance-virtualization/package.json +++ b/samples/grids/grid/data-performance-virtualization/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/data-searching/package.json b/samples/grids/grid/data-searching/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/grid/data-searching/package.json +++ b/samples/grids/grid/data-searching/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/data-summary-formatter/package.json b/samples/grids/grid/data-summary-formatter/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/data-summary-formatter/package.json +++ b/samples/grids/grid/data-summary-formatter/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/data-summary-options/package.json b/samples/grids/grid/data-summary-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/data-summary-options/package.json +++ b/samples/grids/grid/data-summary-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/data-summary-template/package.json b/samples/grids/grid/data-summary-template/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/data-summary-template/package.json +++ b/samples/grids/grid/data-summary-template/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/data-validation-style/package.json b/samples/grids/grid/data-validation-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/data-validation-style/package.json +++ b/samples/grids/grid/data-validation-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/data-validator-service-cross-field/package.json b/samples/grids/grid/data-validator-service-cross-field/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/data-validator-service-cross-field/package.json +++ b/samples/grids/grid/data-validator-service-cross-field/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/data-validator-service-extended/package.json b/samples/grids/grid/data-validator-service-extended/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/data-validator-service-extended/package.json +++ b/samples/grids/grid/data-validator-service-extended/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/data-validator-service/package.json b/samples/grids/grid/data-validator-service/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/data-validator-service/package.json +++ b/samples/grids/grid/data-validator-service/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/disabled-summaries/package.json b/samples/grids/grid/disabled-summaries/package.json index 41db2db72d..454fcd13e5 100644 --- a/samples/grids/grid/disabled-summaries/package.json +++ b/samples/grids/grid/disabled-summaries/package.json @@ -10,11 +10,11 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/editing-columns/package.json b/samples/grids/grid/editing-columns/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/editing-columns/package.json +++ b/samples/grids/grid/editing-columns/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/editing-events/package.json b/samples/grids/grid/editing-events/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/editing-events/package.json +++ b/samples/grids/grid/editing-events/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/editing-excel-style/package.json b/samples/grids/grid/editing-excel-style/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/grid/editing-excel-style/package.json +++ b/samples/grids/grid/editing-excel-style/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/editing-lifecycle/package.json b/samples/grids/grid/editing-lifecycle/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/editing-lifecycle/package.json +++ b/samples/grids/grid/editing-lifecycle/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/excel-exporting/package.json b/samples/grids/grid/excel-exporting/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/excel-exporting/package.json +++ b/samples/grids/grid/excel-exporting/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/excel-style-filtering-sample-1/package.json b/samples/grids/grid/excel-style-filtering-sample-1/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/excel-style-filtering-sample-1/package.json +++ b/samples/grids/grid/excel-style-filtering-sample-1/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/excel-style-filtering-sample-2/package.json b/samples/grids/grid/excel-style-filtering-sample-2/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/excel-style-filtering-sample-2/package.json +++ b/samples/grids/grid/excel-style-filtering-sample-2/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/excel-style-filtering-sample-3/package.json b/samples/grids/grid/excel-style-filtering-sample-3/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/excel-style-filtering-sample-3/package.json +++ b/samples/grids/grid/excel-style-filtering-sample-3/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/excel-style-filtering-style/package.json b/samples/grids/grid/excel-style-filtering-style/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/excel-style-filtering-style/package.json +++ b/samples/grids/grid/excel-style-filtering-style/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/external-advanced-filtering/package.json b/samples/grids/grid/external-advanced-filtering/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/external-advanced-filtering/package.json +++ b/samples/grids/grid/external-advanced-filtering/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/filtering-options/package.json b/samples/grids/grid/filtering-options/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/filtering-options/package.json +++ b/samples/grids/grid/filtering-options/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/filtering-strategy/package.json b/samples/grids/grid/filtering-strategy/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/filtering-strategy/package.json +++ b/samples/grids/grid/filtering-strategy/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/filtering-style/package.json b/samples/grids/grid/filtering-style/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/filtering-style/package.json +++ b/samples/grids/grid/filtering-style/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/finjs/package.json b/samples/grids/grid/finjs/package.json index 287107a137..95efd87c5e 100644 --- a/samples/grids/grid/finjs/package.json +++ b/samples/grids/grid/finjs/package.json @@ -16,12 +16,12 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/groupby-custom/package.json b/samples/grids/grid/groupby-custom/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/grid/groupby-custom/package.json +++ b/samples/grids/grid/groupby-custom/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/groupby-expressions/package.json b/samples/grids/grid/groupby-expressions/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/groupby-expressions/package.json +++ b/samples/grids/grid/groupby-expressions/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/groupby-paging/package.json b/samples/grids/grid/groupby-paging/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/groupby-paging/package.json +++ b/samples/grids/grid/groupby-paging/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/groupby-styling/package.json b/samples/grids/grid/groupby-styling/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/groupby-styling/package.json +++ b/samples/grids/grid/groupby-styling/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/groupby-summary-options/package.json b/samples/grids/grid/groupby-summary-options/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/groupby-summary-options/package.json +++ b/samples/grids/grid/groupby-summary-options/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/groupby-summary-styling/package.json b/samples/grids/grid/groupby-summary-styling/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/groupby-summary-styling/package.json +++ b/samples/grids/grid/groupby-summary-styling/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/infinite-scroll/package.json b/samples/grids/grid/infinite-scroll/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/grid/infinite-scroll/package.json +++ b/samples/grids/grid/infinite-scroll/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/keyboard-custom-navigation/package.json b/samples/grids/grid/keyboard-custom-navigation/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/keyboard-custom-navigation/package.json +++ b/samples/grids/grid/keyboard-custom-navigation/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/keyboard-mrl-navigation/package.json b/samples/grids/grid/keyboard-mrl-navigation/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/keyboard-mrl-navigation/package.json +++ b/samples/grids/grid/keyboard-mrl-navigation/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/layout-display-density/package.json b/samples/grids/grid/layout-display-density/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/layout-display-density/package.json +++ b/samples/grids/grid/layout-display-density/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/master-detail/package.json b/samples/grids/grid/master-detail/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/master-detail/package.json +++ b/samples/grids/grid/master-detail/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/multi-cell-selection-mode/package.json b/samples/grids/grid/multi-cell-selection-mode/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/grid/multi-cell-selection-mode/package.json +++ b/samples/grids/grid/multi-cell-selection-mode/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/multi-column-headers-export/package.json b/samples/grids/grid/multi-column-headers-export/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/multi-column-headers-export/package.json +++ b/samples/grids/grid/multi-column-headers-export/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/multi-column-headers-overview/package.json b/samples/grids/grid/multi-column-headers-overview/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/multi-column-headers-overview/package.json +++ b/samples/grids/grid/multi-column-headers-overview/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/multi-column-headers-styling/package.json b/samples/grids/grid/multi-column-headers-styling/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/multi-column-headers-styling/package.json +++ b/samples/grids/grid/multi-column-headers-styling/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/multi-column-headers-template/package.json b/samples/grids/grid/multi-column-headers-template/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/multi-column-headers-template/package.json +++ b/samples/grids/grid/multi-column-headers-template/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/multi-row-layout-options/package.json b/samples/grids/grid/multi-row-layout-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/multi-row-layout-options/package.json +++ b/samples/grids/grid/multi-row-layout-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/multi-row-layout-style/package.json b/samples/grids/grid/multi-row-layout-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/multi-row-layout-style/package.json +++ b/samples/grids/grid/multi-row-layout-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/overview/package.json b/samples/grids/grid/overview/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/overview/package.json +++ b/samples/grids/grid/overview/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/paste/package.json b/samples/grids/grid/paste/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/paste/package.json +++ b/samples/grids/grid/paste/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/remote-paging-data/package.json b/samples/grids/grid/remote-paging-data/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/remote-paging-data/package.json +++ b/samples/grids/grid/remote-paging-data/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/remote-paging-grid/package.json b/samples/grids/grid/remote-paging-grid/package.json index dddd06b5f4..45f78f1c75 100644 --- a/samples/grids/grid/remote-paging-grid/package.json +++ b/samples/grids/grid/remote-paging-grid/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/row-adding/package.json b/samples/grids/grid/row-adding/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/row-adding/package.json +++ b/samples/grids/grid/row-adding/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/row-classes/package.json b/samples/grids/grid/row-classes/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/row-classes/package.json +++ b/samples/grids/grid/row-classes/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/row-drag-base/package.json b/samples/grids/grid/row-drag-base/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/grid/row-drag-base/package.json +++ b/samples/grids/grid/row-drag-base/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/row-editing-options/package.json b/samples/grids/grid/row-editing-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/row-editing-options/package.json +++ b/samples/grids/grid/row-editing-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/row-editing-style/package.json b/samples/grids/grid/row-editing-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/row-editing-style/package.json +++ b/samples/grids/grid/row-editing-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/row-paging-basic/package.json b/samples/grids/grid/row-paging-basic/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/row-paging-basic/package.json +++ b/samples/grids/grid/row-paging-basic/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/row-paging-options/package.json b/samples/grids/grid/row-paging-options/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/row-paging-options/package.json +++ b/samples/grids/grid/row-paging-options/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/row-pinning-drag/package.json b/samples/grids/grid/row-pinning-drag/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/row-pinning-drag/package.json +++ b/samples/grids/grid/row-pinning-drag/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/row-pinning-extra-column/package.json b/samples/grids/grid/row-pinning-extra-column/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/row-pinning-extra-column/package.json +++ b/samples/grids/grid/row-pinning-extra-column/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/row-pinning-options/package.json b/samples/grids/grid/row-pinning-options/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/row-pinning-options/package.json +++ b/samples/grids/grid/row-pinning-options/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/row-pinning-style/package.json b/samples/grids/grid/row-pinning-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/row-pinning-style/package.json +++ b/samples/grids/grid/row-pinning-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/row-reorder/package.json b/samples/grids/grid/row-reorder/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/row-reorder/package.json +++ b/samples/grids/grid/row-reorder/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/row-selection-mode/package.json b/samples/grids/grid/row-selection-mode/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/row-selection-mode/package.json +++ b/samples/grids/grid/row-selection-mode/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/row-selection-template-excel/package.json b/samples/grids/grid/row-selection-template-excel/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/row-selection-template-excel/package.json +++ b/samples/grids/grid/row-selection-template-excel/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/row-selection-template-numbers/package.json b/samples/grids/grid/row-selection-template-numbers/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/row-selection-template-numbers/package.json +++ b/samples/grids/grid/row-selection-template-numbers/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/row-styles/package.json b/samples/grids/grid/row-styles/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/row-styles/package.json +++ b/samples/grids/grid/row-styles/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/state-persistence-about/package.json b/samples/grids/grid/state-persistence-about/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/grid/state-persistence-about/package.json +++ b/samples/grids/grid/state-persistence-about/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/state-persistence-main/package.json b/samples/grids/grid/state-persistence-main/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/grid/state-persistence-main/package.json +++ b/samples/grids/grid/state-persistence-main/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/styling-custom-CSS/package.json b/samples/grids/grid/styling-custom-CSS/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/styling-custom-CSS/package.json +++ b/samples/grids/grid/styling-custom-CSS/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/toolbar-sample-1/package.json b/samples/grids/grid/toolbar-sample-1/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/toolbar-sample-1/package.json +++ b/samples/grids/grid/toolbar-sample-1/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/toolbar-sample-2/package.json b/samples/grids/grid/toolbar-sample-2/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/toolbar-sample-2/package.json +++ b/samples/grids/grid/toolbar-sample-2/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/toolbar-sample-3/package.json b/samples/grids/grid/toolbar-sample-3/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/toolbar-sample-3/package.json +++ b/samples/grids/grid/toolbar-sample-3/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/toolbar-style/package.json b/samples/grids/grid/toolbar-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/toolbar-style/package.json +++ b/samples/grids/grid/toolbar-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/action-strip/package.json b/samples/grids/hierarchical-grid/action-strip/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/action-strip/package.json +++ b/samples/grids/hierarchical-grid/action-strip/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/advanced-filtering-options/package.json b/samples/grids/hierarchical-grid/advanced-filtering-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-options/package.json +++ b/samples/grids/hierarchical-grid/advanced-filtering-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/advanced-filtering-style/package.json b/samples/grids/hierarchical-grid/advanced-filtering-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-style/package.json +++ b/samples/grids/hierarchical-grid/advanced-filtering-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/cell-editing-sample/package.json b/samples/grids/hierarchical-grid/cell-editing-sample/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/cell-editing-sample/package.json +++ b/samples/grids/hierarchical-grid/cell-editing-sample/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/cell-editing-styling/package.json b/samples/grids/hierarchical-grid/cell-editing-styling/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/cell-editing-styling/package.json +++ b/samples/grids/hierarchical-grid/cell-editing-styling/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/cell-merge-custom-sample/package.json b/samples/grids/hierarchical-grid/cell-merge-custom-sample/package.json index 50a37dabf1..6df749c048 100644 --- a/samples/grids/hierarchical-grid/cell-merge-custom-sample/package.json +++ b/samples/grids/hierarchical-grid/cell-merge-custom-sample/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/cell-merge/package.json b/samples/grids/hierarchical-grid/cell-merge/package.json index 50a37dabf1..6df749c048 100644 --- a/samples/grids/hierarchical-grid/cell-merge/package.json +++ b/samples/grids/hierarchical-grid/cell-merge/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/cell-selection-mode/package.json b/samples/grids/hierarchical-grid/cell-selection-mode/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/hierarchical-grid/cell-selection-mode/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-mode/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/cell-selection-overview/package.json b/samples/grids/hierarchical-grid/cell-selection-overview/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/hierarchical-grid/cell-selection-overview/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-overview/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/cell-selection-style/package.json b/samples/grids/hierarchical-grid/cell-selection-style/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/hierarchical-grid/cell-selection-style/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-style/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-auto-sizing/package.json b/samples/grids/hierarchical-grid/column-auto-sizing/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/hierarchical-grid/column-auto-sizing/package.json +++ b/samples/grids/hierarchical-grid/column-auto-sizing/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-collapsible-groups/package.json b/samples/grids/hierarchical-grid/column-collapsible-groups/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/column-collapsible-groups/package.json +++ b/samples/grids/hierarchical-grid/column-collapsible-groups/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json b/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json +++ b/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json b/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json +++ b/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/column-moving-options/package.json b/samples/grids/hierarchical-grid/column-moving-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/column-moving-options/package.json +++ b/samples/grids/hierarchical-grid/column-moving-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/column-moving-styles/package.json b/samples/grids/hierarchical-grid/column-moving-styles/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/column-moving-styles/package.json +++ b/samples/grids/hierarchical-grid/column-moving-styles/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/column-pinning-both-sides/package.json b/samples/grids/hierarchical-grid/column-pinning-both-sides/package.json index 50a37dabf1..6df749c048 100644 --- a/samples/grids/hierarchical-grid/column-pinning-both-sides/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-both-sides/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-pinning-options/package.json b/samples/grids/hierarchical-grid/column-pinning-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/column-pinning-options/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/column-pinning-right-side/package.json b/samples/grids/hierarchical-grid/column-pinning-right-side/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/column-pinning-right-side/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-right-side/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/column-pinning-styles/package.json b/samples/grids/hierarchical-grid/column-pinning-styles/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/column-pinning-styles/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-styles/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/column-pinning/package.json b/samples/grids/hierarchical-grid/column-pinning/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/column-pinning/package.json +++ b/samples/grids/hierarchical-grid/column-pinning/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/column-resize-styling/package.json b/samples/grids/hierarchical-grid/column-resize-styling/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/column-resize-styling/package.json +++ b/samples/grids/hierarchical-grid/column-resize-styling/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/column-resizing/package.json b/samples/grids/hierarchical-grid/column-resizing/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/column-resizing/package.json +++ b/samples/grids/hierarchical-grid/column-resizing/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/column-selection-group/package.json b/samples/grids/hierarchical-grid/column-selection-group/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/column-selection-group/package.json +++ b/samples/grids/hierarchical-grid/column-selection-group/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/column-selection-mode/package.json b/samples/grids/hierarchical-grid/column-selection-mode/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/hierarchical-grid/column-selection-mode/package.json +++ b/samples/grids/hierarchical-grid/column-selection-mode/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-selection-styles/package.json b/samples/grids/hierarchical-grid/column-selection-styles/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/column-selection-styles/package.json +++ b/samples/grids/hierarchical-grid/column-selection-styles/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/column-sorting-indicators/package.json b/samples/grids/hierarchical-grid/column-sorting-indicators/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/column-sorting-indicators/package.json +++ b/samples/grids/hierarchical-grid/column-sorting-indicators/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/column-sorting-options/package.json b/samples/grids/hierarchical-grid/column-sorting-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/column-sorting-options/package.json +++ b/samples/grids/hierarchical-grid/column-sorting-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/column-sorting-style/package.json b/samples/grids/hierarchical-grid/column-sorting-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/column-sorting-style/package.json +++ b/samples/grids/hierarchical-grid/column-sorting-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json b/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json +++ b/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json b/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json +++ b/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/conditional-row-selectors/package.json b/samples/grids/hierarchical-grid/conditional-row-selectors/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/conditional-row-selectors/package.json +++ b/samples/grids/hierarchical-grid/conditional-row-selectors/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/custom-filtering/package.json b/samples/grids/hierarchical-grid/custom-filtering/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/custom-filtering/package.json +++ b/samples/grids/hierarchical-grid/custom-filtering/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/data-exporting-indicator/package.json b/samples/grids/hierarchical-grid/data-exporting-indicator/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/hierarchical-grid/data-exporting-indicator/package.json +++ b/samples/grids/hierarchical-grid/data-exporting-indicator/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/data-performance-virtualization/package.json b/samples/grids/hierarchical-grid/data-performance-virtualization/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/hierarchical-grid/data-performance-virtualization/package.json +++ b/samples/grids/hierarchical-grid/data-performance-virtualization/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/data-summary-formatter/package.json b/samples/grids/hierarchical-grid/data-summary-formatter/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/data-summary-formatter/package.json +++ b/samples/grids/hierarchical-grid/data-summary-formatter/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/data-summary-options-styling/package.json b/samples/grids/hierarchical-grid/data-summary-options-styling/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/data-summary-options-styling/package.json +++ b/samples/grids/hierarchical-grid/data-summary-options-styling/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/data-summary-options/package.json b/samples/grids/hierarchical-grid/data-summary-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/data-summary-options/package.json +++ b/samples/grids/hierarchical-grid/data-summary-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/data-summary-template/package.json b/samples/grids/hierarchical-grid/data-summary-template/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/hierarchical-grid/data-summary-template/package.json +++ b/samples/grids/hierarchical-grid/data-summary-template/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/disabled-summaries/package.json b/samples/grids/hierarchical-grid/disabled-summaries/package.json index 41db2db72d..454fcd13e5 100644 --- a/samples/grids/hierarchical-grid/disabled-summaries/package.json +++ b/samples/grids/hierarchical-grid/disabled-summaries/package.json @@ -10,11 +10,11 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/editing-columns/package.json b/samples/grids/hierarchical-grid/editing-columns/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/editing-columns/package.json +++ b/samples/grids/hierarchical-grid/editing-columns/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/editing-events/package.json b/samples/grids/hierarchical-grid/editing-events/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/editing-events/package.json +++ b/samples/grids/hierarchical-grid/editing-events/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/editing-lifecycle/package.json b/samples/grids/hierarchical-grid/editing-lifecycle/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/editing-lifecycle/package.json +++ b/samples/grids/hierarchical-grid/editing-lifecycle/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/excel-exporting/package.json b/samples/grids/hierarchical-grid/excel-exporting/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/excel-exporting/package.json +++ b/samples/grids/hierarchical-grid/excel-exporting/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/filtering-options/package.json b/samples/grids/hierarchical-grid/filtering-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/filtering-options/package.json +++ b/samples/grids/hierarchical-grid/filtering-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/filtering-style/package.json b/samples/grids/hierarchical-grid/filtering-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/filtering-style/package.json +++ b/samples/grids/hierarchical-grid/filtering-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json b/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json b/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json b/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/layout-display-density/package.json b/samples/grids/hierarchical-grid/layout-display-density/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/hierarchical-grid/layout-display-density/package.json +++ b/samples/grids/hierarchical-grid/layout-display-density/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/multi-column-headers-export/package.json b/samples/grids/hierarchical-grid/multi-column-headers-export/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-export/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-export/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json b/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json b/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/multi-column-headers-template/package.json b/samples/grids/hierarchical-grid/multi-column-headers-template/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-template/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-template/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/overview/package.json b/samples/grids/hierarchical-grid/overview/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/overview/package.json +++ b/samples/grids/hierarchical-grid/overview/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/remote-paging-hgrid/package.json b/samples/grids/hierarchical-grid/remote-paging-hgrid/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/hierarchical-grid/remote-paging-hgrid/package.json +++ b/samples/grids/hierarchical-grid/remote-paging-hgrid/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-adding/package.json b/samples/grids/hierarchical-grid/row-adding/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/row-adding/package.json +++ b/samples/grids/hierarchical-grid/row-adding/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/row-classes/package.json b/samples/grids/hierarchical-grid/row-classes/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/row-classes/package.json +++ b/samples/grids/hierarchical-grid/row-classes/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/row-drag-base/package.json b/samples/grids/hierarchical-grid/row-drag-base/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/hierarchical-grid/row-drag-base/package.json +++ b/samples/grids/hierarchical-grid/row-drag-base/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-editing-options/package.json b/samples/grids/hierarchical-grid/row-editing-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/row-editing-options/package.json +++ b/samples/grids/hierarchical-grid/row-editing-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/row-editing-style/package.json b/samples/grids/hierarchical-grid/row-editing-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/row-editing-style/package.json +++ b/samples/grids/hierarchical-grid/row-editing-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json b/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json +++ b/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-pinning-options/package.json b/samples/grids/hierarchical-grid/row-pinning-options/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/hierarchical-grid/row-pinning-options/package.json +++ b/samples/grids/hierarchical-grid/row-pinning-options/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-pinning-style/package.json b/samples/grids/hierarchical-grid/row-pinning-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/row-pinning-style/package.json +++ b/samples/grids/hierarchical-grid/row-pinning-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/row-reorder/package.json b/samples/grids/hierarchical-grid/row-reorder/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/row-reorder/package.json +++ b/samples/grids/hierarchical-grid/row-reorder/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/row-selection-mode/package.json b/samples/grids/hierarchical-grid/row-selection-mode/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/hierarchical-grid/row-selection-mode/package.json +++ b/samples/grids/hierarchical-grid/row-selection-mode/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json b/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json +++ b/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/row-styles/package.json b/samples/grids/hierarchical-grid/row-styles/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/row-styles/package.json +++ b/samples/grids/hierarchical-grid/row-styles/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/state-persistence-about/package.json b/samples/grids/hierarchical-grid/state-persistence-about/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/hierarchical-grid/state-persistence-about/package.json +++ b/samples/grids/hierarchical-grid/state-persistence-about/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/state-persistence-main/package.json b/samples/grids/hierarchical-grid/state-persistence-main/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/hierarchical-grid/state-persistence-main/package.json +++ b/samples/grids/hierarchical-grid/state-persistence-main/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/toolbar-sample-3/package.json b/samples/grids/hierarchical-grid/toolbar-sample-3/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-3/package.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-3/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/toolbar-sample-4/package.json b/samples/grids/hierarchical-grid/toolbar-sample-4/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-4/package.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-4/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/toolbar-style/package.json b/samples/grids/hierarchical-grid/toolbar-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/toolbar-style/package.json +++ b/samples/grids/hierarchical-grid/toolbar-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/list/add-list-items/package.json b/samples/grids/list/add-list-items/package.json index aa8368d162..6f4715f723 100644 --- a/samples/grids/list/add-list-items/package.json +++ b/samples/grids/list/add-list-items/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/list/list-item-content/package.json b/samples/grids/list/list-item-content/package.json index 1973f75948..8a4aa8aa20 100644 --- a/samples/grids/list/list-item-content/package.json +++ b/samples/grids/list/list-item-content/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/list/overview/package.json b/samples/grids/list/overview/package.json index 1db75aa0af..b06067b4e6 100644 --- a/samples/grids/list/overview/package.json +++ b/samples/grids/list/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/list/styling/package.json b/samples/grids/list/styling/package.json index 60d0a8dac2..eda8a86298 100644 --- a/samples/grids/list/styling/package.json +++ b/samples/grids/list/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/pivot-grid/aggregate-max-sales/package.json b/samples/grids/pivot-grid/aggregate-max-sales/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/pivot-grid/aggregate-max-sales/package.json +++ b/samples/grids/pivot-grid/aggregate-max-sales/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/pivot-grid/aggregate-units-sold/package.json b/samples/grids/pivot-grid/aggregate-units-sold/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/pivot-grid/aggregate-units-sold/package.json +++ b/samples/grids/pivot-grid/aggregate-units-sold/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/pivot-grid/data-selector/package.json b/samples/grids/pivot-grid/data-selector/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/pivot-grid/data-selector/package.json +++ b/samples/grids/pivot-grid/data-selector/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/pivot-grid/features/package.json b/samples/grids/pivot-grid/features/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/pivot-grid/features/package.json +++ b/samples/grids/pivot-grid/features/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/pivot-grid/state-persistence-about/package.json b/samples/grids/pivot-grid/state-persistence-about/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/pivot-grid/state-persistence-about/package.json +++ b/samples/grids/pivot-grid/state-persistence-about/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/pivot-grid/state-persistence-main/package.json b/samples/grids/pivot-grid/state-persistence-main/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/pivot-grid/state-persistence-main/package.json +++ b/samples/grids/pivot-grid/state-persistence-main/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/action-strip/package.json b/samples/grids/tree-grid/action-strip/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/action-strip/package.json +++ b/samples/grids/tree-grid/action-strip/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/advanced-filtering-options/package.json b/samples/grids/tree-grid/advanced-filtering-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/advanced-filtering-options/package.json +++ b/samples/grids/tree-grid/advanced-filtering-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/advanced-filtering-style/package.json b/samples/grids/tree-grid/advanced-filtering-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/advanced-filtering-style/package.json +++ b/samples/grids/tree-grid/advanced-filtering-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/cell-editing-sample/package.json b/samples/grids/tree-grid/cell-editing-sample/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/cell-editing-sample/package.json +++ b/samples/grids/tree-grid/cell-editing-sample/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/cell-editing-styling/package.json b/samples/grids/tree-grid/cell-editing-styling/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/cell-editing-styling/package.json +++ b/samples/grids/tree-grid/cell-editing-styling/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/cell-merge-custom-sample/package.json b/samples/grids/tree-grid/cell-merge-custom-sample/package.json index 50a37dabf1..6df749c048 100644 --- a/samples/grids/tree-grid/cell-merge-custom-sample/package.json +++ b/samples/grids/tree-grid/cell-merge-custom-sample/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/cell-merge/package.json b/samples/grids/tree-grid/cell-merge/package.json index 50a37dabf1..6df749c048 100644 --- a/samples/grids/tree-grid/cell-merge/package.json +++ b/samples/grids/tree-grid/cell-merge/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/cell-selection-mode/package.json b/samples/grids/tree-grid/cell-selection-mode/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/tree-grid/cell-selection-mode/package.json +++ b/samples/grids/tree-grid/cell-selection-mode/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/cell-selection-style/package.json b/samples/grids/tree-grid/cell-selection-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/cell-selection-style/package.json +++ b/samples/grids/tree-grid/cell-selection-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/clipboard-operations/package.json b/samples/grids/tree-grid/clipboard-operations/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/tree-grid/clipboard-operations/package.json +++ b/samples/grids/tree-grid/clipboard-operations/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-auto-sizing/package.json b/samples/grids/tree-grid/column-auto-sizing/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/column-auto-sizing/package.json +++ b/samples/grids/tree-grid/column-auto-sizing/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/column-collapsible-groups/package.json b/samples/grids/tree-grid/column-collapsible-groups/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/column-collapsible-groups/package.json +++ b/samples/grids/tree-grid/column-collapsible-groups/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/column-data-types/package.json b/samples/grids/tree-grid/column-data-types/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/tree-grid/column-data-types/package.json +++ b/samples/grids/tree-grid/column-data-types/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-hiding-toolbar-style/package.json b/samples/grids/tree-grid/column-hiding-toolbar-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar-style/package.json +++ b/samples/grids/tree-grid/column-hiding-toolbar-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/column-hiding-toolbar/package.json b/samples/grids/tree-grid/column-hiding-toolbar/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar/package.json +++ b/samples/grids/tree-grid/column-hiding-toolbar/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/column-moving-options/package.json b/samples/grids/tree-grid/column-moving-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/column-moving-options/package.json +++ b/samples/grids/tree-grid/column-moving-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/column-moving-styles/package.json b/samples/grids/tree-grid/column-moving-styles/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/column-moving-styles/package.json +++ b/samples/grids/tree-grid/column-moving-styles/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/column-pinning-both-sides/package.json b/samples/grids/tree-grid/column-pinning-both-sides/package.json index 50a37dabf1..6df749c048 100644 --- a/samples/grids/tree-grid/column-pinning-both-sides/package.json +++ b/samples/grids/tree-grid/column-pinning-both-sides/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-pinning-options/package.json b/samples/grids/tree-grid/column-pinning-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/column-pinning-options/package.json +++ b/samples/grids/tree-grid/column-pinning-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/column-pinning-right-side/package.json b/samples/grids/tree-grid/column-pinning-right-side/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/column-pinning-right-side/package.json +++ b/samples/grids/tree-grid/column-pinning-right-side/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/column-pinning-styles/package.json b/samples/grids/tree-grid/column-pinning-styles/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/column-pinning-styles/package.json +++ b/samples/grids/tree-grid/column-pinning-styles/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/column-pinning-toolbar/package.json b/samples/grids/tree-grid/column-pinning-toolbar/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/column-pinning-toolbar/package.json +++ b/samples/grids/tree-grid/column-pinning-toolbar/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/column-pinning/package.json b/samples/grids/tree-grid/column-pinning/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/column-pinning/package.json +++ b/samples/grids/tree-grid/column-pinning/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/column-resize-styling/package.json b/samples/grids/tree-grid/column-resize-styling/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/column-resize-styling/package.json +++ b/samples/grids/tree-grid/column-resize-styling/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/column-resizing/package.json b/samples/grids/tree-grid/column-resizing/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/column-resizing/package.json +++ b/samples/grids/tree-grid/column-resizing/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/column-selection-group/package.json b/samples/grids/tree-grid/column-selection-group/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/column-selection-group/package.json +++ b/samples/grids/tree-grid/column-selection-group/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/column-selection-mode/package.json b/samples/grids/tree-grid/column-selection-mode/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/tree-grid/column-selection-mode/package.json +++ b/samples/grids/tree-grid/column-selection-mode/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-selection-style/package.json b/samples/grids/tree-grid/column-selection-style/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/tree-grid/column-selection-style/package.json +++ b/samples/grids/tree-grid/column-selection-style/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-selection-styles/package.json b/samples/grids/tree-grid/column-selection-styles/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/column-selection-styles/package.json +++ b/samples/grids/tree-grid/column-selection-styles/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/column-sorting-indicators/package.json b/samples/grids/tree-grid/column-sorting-indicators/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/column-sorting-indicators/package.json +++ b/samples/grids/tree-grid/column-sorting-indicators/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/column-sorting-options/package.json b/samples/grids/tree-grid/column-sorting-options/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/tree-grid/column-sorting-options/package.json +++ b/samples/grids/tree-grid/column-sorting-options/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-sorting-style/package.json b/samples/grids/tree-grid/column-sorting-style/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/tree-grid/column-sorting-style/package.json +++ b/samples/grids/tree-grid/column-sorting-style/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/conditional-cell-style-1/package.json b/samples/grids/tree-grid/conditional-cell-style-1/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/conditional-cell-style-1/package.json +++ b/samples/grids/tree-grid/conditional-cell-style-1/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/conditional-cell-style-2/package.json b/samples/grids/tree-grid/conditional-cell-style-2/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/conditional-cell-style-2/package.json +++ b/samples/grids/tree-grid/conditional-cell-style-2/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/conditional-row-selectors/package.json b/samples/grids/tree-grid/conditional-row-selectors/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/conditional-row-selectors/package.json +++ b/samples/grids/tree-grid/conditional-row-selectors/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/data-exporting-indicator/package.json b/samples/grids/tree-grid/data-exporting-indicator/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/tree-grid/data-exporting-indicator/package.json +++ b/samples/grids/tree-grid/data-exporting-indicator/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/data-summary-children/package.json b/samples/grids/tree-grid/data-summary-children/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/tree-grid/data-summary-children/package.json +++ b/samples/grids/tree-grid/data-summary-children/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/data-summary-formatter/package.json b/samples/grids/tree-grid/data-summary-formatter/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/data-summary-formatter/package.json +++ b/samples/grids/tree-grid/data-summary-formatter/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/data-summary-options-styling/package.json b/samples/grids/tree-grid/data-summary-options-styling/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/data-summary-options-styling/package.json +++ b/samples/grids/tree-grid/data-summary-options-styling/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/data-summary-options/package.json b/samples/grids/tree-grid/data-summary-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/data-summary-options/package.json +++ b/samples/grids/tree-grid/data-summary-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/data-summary-template/package.json b/samples/grids/tree-grid/data-summary-template/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/tree-grid/data-summary-template/package.json +++ b/samples/grids/tree-grid/data-summary-template/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/disabled-summaries/package.json b/samples/grids/tree-grid/disabled-summaries/package.json index 41db2db72d..454fcd13e5 100644 --- a/samples/grids/tree-grid/disabled-summaries/package.json +++ b/samples/grids/tree-grid/disabled-summaries/package.json @@ -10,11 +10,11 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/editing-columns/package.json b/samples/grids/tree-grid/editing-columns/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/editing-columns/package.json +++ b/samples/grids/tree-grid/editing-columns/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/editing-events/package.json b/samples/grids/tree-grid/editing-events/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/editing-events/package.json +++ b/samples/grids/tree-grid/editing-events/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/editing-lifecycle/package.json b/samples/grids/tree-grid/editing-lifecycle/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/editing-lifecycle/package.json +++ b/samples/grids/tree-grid/editing-lifecycle/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/excel-exporting/package.json b/samples/grids/tree-grid/excel-exporting/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/excel-exporting/package.json +++ b/samples/grids/tree-grid/excel-exporting/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json b/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json b/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json b/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/excel-style-filtering-style/package.json b/samples/grids/tree-grid/excel-style-filtering-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/excel-style-filtering-style/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/filtering-options/package.json b/samples/grids/tree-grid/filtering-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/filtering-options/package.json +++ b/samples/grids/tree-grid/filtering-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/filtering-style/package.json b/samples/grids/tree-grid/filtering-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/filtering-style/package.json +++ b/samples/grids/tree-grid/filtering-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/keyboard-custom-navigation/package.json b/samples/grids/tree-grid/keyboard-custom-navigation/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/tree-grid/keyboard-custom-navigation/package.json +++ b/samples/grids/tree-grid/keyboard-custom-navigation/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/layout-display-density/package.json b/samples/grids/tree-grid/layout-display-density/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/tree-grid/layout-display-density/package.json +++ b/samples/grids/tree-grid/layout-display-density/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/multi-cell-selection-mode/package.json b/samples/grids/tree-grid/multi-cell-selection-mode/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/tree-grid/multi-cell-selection-mode/package.json +++ b/samples/grids/tree-grid/multi-cell-selection-mode/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/multi-column-headers-export/package.json b/samples/grids/tree-grid/multi-column-headers-export/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/multi-column-headers-export/package.json +++ b/samples/grids/tree-grid/multi-column-headers-export/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/multi-column-headers-overview/package.json b/samples/grids/tree-grid/multi-column-headers-overview/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/tree-grid/multi-column-headers-overview/package.json +++ b/samples/grids/tree-grid/multi-column-headers-overview/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/multi-column-headers-styling/package.json b/samples/grids/tree-grid/multi-column-headers-styling/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/multi-column-headers-styling/package.json +++ b/samples/grids/tree-grid/multi-column-headers-styling/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/multi-column-headers-template/package.json b/samples/grids/tree-grid/multi-column-headers-template/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/multi-column-headers-template/package.json +++ b/samples/grids/tree-grid/multi-column-headers-template/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/overview-styling/package.json b/samples/grids/tree-grid/overview-styling/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/overview-styling/package.json +++ b/samples/grids/tree-grid/overview-styling/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/overview/package.json b/samples/grids/tree-grid/overview/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/tree-grid/overview/package.json +++ b/samples/grids/tree-grid/overview/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/row-adding/package.json b/samples/grids/tree-grid/row-adding/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/row-adding/package.json +++ b/samples/grids/tree-grid/row-adding/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/row-classes/package.json b/samples/grids/tree-grid/row-classes/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/row-classes/package.json +++ b/samples/grids/tree-grid/row-classes/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/row-drag-base/package.json b/samples/grids/tree-grid/row-drag-base/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/tree-grid/row-drag-base/package.json +++ b/samples/grids/tree-grid/row-drag-base/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/row-editing-options/package.json b/samples/grids/tree-grid/row-editing-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/row-editing-options/package.json +++ b/samples/grids/tree-grid/row-editing-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/row-editing-style/package.json b/samples/grids/tree-grid/row-editing-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/row-editing-style/package.json +++ b/samples/grids/tree-grid/row-editing-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/row-paging-basic/package.json b/samples/grids/tree-grid/row-paging-basic/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/row-paging-basic/package.json +++ b/samples/grids/tree-grid/row-paging-basic/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/row-paging-options/package.json b/samples/grids/tree-grid/row-paging-options/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/tree-grid/row-paging-options/package.json +++ b/samples/grids/tree-grid/row-paging-options/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/row-paging-style/package.json b/samples/grids/tree-grid/row-paging-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/row-paging-style/package.json +++ b/samples/grids/tree-grid/row-paging-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/row-pinning-extra-column/package.json b/samples/grids/tree-grid/row-pinning-extra-column/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/row-pinning-extra-column/package.json +++ b/samples/grids/tree-grid/row-pinning-extra-column/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/row-pinning-options/package.json b/samples/grids/tree-grid/row-pinning-options/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/tree-grid/row-pinning-options/package.json +++ b/samples/grids/tree-grid/row-pinning-options/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/row-pinning-style/package.json b/samples/grids/tree-grid/row-pinning-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/row-pinning-style/package.json +++ b/samples/grids/tree-grid/row-pinning-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/row-reorder/package.json b/samples/grids/tree-grid/row-reorder/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/row-reorder/package.json +++ b/samples/grids/tree-grid/row-reorder/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/row-selection-mode/package.json b/samples/grids/tree-grid/row-selection-mode/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/tree-grid/row-selection-mode/package.json +++ b/samples/grids/tree-grid/row-selection-mode/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/row-selection-template-excel/package.json b/samples/grids/tree-grid/row-selection-template-excel/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/row-selection-template-excel/package.json +++ b/samples/grids/tree-grid/row-selection-template-excel/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/row-selection-template-numbers/package.json b/samples/grids/tree-grid/row-selection-template-numbers/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/row-selection-template-numbers/package.json +++ b/samples/grids/tree-grid/row-selection-template-numbers/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/row-styles/package.json b/samples/grids/tree-grid/row-styles/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/row-styles/package.json +++ b/samples/grids/tree-grid/row-styles/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/state-persistence-about/package.json b/samples/grids/tree-grid/state-persistence-about/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/tree-grid/state-persistence-about/package.json +++ b/samples/grids/tree-grid/state-persistence-about/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/state-persistence-main/package.json b/samples/grids/tree-grid/state-persistence-main/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/tree-grid/state-persistence-main/package.json +++ b/samples/grids/tree-grid/state-persistence-main/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/toolbar-sample-1/package.json b/samples/grids/tree-grid/toolbar-sample-1/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/toolbar-sample-1/package.json +++ b/samples/grids/tree-grid/toolbar-sample-1/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/toolbar-sample-2/package.json b/samples/grids/tree-grid/toolbar-sample-2/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/tree-grid/toolbar-sample-2/package.json +++ b/samples/grids/tree-grid/toolbar-sample-2/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/toolbar-sample-3/package.json b/samples/grids/tree-grid/toolbar-sample-3/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/toolbar-sample-3/package.json +++ b/samples/grids/tree-grid/toolbar-sample-3/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/toolbar-sample-4/package.json b/samples/grids/tree-grid/toolbar-sample-4/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/tree-grid/toolbar-sample-4/package.json +++ b/samples/grids/tree-grid/toolbar-sample-4/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/toolbar-style/package.json b/samples/grids/tree-grid/toolbar-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/toolbar-style/package.json +++ b/samples/grids/tree-grid/toolbar-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/using-primary-foreign-keys/package.json b/samples/grids/tree-grid/using-primary-foreign-keys/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/using-primary-foreign-keys/package.json +++ b/samples/grids/tree-grid/using-primary-foreign-keys/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree/basic-example/package.json b/samples/grids/tree/basic-example/package.json index 2ef000db44..ca1082b56c 100644 --- a/samples/grids/tree/basic-example/package.json +++ b/samples/grids/tree/basic-example/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/tree/styling/package.json b/samples/grids/tree/styling/package.json index 2ef000db44..ca1082b56c 100644 --- a/samples/grids/tree/styling/package.json +++ b/samples/grids/tree/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/badge/outlined/package.json b/samples/inputs/badge/outlined/package.json index 856a67bf9c..0178ba4842 100644 --- a/samples/inputs/badge/outlined/package.json +++ b/samples/inputs/badge/outlined/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/badge/shape/package.json b/samples/inputs/badge/shape/package.json index 37d7b3227f..5c8fda3da8 100644 --- a/samples/inputs/badge/shape/package.json +++ b/samples/inputs/badge/shape/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/badge/styling/package.json b/samples/inputs/badge/styling/package.json index 37d7b3227f..5c8fda3da8 100644 --- a/samples/inputs/badge/styling/package.json +++ b/samples/inputs/badge/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/badge/variants/package.json b/samples/inputs/badge/variants/package.json index 735a1a6ff0..0413f5f3b0 100644 --- a/samples/inputs/badge/variants/package.json +++ b/samples/inputs/badge/variants/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/button-group/alignment/package.json b/samples/inputs/button-group/alignment/package.json index c1b3978d43..703e0ca1a4 100644 --- a/samples/inputs/button-group/alignment/package.json +++ b/samples/inputs/button-group/alignment/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/button-group/overview/package.json b/samples/inputs/button-group/overview/package.json index 5e38f8f3bc..7b78f74cd9 100644 --- a/samples/inputs/button-group/overview/package.json +++ b/samples/inputs/button-group/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/button-group/selection/package.json b/samples/inputs/button-group/selection/package.json index c0a91f1e40..ffcabf4e88 100644 --- a/samples/inputs/button-group/selection/package.json +++ b/samples/inputs/button-group/selection/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/button-group/size/package.json b/samples/inputs/button-group/size/package.json index 34ad629ede..6401f0c6d4 100644 --- a/samples/inputs/button-group/size/package.json +++ b/samples/inputs/button-group/size/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/button-group/styling/package.json b/samples/inputs/button-group/styling/package.json index 5e83052146..c3d7585c7f 100644 --- a/samples/inputs/button-group/styling/package.json +++ b/samples/inputs/button-group/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/button/contained/package.json b/samples/inputs/button/contained/package.json index 51d8d2ef70..e9a462dc8f 100644 --- a/samples/inputs/button/contained/package.json +++ b/samples/inputs/button/contained/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/button/download/package.json b/samples/inputs/button/download/package.json index 778dc20fbf..acb1a64367 100644 --- a/samples/inputs/button/download/package.json +++ b/samples/inputs/button/download/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/button/fab/package.json b/samples/inputs/button/fab/package.json index efa1595367..18d26379e9 100644 --- a/samples/inputs/button/fab/package.json +++ b/samples/inputs/button/fab/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/button/flat/package.json b/samples/inputs/button/flat/package.json index cfbfce3097..a6ae284fd2 100644 --- a/samples/inputs/button/flat/package.json +++ b/samples/inputs/button/flat/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/button/outlined/package.json b/samples/inputs/button/outlined/package.json index fe394c8e33..756ebecca2 100644 --- a/samples/inputs/button/outlined/package.json +++ b/samples/inputs/button/outlined/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/button/overview/package.json b/samples/inputs/button/overview/package.json index 128174cc8a..29411f579e 100644 --- a/samples/inputs/button/overview/package.json +++ b/samples/inputs/button/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/button/size/package.json b/samples/inputs/button/size/package.json index 8aeb8c52f9..b61c0f0e8c 100644 --- a/samples/inputs/button/size/package.json +++ b/samples/inputs/button/size/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/button/styling/package.json b/samples/inputs/button/styling/package.json index fa784a3479..96d272c3e6 100644 --- a/samples/inputs/button/styling/package.json +++ b/samples/inputs/button/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/checkbox/checking/package.json b/samples/inputs/checkbox/checking/package.json index 1263d5fa13..991c707100 100644 --- a/samples/inputs/checkbox/checking/package.json +++ b/samples/inputs/checkbox/checking/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/checkbox/disabled/package.json b/samples/inputs/checkbox/disabled/package.json index 19a91d7eb9..c0dc516935 100644 --- a/samples/inputs/checkbox/disabled/package.json +++ b/samples/inputs/checkbox/disabled/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/checkbox/indeterminate/package.json b/samples/inputs/checkbox/indeterminate/package.json index 7d649b36d4..b6c0a68224 100644 --- a/samples/inputs/checkbox/indeterminate/package.json +++ b/samples/inputs/checkbox/indeterminate/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/checkbox/label/package.json b/samples/inputs/checkbox/label/package.json index 4e2be4b3cb..2869826653 100644 --- a/samples/inputs/checkbox/label/package.json +++ b/samples/inputs/checkbox/label/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/checkbox/overview/package.json b/samples/inputs/checkbox/overview/package.json index 327fd02b45..f0b0efa193 100644 --- a/samples/inputs/checkbox/overview/package.json +++ b/samples/inputs/checkbox/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/checkbox/styling/package.json b/samples/inputs/checkbox/styling/package.json index 327fd02b45..f0b0efa193 100644 --- a/samples/inputs/checkbox/styling/package.json +++ b/samples/inputs/checkbox/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/chip/multiple/package.json b/samples/inputs/chip/multiple/package.json index 14c2cfef6d..55f3f42530 100644 --- a/samples/inputs/chip/multiple/package.json +++ b/samples/inputs/chip/multiple/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/chip/overview/package.json b/samples/inputs/chip/overview/package.json index 9227beab79..b99c744be3 100644 --- a/samples/inputs/chip/overview/package.json +++ b/samples/inputs/chip/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/chip/size/package.json b/samples/inputs/chip/size/package.json index a20c58c37b..384bf419d1 100644 --- a/samples/inputs/chip/size/package.json +++ b/samples/inputs/chip/size/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/chip/styling/package.json b/samples/inputs/chip/styling/package.json index 064947d854..fa5ea30caa 100644 --- a/samples/inputs/chip/styling/package.json +++ b/samples/inputs/chip/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/chip/variants/package.json b/samples/inputs/chip/variants/package.json index 03ba61b0c0..b386c6c040 100644 --- a/samples/inputs/chip/variants/package.json +++ b/samples/inputs/chip/variants/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/circular-progress-indicator/dynamic/package.json b/samples/inputs/circular-progress-indicator/dynamic/package.json index d9dee09a9e..71da02da4f 100644 --- a/samples/inputs/circular-progress-indicator/dynamic/package.json +++ b/samples/inputs/circular-progress-indicator/dynamic/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/circular-progress-indicator/indeterminate/package.json b/samples/inputs/circular-progress-indicator/indeterminate/package.json index 32bb3da630..c99f4873bf 100644 --- a/samples/inputs/circular-progress-indicator/indeterminate/package.json +++ b/samples/inputs/circular-progress-indicator/indeterminate/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/circular-progress-indicator/simple/package.json b/samples/inputs/circular-progress-indicator/simple/package.json index 5a5787b64c..2753ac5295 100644 --- a/samples/inputs/circular-progress-indicator/simple/package.json +++ b/samples/inputs/circular-progress-indicator/simple/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/circular-progress-indicator/styling/package.json b/samples/inputs/circular-progress-indicator/styling/package.json index f89a56bbb7..cebbef6920 100644 --- a/samples/inputs/circular-progress-indicator/styling/package.json +++ b/samples/inputs/circular-progress-indicator/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/color-editor/overview/package.json b/samples/inputs/color-editor/overview/package.json index 1f279260b8..04fac1198e 100644 --- a/samples/inputs/color-editor/overview/package.json +++ b/samples/inputs/color-editor/overview/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/inputs/combo/features/package.json b/samples/inputs/combo/features/package.json index 3c4141b781..888661d770 100644 --- a/samples/inputs/combo/features/package.json +++ b/samples/inputs/combo/features/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/combo/overview/package.json b/samples/inputs/combo/overview/package.json index 9d698d5a8d..7385e95467 100644 --- a/samples/inputs/combo/overview/package.json +++ b/samples/inputs/combo/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/combo/selection/package.json b/samples/inputs/combo/selection/package.json index 07165d8e64..fdbb78a594 100644 --- a/samples/inputs/combo/selection/package.json +++ b/samples/inputs/combo/selection/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/combo/simplified/package.json b/samples/inputs/combo/simplified/package.json index 62625b0462..9d144f8153 100644 --- a/samples/inputs/combo/simplified/package.json +++ b/samples/inputs/combo/simplified/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/combo/styling/package.json b/samples/inputs/combo/styling/package.json index ff0f2c058b..b59d9d35fd 100644 --- a/samples/inputs/combo/styling/package.json +++ b/samples/inputs/combo/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/combo/templates/package.json b/samples/inputs/combo/templates/package.json index 125f3245f7..f73df5b5cb 100644 --- a/samples/inputs/combo/templates/package.json +++ b/samples/inputs/combo/templates/package.json @@ -14,10 +14,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/inputs/date-time-input/input-format-display-format/package.json b/samples/inputs/date-time-input/input-format-display-format/package.json index 2697bd5b9b..6904047895 100644 --- a/samples/inputs/date-time-input/input-format-display-format/package.json +++ b/samples/inputs/date-time-input/input-format-display-format/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/date-time-input/min-max-value/package.json b/samples/inputs/date-time-input/min-max-value/package.json index 0e0b6eeafc..9283342e65 100644 --- a/samples/inputs/date-time-input/min-max-value/package.json +++ b/samples/inputs/date-time-input/min-max-value/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/date-time-input/overview/package.json b/samples/inputs/date-time-input/overview/package.json index 0b896d8047..111c041659 100644 --- a/samples/inputs/date-time-input/overview/package.json +++ b/samples/inputs/date-time-input/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/date-time-input/step-up-down/package.json b/samples/inputs/date-time-input/step-up-down/package.json index 0a1ec53b8a..5fc1fd1baa 100644 --- a/samples/inputs/date-time-input/step-up-down/package.json +++ b/samples/inputs/date-time-input/step-up-down/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/date-time-input/styling/package.json b/samples/inputs/date-time-input/styling/package.json index 0b896d8047..111c041659 100644 --- a/samples/inputs/date-time-input/styling/package.json +++ b/samples/inputs/date-time-input/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/dropdown/group/package.json b/samples/inputs/dropdown/group/package.json index a52a67dca9..584221a3b6 100644 --- a/samples/inputs/dropdown/group/package.json +++ b/samples/inputs/dropdown/group/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/dropdown/header/package.json b/samples/inputs/dropdown/header/package.json index 9f9ce4a1e1..b0cc2ce9a8 100644 --- a/samples/inputs/dropdown/header/package.json +++ b/samples/inputs/dropdown/header/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/dropdown/item/package.json b/samples/inputs/dropdown/item/package.json index 54ab4ea916..2395c2069a 100644 --- a/samples/inputs/dropdown/item/package.json +++ b/samples/inputs/dropdown/item/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/dropdown/overview/package.json b/samples/inputs/dropdown/overview/package.json index f0c861b80e..aee8ecabb4 100644 --- a/samples/inputs/dropdown/overview/package.json +++ b/samples/inputs/dropdown/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/dropdown/position/package.json b/samples/inputs/dropdown/position/package.json index 007be6baf5..6c913890ff 100644 --- a/samples/inputs/dropdown/position/package.json +++ b/samples/inputs/dropdown/position/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/dropdown/styling/package.json b/samples/inputs/dropdown/styling/package.json index 231ef8bc68..54d2a2afc9 100644 --- a/samples/inputs/dropdown/styling/package.json +++ b/samples/inputs/dropdown/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/dropdown/target/package.json b/samples/inputs/dropdown/target/package.json index 6ef2f28276..db16cc4c19 100644 --- a/samples/inputs/dropdown/target/package.json +++ b/samples/inputs/dropdown/target/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/icon-button/size/package.json b/samples/inputs/icon-button/size/package.json index daf7bce7ff..2d2fe601e4 100644 --- a/samples/inputs/icon-button/size/package.json +++ b/samples/inputs/icon-button/size/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/icon-button/styling/package.json b/samples/inputs/icon-button/styling/package.json index f4d8f556ab..f90d466e81 100644 --- a/samples/inputs/icon-button/styling/package.json +++ b/samples/inputs/icon-button/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/icon-button/variant/package.json b/samples/inputs/icon-button/variant/package.json index e6f93dbcaf..528ae082f7 100644 --- a/samples/inputs/icon-button/variant/package.json +++ b/samples/inputs/icon-button/variant/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/input/helper-text/package.json b/samples/inputs/input/helper-text/package.json index 9367d30c7e..346782cb96 100644 --- a/samples/inputs/input/helper-text/package.json +++ b/samples/inputs/input/helper-text/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/input/overview/package.json b/samples/inputs/input/overview/package.json index 19b3da568e..8e3e0a8921 100644 --- a/samples/inputs/input/overview/package.json +++ b/samples/inputs/input/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/input/prefix-suffix/package.json b/samples/inputs/input/prefix-suffix/package.json index f28a6a46fc..1d993c3d66 100644 --- a/samples/inputs/input/prefix-suffix/package.json +++ b/samples/inputs/input/prefix-suffix/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/input/size/package.json b/samples/inputs/input/size/package.json index 6e30ba9d91..9797aa3fe0 100644 --- a/samples/inputs/input/size/package.json +++ b/samples/inputs/input/size/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/input/styling/package.json b/samples/inputs/input/styling/package.json index a71364ecc8..688d44f3f8 100644 --- a/samples/inputs/input/styling/package.json +++ b/samples/inputs/input/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/linear-progress-indicator/dynamic/package.json b/samples/inputs/linear-progress-indicator/dynamic/package.json index 927b1530a5..a5f4244928 100644 --- a/samples/inputs/linear-progress-indicator/dynamic/package.json +++ b/samples/inputs/linear-progress-indicator/dynamic/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/linear-progress-indicator/simple/package.json b/samples/inputs/linear-progress-indicator/simple/package.json index 47be883d95..dd4966314a 100644 --- a/samples/inputs/linear-progress-indicator/simple/package.json +++ b/samples/inputs/linear-progress-indicator/simple/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/linear-progress-indicator/striped/package.json b/samples/inputs/linear-progress-indicator/striped/package.json index bc35a4e1e8..1285eb4da8 100644 --- a/samples/inputs/linear-progress-indicator/striped/package.json +++ b/samples/inputs/linear-progress-indicator/striped/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/linear-progress-indicator/styling/package.json b/samples/inputs/linear-progress-indicator/styling/package.json index 023128b55f..ce8efbaecd 100644 --- a/samples/inputs/linear-progress-indicator/styling/package.json +++ b/samples/inputs/linear-progress-indicator/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/linear-progress-indicator/types/package.json b/samples/inputs/linear-progress-indicator/types/package.json index 11a662151a..90ce023c8a 100644 --- a/samples/inputs/linear-progress-indicator/types/package.json +++ b/samples/inputs/linear-progress-indicator/types/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/mask-input/applying-mask/package.json b/samples/inputs/mask-input/applying-mask/package.json index d367cd0ee8..83f1e89265 100644 --- a/samples/inputs/mask-input/applying-mask/package.json +++ b/samples/inputs/mask-input/applying-mask/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/mask-input/overview/package.json b/samples/inputs/mask-input/overview/package.json index 3b1ffdc086..d2b31e252f 100644 --- a/samples/inputs/mask-input/overview/package.json +++ b/samples/inputs/mask-input/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/mask-input/value-modes/package.json b/samples/inputs/mask-input/value-modes/package.json index c95f859f9f..2e01755dbf 100644 --- a/samples/inputs/mask-input/value-modes/package.json +++ b/samples/inputs/mask-input/value-modes/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/radio/alignment/package.json b/samples/inputs/radio/alignment/package.json index 40decfd393..899327a8ab 100644 --- a/samples/inputs/radio/alignment/package.json +++ b/samples/inputs/radio/alignment/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/radio/disabled/package.json b/samples/inputs/radio/disabled/package.json index 6ebe5b5e18..b1ad9f4aef 100644 --- a/samples/inputs/radio/disabled/package.json +++ b/samples/inputs/radio/disabled/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/radio/group/package.json b/samples/inputs/radio/group/package.json index 9d2b9274ff..92d502d62b 100644 --- a/samples/inputs/radio/group/package.json +++ b/samples/inputs/radio/group/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/radio/invalid/package.json b/samples/inputs/radio/invalid/package.json index cd43eba4ea..2f98e54f1f 100644 --- a/samples/inputs/radio/invalid/package.json +++ b/samples/inputs/radio/invalid/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/radio/label/package.json b/samples/inputs/radio/label/package.json index bb0f0e468f..008cfa3fa9 100644 --- a/samples/inputs/radio/label/package.json +++ b/samples/inputs/radio/label/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/radio/styling/package.json b/samples/inputs/radio/styling/package.json index 4eb29d0096..d0ba78dea1 100644 --- a/samples/inputs/radio/styling/package.json +++ b/samples/inputs/radio/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/rating/basic/package.json b/samples/inputs/rating/basic/package.json index 128174cc8a..29411f579e 100644 --- a/samples/inputs/rating/basic/package.json +++ b/samples/inputs/rating/basic/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/rating/custom/package.json b/samples/inputs/rating/custom/package.json index 128174cc8a..29411f579e 100644 --- a/samples/inputs/rating/custom/package.json +++ b/samples/inputs/rating/custom/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/rating/empty/package.json b/samples/inputs/rating/empty/package.json index 128174cc8a..29411f579e 100644 --- a/samples/inputs/rating/empty/package.json +++ b/samples/inputs/rating/empty/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/rating/single-selection/package.json b/samples/inputs/rating/single-selection/package.json index 128174cc8a..29411f579e 100644 --- a/samples/inputs/rating/single-selection/package.json +++ b/samples/inputs/rating/single-selection/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/rating/styling/package.json b/samples/inputs/rating/styling/package.json index 128174cc8a..29411f579e 100644 --- a/samples/inputs/rating/styling/package.json +++ b/samples/inputs/rating/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/ripple/button/package.json b/samples/inputs/ripple/button/package.json index b184802001..18b14290ed 100644 --- a/samples/inputs/ripple/button/package.json +++ b/samples/inputs/ripple/button/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/ripple/color/package.json b/samples/inputs/ripple/color/package.json index c5ea923da7..0e2e865bed 100644 --- a/samples/inputs/ripple/color/package.json +++ b/samples/inputs/ripple/color/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/select/group/package.json b/samples/inputs/select/group/package.json index 67c3fd8846..0e9ea2ed4e 100644 --- a/samples/inputs/select/group/package.json +++ b/samples/inputs/select/group/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/select/header/package.json b/samples/inputs/select/header/package.json index dbe050e018..cbf71c93a2 100644 --- a/samples/inputs/select/header/package.json +++ b/samples/inputs/select/header/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/select/item/package.json b/samples/inputs/select/item/package.json index 65d7548b71..cf6fb9557f 100644 --- a/samples/inputs/select/item/package.json +++ b/samples/inputs/select/item/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/select/overview/package.json b/samples/inputs/select/overview/package.json index 9cd1cf5941..389b6be0a1 100644 --- a/samples/inputs/select/overview/package.json +++ b/samples/inputs/select/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/select/styling/package.json b/samples/inputs/select/styling/package.json index 7d83f15dc4..b54edad777 100644 --- a/samples/inputs/select/styling/package.json +++ b/samples/inputs/select/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/slider/constraints/package.json b/samples/inputs/slider/constraints/package.json index 50adc9b0bb..4306c5923c 100644 --- a/samples/inputs/slider/constraints/package.json +++ b/samples/inputs/slider/constraints/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/slider/disabled/package.json b/samples/inputs/slider/disabled/package.json index b56bd914bf..d42ec6afcc 100644 --- a/samples/inputs/slider/disabled/package.json +++ b/samples/inputs/slider/disabled/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/slider/discrete/package.json b/samples/inputs/slider/discrete/package.json index 145404d460..c9ac5a7c2f 100644 --- a/samples/inputs/slider/discrete/package.json +++ b/samples/inputs/slider/discrete/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/slider/labels/package.json b/samples/inputs/slider/labels/package.json index 95088a7a7f..0691a62705 100644 --- a/samples/inputs/slider/labels/package.json +++ b/samples/inputs/slider/labels/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/slider/overview/package.json b/samples/inputs/slider/overview/package.json index da46401402..58aa93cd2d 100644 --- a/samples/inputs/slider/overview/package.json +++ b/samples/inputs/slider/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/slider/styling/package.json b/samples/inputs/slider/styling/package.json index 56967b947d..02b6a6b82f 100644 --- a/samples/inputs/slider/styling/package.json +++ b/samples/inputs/slider/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/slider/tick-labels/package.json b/samples/inputs/slider/tick-labels/package.json index b288ca6554..a3c988e168 100644 --- a/samples/inputs/slider/tick-labels/package.json +++ b/samples/inputs/slider/tick-labels/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/slider/ticks/package.json b/samples/inputs/slider/ticks/package.json index f6edac7959..8618497d1c 100644 --- a/samples/inputs/slider/ticks/package.json +++ b/samples/inputs/slider/ticks/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/slider/value-format/package.json b/samples/inputs/slider/value-format/package.json index 7e2dfeef43..29f204f6e3 100644 --- a/samples/inputs/slider/value-format/package.json +++ b/samples/inputs/slider/value-format/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/slider/value/package.json b/samples/inputs/slider/value/package.json index 2171fc5c26..9a62eb0711 100644 --- a/samples/inputs/slider/value/package.json +++ b/samples/inputs/slider/value/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/switches/checking/package.json b/samples/inputs/switches/checking/package.json index 87113634e4..aa785abd4f 100644 --- a/samples/inputs/switches/checking/package.json +++ b/samples/inputs/switches/checking/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/switches/disabled/package.json b/samples/inputs/switches/disabled/package.json index 3bee7f470f..b0a686583b 100644 --- a/samples/inputs/switches/disabled/package.json +++ b/samples/inputs/switches/disabled/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/switches/label/package.json b/samples/inputs/switches/label/package.json index cb9d5f67ea..cb84cbec8c 100644 --- a/samples/inputs/switches/label/package.json +++ b/samples/inputs/switches/label/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/switches/overview/package.json b/samples/inputs/switches/overview/package.json index 135a392137..5f2d970e41 100644 --- a/samples/inputs/switches/overview/package.json +++ b/samples/inputs/switches/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/switches/styling/package.json b/samples/inputs/switches/styling/package.json index 87113634e4..aa785abd4f 100644 --- a/samples/inputs/switches/styling/package.json +++ b/samples/inputs/switches/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/textarea/form-integration/package.json b/samples/inputs/textarea/form-integration/package.json index 0587900703..fa8bd41935 100644 --- a/samples/inputs/textarea/form-integration/package.json +++ b/samples/inputs/textarea/form-integration/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/textarea/overview/package.json b/samples/inputs/textarea/overview/package.json index fdf947b935..0a20d5200e 100644 --- a/samples/inputs/textarea/overview/package.json +++ b/samples/inputs/textarea/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/textarea/resize/package.json b/samples/inputs/textarea/resize/package.json index 2f1ff331d4..39a41326ef 100644 --- a/samples/inputs/textarea/resize/package.json +++ b/samples/inputs/textarea/resize/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/textarea/slots/package.json b/samples/inputs/textarea/slots/package.json index 9a95c3eb4b..243d1bd325 100644 --- a/samples/inputs/textarea/slots/package.json +++ b/samples/inputs/textarea/slots/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/textarea/styling/package.json b/samples/inputs/textarea/styling/package.json index 1eff569334..0b2d7ca12b 100644 --- a/samples/inputs/textarea/styling/package.json +++ b/samples/inputs/textarea/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/tooltip/advanced/package.json b/samples/inputs/tooltip/advanced/package.json index 3d7358fdda..b7ec5b1ca9 100644 --- a/samples/inputs/tooltip/advanced/package.json +++ b/samples/inputs/tooltip/advanced/package.json @@ -14,8 +14,8 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/tooltip/overview/package.json b/samples/inputs/tooltip/overview/package.json index 128174cc8a..29411f579e 100644 --- a/samples/inputs/tooltip/overview/package.json +++ b/samples/inputs/tooltip/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/tooltip/placement/package.json b/samples/inputs/tooltip/placement/package.json index 128174cc8a..29411f579e 100644 --- a/samples/inputs/tooltip/placement/package.json +++ b/samples/inputs/tooltip/placement/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/tooltip/rich/package.json b/samples/inputs/tooltip/rich/package.json index 128174cc8a..29411f579e 100644 --- a/samples/inputs/tooltip/rich/package.json +++ b/samples/inputs/tooltip/rich/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/tooltip/styling/package.json b/samples/inputs/tooltip/styling/package.json index 128174cc8a..29411f579e 100644 --- a/samples/inputs/tooltip/styling/package.json +++ b/samples/inputs/tooltip/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/tooltip/triggers/package.json b/samples/inputs/tooltip/triggers/package.json index 128174cc8a..29411f579e 100644 --- a/samples/inputs/tooltip/triggers/package.json +++ b/samples/inputs/tooltip/triggers/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/interactions/chat/features/package.json b/samples/interactions/chat/features/package.json index 069693855c..76cdb3d6ed 100644 --- a/samples/interactions/chat/features/package.json +++ b/samples/interactions/chat/features/package.json @@ -15,7 +15,7 @@ "dompurify": "^3.3.0", "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "marked": "^16.4.1", "marked-shiki": "^1.2.1", diff --git a/samples/interactions/chat/overview/package.json b/samples/interactions/chat/overview/package.json index a08b2485a2..3b4f754b2a 100644 --- a/samples/interactions/chat/overview/package.json +++ b/samples/interactions/chat/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/interactions/chat/styling/package.json b/samples/interactions/chat/styling/package.json index d1d786c692..a2bd512eac 100644 --- a/samples/interactions/chat/styling/package.json +++ b/samples/interactions/chat/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/accordion/customization/package.json b/samples/layouts/accordion/customization/package.json index ce8c54c020..429f5672ae 100644 --- a/samples/layouts/accordion/customization/package.json +++ b/samples/layouts/accordion/customization/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/accordion/nested-scenario/package.json b/samples/layouts/accordion/nested-scenario/package.json index 129d402c43..0de8a2ab8d 100644 --- a/samples/layouts/accordion/nested-scenario/package.json +++ b/samples/layouts/accordion/nested-scenario/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/accordion/overview/package.json b/samples/layouts/accordion/overview/package.json index d3ff5ac037..961a28afd0 100644 --- a/samples/layouts/accordion/overview/package.json +++ b/samples/layouts/accordion/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/avatar/icon/package.json b/samples/layouts/avatar/icon/package.json index 1f6a7db14e..61bafe3300 100644 --- a/samples/layouts/avatar/icon/package.json +++ b/samples/layouts/avatar/icon/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/avatar/image/package.json b/samples/layouts/avatar/image/package.json index 3bcdedb922..2f2d5f6c2f 100644 --- a/samples/layouts/avatar/image/package.json +++ b/samples/layouts/avatar/image/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/avatar/initials/package.json b/samples/layouts/avatar/initials/package.json index b368bf23ea..68fe12ca7c 100644 --- a/samples/layouts/avatar/initials/package.json +++ b/samples/layouts/avatar/initials/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/avatar/shape/package.json b/samples/layouts/avatar/shape/package.json index af1a375f0a..d0738391cc 100644 --- a/samples/layouts/avatar/shape/package.json +++ b/samples/layouts/avatar/shape/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/avatar/size/package.json b/samples/layouts/avatar/size/package.json index a73cf09aac..879ffae633 100644 --- a/samples/layouts/avatar/size/package.json +++ b/samples/layouts/avatar/size/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/avatar/styling/package.json b/samples/layouts/avatar/styling/package.json index 21250228da..34380983cc 100644 --- a/samples/layouts/avatar/styling/package.json +++ b/samples/layouts/avatar/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/card/horizontal/package.json b/samples/layouts/card/horizontal/package.json index 73f8aacf71..004169e389 100644 --- a/samples/layouts/card/horizontal/package.json +++ b/samples/layouts/card/horizontal/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/card/overview/package.json b/samples/layouts/card/overview/package.json index 6b47a3b2d0..54fad36895 100644 --- a/samples/layouts/card/overview/package.json +++ b/samples/layouts/card/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/card/semi-horizontal/package.json b/samples/layouts/card/semi-horizontal/package.json index fccef08ed8..a9f899bfe4 100644 --- a/samples/layouts/card/semi-horizontal/package.json +++ b/samples/layouts/card/semi-horizontal/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/card/styling/package.json b/samples/layouts/card/styling/package.json index d9bf85aaa1..3337e8a446 100644 --- a/samples/layouts/card/styling/package.json +++ b/samples/layouts/card/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/carousel/animations/package.json b/samples/layouts/carousel/animations/package.json index b5e5caa05f..0ff4fd96c9 100644 --- a/samples/layouts/carousel/animations/package.json +++ b/samples/layouts/carousel/animations/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/carousel/components/package.json b/samples/layouts/carousel/components/package.json index db1104df3a..03c7af5169 100644 --- a/samples/layouts/carousel/components/package.json +++ b/samples/layouts/carousel/components/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/carousel/overview/package.json b/samples/layouts/carousel/overview/package.json index 9bd93c009c..6b50e41689 100644 --- a/samples/layouts/carousel/overview/package.json +++ b/samples/layouts/carousel/overview/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/carousel/thumbnail/package.json b/samples/layouts/carousel/thumbnail/package.json index 2249d10b01..bef41d38ce 100644 --- a/samples/layouts/carousel/thumbnail/package.json +++ b/samples/layouts/carousel/thumbnail/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/divider/dashed/package.json b/samples/layouts/divider/dashed/package.json index 1f6a7db14e..61bafe3300 100644 --- a/samples/layouts/divider/dashed/package.json +++ b/samples/layouts/divider/dashed/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/divider/middle/package.json b/samples/layouts/divider/middle/package.json index 1f6a7db14e..61bafe3300 100644 --- a/samples/layouts/divider/middle/package.json +++ b/samples/layouts/divider/middle/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/divider/overview/package.json b/samples/layouts/divider/overview/package.json index 1f6a7db14e..61bafe3300 100644 --- a/samples/layouts/divider/overview/package.json +++ b/samples/layouts/divider/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/divider/select/package.json b/samples/layouts/divider/select/package.json index 1f6a7db14e..61bafe3300 100644 --- a/samples/layouts/divider/select/package.json +++ b/samples/layouts/divider/select/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/divider/vertical/package.json b/samples/layouts/divider/vertical/package.json index 1f6a7db14e..61bafe3300 100644 --- a/samples/layouts/divider/vertical/package.json +++ b/samples/layouts/divider/vertical/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/dock-manager/customize-buttons/package.json b/samples/layouts/dock-manager/customize-buttons/package.json index f259a45694..ae5e22f7a2 100644 --- a/samples/layouts/dock-manager/customize-buttons/package.json +++ b/samples/layouts/dock-manager/customize-buttons/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-dockmanager": "^19.4.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/dock-manager/embedding-frames/package.json b/samples/layouts/dock-manager/embedding-frames/package.json index b80f3303f6..2face7c287 100644 --- a/samples/layouts/dock-manager/embedding-frames/package.json +++ b/samples/layouts/dock-manager/embedding-frames/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-dockmanager": "^19.4.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/dock-manager/overview/package.json b/samples/layouts/dock-manager/overview/package.json index f259a45694..ae5e22f7a2 100644 --- a/samples/layouts/dock-manager/overview/package.json +++ b/samples/layouts/dock-manager/overview/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-dockmanager": "^19.4.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/dock-manager/styling/package.json b/samples/layouts/dock-manager/styling/package.json index 4248b1b1b4..42b90154ff 100644 --- a/samples/layouts/dock-manager/styling/package.json +++ b/samples/layouts/dock-manager/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-dockmanager": "^19.4.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/dock-manager/updating-panes/package.json b/samples/layouts/dock-manager/updating-panes/package.json index 470a5e1b85..c0b47aba75 100644 --- a/samples/layouts/dock-manager/updating-panes/package.json +++ b/samples/layouts/dock-manager/updating-panes/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-react-dockmanager": "^19.4.0", - "igniteui-react-maps": "19.3.1", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/expansion-panel/component-customization/package.json b/samples/layouts/expansion-panel/component-customization/package.json index ae77667cf6..7484ca6f4a 100644 --- a/samples/layouts/expansion-panel/component-customization/package.json +++ b/samples/layouts/expansion-panel/component-customization/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/expansion-panel/properties-and-events/package.json b/samples/layouts/expansion-panel/properties-and-events/package.json index 7033f85735..caea185c2b 100644 --- a/samples/layouts/expansion-panel/properties-and-events/package.json +++ b/samples/layouts/expansion-panel/properties-and-events/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/expansion-panel/styling/package.json b/samples/layouts/expansion-panel/styling/package.json index 574184c514..71ff5931c8 100644 --- a/samples/layouts/expansion-panel/styling/package.json +++ b/samples/layouts/expansion-panel/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/expansion-panel/usage/package.json b/samples/layouts/expansion-panel/usage/package.json index b9d496f129..b7dcf2a4e1 100644 --- a/samples/layouts/expansion-panel/usage/package.json +++ b/samples/layouts/expansion-panel/usage/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/icon/sizing/package.json b/samples/layouts/icon/sizing/package.json index 78a31879e9..1b949ded98 100644 --- a/samples/layouts/icon/sizing/package.json +++ b/samples/layouts/icon/sizing/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/icon/styling/package.json b/samples/layouts/icon/styling/package.json index 7e3689594d..b8ef4c6113 100644 --- a/samples/layouts/icon/styling/package.json +++ b/samples/layouts/icon/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/stepper/animations/package.json b/samples/layouts/stepper/animations/package.json index 9d2b9274ff..92d502d62b 100644 --- a/samples/layouts/stepper/animations/package.json +++ b/samples/layouts/stepper/animations/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/stepper/linear/package.json b/samples/layouts/stepper/linear/package.json index 9d2b9274ff..92d502d62b 100644 --- a/samples/layouts/stepper/linear/package.json +++ b/samples/layouts/stepper/linear/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/stepper/orientation/package.json b/samples/layouts/stepper/orientation/package.json index 9d2b9274ff..92d502d62b 100644 --- a/samples/layouts/stepper/orientation/package.json +++ b/samples/layouts/stepper/orientation/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/stepper/steptypes/package.json b/samples/layouts/stepper/steptypes/package.json index 9d2b9274ff..92d502d62b 100644 --- a/samples/layouts/stepper/steptypes/package.json +++ b/samples/layouts/stepper/steptypes/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/stepper/styling/package.json b/samples/layouts/stepper/styling/package.json index c5f41872d2..c4c8a400ce 100644 --- a/samples/layouts/stepper/styling/package.json +++ b/samples/layouts/stepper/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/tabs/alignment/package.json b/samples/layouts/tabs/alignment/package.json index 9d2b9274ff..92d502d62b 100644 --- a/samples/layouts/tabs/alignment/package.json +++ b/samples/layouts/tabs/alignment/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/tabs/overview/package.json b/samples/layouts/tabs/overview/package.json index 9d2b9274ff..92d502d62b 100644 --- a/samples/layouts/tabs/overview/package.json +++ b/samples/layouts/tabs/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/tabs/prefix-suffix/package.json b/samples/layouts/tabs/prefix-suffix/package.json index 9d2b9274ff..92d502d62b 100644 --- a/samples/layouts/tabs/prefix-suffix/package.json +++ b/samples/layouts/tabs/prefix-suffix/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/tabs/scrolling/package.json b/samples/layouts/tabs/scrolling/package.json index 9d2b9274ff..92d502d62b 100644 --- a/samples/layouts/tabs/scrolling/package.json +++ b/samples/layouts/tabs/scrolling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/tabs/styling/package.json b/samples/layouts/tabs/styling/package.json index 9d2b9274ff..92d502d62b 100644 --- a/samples/layouts/tabs/styling/package.json +++ b/samples/layouts/tabs/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/tile-manager/actions/package.json b/samples/layouts/tile-manager/actions/package.json index 9d2b9274ff..92d502d62b 100644 --- a/samples/layouts/tile-manager/actions/package.json +++ b/samples/layouts/tile-manager/actions/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/tile-manager/columngap/package.json b/samples/layouts/tile-manager/columngap/package.json index 9d2b9274ff..92d502d62b 100644 --- a/samples/layouts/tile-manager/columngap/package.json +++ b/samples/layouts/tile-manager/columngap/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/tile-manager/dragndrop/package.json b/samples/layouts/tile-manager/dragndrop/package.json index 9d2b9274ff..92d502d62b 100644 --- a/samples/layouts/tile-manager/dragndrop/package.json +++ b/samples/layouts/tile-manager/dragndrop/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/tile-manager/layout/package.json b/samples/layouts/tile-manager/layout/package.json index 9d2b9274ff..92d502d62b 100644 --- a/samples/layouts/tile-manager/layout/package.json +++ b/samples/layouts/tile-manager/layout/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/tile-manager/overview/package.json b/samples/layouts/tile-manager/overview/package.json index 9d2b9274ff..92d502d62b 100644 --- a/samples/layouts/tile-manager/overview/package.json +++ b/samples/layouts/tile-manager/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/tile-manager/resize/package.json b/samples/layouts/tile-manager/resize/package.json index 9d2b9274ff..92d502d62b 100644 --- a/samples/layouts/tile-manager/resize/package.json +++ b/samples/layouts/tile-manager/resize/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/tile-manager/styling/package.json b/samples/layouts/tile-manager/styling/package.json index 9d2b9274ff..92d502d62b 100644 --- a/samples/layouts/tile-manager/styling/package.json +++ b/samples/layouts/tile-manager/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/maps/geo-map/binding-data-csv/package.json b/samples/maps/geo-map/binding-data-csv/package.json index dd14a19d9f..0e9555f279 100644 --- a/samples/maps/geo-map/binding-data-csv/package.json +++ b/samples/maps/geo-map/binding-data-csv/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/binding-data-json-points/package.json b/samples/maps/geo-map/binding-data-json-points/package.json index 62701cf2b1..8d4ca8d72d 100644 --- a/samples/maps/geo-map/binding-data-json-points/package.json +++ b/samples/maps/geo-map/binding-data-json-points/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/binding-data-json-shapes/package.json b/samples/maps/geo-map/binding-data-json-shapes/package.json index 3070b4ae7a..9f4b5562bd 100644 --- a/samples/maps/geo-map/binding-data-json-shapes/package.json +++ b/samples/maps/geo-map/binding-data-json-shapes/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/binding-data-model/package.json b/samples/maps/geo-map/binding-data-model/package.json index 86fcdd8d67..dc6bcaaf42 100644 --- a/samples/maps/geo-map/binding-data-model/package.json +++ b/samples/maps/geo-map/binding-data-model/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/binding-multiple-shapes/package.json b/samples/maps/geo-map/binding-multiple-shapes/package.json index ba696b46b8..c71556175e 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/package.json +++ b/samples/maps/geo-map/binding-multiple-shapes/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/binding-multiple-sources/package.json b/samples/maps/geo-map/binding-multiple-sources/package.json index 021ad00540..3e273e5a99 100644 --- a/samples/maps/geo-map/binding-multiple-sources/package.json +++ b/samples/maps/geo-map/binding-multiple-sources/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/binding-shp-points/package.json b/samples/maps/geo-map/binding-shp-points/package.json index 7bbf204f9a..f1ed739467 100644 --- a/samples/maps/geo-map/binding-shp-points/package.json +++ b/samples/maps/geo-map/binding-shp-points/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/binding-shp-polygons/package.json b/samples/maps/geo-map/binding-shp-polygons/package.json index 3070b4ae7a..9f4b5562bd 100644 --- a/samples/maps/geo-map/binding-shp-polygons/package.json +++ b/samples/maps/geo-map/binding-shp-polygons/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/binding-shp-polylines/package.json b/samples/maps/geo-map/binding-shp-polylines/package.json index db3000ddc1..4736818d69 100644 --- a/samples/maps/geo-map/binding-shp-polylines/package.json +++ b/samples/maps/geo-map/binding-shp-polylines/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/custom-tooltips/package.json b/samples/maps/geo-map/custom-tooltips/package.json index 64be6401e8..247e3d1cf0 100644 --- a/samples/maps/geo-map/custom-tooltips/package.json +++ b/samples/maps/geo-map/custom-tooltips/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/display-all-imagery/package.json b/samples/maps/geo-map/display-all-imagery/package.json index e044eb6a77..0966e4c075 100644 --- a/samples/maps/geo-map/display-all-imagery/package.json +++ b/samples/maps/geo-map/display-all-imagery/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/display-azure-imagery/package.json b/samples/maps/geo-map/display-azure-imagery/package.json index 3e1dec8f6b..52eacd4a94 100644 --- a/samples/maps/geo-map/display-azure-imagery/package.json +++ b/samples/maps/geo-map/display-azure-imagery/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/display-bing-imagery/package.json b/samples/maps/geo-map/display-bing-imagery/package.json index d3a47a027f..d93202eb52 100644 --- a/samples/maps/geo-map/display-bing-imagery/package.json +++ b/samples/maps/geo-map/display-bing-imagery/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/display-custom-imagery/package.json b/samples/maps/geo-map/display-custom-imagery/package.json index 1b8b66b590..45146f6ada 100644 --- a/samples/maps/geo-map/display-custom-imagery/package.json +++ b/samples/maps/geo-map/display-custom-imagery/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/display-esri-imagery/package.json b/samples/maps/geo-map/display-esri-imagery/package.json index 8d77265c6f..a52b00779d 100644 --- a/samples/maps/geo-map/display-esri-imagery/package.json +++ b/samples/maps/geo-map/display-esri-imagery/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/display-heat-imagery/package.json b/samples/maps/geo-map/display-heat-imagery/package.json index d2b47f3d9b..b84268ce25 100644 --- a/samples/maps/geo-map/display-heat-imagery/package.json +++ b/samples/maps/geo-map/display-heat-imagery/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/display-osm-imagery/package.json b/samples/maps/geo-map/display-osm-imagery/package.json index f03ee0ed89..9040a515fe 100644 --- a/samples/maps/geo-map/display-osm-imagery/package.json +++ b/samples/maps/geo-map/display-osm-imagery/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/marker-layouts/package.json b/samples/maps/geo-map/marker-layouts/package.json index 84f14271d8..c5e5fbcde3 100644 --- a/samples/maps/geo-map/marker-layouts/package.json +++ b/samples/maps/geo-map/marker-layouts/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/marker-template/package.json b/samples/maps/geo-map/marker-template/package.json index 18b3263839..21d703a641 100644 --- a/samples/maps/geo-map/marker-template/package.json +++ b/samples/maps/geo-map/marker-template/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/marker-type/package.json b/samples/maps/geo-map/marker-type/package.json index 56ce884c6c..f59e0de33b 100644 --- a/samples/maps/geo-map/marker-type/package.json +++ b/samples/maps/geo-map/marker-type/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/nav-grid/package.json b/samples/maps/geo-map/nav-grid/package.json index 021ad00540..3e273e5a99 100644 --- a/samples/maps/geo-map/nav-grid/package.json +++ b/samples/maps/geo-map/nav-grid/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/navigation-only-panning/package.json b/samples/maps/geo-map/navigation-only-panning/package.json index 3070b4ae7a..9f4b5562bd 100644 --- a/samples/maps/geo-map/navigation-only-panning/package.json +++ b/samples/maps/geo-map/navigation-only-panning/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/navigation/package.json b/samples/maps/geo-map/navigation/package.json index 9e32534ea4..16f3adc48d 100644 --- a/samples/maps/geo-map/navigation/package.json +++ b/samples/maps/geo-map/navigation/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/overview/package.json b/samples/maps/geo-map/overview/package.json index d2646d66ad..23c480909d 100644 --- a/samples/maps/geo-map/overview/package.json +++ b/samples/maps/geo-map/overview/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/shape-selection/package.json b/samples/maps/geo-map/shape-selection/package.json index c8d21e11ae..fbe6e81a2f 100644 --- a/samples/maps/geo-map/shape-selection/package.json +++ b/samples/maps/geo-map/shape-selection/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "react-icons": "^5.3.0", diff --git a/samples/maps/geo-map/shape-styling/package.json b/samples/maps/geo-map/shape-styling/package.json index b199c03c56..9521398f45 100644 --- a/samples/maps/geo-map/shape-styling/package.json +++ b/samples/maps/geo-map/shape-styling/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/synchronization/package.json b/samples/maps/geo-map/synchronization/package.json index a19ef34be0..90560ae958 100644 --- a/samples/maps/geo-map/synchronization/package.json +++ b/samples/maps/geo-map/synchronization/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/triangulating-data/package.json b/samples/maps/geo-map/triangulating-data/package.json index dd837c57f4..a887f709de 100644 --- a/samples/maps/geo-map/triangulating-data/package.json +++ b/samples/maps/geo-map/triangulating-data/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/type-scatter-area-series/package.json b/samples/maps/geo-map/type-scatter-area-series/package.json index cd101f754e..974a950bea 100644 --- a/samples/maps/geo-map/type-scatter-area-series/package.json +++ b/samples/maps/geo-map/type-scatter-area-series/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/type-scatter-bubble-series/package.json b/samples/maps/geo-map/type-scatter-bubble-series/package.json index 5e56e8d779..1b76ecc0a4 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/package.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/type-scatter-contour-series/package.json b/samples/maps/geo-map/type-scatter-contour-series/package.json index 7d7c88ab11..d8cb500e59 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/package.json +++ b/samples/maps/geo-map/type-scatter-contour-series/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/type-scatter-density-series/package.json b/samples/maps/geo-map/type-scatter-density-series/package.json index e7117edc41..6f881699b4 100644 --- a/samples/maps/geo-map/type-scatter-density-series/package.json +++ b/samples/maps/geo-map/type-scatter-density-series/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/type-scatter-symbol-series/package.json b/samples/maps/geo-map/type-scatter-symbol-series/package.json index 21f7839350..540e0874ac 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/package.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/type-shape-polygon-series/package.json b/samples/maps/geo-map/type-shape-polygon-series/package.json index c6305105ca..94cabb4158 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/package.json +++ b/samples/maps/geo-map/type-shape-polygon-series/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/type-shape-polyline-series/package.json b/samples/maps/geo-map/type-shape-polyline-series/package.json index ae6f0ebef8..9aa257ded3 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/package.json +++ b/samples/maps/geo-map/type-shape-polyline-series/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/menus/nav-bar/overview/package.json b/samples/menus/nav-bar/overview/package.json index 80e179a8b1..9d979a8b51 100644 --- a/samples/menus/nav-bar/overview/package.json +++ b/samples/menus/nav-bar/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/menus/nav-bar/styling/package.json b/samples/menus/nav-bar/styling/package.json index b655b39240..b608e96f8a 100644 --- a/samples/menus/nav-bar/styling/package.json +++ b/samples/menus/nav-bar/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/menus/nav-drawer/add-drawer-items/package.json b/samples/menus/nav-drawer/add-drawer-items/package.json index f7ed4aa5d8..8b6525319a 100644 --- a/samples/menus/nav-drawer/add-drawer-items/package.json +++ b/samples/menus/nav-drawer/add-drawer-items/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/menus/nav-drawer/add-mini/package.json b/samples/menus/nav-drawer/add-mini/package.json index 387375046f..8f53b9c2f4 100644 --- a/samples/menus/nav-drawer/add-mini/package.json +++ b/samples/menus/nav-drawer/add-mini/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/menus/nav-drawer/add-positions-navbar/package.json b/samples/menus/nav-drawer/add-positions-navbar/package.json index 2ea722097e..282112f7f4 100644 --- a/samples/menus/nav-drawer/add-positions-navbar/package.json +++ b/samples/menus/nav-drawer/add-positions-navbar/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/menus/nav-drawer/styling/package.json b/samples/menus/nav-drawer/styling/package.json index 5339ce2664..7b935084ff 100644 --- a/samples/menus/nav-drawer/styling/package.json +++ b/samples/menus/nav-drawer/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/notifications/banner/banner-advanced-sample/package.json b/samples/notifications/banner/banner-advanced-sample/package.json index 8c0090ee8a..a9c91bbeb6 100644 --- a/samples/notifications/banner/banner-advanced-sample/package.json +++ b/samples/notifications/banner/banner-advanced-sample/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/notifications/banner/banner-sample-1/package.json b/samples/notifications/banner/banner-sample-1/package.json index af56bdd62c..70dc47df60 100644 --- a/samples/notifications/banner/banner-sample-1/package.json +++ b/samples/notifications/banner/banner-sample-1/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/notifications/banner/banner-sample-2/package.json b/samples/notifications/banner/banner-sample-2/package.json index 6cf2351ffd..72a5a8a37b 100644 --- a/samples/notifications/banner/banner-sample-2/package.json +++ b/samples/notifications/banner/banner-sample-2/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/notifications/banner/banner-styling/package.json b/samples/notifications/banner/banner-styling/package.json index 46fbf76203..1e43150462 100644 --- a/samples/notifications/banner/banner-styling/package.json +++ b/samples/notifications/banner/banner-styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/notifications/dialog/closing-variations/package.json b/samples/notifications/dialog/closing-variations/package.json index c50ea928f4..4fccbe1063 100644 --- a/samples/notifications/dialog/closing-variations/package.json +++ b/samples/notifications/dialog/closing-variations/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/notifications/dialog/form/package.json b/samples/notifications/dialog/form/package.json index 525daa2cde..18a1d0aca7 100644 --- a/samples/notifications/dialog/form/package.json +++ b/samples/notifications/dialog/form/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/notifications/dialog/overview/package.json b/samples/notifications/dialog/overview/package.json index fddac2d44c..8e98bdd2ca 100644 --- a/samples/notifications/dialog/overview/package.json +++ b/samples/notifications/dialog/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/notifications/dialog/styling/package.json b/samples/notifications/dialog/styling/package.json index 2f1f7ee08d..36d6652b06 100644 --- a/samples/notifications/dialog/styling/package.json +++ b/samples/notifications/dialog/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/notifications/snackbar/action-text/package.json b/samples/notifications/snackbar/action-text/package.json index add86c9e12..206dea73a9 100644 --- a/samples/notifications/snackbar/action-text/package.json +++ b/samples/notifications/snackbar/action-text/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/notifications/snackbar/display-time/package.json b/samples/notifications/snackbar/display-time/package.json index b71f2badeb..d1aa94009f 100644 --- a/samples/notifications/snackbar/display-time/package.json +++ b/samples/notifications/snackbar/display-time/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/notifications/snackbar/overview/package.json b/samples/notifications/snackbar/overview/package.json index 2c73a9a46b..dbe98fd111 100644 --- a/samples/notifications/snackbar/overview/package.json +++ b/samples/notifications/snackbar/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/notifications/snackbar/styling/package.json b/samples/notifications/snackbar/styling/package.json index 8cbcefe564..55ac5d78a3 100644 --- a/samples/notifications/snackbar/styling/package.json +++ b/samples/notifications/snackbar/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/notifications/toast/overview/package.json b/samples/notifications/toast/overview/package.json index 06275a39d0..8c515bc2e5 100644 --- a/samples/notifications/toast/overview/package.json +++ b/samples/notifications/toast/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/notifications/toast/properties/package.json b/samples/notifications/toast/properties/package.json index 0916466062..b9b27242fd 100644 --- a/samples/notifications/toast/properties/package.json +++ b/samples/notifications/toast/properties/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/notifications/toast/styling/package.json b/samples/notifications/toast/styling/package.json index 2956a5b082..72e7a02f57 100644 --- a/samples/notifications/toast/styling/package.json +++ b/samples/notifications/toast/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/calendar/disabled-dates/package.json b/samples/scheduling/calendar/disabled-dates/package.json index 472e1b19ff..078c349c02 100644 --- a/samples/scheduling/calendar/disabled-dates/package.json +++ b/samples/scheduling/calendar/disabled-dates/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/calendar/formatting/package.json b/samples/scheduling/calendar/formatting/package.json index 72074d26c0..a9b7f9b090 100644 --- a/samples/scheduling/calendar/formatting/package.json +++ b/samples/scheduling/calendar/formatting/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/calendar/header/package.json b/samples/scheduling/calendar/header/package.json index 91398cfd35..1043144768 100644 --- a/samples/scheduling/calendar/header/package.json +++ b/samples/scheduling/calendar/header/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/calendar/multiple-months/package.json b/samples/scheduling/calendar/multiple-months/package.json index 4f2a12d032..aa002a73c6 100644 --- a/samples/scheduling/calendar/multiple-months/package.json +++ b/samples/scheduling/calendar/multiple-months/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/calendar/multiple-selection/package.json b/samples/scheduling/calendar/multiple-selection/package.json index 42d6755c28..819301996d 100644 --- a/samples/scheduling/calendar/multiple-selection/package.json +++ b/samples/scheduling/calendar/multiple-selection/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/calendar/overview/package.json b/samples/scheduling/calendar/overview/package.json index 3f0f0cc18f..40ef693eb9 100644 --- a/samples/scheduling/calendar/overview/package.json +++ b/samples/scheduling/calendar/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/calendar/range-selection/package.json b/samples/scheduling/calendar/range-selection/package.json index 596187abf9..eb79f0983f 100644 --- a/samples/scheduling/calendar/range-selection/package.json +++ b/samples/scheduling/calendar/range-selection/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/calendar/size/package.json b/samples/scheduling/calendar/size/package.json index 013a20c89b..9cb3af0a44 100644 --- a/samples/scheduling/calendar/size/package.json +++ b/samples/scheduling/calendar/size/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/calendar/special-dates/package.json b/samples/scheduling/calendar/special-dates/package.json index d7251d7d17..ccc7846365 100644 --- a/samples/scheduling/calendar/special-dates/package.json +++ b/samples/scheduling/calendar/special-dates/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/calendar/styling/package.json b/samples/scheduling/calendar/styling/package.json index 8478a0fcb3..e362e923f3 100644 --- a/samples/scheduling/calendar/styling/package.json +++ b/samples/scheduling/calendar/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/calendar/week-numbers/package.json b/samples/scheduling/calendar/week-numbers/package.json index 81d9e8054f..5c16852dd2 100644 --- a/samples/scheduling/calendar/week-numbers/package.json +++ b/samples/scheduling/calendar/week-numbers/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/date-picker/dialog-mode/package.json b/samples/scheduling/date-picker/dialog-mode/package.json index 6a34c3d207..472d3b11ce 100644 --- a/samples/scheduling/date-picker/dialog-mode/package.json +++ b/samples/scheduling/date-picker/dialog-mode/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/date-picker/form/package.json b/samples/scheduling/date-picker/form/package.json index 6a34c3d207..472d3b11ce 100644 --- a/samples/scheduling/date-picker/form/package.json +++ b/samples/scheduling/date-picker/form/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/date-picker/format/package.json b/samples/scheduling/date-picker/format/package.json index 6a34c3d207..472d3b11ce 100644 --- a/samples/scheduling/date-picker/format/package.json +++ b/samples/scheduling/date-picker/format/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/date-picker/overview/package.json b/samples/scheduling/date-picker/overview/package.json index 6a34c3d207..472d3b11ce 100644 --- a/samples/scheduling/date-picker/overview/package.json +++ b/samples/scheduling/date-picker/overview/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/date-picker/styling/package.json b/samples/scheduling/date-picker/styling/package.json index 6a34c3d207..472d3b11ce 100644 --- a/samples/scheduling/date-picker/styling/package.json +++ b/samples/scheduling/date-picker/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/date-range-picker/custom-ranges/package.json b/samples/scheduling/date-range-picker/custom-ranges/package.json index d8f366f33e..857893dc09 100644 --- a/samples/scheduling/date-range-picker/custom-ranges/package.json +++ b/samples/scheduling/date-range-picker/custom-ranges/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/date-range-picker/form/package.json b/samples/scheduling/date-range-picker/form/package.json index 8354f20ba2..0ed17e3ec9 100644 --- a/samples/scheduling/date-range-picker/form/package.json +++ b/samples/scheduling/date-range-picker/form/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/date-range-picker/overview/package.json b/samples/scheduling/date-range-picker/overview/package.json index 7fd041b52a..9871526082 100644 --- a/samples/scheduling/date-range-picker/overview/package.json +++ b/samples/scheduling/date-range-picker/overview/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/date-range-picker/slots/package.json b/samples/scheduling/date-range-picker/slots/package.json index 8878bd0e3b..8a65f1a7e5 100644 --- a/samples/scheduling/date-range-picker/slots/package.json +++ b/samples/scheduling/date-range-picker/slots/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/date-range-picker/styling/package.json b/samples/scheduling/date-range-picker/styling/package.json index 2acde25e6f..eab518a9f1 100644 --- a/samples/scheduling/date-range-picker/styling/package.json +++ b/samples/scheduling/date-range-picker/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", From 3d77ddb5ff53c83cf2ed336d72790bd50f3e3371 Mon Sep 17 00:00:00 2001 From: Mariela Tihova Date: Wed, 11 Feb 2026 16:37:34 +0200 Subject: [PATCH 32/43] fix(grid-data-exporting-indicator): refactored code to use React state and props and clear code --- .../data-exporting-indicator/src/index.tsx | 48 +++++++++---------- 1 file changed, 23 insertions(+), 25 deletions(-) diff --git a/samples/grids/grid/data-exporting-indicator/src/index.tsx b/samples/grids/grid/data-exporting-indicator/src/index.tsx index 33e417653a..6b1e0e1dcf 100644 --- a/samples/grids/grid/data-exporting-indicator/src/index.tsx +++ b/samples/grids/grid/data-exporting-indicator/src/index.tsx @@ -1,42 +1,41 @@ -import React, { useRef } from "react"; +import React, { useEffect, useState } from "react"; import ReactDOM from "react-dom/client"; import "./index.css"; +import "igniteui-react-grids/grids/themes/light/bootstrap.css"; +import { AthletesData } from "./AthletesData"; +import { IgrButton } from "igniteui-react"; import { IgrGridToolbar, IgrGridToolbarActions, IgrGridToolbarExporter, IgrGridToolbarTitle, - IgrGridModule, -} from "igniteui-react-grids"; -import { IgrGrid, IgrColumn, } from "igniteui-react-grids"; -import { IgrButton } from "igniteui-react"; -import "igniteui-react-grids/grids/themes/light/bootstrap.css"; -import { AthletesData } from "./AthletesData"; - -IgrGridModule.register(); -export default function App() { +export default function GridDataExportingIndicatorSample() { const athletesData = new AthletesData(); - const gridRef = useRef(null); - const toolbarRef = useRef(null); - - const localData: any[] = []; - for (let i = 0; i < 10000; i += 3) { - for (let c = 0; c < athletesData.length; c++) { - localData.push(athletesData[c]); + const [localData, setLocalData] = useState([]); + const [showProgress, setShowProgress] = useState(false); + + useEffect(() => { + const data: any[] = []; + for (let i = 0; i < 2000; i += 3) { + for (let c = 0; c < athletesData.length; c++) { + data.push(athletesData[c]); + } } - } + setLocalData(data); + }, []); + - function showProgress() { - toolbarRef.current.showProgress = true; + const setupProgressVisibility = () => { + setShowProgress(true); setTimeout(() => { - toolbarRef.current.showProgress = false; + setShowProgress(false); }, 5000); } @@ -44,17 +43,16 @@ export default function App() {
- + Grid Toolbar - + Simulate long running operation @@ -77,4 +75,4 @@ export default function App() { // rendering above component in the React DOM const root = ReactDOM.createRoot(document.getElementById("root")); -root.render(); +root.render(); From e6f2e7e5f438fb61125eda6a964b0829fa6ad4c2 Mon Sep 17 00:00:00 2001 From: Mariela Tihova Date: Wed, 11 Feb 2026 17:41:38 +0200 Subject: [PATCH 33/43] fix(treeGrid-data-exporting-indicator): refactored code to use React state and props and clear code --- .../data-exporting-indicator/src/index.tsx | 62 +++++++++---------- 1 file changed, 29 insertions(+), 33 deletions(-) diff --git a/samples/grids/tree-grid/data-exporting-indicator/src/index.tsx b/samples/grids/tree-grid/data-exporting-indicator/src/index.tsx index 73a7578aae..5e74f4eb4e 100644 --- a/samples/grids/tree-grid/data-exporting-indicator/src/index.tsx +++ b/samples/grids/tree-grid/data-exporting-indicator/src/index.tsx @@ -1,48 +1,45 @@ -import React, { useRef } from "react"; +import React, { useEffect, useRef, useState } from "react"; import ReactDOM from "react-dom/client"; import "./index.css"; +import "igniteui-react-grids/grids/themes/light/bootstrap.css"; +import { OrdersTreeData } from "./OrdersData"; +import { IgrButton } from "igniteui-react"; import { IgrGridToolbar, IgrGridToolbarActions, IgrGridToolbarExporter, IgrGridToolbarTitle, - IgrHierarchicalGridModule, -} from "igniteui-react-grids"; -import { IgrTreeGrid, - IgrColumn, + IgrColumn } from "igniteui-react-grids"; -import { IgrButton } from "igniteui-react"; -import "igniteui-react-grids/grids/themes/light/bootstrap.css"; -import { OrdersTreeData } from "./OrdersData"; - -IgrHierarchicalGridModule.register(); -export default function App() { +export default function TreeGridDataExportingIndicatorSample() { const ordersData = new OrdersTreeData(); - const treeGridRef = useRef(null); - const toolbarRef = useRef(null); - - const localData: any[] = []; - for (let i = 0; i < 100; i++) { - for (let c = 0; c < ordersData.length; c++) { - const original = ordersData[c]; - localData.push({ - ...original, - ID: original.ID + (i * ordersData.length), - ParentID: original.ParentID === -1 ? -1 : original.ParentID + (i * ordersData.length) - }); - } -} - + const [localData, setLocalData] = useState([]); + const [showProgress, setShowProgress] = useState(false); - function showProgress() { - toolbarRef.current.showProgress = true; + useEffect(() => { + const data: any[] = []; + for (let i = 0; i < 1000; i++) { + for (let c = 0; c < ordersData.length; c++) { + const original = ordersData[c]; + data.push({ + ...original, + ID: original.ID + (i * ordersData.length), + ParentID: original.ParentID === -1 ? -1 : original.ParentID + (i * ordersData.length) + }); + } + } + setLocalData(data); + }, []); + const setupProgressVisibility = () => { + setShowProgress(true); + setTimeout(() => { - toolbarRef.current.showProgress = false; + setShowProgress(false); }, 5000); } @@ -50,18 +47,17 @@ export default function App() {
- + Tree Grid Toolbar - + Simulate long running operation @@ -84,4 +80,4 @@ export default function App() { // rendering above component in the React DOM const root = ReactDOM.createRoot(document.getElementById("root")); -root.render(); +root.render(); From ec4ab8a731d808e8fc53cd617745c89cb38677f6 Mon Sep 17 00:00:00 2001 From: tishko0 Date: Thu, 12 Feb 2026 13:07:55 +0200 Subject: [PATCH 34/43] fix(samples): data id fix and some code cleaning --- .../data-exporting-indicator/src/index.tsx | 32 +++++++++---------- .../data-exporting-indicator/src/index.tsx | 29 ++++++++--------- 2 files changed, 30 insertions(+), 31 deletions(-) diff --git a/samples/grids/grid/data-exporting-indicator/src/index.tsx b/samples/grids/grid/data-exporting-indicator/src/index.tsx index 6b1e0e1dcf..2b4c0289fe 100644 --- a/samples/grids/grid/data-exporting-indicator/src/index.tsx +++ b/samples/grids/grid/data-exporting-indicator/src/index.tsx @@ -1,8 +1,8 @@ -import React, { useEffect, useState } from "react"; +import React, { useEffect, useMemo, useState } from "react"; import ReactDOM from "react-dom/client"; import "./index.css"; import "igniteui-react-grids/grids/themes/light/bootstrap.css"; -import { AthletesData } from "./AthletesData"; +import { AthletesData, AthletesDataItem } from "./AthletesData"; import { IgrButton } from "igniteui-react"; import { @@ -16,19 +16,20 @@ import { export default function GridDataExportingIndicatorSample() { - const athletesData = new AthletesData(); + const athletesData = useMemo(() => new AthletesData(), []); const [localData, setLocalData] = useState([]); const [showProgress, setShowProgress] = useState(false); useEffect(() => { - const data: any[] = []; - for (let i = 0; i < 2000; i += 3) { + const data: AthletesDataItem[] = []; + let uniqueId = 0; + for (let i = 0; i < 2000; i ++) { for (let c = 0; c < athletesData.length; c++) { - data.push(athletesData[c]); + data.push({ ...athletesData[c], Id: uniqueId++ }); } } setLocalData(data); - }, []); + }, [athletesData]); const setupProgressVisibility = () => { @@ -37,7 +38,7 @@ export default function GridDataExportingIndicatorSample() { setTimeout(() => { setShowProgress(false); }, 5000); - } + }; return (
@@ -46,7 +47,6 @@ export default function GridDataExportingIndicatorSample() { data={localData} autoGenerate={false} primaryKey="Id" - height="350px" > @@ -60,13 +60,13 @@ export default function GridDataExportingIndicatorSample() { - - - - - - - + + + + + + +
diff --git a/samples/grids/tree-grid/data-exporting-indicator/src/index.tsx b/samples/grids/tree-grid/data-exporting-indicator/src/index.tsx index 5e74f4eb4e..8ac248a10a 100644 --- a/samples/grids/tree-grid/data-exporting-indicator/src/index.tsx +++ b/samples/grids/tree-grid/data-exporting-indicator/src/index.tsx @@ -1,8 +1,8 @@ -import React, { useEffect, useRef, useState } from "react"; +import React, { useEffect, useMemo, useState } from "react"; import ReactDOM from "react-dom/client"; import "./index.css"; import "igniteui-react-grids/grids/themes/light/bootstrap.css"; -import { OrdersTreeData } from "./OrdersData"; +import { OrdersTreeData, OrdersTreeDataItem } from "./OrdersData"; import { IgrButton } from "igniteui-react"; import { @@ -16,13 +16,13 @@ import { export default function TreeGridDataExportingIndicatorSample() { - const ordersData = new OrdersTreeData(); + const ordersData = useMemo(() => new OrdersTreeData(), []); const [localData, setLocalData] = useState([]); const [showProgress, setShowProgress] = useState(false); useEffect(() => { - const data: any[] = []; - for (let i = 0; i < 1000; i++) { + const data: OrdersTreeDataItem[] = []; + for (let i = 0; i < 2000; i++) { for (let c = 0; c < ordersData.length; c++) { const original = ordersData[c]; data.push({ @@ -33,7 +33,7 @@ export default function TreeGridDataExportingIndicatorSample() { } } setLocalData(data); - }, []); + }, [ordersData]); const setupProgressVisibility = () => { setShowProgress(true); @@ -41,7 +41,7 @@ export default function TreeGridDataExportingIndicatorSample() { setTimeout(() => { setShowProgress(false); }, 5000); - } + }; return (
@@ -51,7 +51,6 @@ export default function TreeGridDataExportingIndicatorSample() { autoGenerate={false} primaryKey="ID" foreignKey="ParentID" - height="350px" > @@ -65,13 +64,13 @@ export default function TreeGridDataExportingIndicatorSample() { - - - - - - - + + + + + + +
From ef60402787f3afe0ccd26cb906bf4fea3f615910 Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Thu, 19 Feb 2026 12:01:23 +0200 Subject: [PATCH 35/43] Migrate Grid Lite samples to v0.4.0 declarative column API with function components (#1028) --- browser/package-lock.json | 230 +++++++++---- browser/package.json | 2 +- browser/tasks/gulp-samples.js | 2 +- .../column-config-basic/package.json | 2 +- .../column-config-basic/src/index.tsx | 108 +++--- .../column-config-dynamic/package.json | 2 +- .../column-config-dynamic/src/index.css | 4 - .../column-config-dynamic/src/index.tsx | 315 ++++++++++-------- .../column-config-headers/package.json | 2 +- .../column-config-headers/src/index.tsx | 74 ++-- .../grids/grid-lite/data-binding/package.json | 2 +- .../grid-lite/data-binding/src/index.css | 23 -- .../grid-lite/data-binding/src/index.tsx | 103 +++--- .../filtering-config-events/package.json | 2 +- .../filtering-config-events/src/index.tsx | 117 ++++--- .../filtering-config-remote/package.json | 2 +- .../filtering-config-remote/src/index.tsx | 110 +++--- .../grid-lite/filtering-config/package.json | 2 +- .../grid-lite/filtering-config/src/index.tsx | 82 ++--- samples/grids/grid-lite/overview/package.json | 2 +- .../grids/grid-lite/overview/src/index.tsx | 158 +++------ .../grid-lite/sort-config-events/package.json | 2 +- .../sort-config-events/src/index.tsx | 177 ++++------ .../grid-lite/sort-config-grid/package.json | 2 +- .../grid-lite/sort-config-grid/src/index.tsx | 133 +++----- .../sort-config-pipeline/package.json | 2 +- .../sort-config-pipeline/src/index.tsx | 163 ++++----- .../grid-lite/sort-config-sample/package.json | 2 +- .../sort-config-sample/src/index.tsx | 71 ++-- .../styling-custom-theme/package.json | 2 +- .../styling-custom-theme/src/index.tsx | 99 ++---- 31 files changed, 871 insertions(+), 1126 deletions(-) diff --git a/browser/package-lock.json b/browser/package-lock.json index e3b6b174f1..3fb90124ba 100644 --- a/browser/package-lock.json +++ b/browser/package-lock.json @@ -16,7 +16,7 @@ "dompurify": "^3.3.0", "file-saver": "1.3.8", "igniteui-dockmanager": "^1.17.0", - "igniteui-grid-lite": "^0.0.1", + "igniteui-grid-lite": "~0.4.0", "igniteui-react": "^19.4.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", @@ -1912,55 +1912,61 @@ ] }, "node_modules/@shikijs/core": { - "version": "3.15.0", - "resolved": "https://registry.npmjs.org/@shikijs/core/-/core-3.15.0.tgz", - "integrity": "sha512-8TOG6yG557q+fMsSVa8nkEDOZNTSxjbbR8l6lF2gyr6Np+jrPlslqDxQkN6rMXCECQ3isNPZAGszAfYoJOPGlg==", + "version": "3.22.0", + "resolved": "https://registry.npmjs.org/@shikijs/core/-/core-3.22.0.tgz", + "integrity": "sha512-iAlTtSDDbJiRpvgL5ugKEATDtHdUVkqgHDm/gbD2ZS9c88mx7G1zSYjjOxp5Qa0eaW0MAQosFRmJSk354PRoQA==", + "license": "MIT", "dependencies": { - "@shikijs/types": "3.15.0", + "@shikijs/types": "3.22.0", "@shikijs/vscode-textmate": "^10.0.2", "@types/hast": "^3.0.4", "hast-util-to-html": "^9.0.5" } }, "node_modules/@shikijs/engine-javascript": { - "version": "3.15.0", - "resolved": "https://registry.npmjs.org/@shikijs/engine-javascript/-/engine-javascript-3.15.0.tgz", - "integrity": "sha512-ZedbOFpopibdLmvTz2sJPJgns8Xvyabe2QbmqMTz07kt1pTzfEvKZc5IqPVO/XFiEbbNyaOpjPBkkr1vlwS+qg==", + "version": "3.22.0", + "resolved": "https://registry.npmjs.org/@shikijs/engine-javascript/-/engine-javascript-3.22.0.tgz", + "integrity": "sha512-jdKhfgW9CRtj3Tor0L7+yPwdG3CgP7W+ZEqSsojrMzCjD1e0IxIbwUMDDpYlVBlC08TACg4puwFGkZfLS+56Tw==", + "license": "MIT", "dependencies": { - "@shikijs/types": "3.15.0", + "@shikijs/types": "3.22.0", "@shikijs/vscode-textmate": "^10.0.2", - "oniguruma-to-es": "^4.3.3" + "oniguruma-to-es": "^4.3.4" } }, "node_modules/@shikijs/engine-oniguruma": { - "version": "3.15.0", - "resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-3.15.0.tgz", - "integrity": "sha512-HnqFsV11skAHvOArMZdLBZZApRSYS4LSztk2K3016Y9VCyZISnlYUYsL2hzlS7tPqKHvNqmI5JSUJZprXloMvA==", + "version": "3.22.0", + "resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-3.22.0.tgz", + "integrity": "sha512-DyXsOG0vGtNtl7ygvabHd7Mt5EY8gCNqR9Y7Lpbbd/PbJvgWrqaKzH1JW6H6qFkuUa8aCxoiYVv8/YfFljiQxA==", + "license": "MIT", "dependencies": { - "@shikijs/types": "3.15.0", + "@shikijs/types": "3.22.0", "@shikijs/vscode-textmate": "^10.0.2" } }, "node_modules/@shikijs/langs": { - "version": "3.15.0", - "resolved": "https://registry.npmjs.org/@shikijs/langs/-/langs-3.15.0.tgz", - "integrity": "sha512-WpRvEFvkVvO65uKYW4Rzxs+IG0gToyM8SARQMtGGsH4GDMNZrr60qdggXrFOsdfOVssG/QQGEl3FnJ3EZ+8w8A==", + "version": "3.22.0", + "resolved": "https://registry.npmjs.org/@shikijs/langs/-/langs-3.22.0.tgz", + "integrity": "sha512-x/42TfhWmp6H00T6uwVrdTJGKgNdFbrEdhaDwSR5fd5zhQ1Q46bHq9EO61SCEWJR0HY7z2HNDMaBZp8JRmKiIA==", + "license": "MIT", "dependencies": { - "@shikijs/types": "3.15.0" + "@shikijs/types": "3.22.0" } }, "node_modules/@shikijs/themes": { - "version": "3.15.0", - "resolved": "https://registry.npmjs.org/@shikijs/themes/-/themes-3.15.0.tgz", - "integrity": "sha512-8ow2zWb1IDvCKjYb0KiLNrK4offFdkfNVPXb1OZykpLCzRU6j+efkY+Y7VQjNlNFXonSw+4AOdGYtmqykDbRiQ==", + "version": "3.22.0", + "resolved": "https://registry.npmjs.org/@shikijs/themes/-/themes-3.22.0.tgz", + "integrity": "sha512-o+tlOKqsr6FE4+mYJG08tfCFDS+3CG20HbldXeVoyP+cYSUxDhrFf3GPjE60U55iOkkjbpY2uC3It/eeja35/g==", + "license": "MIT", "dependencies": { - "@shikijs/types": "3.15.0" + "@shikijs/types": "3.22.0" } }, "node_modules/@shikijs/types": { - "version": "3.15.0", - "resolved": "https://registry.npmjs.org/@shikijs/types/-/types-3.15.0.tgz", - "integrity": "sha512-BnP+y/EQnhihgHy4oIAN+6FFtmfTekwOLsQbRw9hOKwqgNy8Bdsjq8B05oAt/ZgvIWWFrshV71ytOrlPfYjIJw==", + "version": "3.22.0", + "resolved": "https://registry.npmjs.org/@shikijs/types/-/types-3.22.0.tgz", + "integrity": "sha512-491iAekgKDBFE67z70Ok5a8KBMsQ2IJwOWw3us/7ffQkIBCyOQfm/aNwVMBUriP02QshIfgHCBSIYAl3u2eWjg==", + "license": "MIT", "dependencies": { "@shikijs/vscode-textmate": "^10.0.2", "@types/hast": "^3.0.4" @@ -1969,7 +1975,8 @@ "node_modules/@shikijs/vscode-textmate": { "version": "10.0.2", "resolved": "https://registry.npmjs.org/@shikijs/vscode-textmate/-/vscode-textmate-10.0.2.tgz", - "integrity": "sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==" + "integrity": "sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==", + "license": "MIT" }, "node_modules/@sinclair/typebox": { "version": "0.27.8", @@ -2226,6 +2233,7 @@ "version": "3.0.4", "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz", "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==", + "license": "MIT", "dependencies": { "@types/unist": "*" } @@ -4202,6 +4210,7 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -4253,6 +4262,7 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -4262,6 +4272,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -4501,6 +4512,7 @@ "version": "2.0.3", "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -5039,6 +5051,7 @@ "version": "1.1.0", "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz", "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==", + "license": "MIT", "dependencies": { "dequal": "^2.0.0" }, @@ -8217,6 +8230,7 @@ "version": "9.0.5", "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.5.tgz", "integrity": "sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==", + "license": "MIT", "dependencies": { "@types/hast": "^3.0.0", "@types/unist": "^3.0.0", @@ -8238,12 +8252,14 @@ "node_modules/hast-util-to-html/node_modules/@types/unist": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", - "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==" + "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", + "license": "MIT" }, "node_modules/hast-util-whitespace": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz", "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==", + "license": "MIT", "dependencies": { "@types/hast": "^3.0.0" }, @@ -8292,6 +8308,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-3.0.0.tgz", "integrity": "sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -8357,14 +8374,14 @@ } }, "node_modules/igniteui-grid-lite": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/igniteui-grid-lite/-/igniteui-grid-lite-0.0.1.tgz", - "integrity": "sha512-QR+yu3lW8jtF5tfR+HChw+ksnTbMz8vIAEbPv0kJyNR0Dk2nCQSuw8z531psgl6ket2o1OoGDpkZJNgNNQ9T2g==", + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/igniteui-grid-lite/-/igniteui-grid-lite-0.4.0.tgz", + "integrity": "sha512-QZ12Q9C9FxrJIZIO0beOQMAZ2E9UADEqS0cjL2Qt2YP1DNge7+x+AzXCp8aOOzT5Y5E+O6O0u6u7JPdtc3RhxA==", "license": "MIT", "dependencies": { "@lit-labs/virtualizer": "~2.1.0", "@lit/context": "~1.1.5", - "igniteui-webcomponents": "~6.1.0", + "igniteui-webcomponents": "~6.5.0", "lit": "^3.3.0" }, "engines": { @@ -8372,18 +8389,71 @@ } }, "node_modules/igniteui-grid-lite/node_modules/igniteui-webcomponents": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents/-/igniteui-webcomponents-6.1.2.tgz", - "integrity": "sha512-q3a3Q28xzRwDBmfDprY0PsN9cs5xgqOJigXWWmbWAfcMgPg5dIrPyMDV6Aj6GD7u1RgPeoZmTP/pz9gTWNhHJA==", - "license": "SEE LICENSE IN LICENSE", + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents/-/igniteui-webcomponents-6.5.1.tgz", + "integrity": "sha512-cs/oqxuF7QowgwZ2LMTDqcpmcRqB4VWKNqshhA1dUTinxq20YjQKS/q+ix8K8sHgfg+QFXxPaOZruMLeubnIzw==", + "license": "MIT", "dependencies": { "@floating-ui/dom": "^1.7.0", "@lit-labs/virtualizer": "^2.1.0", "@lit/context": "^1.1.0", + "igniteui-i18n-core": "^1.0.1", "lit": "^3.3.0" }, "engines": { "node": ">=20" + }, + "peerDependencies": { + "dompurify": "^3.3.0", + "igniteui-i18n-resources": "^1.0.1", + "marked": "^17.0.0", + "marked-shiki": "^1.2.0", + "shiki": "^3.20.0" + }, + "peerDependenciesMeta": { + "dompurify": { + "optional": true + }, + "igniteui-i18n-resources": { + "optional": true + }, + "marked": { + "optional": true + }, + "marked-shiki": { + "optional": true + }, + "shiki": { + "optional": true + } + } + }, + "node_modules/igniteui-grid-lite/node_modules/marked": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/marked/-/marked-17.0.2.tgz", + "integrity": "sha512-s5HZGFQea7Huv5zZcAGhJLT3qLpAfnY7v7GWkICUr0+Wd5TFEtdlRR2XUL5Gg+RH7u2Df595ifrxR03mBaw7gA==", + "license": "MIT", + "optional": true, + "peer": true, + "bin": { + "marked": "bin/marked.js" + }, + "engines": { + "node": ">= 20" + } + }, + "node_modules/igniteui-i18n-core": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/igniteui-i18n-core/-/igniteui-i18n-core-1.0.2.tgz", + "integrity": "sha512-51szNhKG/3ckWkJKV6npAG50Fvi11a5e/lcKF9+unV9PlOpEm3tsf90s//8fXB9r28HSObgSRCVfKD+hfoNx7w==", + "license": "MIT", + "peerDependencies": { + "igniteui-i18n-resources": "1.0.2" + }, + "peerDependenciesMeta": { + "igniteui-i18n-resources": { + "optional": true + } } }, "node_modules/igniteui-react": { @@ -10387,9 +10457,10 @@ } }, "node_modules/mdast-util-to-hast": { - "version": "13.2.0", - "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.0.tgz", - "integrity": "sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==", + "version": "13.2.1", + "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.1.tgz", + "integrity": "sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==", + "license": "MIT", "dependencies": { "@types/hast": "^3.0.0", "@types/mdast": "^4.0.0", @@ -10410,6 +10481,7 @@ "version": "4.0.4", "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", + "license": "MIT", "dependencies": { "@types/unist": "*" } @@ -10417,7 +10489,8 @@ "node_modules/mdast-util-to-hast/node_modules/@types/unist": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", - "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==" + "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", + "license": "MIT" }, "node_modules/mdast-util-to-hast/node_modules/micromark-util-character": { "version": "2.1.1", @@ -10433,6 +10506,7 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" @@ -10451,7 +10525,8 @@ "type": "OpenCollective", "url": "https://opencollective.com/unified" } - ] + ], + "license": "MIT" }, "node_modules/mdast-util-to-hast/node_modules/micromark-util-sanitize-uri": { "version": "2.0.1", @@ -10467,6 +10542,7 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "micromark-util-character": "^2.0.0", "micromark-util-encode": "^2.0.0", @@ -10486,7 +10562,8 @@ "type": "OpenCollective", "url": "https://opencollective.com/unified" } - ] + ], + "license": "MIT" }, "node_modules/mdast-util-to-hast/node_modules/micromark-util-types": { "version": "2.0.2", @@ -10501,12 +10578,14 @@ "type": "OpenCollective", "url": "https://opencollective.com/unified" } - ] + ], + "license": "MIT" }, "node_modules/mdast-util-to-hast/node_modules/unist-util-is": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.1.tgz", "integrity": "sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==", + "license": "MIT", "dependencies": { "@types/unist": "^3.0.0" }, @@ -10516,9 +10595,10 @@ } }, "node_modules/mdast-util-to-hast/node_modules/unist-util-visit": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.0.0.tgz", - "integrity": "sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.1.0.tgz", + "integrity": "sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==", + "license": "MIT", "dependencies": { "@types/unist": "^3.0.0", "unist-util-is": "^6.0.0", @@ -10533,6 +10613,7 @@ "version": "6.0.2", "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.2.tgz", "integrity": "sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==", + "license": "MIT", "dependencies": { "@types/unist": "^3.0.0", "unist-util-is": "^6.0.0" @@ -11612,12 +11693,14 @@ "node_modules/oniguruma-parser": { "version": "0.12.1", "resolved": "https://registry.npmjs.org/oniguruma-parser/-/oniguruma-parser-0.12.1.tgz", - "integrity": "sha512-8Unqkvk1RYc6yq2WBYRj4hdnsAxVze8i7iPfQr8e4uSP3tRv0rpZcbGUDvxfQQcdwHt/e9PrMvGCsa8OqG9X3w==" + "integrity": "sha512-8Unqkvk1RYc6yq2WBYRj4hdnsAxVze8i7iPfQr8e4uSP3tRv0rpZcbGUDvxfQQcdwHt/e9PrMvGCsa8OqG9X3w==", + "license": "MIT" }, "node_modules/oniguruma-to-es": { - "version": "4.3.3", - "resolved": "https://registry.npmjs.org/oniguruma-to-es/-/oniguruma-to-es-4.3.3.tgz", - "integrity": "sha512-rPiZhzC3wXwE59YQMRDodUwwT9FZ9nNBwQQfsd1wfdtlKEyCdRV0avrTcSZ5xlIvGRVPd/cx6ZN45ECmS39xvg==", + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/oniguruma-to-es/-/oniguruma-to-es-4.3.4.tgz", + "integrity": "sha512-3VhUGN3w2eYxnTzHn+ikMI+fp/96KoRSVK9/kMTcFqj1NRDh2IhQCKvYxDnWePKRXY/AqH+Fuiyb7VHSzBjHfA==", + "license": "MIT", "dependencies": { "oniguruma-parser": "^0.12.1", "regex": "^6.0.1", @@ -12281,6 +12364,7 @@ "version": "7.1.0", "resolved": "https://registry.npmjs.org/property-information/-/property-information-7.1.0.tgz", "integrity": "sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -12726,9 +12810,10 @@ } }, "node_modules/regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/regex/-/regex-6.0.1.tgz", - "integrity": "sha512-uorlqlzAKjKQZ5P+kTJr3eeJGSVroLKoHmquUj4zHWuR+hEyNqlXsSKlYYF5F4NI6nl7tWCs0apKJ0lmfsXAPA==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/regex/-/regex-6.1.0.tgz", + "integrity": "sha512-6VwtthbV4o/7+OaAF9I5L5V3llLEsoPyq9P1JVXkedTP33c7MfCG0/5NOPcSJn0TzXcG9YUrR0gQSWioew3LDg==", + "license": "MIT", "dependencies": { "regex-utilities": "^2.3.0" } @@ -12750,6 +12835,7 @@ "version": "6.0.2", "resolved": "https://registry.npmjs.org/regex-recursion/-/regex-recursion-6.0.2.tgz", "integrity": "sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg==", + "license": "MIT", "dependencies": { "regex-utilities": "^2.3.0" } @@ -12757,7 +12843,8 @@ "node_modules/regex-utilities": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/regex-utilities/-/regex-utilities-2.3.0.tgz", - "integrity": "sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==" + "integrity": "sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==", + "license": "MIT" }, "node_modules/regexp.prototype.flags": { "version": "1.5.4", @@ -14361,16 +14448,17 @@ } }, "node_modules/shiki": { - "version": "3.15.0", - "resolved": "https://registry.npmjs.org/shiki/-/shiki-3.15.0.tgz", - "integrity": "sha512-kLdkY6iV3dYbtPwS9KXU7mjfmDm25f5m0IPNFnaXO7TBPcvbUOY72PYXSuSqDzwp+vlH/d7MXpHlKO/x+QoLXw==", - "dependencies": { - "@shikijs/core": "3.15.0", - "@shikijs/engine-javascript": "3.15.0", - "@shikijs/engine-oniguruma": "3.15.0", - "@shikijs/langs": "3.15.0", - "@shikijs/themes": "3.15.0", - "@shikijs/types": "3.15.0", + "version": "3.22.0", + "resolved": "https://registry.npmjs.org/shiki/-/shiki-3.22.0.tgz", + "integrity": "sha512-LBnhsoYEe0Eou4e1VgJACes+O6S6QC0w71fCSp5Oya79inkwkm15gQ1UF6VtQ8j/taMDh79hAB49WUk8ALQW3g==", + "license": "MIT", + "dependencies": { + "@shikijs/core": "3.22.0", + "@shikijs/engine-javascript": "3.22.0", + "@shikijs/engine-oniguruma": "3.22.0", + "@shikijs/langs": "3.22.0", + "@shikijs/themes": "3.22.0", + "@shikijs/types": "3.22.0", "@shikijs/vscode-textmate": "^10.0.2", "@types/hast": "^3.0.4" } @@ -14824,6 +14912,7 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -15158,6 +15247,7 @@ "version": "4.0.4", "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz", "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==", + "license": "MIT", "dependencies": { "character-entities-html4": "^2.0.0", "character-entities-legacy": "^3.0.0" @@ -15652,6 +15742,7 @@ "version": "3.0.1", "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz", "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -16126,6 +16217,7 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz", "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==", + "license": "MIT", "dependencies": { "@types/unist": "^3.0.0" }, @@ -16137,7 +16229,8 @@ "node_modules/unist-util-position/node_modules/@types/unist": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", - "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==" + "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", + "license": "MIT" }, "node_modules/unist-util-stringify-position": { "version": "3.0.3", @@ -16445,6 +16538,7 @@ "version": "6.0.3", "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz", "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==", + "license": "MIT", "dependencies": { "@types/unist": "^3.0.0", "vfile-message": "^4.0.0" @@ -16458,6 +16552,7 @@ "version": "4.0.3", "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.3.tgz", "integrity": "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==", + "license": "MIT", "dependencies": { "@types/unist": "^3.0.0", "unist-util-stringify-position": "^4.0.0" @@ -16470,12 +16565,14 @@ "node_modules/vfile-message/node_modules/@types/unist": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", - "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==" + "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", + "license": "MIT" }, "node_modules/vfile-message/node_modules/unist-util-stringify-position": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", + "license": "MIT", "dependencies": { "@types/unist": "^3.0.0" }, @@ -16487,7 +16584,8 @@ "node_modules/vfile/node_modules/@types/unist": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", - "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==" + "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", + "license": "MIT" }, "node_modules/vinyl": { "version": "2.2.0", diff --git a/browser/package.json b/browser/package.json index 5c2c33f197..e1e973f867 100644 --- a/browser/package.json +++ b/browser/package.json @@ -24,7 +24,7 @@ "dompurify": "^3.3.0", "file-saver": "1.3.8", "igniteui-dockmanager": "^1.17.0", - "igniteui-grid-lite": "^0.0.1", + "igniteui-grid-lite": "~0.4.0", "igniteui-react": "^19.4.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", diff --git a/browser/tasks/gulp-samples.js b/browser/tasks/gulp-samples.js index 0ee3e9ec49..76b690036f 100644 --- a/browser/tasks/gulp-samples.js +++ b/browser/tasks/gulp-samples.js @@ -861,7 +861,7 @@ function updateIG(cb) { // these IG packages are sometimes updated: { version: "^6.3.0", name: "igniteui-webcomponents" }, { version: "^19.4.0", name: "igniteui-react-dockmanager" }, - { version: "^0.0.1", name: "igniteui-grid-lite" }, + { version: "~0.4.0", name: "igniteui-grid-lite" }, // main react packages { version: "^19.2.0", name: "react" }, { version: "^19.2.0", name: "react-dom" }, diff --git a/samples/grids/grid-lite/column-config-basic/package.json b/samples/grids/grid-lite/column-config-basic/package.json index bcef229119..d158eead5f 100644 --- a/samples/grids/grid-lite/column-config-basic/package.json +++ b/samples/grids/grid-lite/column-config-basic/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-grid-lite": "^0.0.1", + "igniteui-grid-lite": "~0.4.0", "igniteui-react": "^19.4.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid-lite/column-config-basic/src/index.tsx b/samples/grids/grid-lite/column-config-basic/src/index.tsx index 2aadabba08..00118c27f8 100644 --- a/samples/grids/grid-lite/column-config-basic/src/index.tsx +++ b/samples/grids/grid-lite/column-config-basic/src/index.tsx @@ -16,82 +16,50 @@ import "./index.css"; IgcGridLite.register(); defineComponents(IgcRatingComponent); -export default class Sample extends React.Component { - private dataService: GridLiteDataService; - private formatter: Intl.NumberFormat; - private gridRef: React.RefObject; +const formatter = new Intl.NumberFormat('en-EN', { + style: 'currency', + currency: 'EUR' +}); - constructor(props: any) { - super(props); - this.dataService = new GridLiteDataService(); - this.formatter = new Intl.NumberFormat('en-EN', { - style: 'currency', - currency: 'EUR' - }); - this.gridRef = React.createRef(); - } +// Define cellTemplate functions outside component +const currencyCellTemplate = (params: any) => { + const span = document.createElement('span'); + span.textContent = formatter.format(params.value); + return span; +}; - componentDidMount() { - if (this.gridRef.current) { - const data: ProductInfo[] = this.dataService.generateProducts(50); - - const columns = [ - { - key: 'name', - headerText: 'Product Name' - }, - { - key: 'price', - headerText: 'Price', - type: 'number', - cellTemplate: (params: any) => { - const span = document.createElement('span'); - span.textContent = this.formatter.format(params.value); - return span; - } - }, - { - key: 'sold', - type: 'number', - headerText: 'Units sold' - }, - { - key: 'total', - headerText: 'Total sold', - cellTemplate: (params: any) => { - const span = document.createElement('span'); - span.textContent = this.formatter.format(params.value); - return span; - } - }, - { - key: 'rating', - type: 'number', - headerText: 'Customer rating', - cellTemplate: (params: any) => { - const rating = document.createElement('igc-rating'); - rating.setAttribute('readonly', ''); - rating.setAttribute('step', '0.01'); - rating.setAttribute('value', params.value.toString()); - return rating; - } - } - ]; +const ratingCellTemplate = (params: any) => { + const rating = document.createElement('igc-rating'); + rating.setAttribute('readonly', ''); + rating.setAttribute('step', '0.01'); + rating.setAttribute('value', params.value.toString()); + return rating; +}; - this.gridRef.current.columns = columns; - this.gridRef.current.data = data; +export default function Sample() { + const gridRef = React.useRef(null); + + React.useEffect(() => { + if (gridRef.current) { + const dataService = new GridLiteDataService(); + const data: ProductInfo[] = dataService.generateProducts(50); + gridRef.current.data = data; } - } + }, []); - public render(): JSX.Element { - return ( -
-
- -
+ return ( +
+
+ + + + + + +
- ); - } +
+ ); } // rendering above component in the React DOM diff --git a/samples/grids/grid-lite/column-config-dynamic/package.json b/samples/grids/grid-lite/column-config-dynamic/package.json index bcef229119..d158eead5f 100644 --- a/samples/grids/grid-lite/column-config-dynamic/package.json +++ b/samples/grids/grid-lite/column-config-dynamic/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-grid-lite": "^0.0.1", + "igniteui-grid-lite": "~0.4.0", "igniteui-react": "^19.4.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid-lite/column-config-dynamic/src/index.css b/samples/grids/grid-lite/column-config-dynamic/src/index.css index 5c5a0a56d0..49346abba9 100644 --- a/samples/grids/grid-lite/column-config-dynamic/src/index.css +++ b/samples/grids/grid-lite/column-config-dynamic/src/index.css @@ -23,10 +23,6 @@ flex: 1; } -igc-dropdown-item { - padding: 0.5rem 1rem; -} - .grid-lite-wrapper { width: 100%; height: 100%; diff --git a/samples/grids/grid-lite/column-config-dynamic/src/index.tsx b/samples/grids/grid-lite/column-config-dynamic/src/index.tsx index b910476fdc..cf8ef750ab 100644 --- a/samples/grids/grid-lite/column-config-dynamic/src/index.tsx +++ b/samples/grids/grid-lite/column-config-dynamic/src/index.tsx @@ -1,4 +1,4 @@ -import React from 'react'; +import React, { useCallback, useEffect, useState } from 'react'; import ReactDOM from 'react-dom/client'; import { GridLiteDataService, ProductInfo } from './GridLiteDataService'; @@ -23,155 +23,184 @@ const formatter = new Intl.NumberFormat('en-EN', { currency: 'EUR', }); -export default class Sample extends React.Component { - private dataService: GridLiteDataService; - private gridRef: React.RefObject; - private dropdownRef: React.RefObject; - protected hasFormatters = true; - protected format = (params: any) => { - const span = document.createElement('span'); - span.textContent = formatter.format(params.value); - return span; - }; - protected columns = [ - { - key: 'id', - hidden: true, - headerText: 'ID' - }, - { - key: 'name', - headerText: 'Product Name' - }, - { - key: 'price', - headerText: 'Price', - type: 'number', - cellTemplate: this.format - }, - { - key: 'sold', - type: 'number', - headerText: 'Units sold' - }, - { - key: 'total', - headerText: 'Total sold', - cellTemplate: this.format - }, - { - key: 'rating', - type: 'number', - headerText: 'Customer rating', - cellTemplate: (params: any) => { - const rating = document.createElement('igc-rating'); - rating.setAttribute('readonly', ''); - rating.setAttribute('step', '0.01'); - rating.setAttribute('value', params.value.toString()); - return rating; - } - } - ]; +// Define cellTemplate functions outside component +const currencyCellTemplate = (params: any) => { + const span = document.createElement('span'); + span.textContent = formatter.format(params.value); + return span; +}; - constructor(props: any) { - super(props); - this.dataService = new GridLiteDataService(); - this.gridRef = React.createRef(); - this.dropdownRef = React.createRef(); - this.toggleFormatters = this.toggleFormatters.bind(this); - this.toggleColumnProperty = this.toggleColumnProperty.bind(this); - } - - componentDidMount() { - if (this.gridRef.current) { - const data: ProductInfo[] = this.dataService.generateProducts(50); +const ratingCellTemplate = (params: any) => { + const rating = document.createElement('igc-rating'); + rating.setAttribute('readonly', ''); + rating.setAttribute('step', '0.01'); + rating.setAttribute('value', params.value.toString()); + return rating; +}; - this.gridRef.current.columns = this.columns; - this.gridRef.current.data = data; - } +const initialColumns = [ + { + field: 'id', + hidden: true, + header: 'ID', + resizable: true, + sortable: false, + filterable: false, + cellTemplate: undefined + }, + { + field: 'name', + header: 'Product Name', + resizable: true, + sortable: false, + filterable: false, + cellTemplate: undefined + }, + { + field: 'price', + header: 'Price', + dataType: 'number', + cellTemplate: currencyCellTemplate, + resizable: true, + sortable: false, + filterable: false + }, + { + field: 'sold', + dataType: 'number', + header: 'Units sold', + resizable: true, + sortable: false, + filterable: false, + cellTemplate: undefined + }, + { + field: 'total', + header: 'Total sold', + cellTemplate: currencyCellTemplate, + resizable: true, + sortable: false, + filterable: false + }, + { + field: 'rating', + dataType: 'number', + header: 'Customer rating', + cellTemplate: ratingCellTemplate, + resizable: true, + sortable: false, + filterable: false } +]; - toggleFormatters(checked: boolean) { - if (this.gridRef.current) { - this.gridRef.current.updateColumns( - ['price', 'total'].map((key) => ({ - key, - cellTemplate: checked ? this.format : undefined, - })) - ); - } - } +export default function Sample() { + const dropdownRef = React.useRef(null); + const [columns, setColumns] = useState(initialColumns); + const [data, setData] = useState([]); + const [hasFormatters, setHasFormatters] = useState(true); - toggleColumnProperty(columnKey: string, property: string, value: boolean) { - if (this.gridRef.current) { - this.gridRef.current.updateColumns({ key: columnKey, [property]: value }); - } - } + useEffect(() => { + const dataService = new GridLiteDataService(); + const data: ProductInfo[] = dataService.generateProducts(50); + setData(data); + }, []); - public render(): JSX.Element { - return ( -
-
- { - this.dropdownRef.current?.clearSelection(); - }} - id="column-select"> -
- Column Properties -
- {this.columns.map((column: any) => ( - -
- {column.headerText} - this.toggleColumnProperty(column.key, 'hidden', !e.target.checked)}> - Hidden - - this.toggleColumnProperty(column.key, 'resizable', e.target.checked)}> - Resizable - - this.toggleColumnProperty(column.key, 'filter', e.target.checked)}> - Filter - - this.toggleColumnProperty(column.key, 'sort', e.target.checked)}> - Sort - -
-
- ))} -
- { - this.hasFormatters = e.target.checked; - this.toggleFormatters(this.hasFormatters); - }}> - Value formatters: - -
-
- -
-
+ const toggleFormatters = useCallback((checked: boolean) => { + setColumns(prevColumns => + prevColumns.map(col => + col.field === 'price' || col.field === 'total' + ? { ...col, cellTemplate: checked ? currencyCellTemplate : undefined } + : col + ) ); - } + }, []); + + const toggleColumnProperty = React.useCallback((columnField: string, property: string, value: boolean) => { + setColumns(prevColumns => + prevColumns.map(col => + col.field === columnField + ? { ...col, [property]: value } + : col + ) + ); + }, []); + + return ( +
+
+ { + dropdownRef.current?.clearSelection(); + }} + id="column-select"> +
+ Column Properties +
+ {columns.map((column: any) => ( + +
+ {column.header} + toggleColumnProperty(column.field, 'hidden', e.target.checked)}> + Hidden + + toggleColumnProperty(column.field, 'resizable', e.target.checked)}> + Resizable + + toggleColumnProperty(column.field, 'filterable', e.target.checked)}> + Filter + + toggleColumnProperty(column.field, 'sortable', e.target.checked)}> + Sort + +
+
+ ))} +
+ { + setHasFormatters(e.target.checked); + toggleFormatters(e.target.checked); + }}> + Value formatters: + +
+
+ + {columns.map((column: any) => ( + + ))} + +
+
+ ); } // rendering above component in the React DOM diff --git a/samples/grids/grid-lite/column-config-headers/package.json b/samples/grids/grid-lite/column-config-headers/package.json index bcef229119..d158eead5f 100644 --- a/samples/grids/grid-lite/column-config-headers/package.json +++ b/samples/grids/grid-lite/column-config-headers/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-grid-lite": "^0.0.1", + "igniteui-grid-lite": "~0.4.0", "igniteui-react": "^19.4.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid-lite/column-config-headers/src/index.tsx b/samples/grids/grid-lite/column-config-headers/src/index.tsx index 76cd0ff186..da335033be 100644 --- a/samples/grids/grid-lite/column-config-headers/src/index.tsx +++ b/samples/grids/grid-lite/column-config-headers/src/index.tsx @@ -10,60 +10,30 @@ import "./index.css"; // Register components IgcGridLite.register(); -export default class Sample extends React.Component { - private dataService: GridLiteDataService; - private gridRef: React.RefObject; - - constructor(props: any) { - super(props); - this.dataService = new GridLiteDataService(); - this.gridRef = React.createRef(); - } - - componentDidMount() { - if (this.gridRef.current) { - const data: User[] = this.dataService.generateUsers(50); - - const columns = [ - { - key: 'id', - headerText: '🆔 ID', - width: '150px' - }, - { - key: 'firstName', - headerText: '👤 First Name' - }, - { - key: 'lastName', - headerText: '👤 Last Name' - }, - { - key: 'age', - headerText: '🎂 Age', - type: 'number', - width: '100px' - }, - { - key: 'email', - headerText: '📧 Email' - } - ]; - - this.gridRef.current.columns = columns; - this.gridRef.current.data = data; +export default function Sample() { + const gridRef = React.useRef(null); + + React.useEffect(() => { + if (gridRef.current) { + const dataService = new GridLiteDataService(); + const data: User[] = dataService.generateUsers(50); + gridRef.current.data = data; } - } - - public render(): JSX.Element { - return ( -
-
- -
+ }, []); + + return ( +
+
+ + + + + + +
- ); - } +
+ ); } // rendering above component in the React DOM diff --git a/samples/grids/grid-lite/data-binding/package.json b/samples/grids/grid-lite/data-binding/package.json index bcef229119..d158eead5f 100644 --- a/samples/grids/grid-lite/data-binding/package.json +++ b/samples/grids/grid-lite/data-binding/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-grid-lite": "^0.0.1", + "igniteui-grid-lite": "~0.4.0", "igniteui-react": "^19.4.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid-lite/data-binding/src/index.css b/samples/grids/grid-lite/data-binding/src/index.css index 329ffb0982..8c0f12dc5b 100644 --- a/samples/grids/grid-lite/data-binding/src/index.css +++ b/samples/grids/grid-lite/data-binding/src/index.css @@ -5,29 +5,6 @@ align-items: center; } -.sample-button { - padding: 0.5rem 1rem; - cursor: pointer; - background-color: #007bff; - color: white; - border: none; - border-radius: 4px; -} - -.sample-button:hover { - background-color: #0056b3; -} - -.record-count { - font-weight: bold; - margin-left: 1rem; -} - -.grid-lite-wrapper { - width: 100%; - height: 100%; -} - igc-grid-lite { min-height: 65vh; --ig-size: 2; diff --git a/samples/grids/grid-lite/data-binding/src/index.tsx b/samples/grids/grid-lite/data-binding/src/index.tsx index 9f2e6e052c..00e7d7c616 100644 --- a/samples/grids/grid-lite/data-binding/src/index.tsx +++ b/samples/grids/grid-lite/data-binding/src/index.tsx @@ -1,73 +1,64 @@ -import React from 'react'; -import ReactDOM from 'react-dom/client'; -import { GridLiteDataService } from './GridLiteDataService'; +import React, { useCallback, useState } from "react"; +import ReactDOM from "react-dom/client"; +import { GridLiteDataService } from "./GridLiteDataService"; // Import the web component -import { IgcGridLite } from 'igniteui-grid-lite'; -import { - defineComponents, - IgcButtonComponent -} from 'igniteui-webcomponents'; - +import { IgcGridLite } from "igniteui-grid-lite"; +import { IgrButton } from "igniteui-react"; import "igniteui-webcomponents/themes/light/bootstrap.css"; import "./index.css"; // Register components IgcGridLite.register(); -defineComponents(IgcButtonComponent); - -export default class Sample extends React.Component { - private dataService: GridLiteDataService; - private gridRef: React.RefObject; - private showingProducts = true; - constructor(props: any) { - super(props); - this.dataService = new GridLiteDataService(); - this.gridRef = React.createRef(); - this.switchData = this.switchData.bind(this); - } +export default function Sample() { + const [showingProducts, setShowingProducts] = useState(true); + const [data, setData] = useState([]); - componentDidMount() { - if (this.gridRef.current) { - this.gridRef.current.data = this.dataService.generateProducts(50); - - window.addEventListener('error', (e) => { - if (e.message === 'ResizeObserver loop completed with undelivered notifications.') { - e.stopImmediatePropagation(); - } - }); - } - } + React.useEffect(() => { + const dataService = new GridLiteDataService(); + setData(dataService.generateProducts(50)); - private switchData() { - if (this.gridRef.current) { - this.gridRef.current.columns = []; - - if (this.showingProducts) { - this.gridRef.current.data = this.dataService.generateUsers(50); - this.showingProducts = false; - } else { - this.gridRef.current.data = this.dataService.generateProducts(50); - this.showingProducts = true; + window.addEventListener("error", (e) => { + if ( + e.message === + "ResizeObserver loop completed with undelivered notifications." + ) { + e.stopImmediatePropagation(); } + }); + }, []); + + const switchData = useCallback(() => { + const dataService = new GridLiteDataService(); + + if (showingProducts) { + const data = dataService.generateUsers(50); + setData(data); + setShowingProducts(false); + } else { + const data = dataService.generateProducts(50); + setData(data); + setShowingProducts(true); } - } + }, [showingProducts]); - public render(): JSX.Element { - return ( -
-
- -
-
- -
+ return ( +
+
+ + Switch Data +
- ); - } + +
+ ); } // rendering above component in the React DOM -const root = ReactDOM.createRoot(document.getElementById('root')); -root.render(); +const root = ReactDOM.createRoot(document.getElementById("root")); +root.render(); diff --git a/samples/grids/grid-lite/filtering-config-events/package.json b/samples/grids/grid-lite/filtering-config-events/package.json index bcef229119..d158eead5f 100644 --- a/samples/grids/grid-lite/filtering-config-events/package.json +++ b/samples/grids/grid-lite/filtering-config-events/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-grid-lite": "^0.0.1", + "igniteui-grid-lite": "~0.4.0", "igniteui-react": "^19.4.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid-lite/filtering-config-events/src/index.tsx b/samples/grids/grid-lite/filtering-config-events/src/index.tsx index a3ab2f553d..3829a8dc1b 100644 --- a/samples/grids/grid-lite/filtering-config-events/src/index.tsx +++ b/samples/grids/grid-lite/filtering-config-events/src/index.tsx @@ -11,78 +11,75 @@ import "./index.css"; // Register components IgcGridLite.register(); -export default class Sample extends React.Component { - private dataService: GridLiteDataService; - private gridRef: React.RefObject; - private logRef: React.RefObject; - private log: string[] = []; +const getTime = () => `[${new Date().toLocaleTimeString()}]`; - constructor(props: any) { - super(props); - this.dataService = new GridLiteDataService(); - this.gridRef = React.createRef(); - this.logRef = React.createRef(); - this.state = { logContent: '' }; - } +export default function Sample() { + const gridRef = React.useRef(null); + const logRef = React.useRef(null); + const [log, setLog] = React.useState([]); - get time() { - return `[${new Date().toLocaleTimeString()}]`; - } + const updateLog = React.useCallback((message: string) => { + setLog(prevLog => { + const newLog = [...prevLog]; + if (newLog.length > 10) { + newLog.shift(); + } + newLog.push(message); + return newLog; + }); + }, []); - componentDidMount() { - if (this.gridRef.current) { - const data: User[] = this.dataService.generateUsers(50); - - const columns = [ - { key: 'firstName', headerText: 'First name', filter: true }, - { key: 'lastName', headerText: 'Last name', filter: true }, - { key: 'age', headerText: 'Age', filter: true, type: 'number' }, - { key: 'email', headerText: 'Email', filter: true } - ]; + React.useEffect(() => { + if (logRef.current) { + logRef.current.scrollTop = logRef.current.scrollHeight; + } + }, [log]); - this.gridRef.current.columns = columns; - this.gridRef.current.data = data; + React.useEffect(() => { + if (gridRef.current) { + const dataService = new GridLiteDataService(); + const data: User[] = dataService.generateUsers(50); + gridRef.current.data = data; // Listen to filter events - this.gridRef.current.addEventListener('filtering', (e: any) => { + const handleFiltering = (e: any) => { const { expressions, type } = e.detail; - this.updateLog(`${this.time} :: Event \`${e.type}\` :: Filter operation of type '${type}' for column '${expressions[0].key}'`); - }); - this.gridRef.current.addEventListener('filtered', (e: any) => { - this.updateLog(`${this.time} :: Event \`${e.type}\` for column '${e.detail.key}'`); - }); - } - } + updateLog(`${getTime()} :: Event \`${e.type}\` :: Filter operation of type '${type}' for column '${expressions[0].key}'`); + }; - private updateLog(message: string) { - if (this.log.length > 10) { - this.log.shift(); + const handleFiltered = (e: any) => { + updateLog(`${getTime()} :: Event \`${e.type}\` for column '${e.detail.key}'`); + }; + + gridRef.current.addEventListener('filtering', handleFiltering); + gridRef.current.addEventListener('filtered', handleFiltered); + + return () => { + if (gridRef.current) { + gridRef.current.removeEventListener('filtering', handleFiltering); + gridRef.current.removeEventListener('filtered', handleFiltered); + } + }; } - this.log.push(message); - this.renderLog(); - } + }, [updateLog]); - private renderLog() { - const logContent = this.log - .map(entry => `

${entry}

`) - .join(''); - this.setState({ logContent }, () => { - if (this.logRef.current) { - this.logRef.current.scrollTop = this.logRef.current.scrollHeight; - } - }); - } + const logContent = log + .map(entry => `

${entry}

`) + .join(''); - public render(): JSX.Element { - return ( -
-
- -
-
+ return ( +
+
+ + + + + + +
- ); - } +
+ ); } // rendering above component in the React DOM diff --git a/samples/grids/grid-lite/filtering-config-remote/package.json b/samples/grids/grid-lite/filtering-config-remote/package.json index bcef229119..d158eead5f 100644 --- a/samples/grids/grid-lite/filtering-config-remote/package.json +++ b/samples/grids/grid-lite/filtering-config-remote/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-grid-lite": "^0.0.1", + "igniteui-grid-lite": "~0.4.0", "igniteui-react": "^19.4.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid-lite/filtering-config-remote/src/index.tsx b/samples/grids/grid-lite/filtering-config-remote/src/index.tsx index 4f7147bd0a..663a31eb54 100644 --- a/samples/grids/grid-lite/filtering-config-remote/src/index.tsx +++ b/samples/grids/grid-lite/filtering-config-remote/src/index.tsx @@ -23,76 +23,64 @@ function groupBy(arr: T[], key: keyof T) { return out; } -export default class Sample extends React.Component { - private dataService: GridLiteDataService; - private gridRef: React.RefObject; - private allData: User[] = []; +const mapExpressions = (arr: any[]) => { + return arr + .map(({ searchTerm, criteria, condition }: any, idx: number) => { + const c = condition; + return idx < 1 + ? `${c.name}("${searchTerm}")` + : `${criteria?.toUpperCase()} ${c.name}("${searchTerm}")`; + }) + .join(' '); +}; - constructor(props: any) { - super(props); - this.dataService = new GridLiteDataService(); - this.gridRef = React.createRef(); - this.allData = this.dataService.generateUsers(100); - this.state = { queryString: '' }; +const buildUri = (state: any[], setQueryString: (qs: string) => void) => { + const out: string[] = []; + const qs = groupBy(state, 'key'); + for (const [key, exprs] of Object.entries(qs)) { + out.push(`${key}(${mapExpressions(exprs)})`); } + setQueryString(`GET: /data?filter=${out.join('&')}`); +}; - componentDidMount() { - if (this.gridRef.current) { - const columns = [ - { key: 'firstName', headerText: 'First name', filter: true }, - { key: 'lastName', headerText: 'Last name', filter: true }, - { key: 'age', headerText: 'Age', filter: true, type: 'number' }, - { key: 'email', headerText: 'Email' } - ]; +export default function Sample() { + const gridRef = React.useRef(null); + const [queryString, setQueryString] = React.useState(''); - const config = { - filter: async ({ data, grid }: any) => { - this.buildUri(grid.filterExpressions); - await new Promise((resolve) => setTimeout(resolve, 250)); - return data; - }, - }; + const dataPipelineConfiguration = React.useMemo(() => ({ + filter: async ({ data, grid }: any) => { + buildUri(grid.filterExpressions, setQueryString); + await new Promise((resolve) => setTimeout(resolve, 250)); + return data; + }, + }), []); - this.gridRef.current.columns = columns; - this.gridRef.current.data = this.allData; - this.gridRef.current.dataPipelineConfiguration = config; + React.useEffect(() => { + if (gridRef.current) { + const dataService = new GridLiteDataService(); + const allData: User[] = dataService.generateUsers(100); + gridRef.current.data = allData; + gridRef.current.dataPipelineConfiguration = dataPipelineConfiguration; } - } - - protected mapExpressions(arr: any[]) { - return arr - .map(({ searchTerm, criteria, condition }: any, idx: number) => { - const c = condition; - return idx < 1 - ? `${c.name}("${searchTerm}")` - : `${criteria?.toUpperCase()} ${c.name}("${searchTerm}")`; - }) - .join(' '); - } + }, [dataPipelineConfiguration]); - protected buildUri(state: any[]) { - const out: string[] = []; - const qs = groupBy(state, 'key'); - for (const [key, exprs] of Object.entries(qs)) { - out.push(`${key}(${this.mapExpressions(exprs)})`); - } - this.setState({ queryString: `GET: /data?filter=${out.join('&')}` }); - } - - public render(): JSX.Element { - return ( -
-
-
-

{this.state.queryString}

-
-
-
- + return ( +
+
+
+

{queryString}

- ); - } +
+ + + + + + +
+
+ ); } // rendering above component in the React DOM diff --git a/samples/grids/grid-lite/filtering-config/package.json b/samples/grids/grid-lite/filtering-config/package.json index bcef229119..d158eead5f 100644 --- a/samples/grids/grid-lite/filtering-config/package.json +++ b/samples/grids/grid-lite/filtering-config/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-grid-lite": "^0.0.1", + "igniteui-grid-lite": "~0.4.0", "igniteui-react": "^19.4.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid-lite/filtering-config/src/index.tsx b/samples/grids/grid-lite/filtering-config/src/index.tsx index d4ad26d143..c4a8c77c0c 100644 --- a/samples/grids/grid-lite/filtering-config/src/index.tsx +++ b/samples/grids/grid-lite/filtering-config/src/index.tsx @@ -16,66 +16,38 @@ import "./index.css"; IgcGridLite.register(); defineComponents(IgcCheckboxComponent); -export default class Sample extends React.Component { - private dataService: GridLiteDataService; - private gridRef: React.RefObject; - - constructor(props: any) { - super(props); - this.dataService = new GridLiteDataService(); - this.gridRef = React.createRef(); +// Define cellTemplate function outside component +const activeCellTemplate = (params: any) => { + const checkbox = document.createElement('igc-checkbox'); + if (params.value) { + checkbox.setAttribute('checked', ''); } + return checkbox; +}; - componentDidMount() { - if (this.gridRef.current) { - const data: User[] = this.dataService.generateUsers(50); - - const columns = [ - { - key: 'firstName', - headerText: 'First name', - filter: true - }, - { - key: 'lastName', - headerText: 'Last name', - filter: true - }, - { - key: 'age', - headerText: 'Age', - filter: true, - type: 'number' - }, - { - key: 'active', - headerText: 'Active', - type: 'boolean', - filter: true, - cellTemplate: (params: any) => { - const checkbox = document.createElement('igc-checkbox'); - if (params.value) { - checkbox.setAttribute('checked', ''); - } - return checkbox; - } - } - ]; +export default function Sample() { + const gridRef = React.useRef(null); - this.gridRef.current.columns = columns; - this.gridRef.current.data = data; + React.useEffect(() => { + if (gridRef.current) { + const dataService = new GridLiteDataService(); + const data: User[] = dataService.generateUsers(50); + gridRef.current.data = data; } - } - - public render(): JSX.Element { - return ( -
-
- -
+ }, []); + + return ( +
+
+ + + + + +
- ); - } +
+ ); } // rendering above component in the React DOM diff --git a/samples/grids/grid-lite/overview/package.json b/samples/grids/grid-lite/overview/package.json index bcef229119..d158eead5f 100644 --- a/samples/grids/grid-lite/overview/package.json +++ b/samples/grids/grid-lite/overview/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-grid-lite": "^0.0.1", + "igniteui-grid-lite": "~0.4.0", "igniteui-react": "^19.4.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid-lite/overview/src/index.tsx b/samples/grids/grid-lite/overview/src/index.tsx index 5e3a342f4e..70aae07469 100644 --- a/samples/grids/grid-lite/overview/src/index.tsx +++ b/samples/grids/grid-lite/overview/src/index.tsx @@ -1,4 +1,4 @@ -import React from 'react'; +import React, { useEffect } from 'react'; import ReactDOM from 'react-dom/client'; import { GridLiteDataService, User } from './GridLiteDataService'; @@ -24,126 +24,52 @@ defineComponents( IgcSelectComponent ); -export default class Sample extends React.Component { - private dataService: GridLiteDataService; - private choices = ['Low', 'Standard', 'High']; - private gridRef: React.RefObject; +// Define cellTemplate functions outside component +const avatarCellTemplate = (params: any) => { + const cell = document.createElement('igc-avatar'); + cell.setAttribute('shape', 'circle'); + cell.setAttribute('alt', 'User avatar'); + cell.setAttribute('src', params.value); + return cell; +}; - constructor(props: any) { - super(props); - this.dataService = new GridLiteDataService(); - this.gridRef = React.createRef(); - } +const satisfactionCellTemplate = (params: any) => { + const rating = document.createElement('igc-rating'); + rating.setAttribute('readonly', ''); + rating.setAttribute('value', params.value.toString()); + return rating; +}; - componentDidMount() { - if (this.gridRef.current) { - const data: User[] = this.dataService.generateUsers(1000); - - const columns = [ - { - key: 'avatar', - headerText: 'Avatar', - cellTemplate: (params: any) => { - const cell = document.createElement('igc-avatar'); - cell.setAttribute('shape', 'circle'); - cell.setAttribute('alt', 'User avatar'); - cell.setAttribute('src', params.value); - return cell; - } - }, - { - key: 'firstName', - headerText: 'First name', - sort: true, - filter: true, - resizable: true - }, - { - key: 'lastName', - headerText: 'Last name', - sort: true, - filter: true, - resizable: true - }, - { - key: 'email', - headerText: 'Email Address' - }, - { - key: 'priority', - headerText: 'Priority', - width: '12rem', - sort: { - comparer: (a: string, b: string) => this.choices.indexOf(a) - this.choices.indexOf(b), - caseSensitive: true - }, - cellTemplate: (params: any) => { - const select = document.createElement('igc-select'); - select.setAttribute('outlined', ''); - select.setAttribute('flip', ''); - select.setAttribute('value', params.value); - - this.choices.forEach(choice => { - const item = document.createElement('igc-select-item'); - item.setAttribute('value', choice); - item.textContent = choice; - select.appendChild(item); - }); - - return select; - } - }, - { - key: 'satisfaction', - headerText: 'Satisfaction rating', - type: 'number', - sort: true, - filter: true, - cellTemplate: (params: any) => { - const rating = document.createElement('igc-rating'); - rating.setAttribute('readonly', ''); - rating.setAttribute('value', params.value.toString()); - return rating; - } - }, - { - key: 'registeredAt', - headerText: 'Registered @', - sort: true, - cellTemplate: (params: any) => { - const span = document.createElement('span'); - span.textContent = params.value.toLocaleString(); - return span; - } - }, - { - key: 'active', - type: 'boolean', - headerText: 'Active', - cellTemplate: (params: any) => { - const checkbox = document.createElement('igc-checkbox'); - if (params.value) { - checkbox.setAttribute('checked', ''); - } - return checkbox; - } - } - ]; +const registeredAtCellTemplate = (params: any) => { + const span = document.createElement('span'); + span.textContent = params.value.toLocaleString(); + return span; +}; - this.gridRef.current.columns = columns; - this.gridRef.current.data = data; - } - } - public render(): JSX.Element { - return ( -
-
- -
+export default function Sample() { + const [data, setData] = React.useState([]); + + useEffect(() => { + const dataService = new GridLiteDataService(); + const data: User[] = dataService.generateUsers(1000); + setData(data); + }, []); + + return ( +
+
+ + + + + + + +
- ); - } +
+ ); } // rendering above component in the React DOM diff --git a/samples/grids/grid-lite/sort-config-events/package.json b/samples/grids/grid-lite/sort-config-events/package.json index bcef229119..d158eead5f 100644 --- a/samples/grids/grid-lite/sort-config-events/package.json +++ b/samples/grids/grid-lite/sort-config-events/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-grid-lite": "^0.0.1", + "igniteui-grid-lite": "~0.4.0", "igniteui-react": "^19.4.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid-lite/sort-config-events/src/index.tsx b/samples/grids/grid-lite/sort-config-events/src/index.tsx index c7f5c06483..0de195ae7a 100644 --- a/samples/grids/grid-lite/sort-config-events/src/index.tsx +++ b/samples/grids/grid-lite/sort-config-events/src/index.tsx @@ -15,130 +15,99 @@ import "./index.css"; IgcGridLite.register(); defineComponents(IgcRatingComponent); -export default class Sample extends React.Component { - private dataService: GridLiteDataService; - private gridRef: React.RefObject; - private logRef: React.RefObject; - private log: string[] = []; +const getTimeStamp = (): string => `[${new Date().toLocaleTimeString()}]`; - constructor(props: any) { - super(props); - this.dataService = new GridLiteDataService(); - this.gridRef = React.createRef(); - this.logRef = React.createRef(); - this.state = { logContent: '' }; - this.handleSorting = this.handleSorting.bind(this); - this.handleSorted = this.handleSorted.bind(this); - } +// Define cellTemplate function outside component +const ratingCellTemplate = (params: any) => { + const rating = document.createElement('igc-rating'); + rating.setAttribute('readonly', ''); + rating.setAttribute('step', '0.01'); + rating.setAttribute('value', params.value.toString()); + return rating; +}; - get timeStamp(): string { - return `[${new Date().toLocaleTimeString()}]`; - } +export default function Sample() { + const gridRef = React.useRef(null); + const logRef = React.useRef(null); + const [log, setLog] = React.useState([]); - componentDidMount() { - if (this.gridRef.current) { - const data: ProductInfo[] = this.dataService.generateProducts(100); - - const columns = [ - { - key: 'name', - headerText: 'Name', - sort: true - }, - { - key: 'price', - type: 'number', - headerText: 'Price', - sort: true - }, - { - key: 'rating', - type: 'number', - headerText: 'Rating', - sort: true, - cellTemplate: (params: any) => { - const rating = document.createElement('igc-rating'); - rating.setAttribute('readonly', ''); - rating.setAttribute('step', '0.01'); - rating.setAttribute('value', params.value.toString()); - return rating; - } - }, - { - key: 'sold', - type: 'number', - headerText: 'Sold', - sort: true - }, - { - key: 'total', - type: 'number', - headerText: 'Total', - sort: true - } - ]; - - this.gridRef.current.columns = columns; - this.gridRef.current.data = data; - - // Listen to sorting events - this.gridRef.current.addEventListener('sorting', this.handleSorting); - this.gridRef.current.addEventListener('sorted', this.handleSorted); - } - } - - private updateLog(message: string) { - if (this.log.length > 10) { - this.log.shift(); - } - this.log.push(message); - this.renderLog(); - } - - private renderLog() { - const logContent = this.log - .map(entry => `

${entry}

`) - .join(''); - this.setState({ logContent }, () => { - if (this.logRef.current) { - this.logRef.current.scrollTop = this.logRef.current.scrollHeight; + const updateLog = React.useCallback((message: string) => { + setLog(prevLog => { + const newLog = [...prevLog]; + if (newLog.length > 10) { + newLog.shift(); } + newLog.push(message); + return newLog; }); - } + }, []); + + React.useEffect(() => { + if (logRef.current) { + logRef.current.scrollTop = logRef.current.scrollHeight; + } + }, [log]); - private handleSorting(event: any) { + const handleSorting = React.useCallback((event: any) => { const { detail, type } = event; const allowedColumns = ['price', 'total', 'sold']; if (!allowedColumns.includes(detail.key)) { event.preventDefault(); - this.updateLog( - `${this.timeStamp} :: Event '${type}' :: Sort operation was prevented for column '${detail.key}'` + updateLog( + `${getTimeStamp()} :: Event '${type}' :: Sort operation was prevented for column '${detail.key}'` ); } else { - this.updateLog( - `${this.timeStamp} :: Event '${type}' :: Column '${detail.key}' is being sorted with expression: ${JSON.stringify(detail)}` + updateLog( + `${getTimeStamp()} :: Event '${type}' :: Column '${detail.key}' is being sorted with expression: ${JSON.stringify(detail)}` ); } - } + }, [updateLog]); - private handleSorted(event: any) { + const handleSorted = React.useCallback((event: any) => { const { detail, type } = event; - this.updateLog( - `${this.timeStamp} :: Event '${type}' :: Column '${detail.key}' was sorted with expression: ${JSON.stringify(detail)}` + updateLog( + `${getTimeStamp()} :: Event '${type}' :: Column '${detail.key}' was sorted with expression: ${JSON.stringify(detail)}` ); - } + }, [updateLog]); + + React.useEffect(() => { + if (gridRef.current) { + const dataService = new GridLiteDataService(); + const data: ProductInfo[] = dataService.generateProducts(100); + gridRef.current.data = data; - public render(): JSX.Element { - return ( -
-
- -
-
+ // Listen to sorting events + gridRef.current.addEventListener('sorting', handleSorting); + gridRef.current.addEventListener('sorted', handleSorted); + + return () => { + if (gridRef.current) { + gridRef.current.removeEventListener('sorting', handleSorting); + gridRef.current.removeEventListener('sorted', handleSorted); + } + }; + } + }, [handleSorting, handleSorted]); + + const logContent = log + .map(entry => `

${entry}

`) + .join(''); + + return ( +
+
+ + + + + + + +
- ); - } +
+ ); } // rendering above component in the React DOM diff --git a/samples/grids/grid-lite/sort-config-grid/package.json b/samples/grids/grid-lite/sort-config-grid/package.json index bcef229119..d158eead5f 100644 --- a/samples/grids/grid-lite/sort-config-grid/package.json +++ b/samples/grids/grid-lite/sort-config-grid/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-grid-lite": "^0.0.1", + "igniteui-grid-lite": "~0.4.0", "igniteui-react": "^19.4.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid-lite/sort-config-grid/src/index.tsx b/samples/grids/grid-lite/sort-config-grid/src/index.tsx index 16663efe6a..6dcaff9b7c 100644 --- a/samples/grids/grid-lite/sort-config-grid/src/index.tsx +++ b/samples/grids/grid-lite/sort-config-grid/src/index.tsx @@ -1,4 +1,4 @@ -import React from 'react'; +import React, { useRef, useState } from 'react'; import ReactDOM from 'react-dom/client'; import { IgrSwitch } from 'igniteui-react'; import { GridLiteDataService, ProductInfo } from './GridLiteDataService'; @@ -16,94 +16,61 @@ import "./index.css"; IgcGridLite.register(); defineComponents(IgcRatingComponent); -export default class Sample extends React.Component { - private dataService: GridLiteDataService; - private gridRef: React.RefObject; - private sortConfiguration: any = { - multiple: true, - triState: true - }; +// Define cellTemplate function outside component +const ratingCellTemplate = (params: any) => { + const rating = document.createElement('igc-rating'); + rating.setAttribute('readonly', ''); + rating.setAttribute('step', '0.01'); + rating.setAttribute('value', params.value.toString()); + return rating; +}; - constructor(props: any) { - super(props); - this.dataService = new GridLiteDataService(); - this.gridRef = React.createRef(); - this.updateConfig = this.updateConfig.bind(this); - } +export default function Sample() { + const gridRef = useRef(null); + const [switchChecked, setSwitchChecked] = useState(true); + const [sortingOptions, setSortingOptions] = useState({ + mode: 'multiple' + }); - componentDidMount() { - if (this.gridRef.current) { - const data: ProductInfo[] = this.dataService.generateProducts(100); - - const columns = [ - { - key: 'name', - headerText: 'Name', - sort: true - }, - { - key: 'price', - type: 'number', - headerText: 'Price', - sort: true - }, - { - key: 'rating', - type: 'number', - headerText: 'Rating', - sort: true, - cellTemplate: (params: any) => { - const rating = document.createElement('igc-rating'); - rating.setAttribute('readonly', ''); - rating.setAttribute('step', '0.01'); - rating.setAttribute('value', params.value.toString()); - return rating; - } - }, - { - key: 'sold', - type: 'number', - headerText: 'Sold', - sort: true - }, - { - key: 'total', - type: 'number', - headerText: 'Total', - sort: true - } - ]; - - this.gridRef.current.columns = columns; - this.gridRef.current.data = data; - this.gridRef.current.sortConfiguration = this.sortConfiguration; + React.useEffect(() => { + if (gridRef.current) { + const dataService = new GridLiteDataService(); + const data: ProductInfo[] = dataService.generateProducts(100); + gridRef.current.data = data; + gridRef.current.sortingOptions = sortingOptions; } - } + }, [sortingOptions]); - private updateConfig(prop: string, checked: boolean) { - this.sortConfiguration = { ...this.sortConfiguration, [prop]: checked }; - if (this.gridRef.current) { - this.gridRef.current.sortConfiguration = this.sortConfiguration; + const updateConfig = React.useCallback((prop: string, checked: boolean) => { + setSwitchChecked(checked); + + if (prop === 'multiple' && gridRef.current) { + const mode = checked ? 'multiple' : 'single'; + setSortingOptions({ mode }); + + gridRef.current.sortingConfiguration = { mode }; + gridRef.current.clearSort(); } - } - - public render(): JSX.Element { - return ( -
-
- this.updateConfig('multiple', e.target.checked)}> - Multiple Sort - - this.updateConfig('triState', e.target.checked)}> - Tri-State - -
-
- -
+ }, []); + + return ( +
+
+ updateConfig('multiple', e.target.checked)}> + Multiple Sort + +
+
+ + + + + + +
- ); - } +
+ ); } // rendering above component in the React DOM diff --git a/samples/grids/grid-lite/sort-config-pipeline/package.json b/samples/grids/grid-lite/sort-config-pipeline/package.json index bcef229119..d158eead5f 100644 --- a/samples/grids/grid-lite/sort-config-pipeline/package.json +++ b/samples/grids/grid-lite/sort-config-pipeline/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-grid-lite": "^0.0.1", + "igniteui-grid-lite": "~0.4.0", "igniteui-react": "^19.4.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid-lite/sort-config-pipeline/src/index.tsx b/samples/grids/grid-lite/sort-config-pipeline/src/index.tsx index 10bd2a83e4..e81ec57dc7 100644 --- a/samples/grids/grid-lite/sort-config-pipeline/src/index.tsx +++ b/samples/grids/grid-lite/sort-config-pipeline/src/index.tsx @@ -16,115 +16,80 @@ import "./index.css"; IgcGridLite.register(); defineComponents(IgcRatingComponent, IgcCircularProgressComponent); -export default class Sample extends React.Component { - private dataService: GridLiteDataService; - private gridRef: React.RefObject; - private progressRef: React.RefObject; +// Define cellTemplate function outside component +const ratingCellTemplate = (params: any) => { + const rating = document.createElement('igc-rating'); + rating.setAttribute('readonly', ''); + rating.setAttribute('step', '0.01'); + rating.setAttribute('value', params.value.toString()); + return rating; +}; - constructor(props: any) { - super(props); - this.dataService = new GridLiteDataService(); - this.gridRef = React.createRef(); - this.progressRef = React.createRef(); - this.state = { queryString: '' }; +const buildUri = (state: any[]): string => { + const uri: string[] = []; + for (const expr of state) { + if (expr.direction === 'none') { + continue; + } + uri.push( + expr.direction === 'ascending' + ? `asc(${expr.key})` + : `desc(${expr.key})` + ); } + return `GET: /data?sort_by=${uri.join(',')}`; +}; - componentDidMount() { - if (this.gridRef.current) { - const data: ProductInfo[] = this.dataService.generateProducts(100); - - const columns = [ - { - key: 'name', - headerText: 'Name', - sort: true - }, - { - key: 'price', - type: 'number', - headerText: 'Price', - sort: true - }, - { - key: 'rating', - type: 'number', - headerText: 'Rating', - sort: true, - cellTemplate: (params: any) => { - const rating = document.createElement('igc-rating'); - rating.setAttribute('readonly', ''); - rating.setAttribute('step', '0.01'); - rating.setAttribute('value', params.value.toString()); - return rating; - } - }, - { - key: 'sold', - type: 'number', - headerText: 'Sold', - sort: true - }, - { - key: 'total', - type: 'number', - headerText: 'Total', - sort: true - } - ]; - - const dataPipelineConfiguration = { - sort: async ({ data, grid }: any) => { - if (this.progressRef.current) { - this.progressRef.current.classList.add('in-operation'); - } - const queryString = grid.sortExpressions.length - ? this.buildUri(grid.sortExpressions) - : ''; - this.setState({ queryString }); - - await new Promise(resolve => setTimeout(resolve, 250)); - if (this.progressRef.current) { - this.progressRef.current.classList.remove('in-operation'); - } - return data; - } - }; +export default function Sample() { + const gridRef = React.useRef(null); + const progressRef = React.useRef(null); + const [queryString, setQueryString] = React.useState(''); - this.gridRef.current.columns = columns; - this.gridRef.current.data = data; - this.gridRef.current.dataPipelineConfiguration = dataPipelineConfiguration; + const dataPipelineConfiguration = React.useMemo(() => ({ + sort: async ({ data, grid }: any) => { + if (progressRef.current) { + progressRef.current.classList.add('in-operation'); + } + const qs = grid.sortingExpressions.length + ? buildUri(grid.sortingExpressions) + : ''; + setQueryString(qs); + + await new Promise(resolve => setTimeout(resolve, 250)); + if (progressRef.current) { + progressRef.current.classList.remove('in-operation'); + } + return data; } - } + }), []); - private buildUri(state: any[]): string { - const uri: string[] = []; - for (const expr of state) { - if (expr.direction === 'none') { - continue; - } - uri.push( - expr.direction === 'ascending' - ? `asc(${expr.key})` - : `desc(${expr.key})` - ); + React.useEffect(() => { + if (gridRef.current) { + const dataService = new GridLiteDataService(); + const data: ProductInfo[] = dataService.generateProducts(100); + gridRef.current.data = data; + gridRef.current.dataPipelineConfiguration = dataPipelineConfiguration; } - return `GET: /data?sort_by=${uri.join(',')}`; - } + }, [dataPipelineConfiguration]); - public render(): JSX.Element { - return ( -
-
-
-

{this.state.queryString}

-
-
-
- + return ( +
+
+
+

{queryString}

- ); - } +
+ + + + + + + +
+
+ ); } // rendering above component in the React DOM diff --git a/samples/grids/grid-lite/sort-config-sample/package.json b/samples/grids/grid-lite/sort-config-sample/package.json index bcef229119..d158eead5f 100644 --- a/samples/grids/grid-lite/sort-config-sample/package.json +++ b/samples/grids/grid-lite/sort-config-sample/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-grid-lite": "^0.0.1", + "igniteui-grid-lite": "~0.4.0", "igniteui-react": "^19.4.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid-lite/sort-config-sample/src/index.tsx b/samples/grids/grid-lite/sort-config-sample/src/index.tsx index c2953a7665..0b2faa3d6e 100644 --- a/samples/grids/grid-lite/sort-config-sample/src/index.tsx +++ b/samples/grids/grid-lite/sort-config-sample/src/index.tsx @@ -11,58 +11,29 @@ import "./index.css"; // Register components IgcGridLite.register(); -export default class Sample extends React.Component { - private dataService: GridLiteDataService; - private gridRef: React.RefObject; - - constructor(props: any) { - super(props); - this.dataService = new GridLiteDataService(); - this.gridRef = React.createRef(); - } - - componentDidMount() { - if (this.gridRef.current) { - const data: User[] = this.dataService.generateUsers(50); - - const columns = [ - { - key: 'firstName', - headerText: 'First name', - sort: true - }, - { - key: 'lastName', - headerText: 'Last name', - sort: true - }, - { - key: 'age', - headerText: 'Age', - sort: true, - type: 'number' - }, - { - key: 'email', - headerText: 'Email', - sort: true - } - ]; - - this.gridRef.current.columns = columns; - this.gridRef.current.data = data; +export default function Sample() { + const gridRef = React.useRef(null); + + React.useEffect(() => { + if (gridRef.current) { + const dataService = new GridLiteDataService(); + const data: User[] = dataService.generateUsers(50); + gridRef.current.data = data; } - } - - public render(): JSX.Element { - return ( -
-
- -
+ }, []); + + return ( +
+
+ + + + + +
- ); - } +
+ ); } // rendering above component in the React DOM diff --git a/samples/grids/grid-lite/styling-custom-theme/package.json b/samples/grids/grid-lite/styling-custom-theme/package.json index 8c431949c5..2d0cfb484f 100644 --- a/samples/grids/grid-lite/styling-custom-theme/package.json +++ b/samples/grids/grid-lite/styling-custom-theme/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-grid-lite": "^0.0.1", + "igniteui-grid-lite": "~0.4.0", "igniteui-react": "^19.4.0", "igniteui-theming": "^24.0.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid-lite/styling-custom-theme/src/index.tsx b/samples/grids/grid-lite/styling-custom-theme/src/index.tsx index e947abd237..8ce1fde75f 100644 --- a/samples/grids/grid-lite/styling-custom-theme/src/index.tsx +++ b/samples/grids/grid-lite/styling-custom-theme/src/index.tsx @@ -16,77 +16,38 @@ import "./index.scss"; IgcGridLite.register(); defineComponents(IgcRatingComponent); -export default class Sample extends React.Component { - private dataService: GridLiteDataService; - private gridRef: React.RefObject; - - constructor(props: any) { - super(props); - this.dataService = new GridLiteDataService(); - this.gridRef = React.createRef(); - } - - componentDidMount() { - if (this.gridRef.current) { - const data: ProductInfo[] = this.dataService.generateProducts(50); - - const columns = [ - { - key: 'name', - headerText: 'Product', - sort: true, - filter: true - }, - { - key: 'price', - headerText: 'Price', - sort: true, - filter: true, - type: 'number' - }, - { - key: 'sold', - headerText: 'Sold', - sort: true, - filter: true, - type: 'number' - }, - { - key: 'total', - headerText: 'Total', - sort: true, - filter: true, - type: 'number' - }, - { - key: 'rating', - headerText: 'Rating', - type: 'number', - sort: true, - filter: true, - cellTemplate: (params: any) => { - const rating = document.createElement('igc-rating'); - rating.setAttribute('readonly', ''); - rating.setAttribute('value', params.value.toString()); - return rating; - } - } - ]; - - this.gridRef.current.columns = columns; - this.gridRef.current.data = data; +// Define cellTemplate function outside component +const ratingCellTemplate = (params: any) => { + const rating = document.createElement('igc-rating'); + rating.setAttribute('readonly', ''); + rating.setAttribute('value', params.value.toString()); + return rating; +}; + +export default function Sample() { + const gridRef = React.useRef(null); + + React.useEffect(() => { + if (gridRef.current) { + const dataService = new GridLiteDataService(); + const data: ProductInfo[] = dataService.generateProducts(50); + gridRef.current.data = data; } - } - - public render(): JSX.Element { - return ( -
-
- -
+ }, []); + + return ( +
+
+ + + + + + +
- ); - } +
+ ); } // rendering above component in the React DOM From 77800e848a896838b6ec3177d64a45acbc91f60e Mon Sep 17 00:00:00 2001 From: Deyan Kamburov Date: Mon, 23 Feb 2026 15:58:42 +0200 Subject: [PATCH 36/43] chore: bump react grids to 19.5.0-rc.0 (#1037) --- browser/package-lock.json | 128 ++++++++++++------ browser/package.json | 6 +- browser/tasks/gulp-samples.js | 6 +- .../annotations-all/package.json | 2 +- .../annotations-callouts/package.json | 2 +- .../annotations-crosshairs/package.json | 2 +- .../annotations-custom/package.json | 2 +- .../annotations-final-value/package.json | 2 +- .../annotations-highlighting/package.json | 2 +- .../area-chart-multiple-sources/package.json | 2 +- .../area-chart-single-source/package.json | 2 +- .../area-chart-styling/package.json | 2 +- .../category-chart/axis-gap/package.json | 2 +- .../axis-gridlines/package.json | 2 +- .../category-chart/axis-inverted/package.json | 2 +- .../category-chart/axis-labels/package.json | 2 +- .../axis-locations/package.json | 2 +- .../category-chart/axis-options/package.json | 2 +- .../category-chart/axis-overlap/package.json | 2 +- .../category-chart/axis-range/package.json | 2 +- .../axis-tickmarks/package.json | 2 +- .../category-chart/axis-titles/package.json | 2 +- .../chart-highlight-filter/package.json | 2 +- .../package.json | 2 +- .../column-chart-single-source/package.json | 2 +- .../column-chart-styling/package.json | 2 +- .../column-chart-with-tooltips/package.json | 2 +- .../custom-selection/package.json | 2 +- .../data-aggregations/package.json | 2 +- .../category-chart/data-filter/package.json | 2 +- .../package.json | 2 +- .../category-chart/data-legend/package.json | 2 +- .../package.json | 2 +- .../data-tooltip-positioning/package.json | 2 +- .../category-chart/data-tooltip/package.json | 2 +- .../format-specifiers/package.json | 2 +- .../highlighting-behavior/package.json | 2 +- .../highlighting-mode/package.json | 2 +- .../legend-highlighting/package.json | 2 +- .../line-chart-multiple-sources/package.json | 2 +- .../line-chart-single-source/package.json | 2 +- .../line-chart-styling/package.json | 2 +- .../marker-options/package.json | 2 +- .../category-chart/overview/package.json | 2 +- .../point-chart-multiple-sources/package.json | 2 +- .../point-chart-single-source/package.json | 2 +- .../point-chart-styling/package.json | 2 +- .../selection-matcher/package.json | 2 +- .../selection-modes/package.json | 2 +- .../selection-multiple-modes/package.json | 2 +- .../spline-area-multiple-sources/package.json | 2 +- .../spline-area-single-source/package.json | 2 +- .../spline-area-styling/package.json | 2 +- .../spline-multiple-sources/package.json | 2 +- .../spline-single-source/package.json | 2 +- .../spline-styling/package.json | 2 +- .../step-area-multiple-sources/package.json | 2 +- .../step-area-single-source/package.json | 2 +- .../step-area-styling/package.json | 2 +- .../step-line-multiple-sources/package.json | 2 +- .../step-line-single-source/package.json | 2 +- .../step-line-styling/package.json | 2 +- .../category-chart/value-lines/package.json | 2 +- .../chart-dashboard/package.json | 4 +- .../financial-dashboard/package.json | 2 +- .../gauge-dashboard/package.json | 2 +- .../local-data-source-dashboard/package.json | 2 +- .../dashboard-tile/map-dashboard/package.json | 2 +- .../dashboard-tile/pie-dashboard/package.json | 2 +- .../annotations-custom/package.json | 2 +- .../package.json | 2 +- .../axis-label-rotation/package.json | 2 +- .../data-chart/axis-min-max-gap/package.json | 2 +- .../bar-chart-multiple-sources/package.json | 2 +- .../bar-chart-overlapping/package.json | 2 +- .../bar-chart-single-source/package.json | 2 +- .../data-chart/bar-chart-styling/package.json | 2 +- .../callout-layer-styling/package.json | 2 +- .../package.json | 2 +- .../package.json | 2 +- .../chart-highlight-filter/package.json | 2 +- .../custom-drawing-annotations/package.json | 2 +- .../custom-editing-data/package.json | 2 +- .../data-chart/dash-array-axes/package.json | 2 +- .../data-chart/dash-array-series/package.json | 2 +- .../dash-array-tickmarks/package.json | 2 +- .../dash-array-trendline/package.json | 2 +- .../data-annotation-band-layer/package.json | 2 +- .../data-annotation-line-layer/package.json | 2 +- .../package.json | 2 +- .../package.json | 2 +- .../data-annotation-rect-layer/package.json | 2 +- .../data-annotation-slice-layer/package.json | 2 +- .../data-annotation-strip-layer/package.json | 2 +- .../package.json | 2 +- .../data-legend-grouping/package.json | 2 +- .../data-legend-styling/package.json | 2 +- .../data-chart/data-legend/package.json | 2 +- .../package.json | 2 +- .../data-tooltip-grouping/package.json | 2 +- .../data-tooltip-styling/package.json | 2 +- .../data-chart/data-tooltip/package.json | 2 +- .../financial-price-series/package.json | 2 +- .../data-chart/format-specifiers/package.json | 2 +- .../polar-area-chart-styling/package.json | 2 +- .../data-chart/polar-area-chart/package.json | 2 +- .../data-chart/polar-line-chart/package.json | 2 +- .../polar-scatter-chart/package.json | 2 +- .../polar-spline-area-chart/package.json | 2 +- .../polar-spline-chart/package.json | 2 +- .../radial-area-chart-styling/package.json | 2 +- .../data-chart/radial-area-chart/package.json | 2 +- .../package.json | 2 +- .../radial-column-chart/package.json | 2 +- .../data-chart/radial-label-mode/package.json | 2 +- .../data-chart/radial-line-chart/package.json | 2 +- .../data-chart/radial-pie-chart/package.json | 2 +- .../package.json | 2 +- .../package.json | 2 +- .../data-chart/range-area-chart/package.json | 2 +- .../range-column-chart/package.json | 2 +- .../package.json | 2 +- .../package.json | 2 +- .../package.json | 2 +- .../scatter-bubble-chart-styling/package.json | 2 +- .../scatter-line-chart/package.json | 2 +- .../scatter-point-chart/package.json | 2 +- .../scatter-spline-chart/package.json | 2 +- .../data-chart/selection-matcher/package.json | 2 +- .../stacked-100-area-chart/package.json | 2 +- .../stacked-100-bar-chart/package.json | 2 +- .../stacked-100-column-chart/package.json | 2 +- .../stacked-100-line-chart/package.json | 2 +- .../package.json | 2 +- .../stacked-100-spline-chart/package.json | 2 +- .../stacked-area-chart/package.json | 2 +- .../data-chart/stacked-bar-chart/package.json | 2 +- .../stacked-column-chart/package.json | 2 +- .../stacked-line-chart/package.json | 2 +- .../stacked-spline-area-chart/package.json | 2 +- .../stacked-spline-chart/package.json | 2 +- .../data-chart/transition-event/package.json | 2 +- .../data-chart/trendline-layer/package.json | 2 +- .../user-annotation-layer/package.json | 2 +- .../data-chart/waterfall-chart/package.json | 2 +- .../animation-replay/package.json | 2 +- .../data-pie-chart/animation/package.json | 2 +- .../highlight-filter/package.json | 2 +- .../data-pie-chart/highlighting/package.json | 2 +- .../charts/data-pie-chart/legend/package.json | 2 +- .../charts/data-pie-chart/others/package.json | 2 +- .../data-pie-chart/overview/package.json | 2 +- .../data-pie-chart/selection/package.json | 2 +- .../charts/doughnut-chart/legend/package.json | 2 +- .../doughnut-chart/overview/package.json | 2 +- .../charts/doughnut-chart/rings/package.json | 2 +- .../package.json | 2 +- .../data-legend-styling-props/package.json | 2 +- .../financial-chart/data-legend/package.json | 2 +- .../package.json | 2 +- .../data-tooltip-styling-props/package.json | 2 +- .../financial-chart/data-tooltip/package.json | 2 +- .../format-specifiers/package.json | 2 +- .../financial-chart/scrollbars/package.json | 2 +- samples/charts/pie-chart/legend/package.json | 2 +- samples/charts/pie-chart/others/package.json | 2 +- .../charts/pie-chart/overview/package.json | 2 +- samples/charts/pie-chart/styling/package.json | 2 +- .../sparkline/display-area/package.json | 2 +- .../sparkline/display-column/package.json | 2 +- .../sparkline/display-lines/package.json | 2 +- .../sparkline/display-winloss/package.json | 2 +- samples/charts/sparkline/grid/package.json | 2 +- samples/charts/sparkline/markers/package.json | 2 +- .../sparkline/normal-range/package.json | 2 +- .../charts/sparkline/trendlines/package.json | 2 +- .../sparkline/unknown-values/package.json | 2 +- .../package.json | 2 +- .../actions-built-in-data-chart/package.json | 2 +- .../toolbar/color-editor-support/package.json | 2 +- .../charts/toolbar/custom-tool/package.json | 2 +- .../package.json | 2 +- .../package.json | 2 +- samples/charts/toolbar/theming/package.json | 2 +- .../highlighting-percent-based/package.json | 2 +- .../charts/tree-map/highlighting/package.json | 2 +- samples/charts/tree-map/layout/package.json | 2 +- samples/charts/tree-map/overview/package.json | 2 +- samples/charts/tree-map/styling/package.json | 2 +- .../operations-on-workbooks/package.json | 2 +- .../working-with-charts/package.json | 2 +- .../working-with-sparklines/package.json | 2 +- .../data-grid/binding-live-data/package.json | 2 +- .../data-grid/load-save-layout/package.json | 2 +- .../column-config-basic/package.json | 4 +- .../column-config-dynamic/package.json | 4 +- .../column-config-headers/package.json | 4 +- .../grids/grid-lite/data-binding/package.json | 4 +- .../filtering-config-events/package.json | 4 +- .../filtering-config-remote/package.json | 4 +- .../grid-lite/filtering-config/package.json | 4 +- samples/grids/grid-lite/overview/package.json | 4 +- .../grid-lite/sort-config-events/package.json | 4 +- .../grid-lite/sort-config-grid/package.json | 4 +- .../sort-config-pipeline/package.json | 4 +- .../grid-lite/sort-config-sample/package.json | 4 +- .../styling-custom-theme/package.json | 4 +- samples/grids/grid/action-strip/package.json | 4 +- .../advanced-filtering-options/package.json | 4 +- .../advanced-filtering-style/package.json | 4 +- .../grid/binding-composite-data/package.json | 4 +- .../grids/grid/binding-crud-data/package.json | 4 +- .../grid/binding-nested-data-1/package.json | 4 +- .../grids/grid/cascading-combo/package.json | 4 +- .../grid/cell-editing-sample/package.json | 4 +- .../grid/cell-editing-styling/package.json | 4 +- .../cell-merge-custom-sample/package.json | 4 +- samples/grids/grid/cell-merge/package.json | 4 +- .../grid/cell-selection-mode/package.json | 4 +- .../grid/cell-selection-style/package.json | 4 +- .../grid/change-icons-custom/package.json | 4 +- .../grid/clipboard-operations/package.json | 4 +- .../grid/column-auto-sizing/package.json | 4 +- .../column-collapsible-groups/package.json | 4 +- .../grids/grid/column-data-types/package.json | 4 +- .../grid/column-hiding-options/package.json | 4 +- .../column-hiding-toolbar-style/package.json | 4 +- .../grid/column-hiding-toolbar/package.json | 4 +- .../grid/column-moving-options/package.json | 4 +- .../grid/column-moving-styles/package.json | 4 +- .../column-pinning-both-sides/package.json | 4 +- .../grid/column-pinning-options/package.json | 4 +- .../column-pinning-right-side/package.json | 4 +- .../grid/column-pinning-styles/package.json | 4 +- .../grids/grid/column-pinning/package.json | 4 +- .../grid/column-resize-styling/package.json | 4 +- .../grids/grid/column-resizing/package.json | 4 +- .../grid/column-selection-group/package.json | 4 +- .../grid/column-selection-mode/package.json | 4 +- .../grid/column-selection-styles/package.json | 4 +- .../column-sorting-indicators/package.json | 4 +- .../grid/column-sorting-options/package.json | 4 +- .../grid/column-sorting-style/package.json | 4 +- .../conditional-cell-style-1/package.json | 4 +- .../conditional-cell-style-2/package.json | 4 +- .../conditional-row-selectors/package.json | 4 +- .../grid/custom-context-menu/package.json | 4 +- .../data-batch-editing-actions/package.json | 4 +- .../package.json | 4 +- .../grids/grid/data-searching/package.json | 4 +- .../grid/data-summary-formatter/package.json | 4 +- .../grid/data-summary-options/package.json | 4 +- .../grid/data-summary-template/package.json | 4 +- .../grid/data-validation-style/package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../grid/data-validator-service/package.json | 4 +- .../grid/disabled-summaries/package.json | 4 +- .../grids/grid/editing-columns/package.json | 4 +- .../grids/grid/editing-events/package.json | 4 +- .../grid/editing-excel-style/package.json | 4 +- .../grids/grid/editing-lifecycle/package.json | 4 +- .../grids/grid/excel-exporting/package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../excel-style-filtering-style/package.json | 4 +- .../external-advanced-filtering/package.json | 4 +- .../grids/grid/filtering-options/package.json | 4 +- .../grid/filtering-strategy/package.json | 4 +- .../grids/grid/filtering-style/package.json | 4 +- samples/grids/grid/finjs/package.json | 4 +- .../grids/grid/groupby-custom/package.json | 4 +- .../grid/groupby-expressions/package.json | 4 +- .../grids/grid/groupby-paging/package.json | 4 +- .../grids/grid/groupby-styling/package.json | 4 +- .../grid/groupby-summary-options/package.json | 4 +- .../grid/groupby-summary-styling/package.json | 4 +- .../grids/grid/infinite-scroll/package.json | 4 +- .../keyboard-custom-navigation/package.json | 4 +- .../grid/keyboard-mrl-navigation/package.json | 4 +- .../grid/layout-display-density/package.json | 4 +- samples/grids/grid/master-detail/package.json | 4 +- .../multi-cell-selection-mode/package.json | 4 +- .../multi-column-headers-export/package.json | 4 +- .../package.json | 4 +- .../multi-column-headers-styling/package.json | 4 +- .../package.json | 4 +- .../multi-row-layout-options/package.json | 4 +- .../grid/multi-row-layout-style/package.json | 4 +- samples/grids/grid/overview/package.json | 4 +- samples/grids/grid/paste/package.json | 4 +- .../grid/remote-paging-data/package.json | 4 +- .../grid/remote-paging-grid/package.json | 4 +- samples/grids/grid/row-adding/package.json | 4 +- samples/grids/grid/row-classes/package.json | 4 +- samples/grids/grid/row-drag-base/package.json | 4 +- .../grid/row-editing-options/package.json | 4 +- .../grids/grid/row-editing-style/package.json | 4 +- .../grids/grid/row-paging-basic/package.json | 4 +- .../grid/row-paging-options/package.json | 4 +- .../grids/grid/row-pinning-drag/package.json | 4 +- .../row-pinning-extra-column/package.json | 4 +- .../grid/row-pinning-options/package.json | 4 +- .../grids/grid/row-pinning-style/package.json | 4 +- samples/grids/grid/row-reorder/package.json | 4 +- .../grid/row-selection-mode/package.json | 4 +- .../row-selection-template-excel/package.json | 4 +- .../package.json | 4 +- samples/grids/grid/row-styles/package.json | 4 +- .../grid/state-persistence-about/package.json | 4 +- .../grid/state-persistence-main/package.json | 4 +- .../grid/styling-custom-CSS/package.json | 4 +- .../grids/grid/toolbar-sample-1/package.json | 4 +- .../grids/grid/toolbar-sample-2/package.json | 4 +- .../grids/grid/toolbar-sample-3/package.json | 4 +- samples/grids/grid/toolbar-style/package.json | 4 +- .../action-strip/package.json | 4 +- .../advanced-filtering-options/package.json | 4 +- .../advanced-filtering-style/package.json | 4 +- .../cell-editing-sample/package.json | 4 +- .../cell-editing-styling/package.json | 4 +- .../cell-merge-custom-sample/package.json | 4 +- .../hierarchical-grid/cell-merge/package.json | 4 +- .../cell-selection-mode/package.json | 4 +- .../cell-selection-overview/package.json | 4 +- .../cell-selection-style/package.json | 4 +- .../column-auto-sizing/package.json | 4 +- .../column-collapsible-groups/package.json | 4 +- .../column-hiding-toolbar-style/package.json | 4 +- .../column-hiding-toolbar/package.json | 4 +- .../column-moving-options/package.json | 4 +- .../column-moving-styles/package.json | 4 +- .../column-pinning-both-sides/package.json | 4 +- .../column-pinning-options/package.json | 4 +- .../column-pinning-right-side/package.json | 4 +- .../column-pinning-styles/package.json | 4 +- .../column-pinning/package.json | 4 +- .../column-resize-styling/package.json | 4 +- .../column-resizing/package.json | 4 +- .../column-selection-group/package.json | 4 +- .../column-selection-mode/package.json | 4 +- .../column-selection-styles/package.json | 4 +- .../column-sorting-indicators/package.json | 4 +- .../column-sorting-options/package.json | 4 +- .../column-sorting-style/package.json | 4 +- .../conditional-cell-style-1/package.json | 4 +- .../conditional-cell-style-2/package.json | 4 +- .../conditional-row-selectors/package.json | 4 +- .../custom-filtering/package.json | 4 +- .../data-exporting-indicator/package.json | 4 +- .../package.json | 4 +- .../data-summary-formatter/package.json | 4 +- .../data-summary-options-styling/package.json | 4 +- .../data-summary-options/package.json | 4 +- .../data-summary-template/package.json | 4 +- .../disabled-summaries/package.json | 4 +- .../editing-columns/package.json | 4 +- .../editing-events/package.json | 4 +- .../editing-lifecycle/package.json | 4 +- .../excel-exporting/package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../excel-style-filtering-style/package.json | 4 +- .../filtering-options/package.json | 4 +- .../filtering-style/package.json | 4 +- .../hierarchical-grid-options/package.json | 4 +- .../package.json | 4 +- .../hierarchical-grid-styling/package.json | 4 +- .../layout-display-density/package.json | 4 +- .../multi-column-headers-export/package.json | 4 +- .../package.json | 4 +- .../multi-column-headers-styling/package.json | 4 +- .../package.json | 4 +- .../hierarchical-grid/overview/package.json | 4 +- .../remote-paging-hgrid/package.json | 4 +- .../hierarchical-grid/row-adding/package.json | 4 +- .../row-classes/package.json | 4 +- .../row-drag-base/package.json | 4 +- .../row-editing-options/package.json | 4 +- .../row-editing-style/package.json | 4 +- .../row-pinning-extra-column/package.json | 4 +- .../row-pinning-options/package.json | 4 +- .../row-pinning-style/package.json | 4 +- .../row-reorder/package.json | 4 +- .../row-selection-mode/package.json | 4 +- .../package.json | 4 +- .../hierarchical-grid/row-styles/package.json | 4 +- .../state-persistence-about/package.json | 4 +- .../state-persistence-main/package.json | 4 +- .../toolbar-sample-3/package.json | 4 +- .../toolbar-sample-4/package.json | 4 +- .../toolbar-style/package.json | 4 +- .../grids/list/add-list-items/package.json | 2 +- .../grids/list/list-item-content/package.json | 2 +- samples/grids/list/overview/package.json | 2 +- samples/grids/list/styling/package.json | 2 +- .../aggregate-max-sales/package.json | 4 +- .../aggregate-units-sold/package.json | 4 +- .../pivot-grid/data-selector/package.json | 4 +- .../grids/pivot-grid/features/package.json | 4 +- .../state-persistence-about/package.json | 4 +- .../state-persistence-main/package.json | 4 +- .../grids/tree-grid/action-strip/package.json | 4 +- .../advanced-filtering-options/package.json | 4 +- .../advanced-filtering-style/package.json | 4 +- .../cell-editing-sample/package.json | 4 +- .../cell-editing-styling/package.json | 4 +- .../cell-merge-custom-sample/package.json | 4 +- .../grids/tree-grid/cell-merge/package.json | 4 +- .../cell-selection-mode/package.json | 4 +- .../cell-selection-style/package.json | 4 +- .../clipboard-operations/package.json | 4 +- .../tree-grid/column-auto-sizing/package.json | 4 +- .../column-collapsible-groups/package.json | 4 +- .../tree-grid/column-data-types/package.json | 4 +- .../column-hiding-toolbar-style/package.json | 4 +- .../column-hiding-toolbar/package.json | 4 +- .../column-moving-options/package.json | 4 +- .../column-moving-styles/package.json | 4 +- .../column-pinning-both-sides/package.json | 4 +- .../column-pinning-options/package.json | 4 +- .../column-pinning-right-side/package.json | 4 +- .../column-pinning-styles/package.json | 4 +- .../column-pinning-toolbar/package.json | 4 +- .../tree-grid/column-pinning/package.json | 4 +- .../column-resize-styling/package.json | 4 +- .../tree-grid/column-resizing/package.json | 4 +- .../column-selection-group/package.json | 4 +- .../column-selection-mode/package.json | 4 +- .../column-selection-style/package.json | 4 +- .../column-selection-styles/package.json | 4 +- .../column-sorting-indicators/package.json | 4 +- .../column-sorting-options/package.json | 4 +- .../column-sorting-style/package.json | 4 +- .../conditional-cell-style-1/package.json | 4 +- .../conditional-cell-style-2/package.json | 4 +- .../conditional-row-selectors/package.json | 4 +- .../data-exporting-indicator/package.json | 4 +- .../tree-grid/data-searching/package.json | 4 +- .../data-summary-children/package.json | 4 +- .../data-summary-formatter/package.json | 4 +- .../data-summary-options-styling/package.json | 4 +- .../data-summary-options/package.json | 4 +- .../data-summary-template/package.json | 4 +- .../tree-grid/disabled-summaries/package.json | 4 +- .../tree-grid/editing-columns/package.json | 4 +- .../tree-grid/editing-events/package.json | 4 +- .../tree-grid/editing-lifecycle/package.json | 4 +- .../tree-grid/excel-exporting/package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../excel-style-filtering-style/package.json | 4 +- .../tree-grid/filtering-options/package.json | 4 +- .../tree-grid/filtering-style/package.json | 4 +- .../keyboard-custom-navigation/package.json | 4 +- .../layout-display-density/package.json | 4 +- .../multi-cell-selection-mode/package.json | 4 +- .../multi-column-headers-export/package.json | 4 +- .../package.json | 4 +- .../multi-column-headers-styling/package.json | 4 +- .../package.json | 4 +- .../tree-grid/overview-styling/package.json | 4 +- samples/grids/tree-grid/overview/package.json | 4 +- .../grids/tree-grid/row-adding/package.json | 4 +- .../grids/tree-grid/row-classes/package.json | 4 +- .../tree-grid/row-drag-base/package.json | 4 +- .../row-editing-options/package.json | 4 +- .../tree-grid/row-editing-style/package.json | 4 +- .../tree-grid/row-paging-basic/package.json | 4 +- .../tree-grid/row-paging-options/package.json | 4 +- .../tree-grid/row-paging-style/package.json | 4 +- .../row-pinning-extra-column/package.json | 4 +- .../row-pinning-options/package.json | 4 +- .../tree-grid/row-pinning-style/package.json | 4 +- .../grids/tree-grid/row-reorder/package.json | 4 +- .../tree-grid/row-selection-mode/package.json | 4 +- .../row-selection-template-excel/package.json | 4 +- .../package.json | 4 +- .../grids/tree-grid/row-styles/package.json | 4 +- .../state-persistence-about/package.json | 4 +- .../state-persistence-main/package.json | 4 +- .../tree-grid/toolbar-sample-1/package.json | 4 +- .../tree-grid/toolbar-sample-2/package.json | 4 +- .../tree-grid/toolbar-sample-3/package.json | 4 +- .../tree-grid/toolbar-sample-4/package.json | 4 +- .../tree-grid/toolbar-style/package.json | 4 +- .../using-primary-foreign-keys/package.json | 4 +- samples/grids/tree/basic-example/package.json | 2 +- samples/grids/tree/styling/package.json | 2 +- samples/inputs/badge/outlined/package.json | 2 +- samples/inputs/badge/shape/package.json | 2 +- samples/inputs/badge/styling/package.json | 2 +- samples/inputs/badge/variants/package.json | 2 +- .../button-group/alignment/package.json | 2 +- .../inputs/button-group/overview/package.json | 2 +- .../button-group/selection/package.json | 2 +- samples/inputs/button-group/size/package.json | 2 +- .../inputs/button-group/styling/package.json | 2 +- samples/inputs/button/contained/package.json | 2 +- samples/inputs/button/download/package.json | 2 +- samples/inputs/button/fab/package.json | 2 +- samples/inputs/button/flat/package.json | 2 +- samples/inputs/button/outlined/package.json | 2 +- samples/inputs/button/overview/package.json | 2 +- samples/inputs/button/size/package.json | 2 +- samples/inputs/button/styling/package.json | 2 +- samples/inputs/checkbox/checking/package.json | 2 +- samples/inputs/checkbox/disabled/package.json | 2 +- .../checkbox/indeterminate/package.json | 2 +- samples/inputs/checkbox/label/package.json | 2 +- samples/inputs/checkbox/overview/package.json | 2 +- samples/inputs/checkbox/styling/package.json | 2 +- samples/inputs/chip/multiple/package.json | 2 +- samples/inputs/chip/overview/package.json | 2 +- samples/inputs/chip/size/package.json | 2 +- samples/inputs/chip/styling/package.json | 2 +- samples/inputs/chip/variants/package.json | 2 +- .../dynamic/package.json | 2 +- .../indeterminate/package.json | 2 +- .../simple/package.json | 2 +- .../styling/package.json | 2 +- .../inputs/color-editor/overview/package.json | 2 +- samples/inputs/combo/features/package.json | 2 +- samples/inputs/combo/overview/package.json | 2 +- samples/inputs/combo/selection/package.json | 2 +- samples/inputs/combo/simplified/package.json | 2 +- samples/inputs/combo/styling/package.json | 2 +- samples/inputs/combo/templates/package.json | 4 +- .../input-format-display-format/package.json | 2 +- .../min-max-value/package.json | 2 +- .../date-time-input/overview/package.json | 2 +- .../date-time-input/step-up-down/package.json | 2 +- .../date-time-input/styling/package.json | 2 +- samples/inputs/dropdown/group/package.json | 2 +- samples/inputs/dropdown/header/package.json | 2 +- samples/inputs/dropdown/item/package.json | 2 +- samples/inputs/dropdown/overview/package.json | 2 +- samples/inputs/dropdown/position/package.json | 2 +- samples/inputs/dropdown/styling/package.json | 2 +- samples/inputs/dropdown/target/package.json | 2 +- samples/inputs/icon-button/size/package.json | 2 +- .../inputs/icon-button/styling/package.json | 2 +- .../inputs/icon-button/variant/package.json | 2 +- samples/inputs/input/helper-text/package.json | 2 +- samples/inputs/input/overview/package.json | 2 +- .../inputs/input/prefix-suffix/package.json | 2 +- samples/inputs/input/size/package.json | 2 +- samples/inputs/input/styling/package.json | 2 +- .../dynamic/package.json | 2 +- .../simple/package.json | 2 +- .../striped/package.json | 2 +- .../styling/package.json | 2 +- .../types/package.json | 2 +- .../mask-input/applying-mask/package.json | 2 +- .../inputs/mask-input/overview/package.json | 2 +- .../mask-input/value-modes/package.json | 2 +- samples/inputs/radio/alignment/package.json | 2 +- samples/inputs/radio/disabled/package.json | 2 +- samples/inputs/radio/group/package.json | 2 +- samples/inputs/radio/invalid/package.json | 2 +- samples/inputs/radio/label/package.json | 2 +- samples/inputs/radio/styling/package.json | 2 +- samples/inputs/rating/basic/package.json | 2 +- samples/inputs/rating/custom/package.json | 2 +- samples/inputs/rating/empty/package.json | 2 +- .../rating/single-selection/package.json | 2 +- samples/inputs/rating/styling/package.json | 2 +- samples/inputs/ripple/button/package.json | 2 +- samples/inputs/ripple/color/package.json | 2 +- samples/inputs/select/group/package.json | 2 +- samples/inputs/select/header/package.json | 2 +- samples/inputs/select/item/package.json | 2 +- samples/inputs/select/overview/package.json | 2 +- samples/inputs/select/styling/package.json | 2 +- .../inputs/slider/constraints/package.json | 2 +- samples/inputs/slider/disabled/package.json | 2 +- samples/inputs/slider/discrete/package.json | 2 +- samples/inputs/slider/labels/package.json | 2 +- samples/inputs/slider/overview/package.json | 2 +- samples/inputs/slider/styling/package.json | 2 +- .../inputs/slider/tick-labels/package.json | 2 +- samples/inputs/slider/ticks/package.json | 2 +- .../inputs/slider/value-format/package.json | 2 +- samples/inputs/slider/value/package.json | 2 +- samples/inputs/switches/checking/package.json | 2 +- samples/inputs/switches/disabled/package.json | 2 +- samples/inputs/switches/label/package.json | 2 +- samples/inputs/switches/overview/package.json | 2 +- samples/inputs/switches/styling/package.json | 2 +- .../textarea/form-integration/package.json | 2 +- samples/inputs/textarea/overview/package.json | 2 +- samples/inputs/textarea/resize/package.json | 2 +- samples/inputs/textarea/slots/package.json | 2 +- samples/inputs/textarea/styling/package.json | 2 +- samples/inputs/tooltip/advanced/package.json | 2 +- samples/inputs/tooltip/overview/package.json | 2 +- samples/inputs/tooltip/placement/package.json | 2 +- samples/inputs/tooltip/rich/package.json | 2 +- samples/inputs/tooltip/styling/package.json | 2 +- samples/inputs/tooltip/triggers/package.json | 2 +- .../interactions/chat/features/package.json | 2 +- .../interactions/chat/overview/package.json | 2 +- .../interactions/chat/styling/package.json | 2 +- .../accordion/customization/package.json | 2 +- .../accordion/nested-scenario/package.json | 2 +- .../layouts/accordion/overview/package.json | 2 +- samples/layouts/avatar/icon/package.json | 2 +- samples/layouts/avatar/image/package.json | 2 +- samples/layouts/avatar/initials/package.json | 2 +- samples/layouts/avatar/shape/package.json | 2 +- samples/layouts/avatar/size/package.json | 2 +- samples/layouts/avatar/styling/package.json | 2 +- samples/layouts/card/horizontal/package.json | 2 +- samples/layouts/card/overview/package.json | 2 +- .../layouts/card/semi-horizontal/package.json | 2 +- samples/layouts/card/styling/package.json | 2 +- .../layouts/carousel/animations/package.json | 2 +- .../layouts/carousel/components/package.json | 2 +- .../layouts/carousel/overview/package.json | 2 +- .../layouts/carousel/thumbnail/package.json | 2 +- samples/layouts/divider/dashed/package.json | 2 +- samples/layouts/divider/middle/package.json | 2 +- samples/layouts/divider/overview/package.json | 2 +- samples/layouts/divider/select/package.json | 2 +- samples/layouts/divider/vertical/package.json | 2 +- .../layouts/dock-manager/styling/package.json | 2 +- .../component-customization/package.json | 2 +- .../properties-and-events/package.json | 2 +- .../expansion-panel/styling/package.json | 2 +- .../expansion-panel/usage/package.json | 2 +- samples/layouts/icon/sizing/package.json | 2 +- samples/layouts/icon/styling/package.json | 2 +- .../layouts/stepper/animations/package.json | 2 +- samples/layouts/stepper/linear/package.json | 2 +- .../layouts/stepper/orientation/package.json | 2 +- .../layouts/stepper/steptypes/package.json | 2 +- samples/layouts/stepper/styling/package.json | 2 +- samples/layouts/tabs/alignment/package.json | 2 +- samples/layouts/tabs/overview/package.json | 2 +- .../layouts/tabs/prefix-suffix/package.json | 2 +- samples/layouts/tabs/scrolling/package.json | 2 +- samples/layouts/tabs/styling/package.json | 2 +- .../layouts/tile-manager/actions/package.json | 2 +- .../tile-manager/columngap/package.json | 2 +- .../tile-manager/dragndrop/package.json | 2 +- .../layouts/tile-manager/layout/package.json | 2 +- .../tile-manager/overview/package.json | 2 +- .../layouts/tile-manager/resize/package.json | 2 +- .../layouts/tile-manager/styling/package.json | 2 +- .../geo-map/display-all-imagery/package.json | 2 +- .../display-azure-imagery/package.json | 2 +- .../geo-map/display-bing-imagery/package.json | 2 +- samples/menus/nav-bar/overview/package.json | 2 +- samples/menus/nav-bar/styling/package.json | 2 +- .../nav-drawer/add-drawer-items/package.json | 2 +- .../menus/nav-drawer/add-mini/package.json | 2 +- .../add-positions-navbar/package.json | 2 +- samples/menus/nav-drawer/styling/package.json | 2 +- .../banner-advanced-sample/package.json | 2 +- .../banner/banner-sample-1/package.json | 2 +- .../banner/banner-sample-2/package.json | 2 +- .../banner/banner-styling/package.json | 2 +- .../dialog/closing-variations/package.json | 2 +- .../notifications/dialog/form/package.json | 2 +- .../dialog/overview/package.json | 2 +- .../notifications/dialog/styling/package.json | 2 +- .../snackbar/action-text/package.json | 2 +- .../snackbar/display-time/package.json | 2 +- .../snackbar/overview/package.json | 2 +- .../snackbar/styling/package.json | 2 +- .../notifications/toast/overview/package.json | 2 +- .../toast/properties/package.json | 2 +- .../notifications/toast/styling/package.json | 2 +- .../calendar/disabled-dates/package.json | 2 +- .../calendar/formatting/package.json | 2 +- .../scheduling/calendar/header/package.json | 2 +- .../calendar/multiple-months/package.json | 2 +- .../calendar/multiple-selection/package.json | 2 +- .../scheduling/calendar/overview/package.json | 2 +- .../calendar/range-selection/package.json | 2 +- samples/scheduling/calendar/size/package.json | 2 +- .../calendar/special-dates/package.json | 2 +- .../scheduling/calendar/styling/package.json | 2 +- .../calendar/week-numbers/package.json | 2 +- .../date-picker/dialog-mode/package.json | 2 +- .../scheduling/date-picker/form/package.json | 2 +- .../date-picker/format/package.json | 2 +- .../date-picker/overview/package.json | 2 +- .../date-picker/styling/package.json | 2 +- .../custom-ranges/package.json | 2 +- .../date-range-picker/form/package.json | 2 +- .../date-range-picker/overview/package.json | 2 +- .../date-range-picker/slots/package.json | 2 +- .../date-range-picker/styling/package.json | 2 +- 697 files changed, 1084 insertions(+), 1032 deletions(-) diff --git a/browser/package-lock.json b/browser/package-lock.json index 3fb90124ba..1882e12c69 100644 --- a/browser/package-lock.json +++ b/browser/package-lock.json @@ -16,8 +16,8 @@ "dompurify": "^3.3.0", "file-saver": "1.3.8", "igniteui-dockmanager": "^1.17.0", - "igniteui-grid-lite": "~0.4.0", - "igniteui-react": "^19.4.0", + "igniteui-grid-lite": "~0.5.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-dashboards": "19.3.2", @@ -26,7 +26,7 @@ "igniteui-react-dockmanager": "^19.4.0", "igniteui-react-excel": "19.3.2", "igniteui-react-gauges": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-react-maps": "19.3.2", @@ -8374,9 +8374,9 @@ } }, "node_modules/igniteui-grid-lite": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/igniteui-grid-lite/-/igniteui-grid-lite-0.4.0.tgz", - "integrity": "sha512-QZ12Q9C9FxrJIZIO0beOQMAZ2E9UADEqS0cjL2Qt2YP1DNge7+x+AzXCp8aOOzT5Y5E+O6O0u6u7JPdtc3RhxA==", + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/igniteui-grid-lite/-/igniteui-grid-lite-0.5.1.tgz", + "integrity": "sha512-4Y1PRvpeSk+iAoLu1KQmbOz1LNbZiWa+36tie47yFVmE454fxP24Ct6Q6ucwQh7DLurSPJrgYDUXMC0+CEIw7g==", "license": "MIT", "dependencies": { "@lit-labs/virtualizer": "~2.1.0", @@ -8429,9 +8429,9 @@ } }, "node_modules/igniteui-grid-lite/node_modules/marked": { - "version": "17.0.2", - "resolved": "https://registry.npmjs.org/marked/-/marked-17.0.2.tgz", - "integrity": "sha512-s5HZGFQea7Huv5zZcAGhJLT3qLpAfnY7v7GWkICUr0+Wd5TFEtdlRR2XUL5Gg+RH7u2Df595ifrxR03mBaw7gA==", + "version": "17.0.3", + "resolved": "https://registry.npmjs.org/marked/-/marked-17.0.3.tgz", + "integrity": "sha512-jt1v2ObpyOKR8p4XaUJVk3YWRJ5n+i4+rjQopxvV32rSndTJXvIzuUdWWIy/1pFQMkQmvTXawzDNqOH/CUmx6A==", "license": "MIT", "optional": true, "peer": true, @@ -8443,12 +8443,12 @@ } }, "node_modules/igniteui-i18n-core": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/igniteui-i18n-core/-/igniteui-i18n-core-1.0.2.tgz", - "integrity": "sha512-51szNhKG/3ckWkJKV6npAG50Fvi11a5e/lcKF9+unV9PlOpEm3tsf90s//8fXB9r28HSObgSRCVfKD+hfoNx7w==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/igniteui-i18n-core/-/igniteui-i18n-core-1.0.4.tgz", + "integrity": "sha512-A26yyLlUvmf0HhbMjg09MjQbXiL+0Nwp7u98GlKs3JFc5nBS59BJTd5147wrLJNDSqzEdVmE6Pahw4Y+89s2Vw==", "license": "MIT", "peerDependencies": { - "igniteui-i18n-resources": "1.0.2" + "igniteui-i18n-resources": "1.0.4" }, "peerDependenciesMeta": { "igniteui-i18n-resources": { @@ -8457,32 +8457,20 @@ } }, "node_modules/igniteui-react": { - "version": "19.4.0", - "resolved": "https://registry.npmjs.org/igniteui-react/-/igniteui-react-19.4.0.tgz", - "integrity": "sha512-nA/kViUXZ1/YsLYyhPXt5gKQoeSruNcRVCQqDv3M+yP5jd21DUOAsKNzQJpo3CferIN1iFd6ncsF9axb0b2x3Q==", + "version": "19.5.0-rc.0", + "resolved": "https://registry.npmjs.org/igniteui-react/-/igniteui-react-19.5.0-rc.0.tgz", + "integrity": "sha512-CsNq/AStk+4D3jwOAVR6wPN/IbYoNWRuuQzTunmCOCmfGlSljAID7lUIKoBni6vivwcspIcMlXbCZhSnfIHrpg==", "license": "MIT", "dependencies": { "@lit/react": "^1.0.7", - "igniteui-webcomponents": "~6.3.6", + "igniteui-webcomponents": "~7.0.0-rc.0", "lit": "^3.3.0" }, "peerDependencies": { - "dompurify": "^3.2.0", - "marked": "^16.3.0", - "marked-shiki": "^1.2.0", - "shiki": "^3.12.0" + "igniteui-grid-lite": "~0.5.1" }, "peerDependenciesMeta": { - "dompurify": { - "optional": true - }, - "marked": { - "optional": true - }, - "marked-shiki": { - "optional": true - }, - "shiki": { + "igniteui-grid-lite": { "optional": true } } @@ -8590,13 +8578,13 @@ } }, "node_modules/igniteui-react-grids": { - "version": "19.5.0-beta.0", - "resolved": "https://registry.npmjs.org/igniteui-react-grids/-/igniteui-react-grids-19.5.0-beta.0.tgz", - "integrity": "sha512-C/DC/DwJA6v8h6oi8IrR29LxALKI1EfnopGXU/s/CYIp6WuoI7y3n2RuS3v7Au3UhI6YUzbVT9OIPTENUmQlVA==", + "version": "19.5.0-rc.0", + "resolved": "https://registry.npmjs.org/igniteui-react-grids/-/igniteui-react-grids-19.5.0-rc.0.tgz", + "integrity": "sha512-2XSSW7epGybFJT8KMTqpmfuoUwVOi3FUuuYcE1OaVfJefaf7wb7Yjyo/tQ8YkKUcpbG7Xp1Dv5LObqQMxL53yg==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "@lit/react": "^1.0.7", - "igniteui-webcomponents-grids": "~6.2.1", + "igniteui-webcomponents-grids": "~6.3.0-rc.2", "lit": "^3.3.0" } }, @@ -8666,6 +8654,60 @@ "igniteui-react-spreadsheet": "19.3.2" } }, + "node_modules/igniteui-react/node_modules/igniteui-webcomponents": { + "version": "7.0.0-rc.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents/-/igniteui-webcomponents-7.0.0-rc.0.tgz", + "integrity": "sha512-U8u6NgfTypL5Nz7KW/NHcXm7QWdqJ6ge4e2YcsTowXWAuA1DmO+l+dve3I4G8UPUT6pl7JmPV1daIRC3AuMD+g==", + "license": "MIT", + "dependencies": { + "@floating-ui/dom": "^1.7.0", + "@lit-labs/virtualizer": "^2.1.0", + "@lit/context": "^1.1.0", + "igniteui-i18n-core": "^1.0.1", + "lit": "^3.3.0" + }, + "engines": { + "node": ">=22" + }, + "peerDependencies": { + "dompurify": "^3.3.0", + "igniteui-i18n-resources": "^1.0.1", + "marked": "^17.0.0", + "marked-shiki": "^1.2.0", + "shiki": "^3.20.0" + }, + "peerDependenciesMeta": { + "dompurify": { + "optional": true + }, + "igniteui-i18n-resources": { + "optional": true + }, + "marked": { + "optional": true + }, + "marked-shiki": { + "optional": true + }, + "shiki": { + "optional": true + } + } + }, + "node_modules/igniteui-react/node_modules/marked": { + "version": "17.0.3", + "resolved": "https://registry.npmjs.org/marked/-/marked-17.0.3.tgz", + "integrity": "sha512-jt1v2ObpyOKR8p4XaUJVk3YWRJ5n+i4+rjQopxvV32rSndTJXvIzuUdWWIy/1pFQMkQmvTXawzDNqOH/CUmx6A==", + "license": "MIT", + "optional": true, + "peer": true, + "bin": { + "marked": "bin/marked.js" + }, + "engines": { + "node": ">= 20" + } + }, "node_modules/igniteui-theming": { "version": "24.0.2", "resolved": "https://registry.npmjs.org/igniteui-theming/-/igniteui-theming-24.0.2.tgz", @@ -8712,12 +8754,22 @@ } }, "node_modules/igniteui-webcomponents-grids": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-grids/-/igniteui-webcomponents-grids-6.2.1.tgz", - "integrity": "sha512-0+di4MvXLyzyKNlTudJawNBzi6eHuySRd/m/KCkb+baJIJ4asBFRPTKCbQzKbQE/+2H4OmjayhZqwaTo19hzpQ==", + "version": "6.3.0-rc.2", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-grids/-/igniteui-webcomponents-grids-6.3.0-rc.2.tgz", + "integrity": "sha512-TQT9MU1bEbq5NNm8dQlXujnaPfc//4kuji2bqTeXKEnaRZ/PfDLxGyTvqW9kPAIjDVLpyo1gJh/+IfDqAduXlg==", + "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { + "igniteui-i18n-core": "^1.0.3", "lit": "^3.3.0", "tslib": "^2.3.1" + }, + "peerDependencies": { + "igniteui-i18n-resources": "^1.0.3" + }, + "peerDependenciesMeta": { + "igniteui-i18n-resources": { + "optional": true + } } }, "node_modules/ignore": { diff --git a/browser/package.json b/browser/package.json index e1e973f867..c9078845a1 100644 --- a/browser/package.json +++ b/browser/package.json @@ -24,8 +24,8 @@ "dompurify": "^3.3.0", "file-saver": "1.3.8", "igniteui-dockmanager": "^1.17.0", - "igniteui-grid-lite": "~0.4.0", - "igniteui-react": "^19.4.0", + "igniteui-grid-lite": "~0.5.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-dashboards": "19.3.2", @@ -34,7 +34,7 @@ "igniteui-react-dockmanager": "^19.4.0", "igniteui-react-excel": "19.3.2", "igniteui-react-gauges": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-react-maps": "19.3.2", diff --git a/browser/tasks/gulp-samples.js b/browser/tasks/gulp-samples.js index 76b690036f..6dd9121688 100644 --- a/browser/tasks/gulp-samples.js +++ b/browser/tasks/gulp-samples.js @@ -849,7 +849,7 @@ function updateIG(cb) { { version: "19.3.2", name: "igniteui-react-excel" }, { version: "19.3.2", name: "igniteui-react-gauges" }, { version: "19.3.2", name: "igniteui-react-data-grids" }, - { version: "^19.5.0-beta.0", name: "igniteui-react-grids" }, + { version: "^19.5.0-rc.0", name: "igniteui-react-grids" }, { version: "19.3.2", name: "igniteui-react-inputs" }, { version: "19.3.2", name: "igniteui-react-layouts" }, { version: "19.3.2", name: "igniteui-react-maps" }, @@ -857,11 +857,11 @@ function updateIG(cb) { { version: "19.3.2", name: "igniteui-react-spreadsheet" }, { version: "19.3.2", name: "igniteui-react-datasources" }, { version: "19.3.2", name: "igniteui-react-dashboards" }, - { version: "^19.4.0", name: "igniteui-react" }, + { version: "^19.5.0-rc.0", name: "igniteui-react" }, // these IG packages are sometimes updated: { version: "^6.3.0", name: "igniteui-webcomponents" }, { version: "^19.4.0", name: "igniteui-react-dockmanager" }, - { version: "~0.4.0", name: "igniteui-grid-lite" }, + { version: "~0.5.0", name: "igniteui-grid-lite" }, // main react packages { version: "^19.2.0", name: "react" }, { version: "^19.2.0", name: "react-dom" }, diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/category-chart/area-chart-multiple-sources/package.json b/samples/charts/category-chart/area-chart-multiple-sources/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/category-chart/area-chart-single-source/package.json b/samples/charts/category-chart/area-chart-single-source/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/category-chart/column-chart-multiple-sources/package.json b/samples/charts/category-chart/column-chart-multiple-sources/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/category-chart/column-chart-single-source/package.json b/samples/charts/category-chart/column-chart-single-source/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/category-chart/custom-selection/package.json b/samples/charts/category-chart/custom-selection/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/category-chart/custom-selection/package.json +++ b/samples/charts/category-chart/custom-selection/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/category-chart/data-filter/package.json b/samples/charts/category-chart/data-filter/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/category-chart/data-filter/package.json +++ b/samples/charts/category-chart/data-filter/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/package.json b/samples/charts/category-chart/data-legend-formatting-decimals/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/category-chart/format-specifiers/package.json b/samples/charts/category-chart/format-specifiers/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/category-chart/format-specifiers/package.json +++ b/samples/charts/category-chart/format-specifiers/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/category-chart/highlighting-behavior/package.json +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/category-chart/highlighting-mode/package.json +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/category-chart/legend-highlighting/package.json b/samples/charts/category-chart/legend-highlighting/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/category-chart/legend-highlighting/package.json +++ b/samples/charts/category-chart/legend-highlighting/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/category-chart/line-chart-multiple-sources/package.json b/samples/charts/category-chart/line-chart-multiple-sources/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/category-chart/line-chart-single-source/package.json b/samples/charts/category-chart/line-chart-single-source/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/category-chart/point-chart-multiple-sources/package.json b/samples/charts/category-chart/point-chart-multiple-sources/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/category-chart/point-chart-single-source/package.json b/samples/charts/category-chart/point-chart-single-source/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/category-chart/selection-matcher/package.json b/samples/charts/category-chart/selection-matcher/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/category-chart/selection-matcher/package.json +++ b/samples/charts/category-chart/selection-matcher/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/category-chart/selection-modes/package.json b/samples/charts/category-chart/selection-modes/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/category-chart/selection-modes/package.json +++ b/samples/charts/category-chart/selection-modes/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/category-chart/selection-multiple-modes/package.json b/samples/charts/category-chart/selection-multiple-modes/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/category-chart/selection-multiple-modes/package.json +++ b/samples/charts/category-chart/selection-multiple-modes/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/category-chart/spline-area-multiple-sources/package.json b/samples/charts/category-chart/spline-area-multiple-sources/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/category-chart/spline-area-single-source/package.json b/samples/charts/category-chart/spline-area-single-source/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/category-chart/step-area-multiple-sources/package.json b/samples/charts/category-chart/step-area-multiple-sources/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/category-chart/step-area-single-source/package.json b/samples/charts/category-chart/step-area-single-source/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/category-chart/step-line-multiple-sources/package.json b/samples/charts/category-chart/step-line-multiple-sources/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/category-chart/step-line-single-source/package.json b/samples/charts/category-chart/step-line-single-source/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/dashboard-tile/chart-dashboard/package.json b/samples/charts/dashboard-tile/chart-dashboard/package.json index 2a8b2422d4..a6294c0564 100644 --- a/samples/charts/dashboard-tile/chart-dashboard/package.json +++ b/samples/charts/dashboard-tile/chart-dashboard/package.json @@ -14,13 +14,13 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-dashboards": "19.3.2", "igniteui-react-datasources": "19.3.2", "igniteui-react-gauges": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-react-maps": "19.3.2", diff --git a/samples/charts/dashboard-tile/financial-dashboard/package.json b/samples/charts/dashboard-tile/financial-dashboard/package.json index a66198854b..7366d1bd7f 100644 --- a/samples/charts/dashboard-tile/financial-dashboard/package.json +++ b/samples/charts/dashboard-tile/financial-dashboard/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-dashboards": "19.3.2", diff --git a/samples/charts/dashboard-tile/gauge-dashboard/package.json b/samples/charts/dashboard-tile/gauge-dashboard/package.json index a66198854b..7366d1bd7f 100644 --- a/samples/charts/dashboard-tile/gauge-dashboard/package.json +++ b/samples/charts/dashboard-tile/gauge-dashboard/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-dashboards": "19.3.2", diff --git a/samples/charts/dashboard-tile/local-data-source-dashboard/package.json b/samples/charts/dashboard-tile/local-data-source-dashboard/package.json index a66198854b..7366d1bd7f 100644 --- a/samples/charts/dashboard-tile/local-data-source-dashboard/package.json +++ b/samples/charts/dashboard-tile/local-data-source-dashboard/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-dashboards": "19.3.2", diff --git a/samples/charts/dashboard-tile/map-dashboard/package.json b/samples/charts/dashboard-tile/map-dashboard/package.json index a66198854b..7366d1bd7f 100644 --- a/samples/charts/dashboard-tile/map-dashboard/package.json +++ b/samples/charts/dashboard-tile/map-dashboard/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-dashboards": "19.3.2", diff --git a/samples/charts/dashboard-tile/pie-dashboard/package.json b/samples/charts/dashboard-tile/pie-dashboard/package.json index a66198854b..7366d1bd7f 100644 --- a/samples/charts/dashboard-tile/pie-dashboard/package.json +++ b/samples/charts/dashboard-tile/pie-dashboard/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-dashboards": "19.3.2", diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/package.json b/samples/charts/data-chart/axis-annotations-corner-radius/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/data-chart/axis-min-max-gap/package.json b/samples/charts/data-chart/axis-min-max-gap/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/package.json b/samples/charts/data-chart/bar-chart-multiple-sources/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/bar-chart-single-source/package.json b/samples/charts/data-chart/bar-chart-single-source/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/data-chart/custom-drawing-annotations/package.json b/samples/charts/data-chart/custom-drawing-annotations/package.json index 5f9c027518..97a1d95706 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/package.json +++ b/samples/charts/data-chart/custom-drawing-annotations/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/data-chart/custom-editing-data/package.json b/samples/charts/data-chart/custom-editing-data/package.json index e748d8e71b..d1b55773f2 100644 --- a/samples/charts/data-chart/custom-editing-data/package.json +++ b/samples/charts/data-chart/custom-editing-data/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "react": "^19.2.0", diff --git a/samples/charts/data-chart/dash-array-axes/package.json b/samples/charts/data-chart/dash-array-axes/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/dash-array-axes/package.json +++ b/samples/charts/data-chart/dash-array-axes/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/dash-array-series/package.json b/samples/charts/data-chart/dash-array-series/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/dash-array-series/package.json +++ b/samples/charts/data-chart/dash-array-series/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/dash-array-tickmarks/package.json b/samples/charts/data-chart/dash-array-tickmarks/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/package.json +++ b/samples/charts/data-chart/dash-array-tickmarks/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/dash-array-trendline/package.json b/samples/charts/data-chart/dash-array-trendline/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/dash-array-trendline/package.json +++ b/samples/charts/data-chart/dash-array-trendline/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/data-annotation-band-layer/package.json b/samples/charts/data-chart/data-annotation-band-layer/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/data-annotation-band-layer/package.json +++ b/samples/charts/data-chart/data-annotation-band-layer/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/data-annotation-line-layer/package.json b/samples/charts/data-chart/data-annotation-line-layer/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/data-annotation-line-layer/package.json +++ b/samples/charts/data-chart/data-annotation-line-layer/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json b/samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/data-annotation-rect-layer/package.json b/samples/charts/data-chart/data-annotation-rect-layer/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/data-annotation-rect-layer/package.json +++ b/samples/charts/data-chart/data-annotation-rect-layer/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/data-annotation-slice-layer/package.json b/samples/charts/data-chart/data-annotation-slice-layer/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/data-annotation-slice-layer/package.json +++ b/samples/charts/data-chart/data-annotation-slice-layer/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/data-annotation-strip-layer/package.json b/samples/charts/data-chart/data-annotation-strip-layer/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/data-annotation-strip-layer/package.json +++ b/samples/charts/data-chart/data-annotation-strip-layer/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/data-legend-grouping/package.json b/samples/charts/data-chart/data-legend-grouping/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/data-legend-grouping/package.json +++ b/samples/charts/data-chart/data-legend-grouping/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/data-legend-styling/package.json b/samples/charts/data-chart/data-legend-styling/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/data-legend-styling/package.json +++ b/samples/charts/data-chart/data-legend-styling/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/data-chart/data-tooltip-grouping/package.json b/samples/charts/data-chart/data-tooltip-grouping/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/data-chart/data-tooltip-styling/package.json b/samples/charts/data-chart/data-tooltip-styling/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/data-chart/data-tooltip-styling/package.json +++ b/samples/charts/data-chart/data-tooltip-styling/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/format-specifiers/package.json b/samples/charts/data-chart/format-specifiers/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/format-specifiers/package.json +++ b/samples/charts/data-chart/format-specifiers/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/polar-area-chart-styling/package.json b/samples/charts/data-chart/polar-area-chart-styling/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/package.json +++ b/samples/charts/data-chart/polar-area-chart-styling/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/polar-area-chart/package.json b/samples/charts/data-chart/polar-area-chart/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/polar-area-chart/package.json +++ b/samples/charts/data-chart/polar-area-chart/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/polar-line-chart/package.json b/samples/charts/data-chart/polar-line-chart/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/polar-line-chart/package.json +++ b/samples/charts/data-chart/polar-line-chart/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/polar-scatter-chart/package.json b/samples/charts/data-chart/polar-scatter-chart/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/polar-scatter-chart/package.json +++ b/samples/charts/data-chart/polar-scatter-chart/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/polar-spline-area-chart/package.json b/samples/charts/data-chart/polar-spline-area-chart/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/package.json +++ b/samples/charts/data-chart/polar-spline-area-chart/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/polar-spline-chart/package.json b/samples/charts/data-chart/polar-spline-chart/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/polar-spline-chart/package.json +++ b/samples/charts/data-chart/polar-spline-chart/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/radial-area-chart-styling/package.json b/samples/charts/data-chart/radial-area-chart-styling/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/package.json +++ b/samples/charts/data-chart/radial-area-chart-styling/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/radial-area-chart/package.json b/samples/charts/data-chart/radial-area-chart/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/radial-area-chart/package.json +++ b/samples/charts/data-chart/radial-area-chart/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/radial-column-chart-selection/package.json b/samples/charts/data-chart/radial-column-chart-selection/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/radial-column-chart-selection/package.json +++ b/samples/charts/data-chart/radial-column-chart-selection/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/radial-column-chart/package.json b/samples/charts/data-chart/radial-column-chart/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/radial-column-chart/package.json +++ b/samples/charts/data-chart/radial-column-chart/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/radial-label-mode/package.json b/samples/charts/data-chart/radial-label-mode/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/data-chart/radial-label-mode/package.json +++ b/samples/charts/data-chart/radial-label-mode/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/data-chart/radial-line-chart/package.json b/samples/charts/data-chart/radial-line-chart/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/radial-line-chart/package.json +++ b/samples/charts/data-chart/radial-line-chart/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/radial-pie-chart/package.json b/samples/charts/data-chart/radial-pie-chart/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/radial-pie-chart/package.json +++ b/samples/charts/data-chart/radial-pie-chart/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/range-area-chart/package.json b/samples/charts/data-chart/range-area-chart/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/range-area-chart/package.json +++ b/samples/charts/data-chart/range-area-chart/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/range-column-chart/package.json b/samples/charts/data-chart/range-column-chart/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/range-column-chart/package.json +++ b/samples/charts/data-chart/range-column-chart/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/scatter-line-chart/package.json b/samples/charts/data-chart/scatter-line-chart/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/scatter-line-chart/package.json +++ b/samples/charts/data-chart/scatter-line-chart/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/scatter-point-chart/package.json b/samples/charts/data-chart/scatter-point-chart/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/scatter-point-chart/package.json +++ b/samples/charts/data-chart/scatter-point-chart/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/scatter-spline-chart/package.json b/samples/charts/data-chart/scatter-spline-chart/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/scatter-spline-chart/package.json +++ b/samples/charts/data-chart/scatter-spline-chart/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/selection-matcher/package.json b/samples/charts/data-chart/selection-matcher/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/selection-matcher/package.json +++ b/samples/charts/data-chart/selection-matcher/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/stacked-100-area-chart/package.json b/samples/charts/data-chart/stacked-100-area-chart/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-area-chart/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/stacked-100-bar-chart/package.json b/samples/charts/data-chart/stacked-100-bar-chart/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/stacked-100-column-chart/package.json b/samples/charts/data-chart/stacked-100-column-chart/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/package.json +++ b/samples/charts/data-chart/stacked-100-column-chart/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/stacked-100-line-chart/package.json b/samples/charts/data-chart/stacked-100-line-chart/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/package.json +++ b/samples/charts/data-chart/stacked-100-line-chart/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/stacked-100-spline-chart/package.json b/samples/charts/data-chart/stacked-100-spline-chart/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/stacked-area-chart/package.json b/samples/charts/data-chart/stacked-area-chart/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/stacked-area-chart/package.json +++ b/samples/charts/data-chart/stacked-area-chart/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/stacked-bar-chart/package.json b/samples/charts/data-chart/stacked-bar-chart/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/stacked-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-bar-chart/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/stacked-column-chart/package.json b/samples/charts/data-chart/stacked-column-chart/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/stacked-column-chart/package.json +++ b/samples/charts/data-chart/stacked-column-chart/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/stacked-line-chart/package.json b/samples/charts/data-chart/stacked-line-chart/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/stacked-line-chart/package.json +++ b/samples/charts/data-chart/stacked-line-chart/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/stacked-spline-area-chart/package.json b/samples/charts/data-chart/stacked-spline-area-chart/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/stacked-spline-chart/package.json b/samples/charts/data-chart/stacked-spline-chart/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/stacked-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-chart/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/data-chart/trendline-layer/package.json b/samples/charts/data-chart/trendline-layer/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/trendline-layer/package.json +++ b/samples/charts/data-chart/trendline-layer/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-chart/user-annotation-layer/package.json b/samples/charts/data-chart/user-annotation-layer/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/data-chart/user-annotation-layer/package.json +++ b/samples/charts/data-chart/user-annotation-layer/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/data-chart/waterfall-chart/package.json b/samples/charts/data-chart/waterfall-chart/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-chart/waterfall-chart/package.json +++ b/samples/charts/data-chart/waterfall-chart/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-pie-chart/animation-replay/package.json b/samples/charts/data-pie-chart/animation-replay/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/data-pie-chart/animation-replay/package.json +++ b/samples/charts/data-pie-chart/animation-replay/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/data-pie-chart/animation/package.json b/samples/charts/data-pie-chart/animation/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/data-pie-chart/animation/package.json +++ b/samples/charts/data-pie-chart/animation/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/data-pie-chart/highlight-filter/package.json b/samples/charts/data-pie-chart/highlight-filter/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-pie-chart/highlight-filter/package.json +++ b/samples/charts/data-pie-chart/highlight-filter/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-pie-chart/highlighting/package.json b/samples/charts/data-pie-chart/highlighting/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/data-pie-chart/highlighting/package.json +++ b/samples/charts/data-pie-chart/highlighting/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/data-pie-chart/legend/package.json b/samples/charts/data-pie-chart/legend/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/data-pie-chart/legend/package.json +++ b/samples/charts/data-pie-chart/legend/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/data-pie-chart/others/package.json b/samples/charts/data-pie-chart/others/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/data-pie-chart/others/package.json +++ b/samples/charts/data-pie-chart/others/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/data-pie-chart/overview/package.json b/samples/charts/data-pie-chart/overview/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/data-pie-chart/overview/package.json +++ b/samples/charts/data-pie-chart/overview/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/data-pie-chart/selection/package.json b/samples/charts/data-pie-chart/selection/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/data-pie-chart/selection/package.json +++ b/samples/charts/data-pie-chart/selection/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/doughnut-chart/legend/package.json b/samples/charts/doughnut-chart/legend/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/doughnut-chart/legend/package.json +++ b/samples/charts/doughnut-chart/legend/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/doughnut-chart/overview/package.json b/samples/charts/doughnut-chart/overview/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/doughnut-chart/overview/package.json +++ b/samples/charts/doughnut-chart/overview/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/doughnut-chart/rings/package.json b/samples/charts/doughnut-chart/rings/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/doughnut-chart/rings/package.json +++ b/samples/charts/doughnut-chart/rings/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/package.json b/samples/charts/financial-chart/data-legend-formatting-currency/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/financial-chart/data-legend-styling-props/package.json b/samples/charts/financial-chart/data-legend-styling-props/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/package.json +++ b/samples/charts/financial-chart/data-legend-styling-props/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/financial-chart/data-legend/package.json b/samples/charts/financial-chart/data-legend/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/financial-chart/data-legend/package.json +++ b/samples/charts/financial-chart/data-legend/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/package.json b/samples/charts/financial-chart/data-tooltip-styling-props/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/package.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/financial-chart/data-tooltip/package.json b/samples/charts/financial-chart/data-tooltip/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/financial-chart/data-tooltip/package.json +++ b/samples/charts/financial-chart/data-tooltip/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/financial-chart/format-specifiers/package.json b/samples/charts/financial-chart/format-specifiers/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/financial-chart/format-specifiers/package.json +++ b/samples/charts/financial-chart/format-specifiers/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/financial-chart/scrollbars/package.json b/samples/charts/financial-chart/scrollbars/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/pie-chart/legend/package.json b/samples/charts/pie-chart/legend/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/pie-chart/styling/package.json b/samples/charts/pie-chart/styling/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/sparkline/display-winloss/package.json b/samples/charts/sparkline/display-winloss/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/sparkline/grid/package.json b/samples/charts/sparkline/grid/package.json index 6f45d7f9fb..90231eb53e 100644 --- a/samples/charts/sparkline/grid/package.json +++ b/samples/charts/sparkline/grid/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "react": "^19.2.0", diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/toolbar/actions-built-in-category-chart/package.json b/samples/charts/toolbar/actions-built-in-category-chart/package.json index d2de8c3a10..eae626637a 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-data-grids": "19.3.2", diff --git a/samples/charts/toolbar/actions-built-in-data-chart/package.json b/samples/charts/toolbar/actions-built-in-data-chart/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/toolbar/color-editor-support/package.json b/samples/charts/toolbar/color-editor-support/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/toolbar/color-editor-support/package.json +++ b/samples/charts/toolbar/color-editor-support/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/toolbar/custom-tool/package.json b/samples/charts/toolbar/custom-tool/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/toolbar/custom-tool/package.json +++ b/samples/charts/toolbar/custom-tool/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/package.json b/samples/charts/toolbar/layout-actions-for-data-chart/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/package.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/package.json b/samples/charts/toolbar/layout-in-vertical-orientation/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/package.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/tree-map/highlighting-percent-based/package.json b/samples/charts/tree-map/highlighting-percent-based/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/tree-map/highlighting-percent-based/package.json +++ b/samples/charts/tree-map/highlighting-percent-based/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/tree-map/highlighting/package.json b/samples/charts/tree-map/highlighting/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/tree-map/highlighting/package.json +++ b/samples/charts/tree-map/highlighting/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index a58f8f996a..af6ac7d347 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/tree-map/overview/package.json b/samples/charts/tree-map/overview/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/tree-map/overview/package.json +++ b/samples/charts/tree-map/overview/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/charts/tree-map/styling/package.json b/samples/charts/tree-map/styling/package.json index f4f401e26f..f5e910c29d 100644 --- a/samples/charts/tree-map/styling/package.json +++ b/samples/charts/tree-map/styling/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/excel/excel-library/operations-on-workbooks/package.json b/samples/excel/excel-library/operations-on-workbooks/package.json index 8649918549..bbc2796f68 100644 --- a/samples/excel/excel-library/operations-on-workbooks/package.json +++ b/samples/excel/excel-library/operations-on-workbooks/package.json @@ -16,7 +16,7 @@ "file-saver": "^1.3.8", "igniteui-react-core": "19.3.2", "igniteui-react-excel": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "react": "^19.2.0", diff --git a/samples/excel/excel-library/working-with-charts/package.json b/samples/excel/excel-library/working-with-charts/package.json index 0d5851d207..7acda9b6cb 100644 --- a/samples/excel/excel-library/working-with-charts/package.json +++ b/samples/excel/excel-library/working-with-charts/package.json @@ -17,7 +17,7 @@ "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-excel": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "react": "^19.2.0", diff --git a/samples/excel/excel-library/working-with-sparklines/package.json b/samples/excel/excel-library/working-with-sparklines/package.json index 9ec885cb2d..7cdf5d8630 100644 --- a/samples/excel/excel-library/working-with-sparklines/package.json +++ b/samples/excel/excel-library/working-with-sparklines/package.json @@ -17,7 +17,7 @@ "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-excel": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "react": "^19.2.0", diff --git a/samples/grids/data-grid/binding-live-data/package.json b/samples/grids/data-grid/binding-live-data/package.json index 10ffa15f11..7e30d08243 100644 --- a/samples/grids/data-grid/binding-live-data/package.json +++ b/samples/grids/data-grid/binding-live-data/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-data-grids": "19.3.2", diff --git a/samples/grids/data-grid/load-save-layout/package.json b/samples/grids/data-grid/load-save-layout/package.json index 77695b72a5..1b93ec7b29 100644 --- a/samples/grids/data-grid/load-save-layout/package.json +++ b/samples/grids/data-grid/load-save-layout/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-data-grids": "19.3.2", diff --git a/samples/grids/grid-lite/column-config-basic/package.json b/samples/grids/grid-lite/column-config-basic/package.json index d158eead5f..76e7f02310 100644 --- a/samples/grids/grid-lite/column-config-basic/package.json +++ b/samples/grids/grid-lite/column-config-basic/package.json @@ -14,8 +14,8 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-grid-lite": "~0.4.0", - "igniteui-react": "^19.4.0", + "igniteui-grid-lite": "~0.5.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid-lite/column-config-dynamic/package.json b/samples/grids/grid-lite/column-config-dynamic/package.json index d158eead5f..76e7f02310 100644 --- a/samples/grids/grid-lite/column-config-dynamic/package.json +++ b/samples/grids/grid-lite/column-config-dynamic/package.json @@ -14,8 +14,8 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-grid-lite": "~0.4.0", - "igniteui-react": "^19.4.0", + "igniteui-grid-lite": "~0.5.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid-lite/column-config-headers/package.json b/samples/grids/grid-lite/column-config-headers/package.json index d158eead5f..76e7f02310 100644 --- a/samples/grids/grid-lite/column-config-headers/package.json +++ b/samples/grids/grid-lite/column-config-headers/package.json @@ -14,8 +14,8 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-grid-lite": "~0.4.0", - "igniteui-react": "^19.4.0", + "igniteui-grid-lite": "~0.5.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid-lite/data-binding/package.json b/samples/grids/grid-lite/data-binding/package.json index d158eead5f..76e7f02310 100644 --- a/samples/grids/grid-lite/data-binding/package.json +++ b/samples/grids/grid-lite/data-binding/package.json @@ -14,8 +14,8 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-grid-lite": "~0.4.0", - "igniteui-react": "^19.4.0", + "igniteui-grid-lite": "~0.5.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid-lite/filtering-config-events/package.json b/samples/grids/grid-lite/filtering-config-events/package.json index d158eead5f..76e7f02310 100644 --- a/samples/grids/grid-lite/filtering-config-events/package.json +++ b/samples/grids/grid-lite/filtering-config-events/package.json @@ -14,8 +14,8 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-grid-lite": "~0.4.0", - "igniteui-react": "^19.4.0", + "igniteui-grid-lite": "~0.5.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid-lite/filtering-config-remote/package.json b/samples/grids/grid-lite/filtering-config-remote/package.json index d158eead5f..76e7f02310 100644 --- a/samples/grids/grid-lite/filtering-config-remote/package.json +++ b/samples/grids/grid-lite/filtering-config-remote/package.json @@ -14,8 +14,8 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-grid-lite": "~0.4.0", - "igniteui-react": "^19.4.0", + "igniteui-grid-lite": "~0.5.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid-lite/filtering-config/package.json b/samples/grids/grid-lite/filtering-config/package.json index d158eead5f..76e7f02310 100644 --- a/samples/grids/grid-lite/filtering-config/package.json +++ b/samples/grids/grid-lite/filtering-config/package.json @@ -14,8 +14,8 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-grid-lite": "~0.4.0", - "igniteui-react": "^19.4.0", + "igniteui-grid-lite": "~0.5.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid-lite/overview/package.json b/samples/grids/grid-lite/overview/package.json index d158eead5f..76e7f02310 100644 --- a/samples/grids/grid-lite/overview/package.json +++ b/samples/grids/grid-lite/overview/package.json @@ -14,8 +14,8 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-grid-lite": "~0.4.0", - "igniteui-react": "^19.4.0", + "igniteui-grid-lite": "~0.5.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid-lite/sort-config-events/package.json b/samples/grids/grid-lite/sort-config-events/package.json index d158eead5f..76e7f02310 100644 --- a/samples/grids/grid-lite/sort-config-events/package.json +++ b/samples/grids/grid-lite/sort-config-events/package.json @@ -14,8 +14,8 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-grid-lite": "~0.4.0", - "igniteui-react": "^19.4.0", + "igniteui-grid-lite": "~0.5.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid-lite/sort-config-grid/package.json b/samples/grids/grid-lite/sort-config-grid/package.json index d158eead5f..76e7f02310 100644 --- a/samples/grids/grid-lite/sort-config-grid/package.json +++ b/samples/grids/grid-lite/sort-config-grid/package.json @@ -14,8 +14,8 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-grid-lite": "~0.4.0", - "igniteui-react": "^19.4.0", + "igniteui-grid-lite": "~0.5.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid-lite/sort-config-pipeline/package.json b/samples/grids/grid-lite/sort-config-pipeline/package.json index d158eead5f..76e7f02310 100644 --- a/samples/grids/grid-lite/sort-config-pipeline/package.json +++ b/samples/grids/grid-lite/sort-config-pipeline/package.json @@ -14,8 +14,8 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-grid-lite": "~0.4.0", - "igniteui-react": "^19.4.0", + "igniteui-grid-lite": "~0.5.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid-lite/sort-config-sample/package.json b/samples/grids/grid-lite/sort-config-sample/package.json index d158eead5f..76e7f02310 100644 --- a/samples/grids/grid-lite/sort-config-sample/package.json +++ b/samples/grids/grid-lite/sort-config-sample/package.json @@ -14,8 +14,8 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-grid-lite": "~0.4.0", - "igniteui-react": "^19.4.0", + "igniteui-grid-lite": "~0.5.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid-lite/styling-custom-theme/package.json b/samples/grids/grid-lite/styling-custom-theme/package.json index 2d0cfb484f..e384b6f087 100644 --- a/samples/grids/grid-lite/styling-custom-theme/package.json +++ b/samples/grids/grid-lite/styling-custom-theme/package.json @@ -14,8 +14,8 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-grid-lite": "~0.4.0", - "igniteui-react": "^19.4.0", + "igniteui-grid-lite": "~0.5.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-theming": "^24.0.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/action-strip/package.json b/samples/grids/grid/action-strip/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/grid/action-strip/package.json +++ b/samples/grids/grid/action-strip/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/advanced-filtering-options/package.json b/samples/grids/grid/advanced-filtering-options/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/advanced-filtering-options/package.json +++ b/samples/grids/grid/advanced-filtering-options/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/advanced-filtering-style/package.json b/samples/grids/grid/advanced-filtering-style/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/advanced-filtering-style/package.json +++ b/samples/grids/grid/advanced-filtering-style/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/binding-composite-data/package.json b/samples/grids/grid/binding-composite-data/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/binding-composite-data/package.json +++ b/samples/grids/grid/binding-composite-data/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/binding-crud-data/package.json b/samples/grids/grid/binding-crud-data/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/grid/binding-crud-data/package.json +++ b/samples/grids/grid/binding-crud-data/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/binding-nested-data-1/package.json b/samples/grids/grid/binding-nested-data-1/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/binding-nested-data-1/package.json +++ b/samples/grids/grid/binding-nested-data-1/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/cascading-combo/package.json b/samples/grids/grid/cascading-combo/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/cascading-combo/package.json +++ b/samples/grids/grid/cascading-combo/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/cell-editing-sample/package.json b/samples/grids/grid/cell-editing-sample/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/cell-editing-sample/package.json +++ b/samples/grids/grid/cell-editing-sample/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/cell-editing-styling/package.json b/samples/grids/grid/cell-editing-styling/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/cell-editing-styling/package.json +++ b/samples/grids/grid/cell-editing-styling/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/cell-merge-custom-sample/package.json b/samples/grids/grid/cell-merge-custom-sample/package.json index 6df749c048..a31c7c5b87 100644 --- a/samples/grids/grid/cell-merge-custom-sample/package.json +++ b/samples/grids/grid/cell-merge-custom-sample/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/cell-merge/package.json b/samples/grids/grid/cell-merge/package.json index 6df749c048..a31c7c5b87 100644 --- a/samples/grids/grid/cell-merge/package.json +++ b/samples/grids/grid/cell-merge/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/cell-selection-mode/package.json b/samples/grids/grid/cell-selection-mode/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/grid/cell-selection-mode/package.json +++ b/samples/grids/grid/cell-selection-mode/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/cell-selection-style/package.json b/samples/grids/grid/cell-selection-style/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/cell-selection-style/package.json +++ b/samples/grids/grid/cell-selection-style/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/change-icons-custom/package.json b/samples/grids/grid/change-icons-custom/package.json index 0009537460..da6a11c0c8 100644 --- a/samples/grids/grid/change-icons-custom/package.json +++ b/samples/grids/grid/change-icons-custom/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/clipboard-operations/package.json b/samples/grids/grid/clipboard-operations/package.json index 0009537460..da6a11c0c8 100644 --- a/samples/grids/grid/clipboard-operations/package.json +++ b/samples/grids/grid/clipboard-operations/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/column-auto-sizing/package.json b/samples/grids/grid/column-auto-sizing/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/column-auto-sizing/package.json +++ b/samples/grids/grid/column-auto-sizing/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-collapsible-groups/package.json b/samples/grids/grid/column-collapsible-groups/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/column-collapsible-groups/package.json +++ b/samples/grids/grid/column-collapsible-groups/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-data-types/package.json b/samples/grids/grid/column-data-types/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/column-data-types/package.json +++ b/samples/grids/grid/column-data-types/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-hiding-options/package.json b/samples/grids/grid/column-hiding-options/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/column-hiding-options/package.json +++ b/samples/grids/grid/column-hiding-options/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-hiding-toolbar-style/package.json b/samples/grids/grid/column-hiding-toolbar-style/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/column-hiding-toolbar-style/package.json +++ b/samples/grids/grid/column-hiding-toolbar-style/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-hiding-toolbar/package.json b/samples/grids/grid/column-hiding-toolbar/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/column-hiding-toolbar/package.json +++ b/samples/grids/grid/column-hiding-toolbar/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-moving-options/package.json b/samples/grids/grid/column-moving-options/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/column-moving-options/package.json +++ b/samples/grids/grid/column-moving-options/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-moving-styles/package.json b/samples/grids/grid/column-moving-styles/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/column-moving-styles/package.json +++ b/samples/grids/grid/column-moving-styles/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-pinning-both-sides/package.json b/samples/grids/grid/column-pinning-both-sides/package.json index 6df749c048..a31c7c5b87 100644 --- a/samples/grids/grid/column-pinning-both-sides/package.json +++ b/samples/grids/grid/column-pinning-both-sides/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/column-pinning-options/package.json b/samples/grids/grid/column-pinning-options/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/column-pinning-options/package.json +++ b/samples/grids/grid/column-pinning-options/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-pinning-right-side/package.json b/samples/grids/grid/column-pinning-right-side/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/column-pinning-right-side/package.json +++ b/samples/grids/grid/column-pinning-right-side/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-pinning-styles/package.json b/samples/grids/grid/column-pinning-styles/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/column-pinning-styles/package.json +++ b/samples/grids/grid/column-pinning-styles/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-pinning/package.json b/samples/grids/grid/column-pinning/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/column-pinning/package.json +++ b/samples/grids/grid/column-pinning/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-resize-styling/package.json b/samples/grids/grid/column-resize-styling/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/column-resize-styling/package.json +++ b/samples/grids/grid/column-resize-styling/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-resizing/package.json b/samples/grids/grid/column-resizing/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/column-resizing/package.json +++ b/samples/grids/grid/column-resizing/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-selection-group/package.json b/samples/grids/grid/column-selection-group/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/column-selection-group/package.json +++ b/samples/grids/grid/column-selection-group/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-selection-mode/package.json b/samples/grids/grid/column-selection-mode/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/grid/column-selection-mode/package.json +++ b/samples/grids/grid/column-selection-mode/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/column-selection-styles/package.json b/samples/grids/grid/column-selection-styles/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/column-selection-styles/package.json +++ b/samples/grids/grid/column-selection-styles/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-sorting-indicators/package.json b/samples/grids/grid/column-sorting-indicators/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/column-sorting-indicators/package.json +++ b/samples/grids/grid/column-sorting-indicators/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-sorting-options/package.json b/samples/grids/grid/column-sorting-options/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/grid/column-sorting-options/package.json +++ b/samples/grids/grid/column-sorting-options/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/column-sorting-style/package.json b/samples/grids/grid/column-sorting-style/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/column-sorting-style/package.json +++ b/samples/grids/grid/column-sorting-style/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/conditional-cell-style-1/package.json b/samples/grids/grid/conditional-cell-style-1/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/grid/conditional-cell-style-1/package.json +++ b/samples/grids/grid/conditional-cell-style-1/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/conditional-cell-style-2/package.json b/samples/grids/grid/conditional-cell-style-2/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/conditional-cell-style-2/package.json +++ b/samples/grids/grid/conditional-cell-style-2/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/conditional-row-selectors/package.json b/samples/grids/grid/conditional-row-selectors/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/conditional-row-selectors/package.json +++ b/samples/grids/grid/conditional-row-selectors/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/custom-context-menu/package.json b/samples/grids/grid/custom-context-menu/package.json index 0009537460..da6a11c0c8 100644 --- a/samples/grids/grid/custom-context-menu/package.json +++ b/samples/grids/grid/custom-context-menu/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/data-batch-editing-actions/package.json b/samples/grids/grid/data-batch-editing-actions/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/grid/data-batch-editing-actions/package.json +++ b/samples/grids/grid/data-batch-editing-actions/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/data-performance-virtualization/package.json b/samples/grids/grid/data-performance-virtualization/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/data-performance-virtualization/package.json +++ b/samples/grids/grid/data-performance-virtualization/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/data-searching/package.json b/samples/grids/grid/data-searching/package.json index 0009537460..da6a11c0c8 100644 --- a/samples/grids/grid/data-searching/package.json +++ b/samples/grids/grid/data-searching/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/data-summary-formatter/package.json b/samples/grids/grid/data-summary-formatter/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/data-summary-formatter/package.json +++ b/samples/grids/grid/data-summary-formatter/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/data-summary-options/package.json b/samples/grids/grid/data-summary-options/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/data-summary-options/package.json +++ b/samples/grids/grid/data-summary-options/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/data-summary-template/package.json b/samples/grids/grid/data-summary-template/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/grid/data-summary-template/package.json +++ b/samples/grids/grid/data-summary-template/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/data-validation-style/package.json b/samples/grids/grid/data-validation-style/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/data-validation-style/package.json +++ b/samples/grids/grid/data-validation-style/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/data-validator-service-cross-field/package.json b/samples/grids/grid/data-validator-service-cross-field/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/grid/data-validator-service-cross-field/package.json +++ b/samples/grids/grid/data-validator-service-cross-field/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/data-validator-service-extended/package.json b/samples/grids/grid/data-validator-service-extended/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/grid/data-validator-service-extended/package.json +++ b/samples/grids/grid/data-validator-service-extended/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/data-validator-service/package.json b/samples/grids/grid/data-validator-service/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/grid/data-validator-service/package.json +++ b/samples/grids/grid/data-validator-service/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/disabled-summaries/package.json b/samples/grids/grid/disabled-summaries/package.json index 454fcd13e5..35429bc269 100644 --- a/samples/grids/grid/disabled-summaries/package.json +++ b/samples/grids/grid/disabled-summaries/package.json @@ -9,10 +9,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/editing-columns/package.json b/samples/grids/grid/editing-columns/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/editing-columns/package.json +++ b/samples/grids/grid/editing-columns/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/editing-events/package.json b/samples/grids/grid/editing-events/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/editing-events/package.json +++ b/samples/grids/grid/editing-events/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/editing-excel-style/package.json b/samples/grids/grid/editing-excel-style/package.json index 0009537460..da6a11c0c8 100644 --- a/samples/grids/grid/editing-excel-style/package.json +++ b/samples/grids/grid/editing-excel-style/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/editing-lifecycle/package.json b/samples/grids/grid/editing-lifecycle/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/editing-lifecycle/package.json +++ b/samples/grids/grid/editing-lifecycle/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/excel-exporting/package.json b/samples/grids/grid/excel-exporting/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/excel-exporting/package.json +++ b/samples/grids/grid/excel-exporting/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/excel-style-filtering-sample-1/package.json b/samples/grids/grid/excel-style-filtering-sample-1/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/grid/excel-style-filtering-sample-1/package.json +++ b/samples/grids/grid/excel-style-filtering-sample-1/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/excel-style-filtering-sample-2/package.json b/samples/grids/grid/excel-style-filtering-sample-2/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/grid/excel-style-filtering-sample-2/package.json +++ b/samples/grids/grid/excel-style-filtering-sample-2/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/excel-style-filtering-sample-3/package.json b/samples/grids/grid/excel-style-filtering-sample-3/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/grid/excel-style-filtering-sample-3/package.json +++ b/samples/grids/grid/excel-style-filtering-sample-3/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/excel-style-filtering-style/package.json b/samples/grids/grid/excel-style-filtering-style/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/grid/excel-style-filtering-style/package.json +++ b/samples/grids/grid/excel-style-filtering-style/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/external-advanced-filtering/package.json b/samples/grids/grid/external-advanced-filtering/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/grid/external-advanced-filtering/package.json +++ b/samples/grids/grid/external-advanced-filtering/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/filtering-options/package.json b/samples/grids/grid/filtering-options/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/grid/filtering-options/package.json +++ b/samples/grids/grid/filtering-options/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/filtering-strategy/package.json b/samples/grids/grid/filtering-strategy/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/filtering-strategy/package.json +++ b/samples/grids/grid/filtering-strategy/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/filtering-style/package.json b/samples/grids/grid/filtering-style/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/grid/filtering-style/package.json +++ b/samples/grids/grid/filtering-style/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/finjs/package.json b/samples/grids/grid/finjs/package.json index 95efd87c5e..982522f24f 100644 --- a/samples/grids/grid/finjs/package.json +++ b/samples/grids/grid/finjs/package.json @@ -15,11 +15,11 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/groupby-custom/package.json b/samples/grids/grid/groupby-custom/package.json index 0009537460..da6a11c0c8 100644 --- a/samples/grids/grid/groupby-custom/package.json +++ b/samples/grids/grid/groupby-custom/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/groupby-expressions/package.json b/samples/grids/grid/groupby-expressions/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/groupby-expressions/package.json +++ b/samples/grids/grid/groupby-expressions/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/groupby-paging/package.json b/samples/grids/grid/groupby-paging/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/groupby-paging/package.json +++ b/samples/grids/grid/groupby-paging/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/groupby-styling/package.json b/samples/grids/grid/groupby-styling/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/groupby-styling/package.json +++ b/samples/grids/grid/groupby-styling/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/groupby-summary-options/package.json b/samples/grids/grid/groupby-summary-options/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/grid/groupby-summary-options/package.json +++ b/samples/grids/grid/groupby-summary-options/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/groupby-summary-styling/package.json b/samples/grids/grid/groupby-summary-styling/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/grid/groupby-summary-styling/package.json +++ b/samples/grids/grid/groupby-summary-styling/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/infinite-scroll/package.json b/samples/grids/grid/infinite-scroll/package.json index 0009537460..da6a11c0c8 100644 --- a/samples/grids/grid/infinite-scroll/package.json +++ b/samples/grids/grid/infinite-scroll/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/keyboard-custom-navigation/package.json b/samples/grids/grid/keyboard-custom-navigation/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/grid/keyboard-custom-navigation/package.json +++ b/samples/grids/grid/keyboard-custom-navigation/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/keyboard-mrl-navigation/package.json b/samples/grids/grid/keyboard-mrl-navigation/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/keyboard-mrl-navigation/package.json +++ b/samples/grids/grid/keyboard-mrl-navigation/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/layout-display-density/package.json b/samples/grids/grid/layout-display-density/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/grid/layout-display-density/package.json +++ b/samples/grids/grid/layout-display-density/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/master-detail/package.json b/samples/grids/grid/master-detail/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/master-detail/package.json +++ b/samples/grids/grid/master-detail/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/multi-cell-selection-mode/package.json b/samples/grids/grid/multi-cell-selection-mode/package.json index 0009537460..da6a11c0c8 100644 --- a/samples/grids/grid/multi-cell-selection-mode/package.json +++ b/samples/grids/grid/multi-cell-selection-mode/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/multi-column-headers-export/package.json b/samples/grids/grid/multi-column-headers-export/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/multi-column-headers-export/package.json +++ b/samples/grids/grid/multi-column-headers-export/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/multi-column-headers-overview/package.json b/samples/grids/grid/multi-column-headers-overview/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/grid/multi-column-headers-overview/package.json +++ b/samples/grids/grid/multi-column-headers-overview/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/multi-column-headers-styling/package.json b/samples/grids/grid/multi-column-headers-styling/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/multi-column-headers-styling/package.json +++ b/samples/grids/grid/multi-column-headers-styling/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/multi-column-headers-template/package.json b/samples/grids/grid/multi-column-headers-template/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/multi-column-headers-template/package.json +++ b/samples/grids/grid/multi-column-headers-template/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/multi-row-layout-options/package.json b/samples/grids/grid/multi-row-layout-options/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/multi-row-layout-options/package.json +++ b/samples/grids/grid/multi-row-layout-options/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/multi-row-layout-style/package.json b/samples/grids/grid/multi-row-layout-style/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/multi-row-layout-style/package.json +++ b/samples/grids/grid/multi-row-layout-style/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/overview/package.json b/samples/grids/grid/overview/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/overview/package.json +++ b/samples/grids/grid/overview/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/paste/package.json b/samples/grids/grid/paste/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/grid/paste/package.json +++ b/samples/grids/grid/paste/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/remote-paging-data/package.json b/samples/grids/grid/remote-paging-data/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/grid/remote-paging-data/package.json +++ b/samples/grids/grid/remote-paging-data/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/remote-paging-grid/package.json b/samples/grids/grid/remote-paging-grid/package.json index 45f78f1c75..3e0ac8205b 100644 --- a/samples/grids/grid/remote-paging-grid/package.json +++ b/samples/grids/grid/remote-paging-grid/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/row-adding/package.json b/samples/grids/grid/row-adding/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/row-adding/package.json +++ b/samples/grids/grid/row-adding/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/row-classes/package.json b/samples/grids/grid/row-classes/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/row-classes/package.json +++ b/samples/grids/grid/row-classes/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/row-drag-base/package.json b/samples/grids/grid/row-drag-base/package.json index 0009537460..da6a11c0c8 100644 --- a/samples/grids/grid/row-drag-base/package.json +++ b/samples/grids/grid/row-drag-base/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/row-editing-options/package.json b/samples/grids/grid/row-editing-options/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/row-editing-options/package.json +++ b/samples/grids/grid/row-editing-options/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/row-editing-style/package.json b/samples/grids/grid/row-editing-style/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/row-editing-style/package.json +++ b/samples/grids/grid/row-editing-style/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/row-paging-basic/package.json b/samples/grids/grid/row-paging-basic/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/row-paging-basic/package.json +++ b/samples/grids/grid/row-paging-basic/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/row-paging-options/package.json b/samples/grids/grid/row-paging-options/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/grid/row-paging-options/package.json +++ b/samples/grids/grid/row-paging-options/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/row-pinning-drag/package.json b/samples/grids/grid/row-pinning-drag/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/grid/row-pinning-drag/package.json +++ b/samples/grids/grid/row-pinning-drag/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/row-pinning-extra-column/package.json b/samples/grids/grid/row-pinning-extra-column/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/grid/row-pinning-extra-column/package.json +++ b/samples/grids/grid/row-pinning-extra-column/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/row-pinning-options/package.json b/samples/grids/grid/row-pinning-options/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/grid/row-pinning-options/package.json +++ b/samples/grids/grid/row-pinning-options/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/row-pinning-style/package.json b/samples/grids/grid/row-pinning-style/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/row-pinning-style/package.json +++ b/samples/grids/grid/row-pinning-style/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/row-reorder/package.json b/samples/grids/grid/row-reorder/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/grid/row-reorder/package.json +++ b/samples/grids/grid/row-reorder/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/row-selection-mode/package.json b/samples/grids/grid/row-selection-mode/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/grid/row-selection-mode/package.json +++ b/samples/grids/grid/row-selection-mode/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/row-selection-template-excel/package.json b/samples/grids/grid/row-selection-template-excel/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/grid/row-selection-template-excel/package.json +++ b/samples/grids/grid/row-selection-template-excel/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/row-selection-template-numbers/package.json b/samples/grids/grid/row-selection-template-numbers/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/row-selection-template-numbers/package.json +++ b/samples/grids/grid/row-selection-template-numbers/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/row-styles/package.json b/samples/grids/grid/row-styles/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/row-styles/package.json +++ b/samples/grids/grid/row-styles/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/state-persistence-about/package.json b/samples/grids/grid/state-persistence-about/package.json index 0009537460..da6a11c0c8 100644 --- a/samples/grids/grid/state-persistence-about/package.json +++ b/samples/grids/grid/state-persistence-about/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/state-persistence-main/package.json b/samples/grids/grid/state-persistence-main/package.json index 0009537460..da6a11c0c8 100644 --- a/samples/grids/grid/state-persistence-main/package.json +++ b/samples/grids/grid/state-persistence-main/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/grid/styling-custom-CSS/package.json b/samples/grids/grid/styling-custom-CSS/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/styling-custom-CSS/package.json +++ b/samples/grids/grid/styling-custom-CSS/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/toolbar-sample-1/package.json b/samples/grids/grid/toolbar-sample-1/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/toolbar-sample-1/package.json +++ b/samples/grids/grid/toolbar-sample-1/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/toolbar-sample-2/package.json b/samples/grids/grid/toolbar-sample-2/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/toolbar-sample-2/package.json +++ b/samples/grids/grid/toolbar-sample-2/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/toolbar-sample-3/package.json b/samples/grids/grid/toolbar-sample-3/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/toolbar-sample-3/package.json +++ b/samples/grids/grid/toolbar-sample-3/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/toolbar-style/package.json b/samples/grids/grid/toolbar-style/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/grid/toolbar-style/package.json +++ b/samples/grids/grid/toolbar-style/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/action-strip/package.json b/samples/grids/hierarchical-grid/action-strip/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/action-strip/package.json +++ b/samples/grids/hierarchical-grid/action-strip/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/advanced-filtering-options/package.json b/samples/grids/hierarchical-grid/advanced-filtering-options/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-options/package.json +++ b/samples/grids/hierarchical-grid/advanced-filtering-options/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/advanced-filtering-style/package.json b/samples/grids/hierarchical-grid/advanced-filtering-style/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-style/package.json +++ b/samples/grids/hierarchical-grid/advanced-filtering-style/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/cell-editing-sample/package.json b/samples/grids/hierarchical-grid/cell-editing-sample/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/cell-editing-sample/package.json +++ b/samples/grids/hierarchical-grid/cell-editing-sample/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/cell-editing-styling/package.json b/samples/grids/hierarchical-grid/cell-editing-styling/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/cell-editing-styling/package.json +++ b/samples/grids/hierarchical-grid/cell-editing-styling/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/cell-merge-custom-sample/package.json b/samples/grids/hierarchical-grid/cell-merge-custom-sample/package.json index 6df749c048..a31c7c5b87 100644 --- a/samples/grids/hierarchical-grid/cell-merge-custom-sample/package.json +++ b/samples/grids/hierarchical-grid/cell-merge-custom-sample/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/cell-merge/package.json b/samples/grids/hierarchical-grid/cell-merge/package.json index 6df749c048..a31c7c5b87 100644 --- a/samples/grids/hierarchical-grid/cell-merge/package.json +++ b/samples/grids/hierarchical-grid/cell-merge/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/cell-selection-mode/package.json b/samples/grids/hierarchical-grid/cell-selection-mode/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/hierarchical-grid/cell-selection-mode/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-mode/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/cell-selection-overview/package.json b/samples/grids/hierarchical-grid/cell-selection-overview/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/hierarchical-grid/cell-selection-overview/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-overview/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/cell-selection-style/package.json b/samples/grids/hierarchical-grid/cell-selection-style/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/hierarchical-grid/cell-selection-style/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-style/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/column-auto-sizing/package.json b/samples/grids/hierarchical-grid/column-auto-sizing/package.json index 0009537460..da6a11c0c8 100644 --- a/samples/grids/hierarchical-grid/column-auto-sizing/package.json +++ b/samples/grids/hierarchical-grid/column-auto-sizing/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/column-collapsible-groups/package.json b/samples/grids/hierarchical-grid/column-collapsible-groups/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/column-collapsible-groups/package.json +++ b/samples/grids/hierarchical-grid/column-collapsible-groups/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json b/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json +++ b/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json b/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json +++ b/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-moving-options/package.json b/samples/grids/hierarchical-grid/column-moving-options/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/column-moving-options/package.json +++ b/samples/grids/hierarchical-grid/column-moving-options/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-moving-styles/package.json b/samples/grids/hierarchical-grid/column-moving-styles/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/column-moving-styles/package.json +++ b/samples/grids/hierarchical-grid/column-moving-styles/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-pinning-both-sides/package.json b/samples/grids/hierarchical-grid/column-pinning-both-sides/package.json index 6df749c048..a31c7c5b87 100644 --- a/samples/grids/hierarchical-grid/column-pinning-both-sides/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-both-sides/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/column-pinning-options/package.json b/samples/grids/hierarchical-grid/column-pinning-options/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/column-pinning-options/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-options/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-pinning-right-side/package.json b/samples/grids/hierarchical-grid/column-pinning-right-side/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/column-pinning-right-side/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-right-side/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-pinning-styles/package.json b/samples/grids/hierarchical-grid/column-pinning-styles/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/column-pinning-styles/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-styles/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-pinning/package.json b/samples/grids/hierarchical-grid/column-pinning/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/column-pinning/package.json +++ b/samples/grids/hierarchical-grid/column-pinning/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-resize-styling/package.json b/samples/grids/hierarchical-grid/column-resize-styling/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/column-resize-styling/package.json +++ b/samples/grids/hierarchical-grid/column-resize-styling/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-resizing/package.json b/samples/grids/hierarchical-grid/column-resizing/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/column-resizing/package.json +++ b/samples/grids/hierarchical-grid/column-resizing/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-selection-group/package.json b/samples/grids/hierarchical-grid/column-selection-group/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/column-selection-group/package.json +++ b/samples/grids/hierarchical-grid/column-selection-group/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-selection-mode/package.json b/samples/grids/hierarchical-grid/column-selection-mode/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/hierarchical-grid/column-selection-mode/package.json +++ b/samples/grids/hierarchical-grid/column-selection-mode/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/column-selection-styles/package.json b/samples/grids/hierarchical-grid/column-selection-styles/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/column-selection-styles/package.json +++ b/samples/grids/hierarchical-grid/column-selection-styles/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-sorting-indicators/package.json b/samples/grids/hierarchical-grid/column-sorting-indicators/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/column-sorting-indicators/package.json +++ b/samples/grids/hierarchical-grid/column-sorting-indicators/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-sorting-options/package.json b/samples/grids/hierarchical-grid/column-sorting-options/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/column-sorting-options/package.json +++ b/samples/grids/hierarchical-grid/column-sorting-options/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-sorting-style/package.json b/samples/grids/hierarchical-grid/column-sorting-style/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/column-sorting-style/package.json +++ b/samples/grids/hierarchical-grid/column-sorting-style/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json b/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json +++ b/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json b/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json +++ b/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/conditional-row-selectors/package.json b/samples/grids/hierarchical-grid/conditional-row-selectors/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/conditional-row-selectors/package.json +++ b/samples/grids/hierarchical-grid/conditional-row-selectors/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/custom-filtering/package.json b/samples/grids/hierarchical-grid/custom-filtering/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/custom-filtering/package.json +++ b/samples/grids/hierarchical-grid/custom-filtering/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/data-exporting-indicator/package.json b/samples/grids/hierarchical-grid/data-exporting-indicator/package.json index 0009537460..da6a11c0c8 100644 --- a/samples/grids/hierarchical-grid/data-exporting-indicator/package.json +++ b/samples/grids/hierarchical-grid/data-exporting-indicator/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/data-performance-virtualization/package.json b/samples/grids/hierarchical-grid/data-performance-virtualization/package.json index 0009537460..da6a11c0c8 100644 --- a/samples/grids/hierarchical-grid/data-performance-virtualization/package.json +++ b/samples/grids/hierarchical-grid/data-performance-virtualization/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/data-summary-formatter/package.json b/samples/grids/hierarchical-grid/data-summary-formatter/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/data-summary-formatter/package.json +++ b/samples/grids/hierarchical-grid/data-summary-formatter/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/data-summary-options-styling/package.json b/samples/grids/hierarchical-grid/data-summary-options-styling/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/data-summary-options-styling/package.json +++ b/samples/grids/hierarchical-grid/data-summary-options-styling/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/data-summary-options/package.json b/samples/grids/hierarchical-grid/data-summary-options/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/data-summary-options/package.json +++ b/samples/grids/hierarchical-grid/data-summary-options/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/data-summary-template/package.json b/samples/grids/hierarchical-grid/data-summary-template/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/hierarchical-grid/data-summary-template/package.json +++ b/samples/grids/hierarchical-grid/data-summary-template/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/disabled-summaries/package.json b/samples/grids/hierarchical-grid/disabled-summaries/package.json index 454fcd13e5..35429bc269 100644 --- a/samples/grids/hierarchical-grid/disabled-summaries/package.json +++ b/samples/grids/hierarchical-grid/disabled-summaries/package.json @@ -9,10 +9,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/editing-columns/package.json b/samples/grids/hierarchical-grid/editing-columns/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/editing-columns/package.json +++ b/samples/grids/hierarchical-grid/editing-columns/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/editing-events/package.json b/samples/grids/hierarchical-grid/editing-events/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/editing-events/package.json +++ b/samples/grids/hierarchical-grid/editing-events/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/editing-lifecycle/package.json b/samples/grids/hierarchical-grid/editing-lifecycle/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/editing-lifecycle/package.json +++ b/samples/grids/hierarchical-grid/editing-lifecycle/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/excel-exporting/package.json b/samples/grids/hierarchical-grid/excel-exporting/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/excel-exporting/package.json +++ b/samples/grids/hierarchical-grid/excel-exporting/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/filtering-options/package.json b/samples/grids/hierarchical-grid/filtering-options/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/filtering-options/package.json +++ b/samples/grids/hierarchical-grid/filtering-options/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/filtering-style/package.json b/samples/grids/hierarchical-grid/filtering-style/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/filtering-style/package.json +++ b/samples/grids/hierarchical-grid/filtering-style/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json b/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json b/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json b/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/layout-display-density/package.json b/samples/grids/hierarchical-grid/layout-display-density/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/hierarchical-grid/layout-display-density/package.json +++ b/samples/grids/hierarchical-grid/layout-display-density/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/multi-column-headers-export/package.json b/samples/grids/hierarchical-grid/multi-column-headers-export/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-export/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-export/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json b/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json b/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/multi-column-headers-template/package.json b/samples/grids/hierarchical-grid/multi-column-headers-template/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-template/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-template/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/overview/package.json b/samples/grids/hierarchical-grid/overview/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/overview/package.json +++ b/samples/grids/hierarchical-grid/overview/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/remote-paging-hgrid/package.json b/samples/grids/hierarchical-grid/remote-paging-hgrid/package.json index 0009537460..da6a11c0c8 100644 --- a/samples/grids/hierarchical-grid/remote-paging-hgrid/package.json +++ b/samples/grids/hierarchical-grid/remote-paging-hgrid/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/row-adding/package.json b/samples/grids/hierarchical-grid/row-adding/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/row-adding/package.json +++ b/samples/grids/hierarchical-grid/row-adding/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-classes/package.json b/samples/grids/hierarchical-grid/row-classes/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/row-classes/package.json +++ b/samples/grids/hierarchical-grid/row-classes/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-drag-base/package.json b/samples/grids/hierarchical-grid/row-drag-base/package.json index 0009537460..da6a11c0c8 100644 --- a/samples/grids/hierarchical-grid/row-drag-base/package.json +++ b/samples/grids/hierarchical-grid/row-drag-base/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/row-editing-options/package.json b/samples/grids/hierarchical-grid/row-editing-options/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/row-editing-options/package.json +++ b/samples/grids/hierarchical-grid/row-editing-options/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-editing-style/package.json b/samples/grids/hierarchical-grid/row-editing-style/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/row-editing-style/package.json +++ b/samples/grids/hierarchical-grid/row-editing-style/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json b/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json +++ b/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/row-pinning-options/package.json b/samples/grids/hierarchical-grid/row-pinning-options/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/hierarchical-grid/row-pinning-options/package.json +++ b/samples/grids/hierarchical-grid/row-pinning-options/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/row-pinning-style/package.json b/samples/grids/hierarchical-grid/row-pinning-style/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/row-pinning-style/package.json +++ b/samples/grids/hierarchical-grid/row-pinning-style/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-reorder/package.json b/samples/grids/hierarchical-grid/row-reorder/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/row-reorder/package.json +++ b/samples/grids/hierarchical-grid/row-reorder/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-selection-mode/package.json b/samples/grids/hierarchical-grid/row-selection-mode/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/hierarchical-grid/row-selection-mode/package.json +++ b/samples/grids/hierarchical-grid/row-selection-mode/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json b/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json +++ b/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-styles/package.json b/samples/grids/hierarchical-grid/row-styles/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/row-styles/package.json +++ b/samples/grids/hierarchical-grid/row-styles/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/state-persistence-about/package.json b/samples/grids/hierarchical-grid/state-persistence-about/package.json index 0009537460..da6a11c0c8 100644 --- a/samples/grids/hierarchical-grid/state-persistence-about/package.json +++ b/samples/grids/hierarchical-grid/state-persistence-about/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/state-persistence-main/package.json b/samples/grids/hierarchical-grid/state-persistence-main/package.json index 0009537460..da6a11c0c8 100644 --- a/samples/grids/hierarchical-grid/state-persistence-main/package.json +++ b/samples/grids/hierarchical-grid/state-persistence-main/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/toolbar-sample-3/package.json b/samples/grids/hierarchical-grid/toolbar-sample-3/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-3/package.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-3/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/toolbar-sample-4/package.json b/samples/grids/hierarchical-grid/toolbar-sample-4/package.json index 0009537460..da6a11c0c8 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-4/package.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-4/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/hierarchical-grid/toolbar-style/package.json b/samples/grids/hierarchical-grid/toolbar-style/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/hierarchical-grid/toolbar-style/package.json +++ b/samples/grids/hierarchical-grid/toolbar-style/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/list/add-list-items/package.json b/samples/grids/list/add-list-items/package.json index 6f4715f723..07fd8fde44 100644 --- a/samples/grids/list/add-list-items/package.json +++ b/samples/grids/list/add-list-items/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/list/list-item-content/package.json b/samples/grids/list/list-item-content/package.json index 8a4aa8aa20..d302ebcfe5 100644 --- a/samples/grids/list/list-item-content/package.json +++ b/samples/grids/list/list-item-content/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/list/overview/package.json b/samples/grids/list/overview/package.json index b06067b4e6..553b126a14 100644 --- a/samples/grids/list/overview/package.json +++ b/samples/grids/list/overview/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/list/styling/package.json b/samples/grids/list/styling/package.json index eda8a86298..b6292c4cb5 100644 --- a/samples/grids/list/styling/package.json +++ b/samples/grids/list/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/pivot-grid/aggregate-max-sales/package.json b/samples/grids/pivot-grid/aggregate-max-sales/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/pivot-grid/aggregate-max-sales/package.json +++ b/samples/grids/pivot-grid/aggregate-max-sales/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/pivot-grid/aggregate-units-sold/package.json b/samples/grids/pivot-grid/aggregate-units-sold/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/pivot-grid/aggregate-units-sold/package.json +++ b/samples/grids/pivot-grid/aggregate-units-sold/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/pivot-grid/data-selector/package.json b/samples/grids/pivot-grid/data-selector/package.json index 0009537460..da6a11c0c8 100644 --- a/samples/grids/pivot-grid/data-selector/package.json +++ b/samples/grids/pivot-grid/data-selector/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/pivot-grid/features/package.json b/samples/grids/pivot-grid/features/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/pivot-grid/features/package.json +++ b/samples/grids/pivot-grid/features/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/pivot-grid/state-persistence-about/package.json b/samples/grids/pivot-grid/state-persistence-about/package.json index 0009537460..da6a11c0c8 100644 --- a/samples/grids/pivot-grid/state-persistence-about/package.json +++ b/samples/grids/pivot-grid/state-persistence-about/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/pivot-grid/state-persistence-main/package.json b/samples/grids/pivot-grid/state-persistence-main/package.json index 0009537460..da6a11c0c8 100644 --- a/samples/grids/pivot-grid/state-persistence-main/package.json +++ b/samples/grids/pivot-grid/state-persistence-main/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/action-strip/package.json b/samples/grids/tree-grid/action-strip/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/action-strip/package.json +++ b/samples/grids/tree-grid/action-strip/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/advanced-filtering-options/package.json b/samples/grids/tree-grid/advanced-filtering-options/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/advanced-filtering-options/package.json +++ b/samples/grids/tree-grid/advanced-filtering-options/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/advanced-filtering-style/package.json b/samples/grids/tree-grid/advanced-filtering-style/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/advanced-filtering-style/package.json +++ b/samples/grids/tree-grid/advanced-filtering-style/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/cell-editing-sample/package.json b/samples/grids/tree-grid/cell-editing-sample/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/cell-editing-sample/package.json +++ b/samples/grids/tree-grid/cell-editing-sample/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/cell-editing-styling/package.json b/samples/grids/tree-grid/cell-editing-styling/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/cell-editing-styling/package.json +++ b/samples/grids/tree-grid/cell-editing-styling/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/cell-merge-custom-sample/package.json b/samples/grids/tree-grid/cell-merge-custom-sample/package.json index 6df749c048..a31c7c5b87 100644 --- a/samples/grids/tree-grid/cell-merge-custom-sample/package.json +++ b/samples/grids/tree-grid/cell-merge-custom-sample/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/cell-merge/package.json b/samples/grids/tree-grid/cell-merge/package.json index 6df749c048..a31c7c5b87 100644 --- a/samples/grids/tree-grid/cell-merge/package.json +++ b/samples/grids/tree-grid/cell-merge/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/cell-selection-mode/package.json b/samples/grids/tree-grid/cell-selection-mode/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/tree-grid/cell-selection-mode/package.json +++ b/samples/grids/tree-grid/cell-selection-mode/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/cell-selection-style/package.json b/samples/grids/tree-grid/cell-selection-style/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/cell-selection-style/package.json +++ b/samples/grids/tree-grid/cell-selection-style/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/clipboard-operations/package.json b/samples/grids/tree-grid/clipboard-operations/package.json index 0009537460..da6a11c0c8 100644 --- a/samples/grids/tree-grid/clipboard-operations/package.json +++ b/samples/grids/tree-grid/clipboard-operations/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/column-auto-sizing/package.json b/samples/grids/tree-grid/column-auto-sizing/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/column-auto-sizing/package.json +++ b/samples/grids/tree-grid/column-auto-sizing/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-collapsible-groups/package.json b/samples/grids/tree-grid/column-collapsible-groups/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/column-collapsible-groups/package.json +++ b/samples/grids/tree-grid/column-collapsible-groups/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-data-types/package.json b/samples/grids/tree-grid/column-data-types/package.json index 0009537460..da6a11c0c8 100644 --- a/samples/grids/tree-grid/column-data-types/package.json +++ b/samples/grids/tree-grid/column-data-types/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/column-hiding-toolbar-style/package.json b/samples/grids/tree-grid/column-hiding-toolbar-style/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar-style/package.json +++ b/samples/grids/tree-grid/column-hiding-toolbar-style/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-hiding-toolbar/package.json b/samples/grids/tree-grid/column-hiding-toolbar/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar/package.json +++ b/samples/grids/tree-grid/column-hiding-toolbar/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-moving-options/package.json b/samples/grids/tree-grid/column-moving-options/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/column-moving-options/package.json +++ b/samples/grids/tree-grid/column-moving-options/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-moving-styles/package.json b/samples/grids/tree-grid/column-moving-styles/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/column-moving-styles/package.json +++ b/samples/grids/tree-grid/column-moving-styles/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-pinning-both-sides/package.json b/samples/grids/tree-grid/column-pinning-both-sides/package.json index 6df749c048..a31c7c5b87 100644 --- a/samples/grids/tree-grid/column-pinning-both-sides/package.json +++ b/samples/grids/tree-grid/column-pinning-both-sides/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/column-pinning-options/package.json b/samples/grids/tree-grid/column-pinning-options/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/column-pinning-options/package.json +++ b/samples/grids/tree-grid/column-pinning-options/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-pinning-right-side/package.json b/samples/grids/tree-grid/column-pinning-right-side/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/column-pinning-right-side/package.json +++ b/samples/grids/tree-grid/column-pinning-right-side/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-pinning-styles/package.json b/samples/grids/tree-grid/column-pinning-styles/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/column-pinning-styles/package.json +++ b/samples/grids/tree-grid/column-pinning-styles/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-pinning-toolbar/package.json b/samples/grids/tree-grid/column-pinning-toolbar/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/column-pinning-toolbar/package.json +++ b/samples/grids/tree-grid/column-pinning-toolbar/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-pinning/package.json b/samples/grids/tree-grid/column-pinning/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/column-pinning/package.json +++ b/samples/grids/tree-grid/column-pinning/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-resize-styling/package.json b/samples/grids/tree-grid/column-resize-styling/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/column-resize-styling/package.json +++ b/samples/grids/tree-grid/column-resize-styling/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-resizing/package.json b/samples/grids/tree-grid/column-resizing/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/column-resizing/package.json +++ b/samples/grids/tree-grid/column-resizing/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-selection-group/package.json b/samples/grids/tree-grid/column-selection-group/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/column-selection-group/package.json +++ b/samples/grids/tree-grid/column-selection-group/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-selection-mode/package.json b/samples/grids/tree-grid/column-selection-mode/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/tree-grid/column-selection-mode/package.json +++ b/samples/grids/tree-grid/column-selection-mode/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/column-selection-style/package.json b/samples/grids/tree-grid/column-selection-style/package.json index 0009537460..da6a11c0c8 100644 --- a/samples/grids/tree-grid/column-selection-style/package.json +++ b/samples/grids/tree-grid/column-selection-style/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/column-selection-styles/package.json b/samples/grids/tree-grid/column-selection-styles/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/column-selection-styles/package.json +++ b/samples/grids/tree-grid/column-selection-styles/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-sorting-indicators/package.json b/samples/grids/tree-grid/column-sorting-indicators/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/column-sorting-indicators/package.json +++ b/samples/grids/tree-grid/column-sorting-indicators/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-sorting-options/package.json b/samples/grids/tree-grid/column-sorting-options/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/tree-grid/column-sorting-options/package.json +++ b/samples/grids/tree-grid/column-sorting-options/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/column-sorting-style/package.json b/samples/grids/tree-grid/column-sorting-style/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/tree-grid/column-sorting-style/package.json +++ b/samples/grids/tree-grid/column-sorting-style/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/conditional-cell-style-1/package.json b/samples/grids/tree-grid/conditional-cell-style-1/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/conditional-cell-style-1/package.json +++ b/samples/grids/tree-grid/conditional-cell-style-1/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/conditional-cell-style-2/package.json b/samples/grids/tree-grid/conditional-cell-style-2/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/conditional-cell-style-2/package.json +++ b/samples/grids/tree-grid/conditional-cell-style-2/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/conditional-row-selectors/package.json b/samples/grids/tree-grid/conditional-row-selectors/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/conditional-row-selectors/package.json +++ b/samples/grids/tree-grid/conditional-row-selectors/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/data-exporting-indicator/package.json b/samples/grids/tree-grid/data-exporting-indicator/package.json index 0009537460..da6a11c0c8 100644 --- a/samples/grids/tree-grid/data-exporting-indicator/package.json +++ b/samples/grids/tree-grid/data-exporting-indicator/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/data-searching/package.json b/samples/grids/tree-grid/data-searching/package.json index 09146368ea..2a8939cd1f 100644 --- a/samples/grids/tree-grid/data-searching/package.json +++ b/samples/grids/tree-grid/data-searching/package.json @@ -14,8 +14,8 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0-rc.0", "lit-html": "^2.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/data-summary-children/package.json b/samples/grids/tree-grid/data-summary-children/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/tree-grid/data-summary-children/package.json +++ b/samples/grids/tree-grid/data-summary-children/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/data-summary-formatter/package.json b/samples/grids/tree-grid/data-summary-formatter/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/data-summary-formatter/package.json +++ b/samples/grids/tree-grid/data-summary-formatter/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/data-summary-options-styling/package.json b/samples/grids/tree-grid/data-summary-options-styling/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/data-summary-options-styling/package.json +++ b/samples/grids/tree-grid/data-summary-options-styling/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/data-summary-options/package.json b/samples/grids/tree-grid/data-summary-options/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/data-summary-options/package.json +++ b/samples/grids/tree-grid/data-summary-options/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/data-summary-template/package.json b/samples/grids/tree-grid/data-summary-template/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/tree-grid/data-summary-template/package.json +++ b/samples/grids/tree-grid/data-summary-template/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/disabled-summaries/package.json b/samples/grids/tree-grid/disabled-summaries/package.json index 454fcd13e5..35429bc269 100644 --- a/samples/grids/tree-grid/disabled-summaries/package.json +++ b/samples/grids/tree-grid/disabled-summaries/package.json @@ -9,10 +9,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/editing-columns/package.json b/samples/grids/tree-grid/editing-columns/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/editing-columns/package.json +++ b/samples/grids/tree-grid/editing-columns/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/editing-events/package.json b/samples/grids/tree-grid/editing-events/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/editing-events/package.json +++ b/samples/grids/tree-grid/editing-events/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/editing-lifecycle/package.json b/samples/grids/tree-grid/editing-lifecycle/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/editing-lifecycle/package.json +++ b/samples/grids/tree-grid/editing-lifecycle/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/excel-exporting/package.json b/samples/grids/tree-grid/excel-exporting/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/excel-exporting/package.json +++ b/samples/grids/tree-grid/excel-exporting/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json b/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json b/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json b/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/excel-style-filtering-style/package.json b/samples/grids/tree-grid/excel-style-filtering-style/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/excel-style-filtering-style/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-style/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/filtering-options/package.json b/samples/grids/tree-grid/filtering-options/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/filtering-options/package.json +++ b/samples/grids/tree-grid/filtering-options/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/filtering-style/package.json b/samples/grids/tree-grid/filtering-style/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/filtering-style/package.json +++ b/samples/grids/tree-grid/filtering-style/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/keyboard-custom-navigation/package.json b/samples/grids/tree-grid/keyboard-custom-navigation/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/tree-grid/keyboard-custom-navigation/package.json +++ b/samples/grids/tree-grid/keyboard-custom-navigation/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/layout-display-density/package.json b/samples/grids/tree-grid/layout-display-density/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/tree-grid/layout-display-density/package.json +++ b/samples/grids/tree-grid/layout-display-density/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/multi-cell-selection-mode/package.json b/samples/grids/tree-grid/multi-cell-selection-mode/package.json index 0009537460..da6a11c0c8 100644 --- a/samples/grids/tree-grid/multi-cell-selection-mode/package.json +++ b/samples/grids/tree-grid/multi-cell-selection-mode/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/multi-column-headers-export/package.json b/samples/grids/tree-grid/multi-column-headers-export/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/multi-column-headers-export/package.json +++ b/samples/grids/tree-grid/multi-column-headers-export/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/multi-column-headers-overview/package.json b/samples/grids/tree-grid/multi-column-headers-overview/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/tree-grid/multi-column-headers-overview/package.json +++ b/samples/grids/tree-grid/multi-column-headers-overview/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/multi-column-headers-styling/package.json b/samples/grids/tree-grid/multi-column-headers-styling/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/multi-column-headers-styling/package.json +++ b/samples/grids/tree-grid/multi-column-headers-styling/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/multi-column-headers-template/package.json b/samples/grids/tree-grid/multi-column-headers-template/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/multi-column-headers-template/package.json +++ b/samples/grids/tree-grid/multi-column-headers-template/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/overview-styling/package.json b/samples/grids/tree-grid/overview-styling/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/overview-styling/package.json +++ b/samples/grids/tree-grid/overview-styling/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/overview/package.json b/samples/grids/tree-grid/overview/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/tree-grid/overview/package.json +++ b/samples/grids/tree-grid/overview/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/row-adding/package.json b/samples/grids/tree-grid/row-adding/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/row-adding/package.json +++ b/samples/grids/tree-grid/row-adding/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/row-classes/package.json b/samples/grids/tree-grid/row-classes/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/row-classes/package.json +++ b/samples/grids/tree-grid/row-classes/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/row-drag-base/package.json b/samples/grids/tree-grid/row-drag-base/package.json index 0009537460..da6a11c0c8 100644 --- a/samples/grids/tree-grid/row-drag-base/package.json +++ b/samples/grids/tree-grid/row-drag-base/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/row-editing-options/package.json b/samples/grids/tree-grid/row-editing-options/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/row-editing-options/package.json +++ b/samples/grids/tree-grid/row-editing-options/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/row-editing-style/package.json b/samples/grids/tree-grid/row-editing-style/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/row-editing-style/package.json +++ b/samples/grids/tree-grid/row-editing-style/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/row-paging-basic/package.json b/samples/grids/tree-grid/row-paging-basic/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/row-paging-basic/package.json +++ b/samples/grids/tree-grid/row-paging-basic/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/row-paging-options/package.json b/samples/grids/tree-grid/row-paging-options/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/tree-grid/row-paging-options/package.json +++ b/samples/grids/tree-grid/row-paging-options/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/row-paging-style/package.json b/samples/grids/tree-grid/row-paging-style/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/row-paging-style/package.json +++ b/samples/grids/tree-grid/row-paging-style/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/row-pinning-extra-column/package.json b/samples/grids/tree-grid/row-pinning-extra-column/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/row-pinning-extra-column/package.json +++ b/samples/grids/tree-grid/row-pinning-extra-column/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/row-pinning-options/package.json b/samples/grids/tree-grid/row-pinning-options/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/tree-grid/row-pinning-options/package.json +++ b/samples/grids/tree-grid/row-pinning-options/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/row-pinning-style/package.json b/samples/grids/tree-grid/row-pinning-style/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/row-pinning-style/package.json +++ b/samples/grids/tree-grid/row-pinning-style/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/row-reorder/package.json b/samples/grids/tree-grid/row-reorder/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/row-reorder/package.json +++ b/samples/grids/tree-grid/row-reorder/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/row-selection-mode/package.json b/samples/grids/tree-grid/row-selection-mode/package.json index c89ad99ec1..696a2c935b 100644 --- a/samples/grids/tree-grid/row-selection-mode/package.json +++ b/samples/grids/tree-grid/row-selection-mode/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/row-selection-template-excel/package.json b/samples/grids/tree-grid/row-selection-template-excel/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/row-selection-template-excel/package.json +++ b/samples/grids/tree-grid/row-selection-template-excel/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/row-selection-template-numbers/package.json b/samples/grids/tree-grid/row-selection-template-numbers/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/row-selection-template-numbers/package.json +++ b/samples/grids/tree-grid/row-selection-template-numbers/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/row-styles/package.json b/samples/grids/tree-grid/row-styles/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/row-styles/package.json +++ b/samples/grids/tree-grid/row-styles/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/state-persistence-about/package.json b/samples/grids/tree-grid/state-persistence-about/package.json index 0009537460..da6a11c0c8 100644 --- a/samples/grids/tree-grid/state-persistence-about/package.json +++ b/samples/grids/tree-grid/state-persistence-about/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/state-persistence-main/package.json b/samples/grids/tree-grid/state-persistence-main/package.json index 0009537460..da6a11c0c8 100644 --- a/samples/grids/tree-grid/state-persistence-main/package.json +++ b/samples/grids/tree-grid/state-persistence-main/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/toolbar-sample-1/package.json b/samples/grids/tree-grid/toolbar-sample-1/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/toolbar-sample-1/package.json +++ b/samples/grids/tree-grid/toolbar-sample-1/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/toolbar-sample-2/package.json b/samples/grids/tree-grid/toolbar-sample-2/package.json index 0009537460..da6a11c0c8 100644 --- a/samples/grids/tree-grid/toolbar-sample-2/package.json +++ b/samples/grids/tree-grid/toolbar-sample-2/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/toolbar-sample-3/package.json b/samples/grids/tree-grid/toolbar-sample-3/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/toolbar-sample-3/package.json +++ b/samples/grids/tree-grid/toolbar-sample-3/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/toolbar-sample-4/package.json b/samples/grids/tree-grid/toolbar-sample-4/package.json index 0009537460..da6a11c0c8 100644 --- a/samples/grids/tree-grid/toolbar-sample-4/package.json +++ b/samples/grids/tree-grid/toolbar-sample-4/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/grids/tree-grid/toolbar-style/package.json b/samples/grids/tree-grid/toolbar-style/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/toolbar-style/package.json +++ b/samples/grids/tree-grid/toolbar-style/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/using-primary-foreign-keys/package.json b/samples/grids/tree-grid/using-primary-foreign-keys/package.json index c2fc0d47eb..6d3c7df216 100644 --- a/samples/grids/tree-grid/using-primary-foreign-keys/package.json +++ b/samples/grids/tree-grid/using-primary-foreign-keys/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree/basic-example/package.json b/samples/grids/tree/basic-example/package.json index ca1082b56c..347852c968 100644 --- a/samples/grids/tree/basic-example/package.json +++ b/samples/grids/tree/basic-example/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree/styling/package.json b/samples/grids/tree/styling/package.json index ca1082b56c..347852c968 100644 --- a/samples/grids/tree/styling/package.json +++ b/samples/grids/tree/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/badge/outlined/package.json b/samples/inputs/badge/outlined/package.json index 0178ba4842..b458bc43be 100644 --- a/samples/inputs/badge/outlined/package.json +++ b/samples/inputs/badge/outlined/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/badge/shape/package.json b/samples/inputs/badge/shape/package.json index 5c8fda3da8..da02811226 100644 --- a/samples/inputs/badge/shape/package.json +++ b/samples/inputs/badge/shape/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/badge/styling/package.json b/samples/inputs/badge/styling/package.json index 5c8fda3da8..da02811226 100644 --- a/samples/inputs/badge/styling/package.json +++ b/samples/inputs/badge/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/badge/variants/package.json b/samples/inputs/badge/variants/package.json index 0413f5f3b0..2d46aa4283 100644 --- a/samples/inputs/badge/variants/package.json +++ b/samples/inputs/badge/variants/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/button-group/alignment/package.json b/samples/inputs/button-group/alignment/package.json index 703e0ca1a4..16f9206b9f 100644 --- a/samples/inputs/button-group/alignment/package.json +++ b/samples/inputs/button-group/alignment/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/button-group/overview/package.json b/samples/inputs/button-group/overview/package.json index 7b78f74cd9..013310b7ed 100644 --- a/samples/inputs/button-group/overview/package.json +++ b/samples/inputs/button-group/overview/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/button-group/selection/package.json b/samples/inputs/button-group/selection/package.json index ffcabf4e88..84ad70b056 100644 --- a/samples/inputs/button-group/selection/package.json +++ b/samples/inputs/button-group/selection/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/button-group/size/package.json b/samples/inputs/button-group/size/package.json index 6401f0c6d4..0e1c4585ec 100644 --- a/samples/inputs/button-group/size/package.json +++ b/samples/inputs/button-group/size/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/button-group/styling/package.json b/samples/inputs/button-group/styling/package.json index c3d7585c7f..db16f82452 100644 --- a/samples/inputs/button-group/styling/package.json +++ b/samples/inputs/button-group/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/button/contained/package.json b/samples/inputs/button/contained/package.json index e9a462dc8f..ad712677f9 100644 --- a/samples/inputs/button/contained/package.json +++ b/samples/inputs/button/contained/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/button/download/package.json b/samples/inputs/button/download/package.json index acb1a64367..75b49aedd8 100644 --- a/samples/inputs/button/download/package.json +++ b/samples/inputs/button/download/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/button/fab/package.json b/samples/inputs/button/fab/package.json index 18d26379e9..c1ffbd7f43 100644 --- a/samples/inputs/button/fab/package.json +++ b/samples/inputs/button/fab/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/button/flat/package.json b/samples/inputs/button/flat/package.json index a6ae284fd2..e557628abc 100644 --- a/samples/inputs/button/flat/package.json +++ b/samples/inputs/button/flat/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/button/outlined/package.json b/samples/inputs/button/outlined/package.json index 756ebecca2..9568d64f2f 100644 --- a/samples/inputs/button/outlined/package.json +++ b/samples/inputs/button/outlined/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/button/overview/package.json b/samples/inputs/button/overview/package.json index 29411f579e..cb42602fb7 100644 --- a/samples/inputs/button/overview/package.json +++ b/samples/inputs/button/overview/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/button/size/package.json b/samples/inputs/button/size/package.json index b61c0f0e8c..d9150416f7 100644 --- a/samples/inputs/button/size/package.json +++ b/samples/inputs/button/size/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/button/styling/package.json b/samples/inputs/button/styling/package.json index 96d272c3e6..de13fa6806 100644 --- a/samples/inputs/button/styling/package.json +++ b/samples/inputs/button/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/checkbox/checking/package.json b/samples/inputs/checkbox/checking/package.json index 991c707100..b1d9cb7fa9 100644 --- a/samples/inputs/checkbox/checking/package.json +++ b/samples/inputs/checkbox/checking/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/checkbox/disabled/package.json b/samples/inputs/checkbox/disabled/package.json index c0dc516935..f8ab3898c9 100644 --- a/samples/inputs/checkbox/disabled/package.json +++ b/samples/inputs/checkbox/disabled/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/checkbox/indeterminate/package.json b/samples/inputs/checkbox/indeterminate/package.json index b6c0a68224..59d2233ccd 100644 --- a/samples/inputs/checkbox/indeterminate/package.json +++ b/samples/inputs/checkbox/indeterminate/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/checkbox/label/package.json b/samples/inputs/checkbox/label/package.json index 2869826653..770d8cd187 100644 --- a/samples/inputs/checkbox/label/package.json +++ b/samples/inputs/checkbox/label/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/checkbox/overview/package.json b/samples/inputs/checkbox/overview/package.json index f0b0efa193..5ed3552b0a 100644 --- a/samples/inputs/checkbox/overview/package.json +++ b/samples/inputs/checkbox/overview/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/checkbox/styling/package.json b/samples/inputs/checkbox/styling/package.json index f0b0efa193..5ed3552b0a 100644 --- a/samples/inputs/checkbox/styling/package.json +++ b/samples/inputs/checkbox/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/chip/multiple/package.json b/samples/inputs/chip/multiple/package.json index 55f3f42530..7b62f76f23 100644 --- a/samples/inputs/chip/multiple/package.json +++ b/samples/inputs/chip/multiple/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/chip/overview/package.json b/samples/inputs/chip/overview/package.json index b99c744be3..70cd0146a7 100644 --- a/samples/inputs/chip/overview/package.json +++ b/samples/inputs/chip/overview/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/chip/size/package.json b/samples/inputs/chip/size/package.json index 384bf419d1..090f9d010a 100644 --- a/samples/inputs/chip/size/package.json +++ b/samples/inputs/chip/size/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/chip/styling/package.json b/samples/inputs/chip/styling/package.json index fa5ea30caa..8cdce31604 100644 --- a/samples/inputs/chip/styling/package.json +++ b/samples/inputs/chip/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/chip/variants/package.json b/samples/inputs/chip/variants/package.json index b386c6c040..ddf68e109b 100644 --- a/samples/inputs/chip/variants/package.json +++ b/samples/inputs/chip/variants/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/circular-progress-indicator/dynamic/package.json b/samples/inputs/circular-progress-indicator/dynamic/package.json index 71da02da4f..c4b1cea153 100644 --- a/samples/inputs/circular-progress-indicator/dynamic/package.json +++ b/samples/inputs/circular-progress-indicator/dynamic/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/circular-progress-indicator/indeterminate/package.json b/samples/inputs/circular-progress-indicator/indeterminate/package.json index c99f4873bf..2ca3fd1960 100644 --- a/samples/inputs/circular-progress-indicator/indeterminate/package.json +++ b/samples/inputs/circular-progress-indicator/indeterminate/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/circular-progress-indicator/simple/package.json b/samples/inputs/circular-progress-indicator/simple/package.json index 2753ac5295..a06732a0ba 100644 --- a/samples/inputs/circular-progress-indicator/simple/package.json +++ b/samples/inputs/circular-progress-indicator/simple/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/circular-progress-indicator/styling/package.json b/samples/inputs/circular-progress-indicator/styling/package.json index cebbef6920..ed3048dea5 100644 --- a/samples/inputs/circular-progress-indicator/styling/package.json +++ b/samples/inputs/circular-progress-indicator/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/color-editor/overview/package.json b/samples/inputs/color-editor/overview/package.json index 04fac1198e..c77496a09f 100644 --- a/samples/inputs/color-editor/overview/package.json +++ b/samples/inputs/color-editor/overview/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/inputs/combo/features/package.json b/samples/inputs/combo/features/package.json index 888661d770..97a99df485 100644 --- a/samples/inputs/combo/features/package.json +++ b/samples/inputs/combo/features/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/combo/overview/package.json b/samples/inputs/combo/overview/package.json index 7385e95467..ed41d94183 100644 --- a/samples/inputs/combo/overview/package.json +++ b/samples/inputs/combo/overview/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/combo/selection/package.json b/samples/inputs/combo/selection/package.json index fdbb78a594..26441edbad 100644 --- a/samples/inputs/combo/selection/package.json +++ b/samples/inputs/combo/selection/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/combo/simplified/package.json b/samples/inputs/combo/simplified/package.json index 9d144f8153..6d4424298d 100644 --- a/samples/inputs/combo/simplified/package.json +++ b/samples/inputs/combo/simplified/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/combo/styling/package.json b/samples/inputs/combo/styling/package.json index b59d9d35fd..9652b94bc0 100644 --- a/samples/inputs/combo/styling/package.json +++ b/samples/inputs/combo/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/combo/templates/package.json b/samples/inputs/combo/templates/package.json index f73df5b5cb..e641272efa 100644 --- a/samples/inputs/combo/templates/package.json +++ b/samples/inputs/combo/templates/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-beta.0", + "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/inputs/date-time-input/input-format-display-format/package.json b/samples/inputs/date-time-input/input-format-display-format/package.json index 6904047895..01e81e7b58 100644 --- a/samples/inputs/date-time-input/input-format-display-format/package.json +++ b/samples/inputs/date-time-input/input-format-display-format/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/date-time-input/min-max-value/package.json b/samples/inputs/date-time-input/min-max-value/package.json index 9283342e65..3060b85946 100644 --- a/samples/inputs/date-time-input/min-max-value/package.json +++ b/samples/inputs/date-time-input/min-max-value/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/date-time-input/overview/package.json b/samples/inputs/date-time-input/overview/package.json index 111c041659..0229cafda2 100644 --- a/samples/inputs/date-time-input/overview/package.json +++ b/samples/inputs/date-time-input/overview/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/date-time-input/step-up-down/package.json b/samples/inputs/date-time-input/step-up-down/package.json index 5fc1fd1baa..fb0b116d0e 100644 --- a/samples/inputs/date-time-input/step-up-down/package.json +++ b/samples/inputs/date-time-input/step-up-down/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/date-time-input/styling/package.json b/samples/inputs/date-time-input/styling/package.json index 111c041659..0229cafda2 100644 --- a/samples/inputs/date-time-input/styling/package.json +++ b/samples/inputs/date-time-input/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/dropdown/group/package.json b/samples/inputs/dropdown/group/package.json index 584221a3b6..83bb301ca8 100644 --- a/samples/inputs/dropdown/group/package.json +++ b/samples/inputs/dropdown/group/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/dropdown/header/package.json b/samples/inputs/dropdown/header/package.json index b0cc2ce9a8..5367789702 100644 --- a/samples/inputs/dropdown/header/package.json +++ b/samples/inputs/dropdown/header/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/dropdown/item/package.json b/samples/inputs/dropdown/item/package.json index 2395c2069a..a632bb49e3 100644 --- a/samples/inputs/dropdown/item/package.json +++ b/samples/inputs/dropdown/item/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/dropdown/overview/package.json b/samples/inputs/dropdown/overview/package.json index aee8ecabb4..44493bc371 100644 --- a/samples/inputs/dropdown/overview/package.json +++ b/samples/inputs/dropdown/overview/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/dropdown/position/package.json b/samples/inputs/dropdown/position/package.json index 6c913890ff..d44caec58b 100644 --- a/samples/inputs/dropdown/position/package.json +++ b/samples/inputs/dropdown/position/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/dropdown/styling/package.json b/samples/inputs/dropdown/styling/package.json index 54d2a2afc9..60324b28f3 100644 --- a/samples/inputs/dropdown/styling/package.json +++ b/samples/inputs/dropdown/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/dropdown/target/package.json b/samples/inputs/dropdown/target/package.json index db16cc4c19..0d9198dcbf 100644 --- a/samples/inputs/dropdown/target/package.json +++ b/samples/inputs/dropdown/target/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/icon-button/size/package.json b/samples/inputs/icon-button/size/package.json index 2d2fe601e4..38e8923f85 100644 --- a/samples/inputs/icon-button/size/package.json +++ b/samples/inputs/icon-button/size/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/icon-button/styling/package.json b/samples/inputs/icon-button/styling/package.json index f90d466e81..e03d80ffc6 100644 --- a/samples/inputs/icon-button/styling/package.json +++ b/samples/inputs/icon-button/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/icon-button/variant/package.json b/samples/inputs/icon-button/variant/package.json index 528ae082f7..1b3f13c98a 100644 --- a/samples/inputs/icon-button/variant/package.json +++ b/samples/inputs/icon-button/variant/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/input/helper-text/package.json b/samples/inputs/input/helper-text/package.json index 346782cb96..9f986c412e 100644 --- a/samples/inputs/input/helper-text/package.json +++ b/samples/inputs/input/helper-text/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/input/overview/package.json b/samples/inputs/input/overview/package.json index 8e3e0a8921..4cf8b73683 100644 --- a/samples/inputs/input/overview/package.json +++ b/samples/inputs/input/overview/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/input/prefix-suffix/package.json b/samples/inputs/input/prefix-suffix/package.json index 1d993c3d66..3611e42c41 100644 --- a/samples/inputs/input/prefix-suffix/package.json +++ b/samples/inputs/input/prefix-suffix/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/input/size/package.json b/samples/inputs/input/size/package.json index 9797aa3fe0..7229a7560c 100644 --- a/samples/inputs/input/size/package.json +++ b/samples/inputs/input/size/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/input/styling/package.json b/samples/inputs/input/styling/package.json index 688d44f3f8..ea35b60f03 100644 --- a/samples/inputs/input/styling/package.json +++ b/samples/inputs/input/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/linear-progress-indicator/dynamic/package.json b/samples/inputs/linear-progress-indicator/dynamic/package.json index a5f4244928..d8c60c9c01 100644 --- a/samples/inputs/linear-progress-indicator/dynamic/package.json +++ b/samples/inputs/linear-progress-indicator/dynamic/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/linear-progress-indicator/simple/package.json b/samples/inputs/linear-progress-indicator/simple/package.json index dd4966314a..c399f19ec1 100644 --- a/samples/inputs/linear-progress-indicator/simple/package.json +++ b/samples/inputs/linear-progress-indicator/simple/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/linear-progress-indicator/striped/package.json b/samples/inputs/linear-progress-indicator/striped/package.json index 1285eb4da8..53bef9e490 100644 --- a/samples/inputs/linear-progress-indicator/striped/package.json +++ b/samples/inputs/linear-progress-indicator/striped/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/linear-progress-indicator/styling/package.json b/samples/inputs/linear-progress-indicator/styling/package.json index ce8efbaecd..8967189a0f 100644 --- a/samples/inputs/linear-progress-indicator/styling/package.json +++ b/samples/inputs/linear-progress-indicator/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/linear-progress-indicator/types/package.json b/samples/inputs/linear-progress-indicator/types/package.json index 90ce023c8a..5a72455580 100644 --- a/samples/inputs/linear-progress-indicator/types/package.json +++ b/samples/inputs/linear-progress-indicator/types/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/mask-input/applying-mask/package.json b/samples/inputs/mask-input/applying-mask/package.json index 83f1e89265..81aa5de792 100644 --- a/samples/inputs/mask-input/applying-mask/package.json +++ b/samples/inputs/mask-input/applying-mask/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/mask-input/overview/package.json b/samples/inputs/mask-input/overview/package.json index d2b31e252f..a62224a29a 100644 --- a/samples/inputs/mask-input/overview/package.json +++ b/samples/inputs/mask-input/overview/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/mask-input/value-modes/package.json b/samples/inputs/mask-input/value-modes/package.json index 2e01755dbf..92bc5aba1f 100644 --- a/samples/inputs/mask-input/value-modes/package.json +++ b/samples/inputs/mask-input/value-modes/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/radio/alignment/package.json b/samples/inputs/radio/alignment/package.json index 899327a8ab..11ede84091 100644 --- a/samples/inputs/radio/alignment/package.json +++ b/samples/inputs/radio/alignment/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/radio/disabled/package.json b/samples/inputs/radio/disabled/package.json index b1ad9f4aef..1e447f6085 100644 --- a/samples/inputs/radio/disabled/package.json +++ b/samples/inputs/radio/disabled/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/radio/group/package.json b/samples/inputs/radio/group/package.json index 92d502d62b..e0f6bdf55c 100644 --- a/samples/inputs/radio/group/package.json +++ b/samples/inputs/radio/group/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/radio/invalid/package.json b/samples/inputs/radio/invalid/package.json index 2f98e54f1f..9efa0e4729 100644 --- a/samples/inputs/radio/invalid/package.json +++ b/samples/inputs/radio/invalid/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/radio/label/package.json b/samples/inputs/radio/label/package.json index 008cfa3fa9..ad71013013 100644 --- a/samples/inputs/radio/label/package.json +++ b/samples/inputs/radio/label/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/radio/styling/package.json b/samples/inputs/radio/styling/package.json index d0ba78dea1..fe69719f01 100644 --- a/samples/inputs/radio/styling/package.json +++ b/samples/inputs/radio/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/rating/basic/package.json b/samples/inputs/rating/basic/package.json index 29411f579e..cb42602fb7 100644 --- a/samples/inputs/rating/basic/package.json +++ b/samples/inputs/rating/basic/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/rating/custom/package.json b/samples/inputs/rating/custom/package.json index 29411f579e..cb42602fb7 100644 --- a/samples/inputs/rating/custom/package.json +++ b/samples/inputs/rating/custom/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/rating/empty/package.json b/samples/inputs/rating/empty/package.json index 29411f579e..cb42602fb7 100644 --- a/samples/inputs/rating/empty/package.json +++ b/samples/inputs/rating/empty/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/rating/single-selection/package.json b/samples/inputs/rating/single-selection/package.json index 29411f579e..cb42602fb7 100644 --- a/samples/inputs/rating/single-selection/package.json +++ b/samples/inputs/rating/single-selection/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/rating/styling/package.json b/samples/inputs/rating/styling/package.json index 29411f579e..cb42602fb7 100644 --- a/samples/inputs/rating/styling/package.json +++ b/samples/inputs/rating/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/ripple/button/package.json b/samples/inputs/ripple/button/package.json index 18b14290ed..447a998d34 100644 --- a/samples/inputs/ripple/button/package.json +++ b/samples/inputs/ripple/button/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/ripple/color/package.json b/samples/inputs/ripple/color/package.json index 0e2e865bed..0f40b4f38d 100644 --- a/samples/inputs/ripple/color/package.json +++ b/samples/inputs/ripple/color/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/select/group/package.json b/samples/inputs/select/group/package.json index 0e9ea2ed4e..cd6d208b6f 100644 --- a/samples/inputs/select/group/package.json +++ b/samples/inputs/select/group/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/select/header/package.json b/samples/inputs/select/header/package.json index cbf71c93a2..a32b724d1f 100644 --- a/samples/inputs/select/header/package.json +++ b/samples/inputs/select/header/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/select/item/package.json b/samples/inputs/select/item/package.json index cf6fb9557f..d249af3739 100644 --- a/samples/inputs/select/item/package.json +++ b/samples/inputs/select/item/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/select/overview/package.json b/samples/inputs/select/overview/package.json index 389b6be0a1..577b8ad064 100644 --- a/samples/inputs/select/overview/package.json +++ b/samples/inputs/select/overview/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/select/styling/package.json b/samples/inputs/select/styling/package.json index b54edad777..5122dd6a5d 100644 --- a/samples/inputs/select/styling/package.json +++ b/samples/inputs/select/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/slider/constraints/package.json b/samples/inputs/slider/constraints/package.json index 4306c5923c..da6b6b33b1 100644 --- a/samples/inputs/slider/constraints/package.json +++ b/samples/inputs/slider/constraints/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/slider/disabled/package.json b/samples/inputs/slider/disabled/package.json index d42ec6afcc..cbe40aec92 100644 --- a/samples/inputs/slider/disabled/package.json +++ b/samples/inputs/slider/disabled/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/slider/discrete/package.json b/samples/inputs/slider/discrete/package.json index c9ac5a7c2f..97e4e64854 100644 --- a/samples/inputs/slider/discrete/package.json +++ b/samples/inputs/slider/discrete/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/slider/labels/package.json b/samples/inputs/slider/labels/package.json index 0691a62705..522df9477e 100644 --- a/samples/inputs/slider/labels/package.json +++ b/samples/inputs/slider/labels/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/slider/overview/package.json b/samples/inputs/slider/overview/package.json index 58aa93cd2d..c7bd0c0bbe 100644 --- a/samples/inputs/slider/overview/package.json +++ b/samples/inputs/slider/overview/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/slider/styling/package.json b/samples/inputs/slider/styling/package.json index 02b6a6b82f..cd6395b943 100644 --- a/samples/inputs/slider/styling/package.json +++ b/samples/inputs/slider/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/slider/tick-labels/package.json b/samples/inputs/slider/tick-labels/package.json index a3c988e168..98f6480da2 100644 --- a/samples/inputs/slider/tick-labels/package.json +++ b/samples/inputs/slider/tick-labels/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/slider/ticks/package.json b/samples/inputs/slider/ticks/package.json index 8618497d1c..2d233849e7 100644 --- a/samples/inputs/slider/ticks/package.json +++ b/samples/inputs/slider/ticks/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/slider/value-format/package.json b/samples/inputs/slider/value-format/package.json index 29f204f6e3..ecc0d46737 100644 --- a/samples/inputs/slider/value-format/package.json +++ b/samples/inputs/slider/value-format/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/slider/value/package.json b/samples/inputs/slider/value/package.json index 9a62eb0711..57c79a6a37 100644 --- a/samples/inputs/slider/value/package.json +++ b/samples/inputs/slider/value/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/switches/checking/package.json b/samples/inputs/switches/checking/package.json index aa785abd4f..17787a63c9 100644 --- a/samples/inputs/switches/checking/package.json +++ b/samples/inputs/switches/checking/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/switches/disabled/package.json b/samples/inputs/switches/disabled/package.json index b0a686583b..de77ff441a 100644 --- a/samples/inputs/switches/disabled/package.json +++ b/samples/inputs/switches/disabled/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/switches/label/package.json b/samples/inputs/switches/label/package.json index cb84cbec8c..63aff93153 100644 --- a/samples/inputs/switches/label/package.json +++ b/samples/inputs/switches/label/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/switches/overview/package.json b/samples/inputs/switches/overview/package.json index 5f2d970e41..d62cb9c41c 100644 --- a/samples/inputs/switches/overview/package.json +++ b/samples/inputs/switches/overview/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/switches/styling/package.json b/samples/inputs/switches/styling/package.json index aa785abd4f..17787a63c9 100644 --- a/samples/inputs/switches/styling/package.json +++ b/samples/inputs/switches/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/textarea/form-integration/package.json b/samples/inputs/textarea/form-integration/package.json index fa8bd41935..20b14fe683 100644 --- a/samples/inputs/textarea/form-integration/package.json +++ b/samples/inputs/textarea/form-integration/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/textarea/overview/package.json b/samples/inputs/textarea/overview/package.json index 0a20d5200e..4742ec014e 100644 --- a/samples/inputs/textarea/overview/package.json +++ b/samples/inputs/textarea/overview/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/textarea/resize/package.json b/samples/inputs/textarea/resize/package.json index 39a41326ef..bfa4621c4d 100644 --- a/samples/inputs/textarea/resize/package.json +++ b/samples/inputs/textarea/resize/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/textarea/slots/package.json b/samples/inputs/textarea/slots/package.json index 243d1bd325..96179e073a 100644 --- a/samples/inputs/textarea/slots/package.json +++ b/samples/inputs/textarea/slots/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/textarea/styling/package.json b/samples/inputs/textarea/styling/package.json index 0b2d7ca12b..e7f55660b9 100644 --- a/samples/inputs/textarea/styling/package.json +++ b/samples/inputs/textarea/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/tooltip/advanced/package.json b/samples/inputs/tooltip/advanced/package.json index b7ec5b1ca9..289d837228 100644 --- a/samples/inputs/tooltip/advanced/package.json +++ b/samples/inputs/tooltip/advanced/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", diff --git a/samples/inputs/tooltip/overview/package.json b/samples/inputs/tooltip/overview/package.json index 29411f579e..cb42602fb7 100644 --- a/samples/inputs/tooltip/overview/package.json +++ b/samples/inputs/tooltip/overview/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/tooltip/placement/package.json b/samples/inputs/tooltip/placement/package.json index 29411f579e..cb42602fb7 100644 --- a/samples/inputs/tooltip/placement/package.json +++ b/samples/inputs/tooltip/placement/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/tooltip/rich/package.json b/samples/inputs/tooltip/rich/package.json index 29411f579e..cb42602fb7 100644 --- a/samples/inputs/tooltip/rich/package.json +++ b/samples/inputs/tooltip/rich/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/tooltip/styling/package.json b/samples/inputs/tooltip/styling/package.json index 29411f579e..cb42602fb7 100644 --- a/samples/inputs/tooltip/styling/package.json +++ b/samples/inputs/tooltip/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/inputs/tooltip/triggers/package.json b/samples/inputs/tooltip/triggers/package.json index 29411f579e..cb42602fb7 100644 --- a/samples/inputs/tooltip/triggers/package.json +++ b/samples/inputs/tooltip/triggers/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/interactions/chat/features/package.json b/samples/interactions/chat/features/package.json index 76cdb3d6ed..8650d8743b 100644 --- a/samples/interactions/chat/features/package.json +++ b/samples/interactions/chat/features/package.json @@ -14,7 +14,7 @@ "dependencies": { "dompurify": "^3.3.0", "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "marked": "^16.4.1", diff --git a/samples/interactions/chat/overview/package.json b/samples/interactions/chat/overview/package.json index 3b4f754b2a..98468dfb16 100644 --- a/samples/interactions/chat/overview/package.json +++ b/samples/interactions/chat/overview/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/interactions/chat/styling/package.json b/samples/interactions/chat/styling/package.json index a2bd512eac..12313f24c6 100644 --- a/samples/interactions/chat/styling/package.json +++ b/samples/interactions/chat/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/accordion/customization/package.json b/samples/layouts/accordion/customization/package.json index 429f5672ae..6a14b8218a 100644 --- a/samples/layouts/accordion/customization/package.json +++ b/samples/layouts/accordion/customization/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/accordion/nested-scenario/package.json b/samples/layouts/accordion/nested-scenario/package.json index 0de8a2ab8d..9ed31ae571 100644 --- a/samples/layouts/accordion/nested-scenario/package.json +++ b/samples/layouts/accordion/nested-scenario/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/accordion/overview/package.json b/samples/layouts/accordion/overview/package.json index 961a28afd0..eb2368958d 100644 --- a/samples/layouts/accordion/overview/package.json +++ b/samples/layouts/accordion/overview/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/avatar/icon/package.json b/samples/layouts/avatar/icon/package.json index 61bafe3300..6b5240e634 100644 --- a/samples/layouts/avatar/icon/package.json +++ b/samples/layouts/avatar/icon/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/avatar/image/package.json b/samples/layouts/avatar/image/package.json index 2f2d5f6c2f..2f6b7983cf 100644 --- a/samples/layouts/avatar/image/package.json +++ b/samples/layouts/avatar/image/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/avatar/initials/package.json b/samples/layouts/avatar/initials/package.json index 68fe12ca7c..27da01c34b 100644 --- a/samples/layouts/avatar/initials/package.json +++ b/samples/layouts/avatar/initials/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/avatar/shape/package.json b/samples/layouts/avatar/shape/package.json index d0738391cc..72b50fd2ec 100644 --- a/samples/layouts/avatar/shape/package.json +++ b/samples/layouts/avatar/shape/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/avatar/size/package.json b/samples/layouts/avatar/size/package.json index 879ffae633..dce35f164b 100644 --- a/samples/layouts/avatar/size/package.json +++ b/samples/layouts/avatar/size/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/avatar/styling/package.json b/samples/layouts/avatar/styling/package.json index 34380983cc..1e5a263b69 100644 --- a/samples/layouts/avatar/styling/package.json +++ b/samples/layouts/avatar/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/card/horizontal/package.json b/samples/layouts/card/horizontal/package.json index 004169e389..fc95ea0b26 100644 --- a/samples/layouts/card/horizontal/package.json +++ b/samples/layouts/card/horizontal/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/card/overview/package.json b/samples/layouts/card/overview/package.json index 54fad36895..d5c47a6907 100644 --- a/samples/layouts/card/overview/package.json +++ b/samples/layouts/card/overview/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/card/semi-horizontal/package.json b/samples/layouts/card/semi-horizontal/package.json index a9f899bfe4..ae344570f8 100644 --- a/samples/layouts/card/semi-horizontal/package.json +++ b/samples/layouts/card/semi-horizontal/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/card/styling/package.json b/samples/layouts/card/styling/package.json index 3337e8a446..df64b56456 100644 --- a/samples/layouts/card/styling/package.json +++ b/samples/layouts/card/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/carousel/animations/package.json b/samples/layouts/carousel/animations/package.json index 0ff4fd96c9..cede0a85d8 100644 --- a/samples/layouts/carousel/animations/package.json +++ b/samples/layouts/carousel/animations/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/carousel/components/package.json b/samples/layouts/carousel/components/package.json index 03c7af5169..123ba65173 100644 --- a/samples/layouts/carousel/components/package.json +++ b/samples/layouts/carousel/components/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/carousel/overview/package.json b/samples/layouts/carousel/overview/package.json index 6b50e41689..962a112a5c 100644 --- a/samples/layouts/carousel/overview/package.json +++ b/samples/layouts/carousel/overview/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/carousel/thumbnail/package.json b/samples/layouts/carousel/thumbnail/package.json index bef41d38ce..846cc9b76f 100644 --- a/samples/layouts/carousel/thumbnail/package.json +++ b/samples/layouts/carousel/thumbnail/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/divider/dashed/package.json b/samples/layouts/divider/dashed/package.json index 61bafe3300..6b5240e634 100644 --- a/samples/layouts/divider/dashed/package.json +++ b/samples/layouts/divider/dashed/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/divider/middle/package.json b/samples/layouts/divider/middle/package.json index 61bafe3300..6b5240e634 100644 --- a/samples/layouts/divider/middle/package.json +++ b/samples/layouts/divider/middle/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/divider/overview/package.json b/samples/layouts/divider/overview/package.json index 61bafe3300..6b5240e634 100644 --- a/samples/layouts/divider/overview/package.json +++ b/samples/layouts/divider/overview/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/divider/select/package.json b/samples/layouts/divider/select/package.json index 61bafe3300..6b5240e634 100644 --- a/samples/layouts/divider/select/package.json +++ b/samples/layouts/divider/select/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/divider/vertical/package.json b/samples/layouts/divider/vertical/package.json index 61bafe3300..6b5240e634 100644 --- a/samples/layouts/divider/vertical/package.json +++ b/samples/layouts/divider/vertical/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/dock-manager/styling/package.json b/samples/layouts/dock-manager/styling/package.json index 42b90154ff..5bcdf37803 100644 --- a/samples/layouts/dock-manager/styling/package.json +++ b/samples/layouts/dock-manager/styling/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-dockmanager": "^19.4.0", "react": "^19.2.0", diff --git a/samples/layouts/expansion-panel/component-customization/package.json b/samples/layouts/expansion-panel/component-customization/package.json index 7484ca6f4a..b54e0a0c15 100644 --- a/samples/layouts/expansion-panel/component-customization/package.json +++ b/samples/layouts/expansion-panel/component-customization/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/expansion-panel/properties-and-events/package.json b/samples/layouts/expansion-panel/properties-and-events/package.json index caea185c2b..f193f97296 100644 --- a/samples/layouts/expansion-panel/properties-and-events/package.json +++ b/samples/layouts/expansion-panel/properties-and-events/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/expansion-panel/styling/package.json b/samples/layouts/expansion-panel/styling/package.json index 71ff5931c8..1578ad678f 100644 --- a/samples/layouts/expansion-panel/styling/package.json +++ b/samples/layouts/expansion-panel/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/expansion-panel/usage/package.json b/samples/layouts/expansion-panel/usage/package.json index b7dcf2a4e1..65e75e3e8e 100644 --- a/samples/layouts/expansion-panel/usage/package.json +++ b/samples/layouts/expansion-panel/usage/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/icon/sizing/package.json b/samples/layouts/icon/sizing/package.json index 1b949ded98..e9599f0ca0 100644 --- a/samples/layouts/icon/sizing/package.json +++ b/samples/layouts/icon/sizing/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/icon/styling/package.json b/samples/layouts/icon/styling/package.json index b8ef4c6113..6b44e23388 100644 --- a/samples/layouts/icon/styling/package.json +++ b/samples/layouts/icon/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/stepper/animations/package.json b/samples/layouts/stepper/animations/package.json index 92d502d62b..e0f6bdf55c 100644 --- a/samples/layouts/stepper/animations/package.json +++ b/samples/layouts/stepper/animations/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/stepper/linear/package.json b/samples/layouts/stepper/linear/package.json index 92d502d62b..e0f6bdf55c 100644 --- a/samples/layouts/stepper/linear/package.json +++ b/samples/layouts/stepper/linear/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/stepper/orientation/package.json b/samples/layouts/stepper/orientation/package.json index 92d502d62b..e0f6bdf55c 100644 --- a/samples/layouts/stepper/orientation/package.json +++ b/samples/layouts/stepper/orientation/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/stepper/steptypes/package.json b/samples/layouts/stepper/steptypes/package.json index 92d502d62b..e0f6bdf55c 100644 --- a/samples/layouts/stepper/steptypes/package.json +++ b/samples/layouts/stepper/steptypes/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/stepper/styling/package.json b/samples/layouts/stepper/styling/package.json index c4c8a400ce..4b0c506cd0 100644 --- a/samples/layouts/stepper/styling/package.json +++ b/samples/layouts/stepper/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/tabs/alignment/package.json b/samples/layouts/tabs/alignment/package.json index 92d502d62b..e0f6bdf55c 100644 --- a/samples/layouts/tabs/alignment/package.json +++ b/samples/layouts/tabs/alignment/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/tabs/overview/package.json b/samples/layouts/tabs/overview/package.json index 92d502d62b..e0f6bdf55c 100644 --- a/samples/layouts/tabs/overview/package.json +++ b/samples/layouts/tabs/overview/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/tabs/prefix-suffix/package.json b/samples/layouts/tabs/prefix-suffix/package.json index 92d502d62b..e0f6bdf55c 100644 --- a/samples/layouts/tabs/prefix-suffix/package.json +++ b/samples/layouts/tabs/prefix-suffix/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/tabs/scrolling/package.json b/samples/layouts/tabs/scrolling/package.json index 92d502d62b..e0f6bdf55c 100644 --- a/samples/layouts/tabs/scrolling/package.json +++ b/samples/layouts/tabs/scrolling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/tabs/styling/package.json b/samples/layouts/tabs/styling/package.json index 92d502d62b..e0f6bdf55c 100644 --- a/samples/layouts/tabs/styling/package.json +++ b/samples/layouts/tabs/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/tile-manager/actions/package.json b/samples/layouts/tile-manager/actions/package.json index 92d502d62b..e0f6bdf55c 100644 --- a/samples/layouts/tile-manager/actions/package.json +++ b/samples/layouts/tile-manager/actions/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/tile-manager/columngap/package.json b/samples/layouts/tile-manager/columngap/package.json index 92d502d62b..e0f6bdf55c 100644 --- a/samples/layouts/tile-manager/columngap/package.json +++ b/samples/layouts/tile-manager/columngap/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/tile-manager/dragndrop/package.json b/samples/layouts/tile-manager/dragndrop/package.json index 92d502d62b..e0f6bdf55c 100644 --- a/samples/layouts/tile-manager/dragndrop/package.json +++ b/samples/layouts/tile-manager/dragndrop/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/tile-manager/layout/package.json b/samples/layouts/tile-manager/layout/package.json index 92d502d62b..e0f6bdf55c 100644 --- a/samples/layouts/tile-manager/layout/package.json +++ b/samples/layouts/tile-manager/layout/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/tile-manager/overview/package.json b/samples/layouts/tile-manager/overview/package.json index 92d502d62b..e0f6bdf55c 100644 --- a/samples/layouts/tile-manager/overview/package.json +++ b/samples/layouts/tile-manager/overview/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/tile-manager/resize/package.json b/samples/layouts/tile-manager/resize/package.json index 92d502d62b..e0f6bdf55c 100644 --- a/samples/layouts/tile-manager/resize/package.json +++ b/samples/layouts/tile-manager/resize/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/layouts/tile-manager/styling/package.json b/samples/layouts/tile-manager/styling/package.json index 92d502d62b..e0f6bdf55c 100644 --- a/samples/layouts/tile-manager/styling/package.json +++ b/samples/layouts/tile-manager/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/maps/geo-map/display-all-imagery/package.json b/samples/maps/geo-map/display-all-imagery/package.json index 0966e4c075..c3db5812c1 100644 --- a/samples/maps/geo-map/display-all-imagery/package.json +++ b/samples/maps/geo-map/display-all-imagery/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-maps": "19.3.2", diff --git a/samples/maps/geo-map/display-azure-imagery/package.json b/samples/maps/geo-map/display-azure-imagery/package.json index 52eacd4a94..d6c37f0b63 100644 --- a/samples/maps/geo-map/display-azure-imagery/package.json +++ b/samples/maps/geo-map/display-azure-imagery/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-maps": "19.3.2", diff --git a/samples/maps/geo-map/display-bing-imagery/package.json b/samples/maps/geo-map/display-bing-imagery/package.json index d93202eb52..df8209d258 100644 --- a/samples/maps/geo-map/display-bing-imagery/package.json +++ b/samples/maps/geo-map/display-bing-imagery/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-maps": "19.3.2", diff --git a/samples/menus/nav-bar/overview/package.json b/samples/menus/nav-bar/overview/package.json index 9d979a8b51..2f98f2b06f 100644 --- a/samples/menus/nav-bar/overview/package.json +++ b/samples/menus/nav-bar/overview/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/menus/nav-bar/styling/package.json b/samples/menus/nav-bar/styling/package.json index b608e96f8a..9e84d919ce 100644 --- a/samples/menus/nav-bar/styling/package.json +++ b/samples/menus/nav-bar/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/menus/nav-drawer/add-drawer-items/package.json b/samples/menus/nav-drawer/add-drawer-items/package.json index 8b6525319a..6cb8126115 100644 --- a/samples/menus/nav-drawer/add-drawer-items/package.json +++ b/samples/menus/nav-drawer/add-drawer-items/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/menus/nav-drawer/add-mini/package.json b/samples/menus/nav-drawer/add-mini/package.json index 8f53b9c2f4..a26957b18e 100644 --- a/samples/menus/nav-drawer/add-mini/package.json +++ b/samples/menus/nav-drawer/add-mini/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/menus/nav-drawer/add-positions-navbar/package.json b/samples/menus/nav-drawer/add-positions-navbar/package.json index 282112f7f4..ceb53b6706 100644 --- a/samples/menus/nav-drawer/add-positions-navbar/package.json +++ b/samples/menus/nav-drawer/add-positions-navbar/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/menus/nav-drawer/styling/package.json b/samples/menus/nav-drawer/styling/package.json index 7b935084ff..8908e97746 100644 --- a/samples/menus/nav-drawer/styling/package.json +++ b/samples/menus/nav-drawer/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/notifications/banner/banner-advanced-sample/package.json b/samples/notifications/banner/banner-advanced-sample/package.json index a9c91bbeb6..26094a04d5 100644 --- a/samples/notifications/banner/banner-advanced-sample/package.json +++ b/samples/notifications/banner/banner-advanced-sample/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/notifications/banner/banner-sample-1/package.json b/samples/notifications/banner/banner-sample-1/package.json index 70dc47df60..e6dd572d23 100644 --- a/samples/notifications/banner/banner-sample-1/package.json +++ b/samples/notifications/banner/banner-sample-1/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/notifications/banner/banner-sample-2/package.json b/samples/notifications/banner/banner-sample-2/package.json index 72a5a8a37b..9d76c419b6 100644 --- a/samples/notifications/banner/banner-sample-2/package.json +++ b/samples/notifications/banner/banner-sample-2/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/notifications/banner/banner-styling/package.json b/samples/notifications/banner/banner-styling/package.json index 1e43150462..de53da01aa 100644 --- a/samples/notifications/banner/banner-styling/package.json +++ b/samples/notifications/banner/banner-styling/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/notifications/dialog/closing-variations/package.json b/samples/notifications/dialog/closing-variations/package.json index 4fccbe1063..e25b144c00 100644 --- a/samples/notifications/dialog/closing-variations/package.json +++ b/samples/notifications/dialog/closing-variations/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/notifications/dialog/form/package.json b/samples/notifications/dialog/form/package.json index 18a1d0aca7..daf464b05d 100644 --- a/samples/notifications/dialog/form/package.json +++ b/samples/notifications/dialog/form/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/notifications/dialog/overview/package.json b/samples/notifications/dialog/overview/package.json index 8e98bdd2ca..a176bcd666 100644 --- a/samples/notifications/dialog/overview/package.json +++ b/samples/notifications/dialog/overview/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/notifications/dialog/styling/package.json b/samples/notifications/dialog/styling/package.json index 36d6652b06..9ac8e9100e 100644 --- a/samples/notifications/dialog/styling/package.json +++ b/samples/notifications/dialog/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/notifications/snackbar/action-text/package.json b/samples/notifications/snackbar/action-text/package.json index 206dea73a9..0e54593895 100644 --- a/samples/notifications/snackbar/action-text/package.json +++ b/samples/notifications/snackbar/action-text/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/notifications/snackbar/display-time/package.json b/samples/notifications/snackbar/display-time/package.json index d1aa94009f..1e84920e74 100644 --- a/samples/notifications/snackbar/display-time/package.json +++ b/samples/notifications/snackbar/display-time/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/notifications/snackbar/overview/package.json b/samples/notifications/snackbar/overview/package.json index dbe98fd111..7ecdf41a70 100644 --- a/samples/notifications/snackbar/overview/package.json +++ b/samples/notifications/snackbar/overview/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/notifications/snackbar/styling/package.json b/samples/notifications/snackbar/styling/package.json index 55ac5d78a3..9cbf9b4826 100644 --- a/samples/notifications/snackbar/styling/package.json +++ b/samples/notifications/snackbar/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/notifications/toast/overview/package.json b/samples/notifications/toast/overview/package.json index 8c515bc2e5..9ec8383b3d 100644 --- a/samples/notifications/toast/overview/package.json +++ b/samples/notifications/toast/overview/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/notifications/toast/properties/package.json b/samples/notifications/toast/properties/package.json index b9b27242fd..9397836a0e 100644 --- a/samples/notifications/toast/properties/package.json +++ b/samples/notifications/toast/properties/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/notifications/toast/styling/package.json b/samples/notifications/toast/styling/package.json index 72e7a02f57..d1a3dc196d 100644 --- a/samples/notifications/toast/styling/package.json +++ b/samples/notifications/toast/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/scheduling/calendar/disabled-dates/package.json b/samples/scheduling/calendar/disabled-dates/package.json index 078c349c02..8386107476 100644 --- a/samples/scheduling/calendar/disabled-dates/package.json +++ b/samples/scheduling/calendar/disabled-dates/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/scheduling/calendar/formatting/package.json b/samples/scheduling/calendar/formatting/package.json index a9b7f9b090..5c21e664fb 100644 --- a/samples/scheduling/calendar/formatting/package.json +++ b/samples/scheduling/calendar/formatting/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/scheduling/calendar/header/package.json b/samples/scheduling/calendar/header/package.json index 1043144768..96dee83201 100644 --- a/samples/scheduling/calendar/header/package.json +++ b/samples/scheduling/calendar/header/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/scheduling/calendar/multiple-months/package.json b/samples/scheduling/calendar/multiple-months/package.json index aa002a73c6..85fe96555a 100644 --- a/samples/scheduling/calendar/multiple-months/package.json +++ b/samples/scheduling/calendar/multiple-months/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/scheduling/calendar/multiple-selection/package.json b/samples/scheduling/calendar/multiple-selection/package.json index 819301996d..9987a02ae6 100644 --- a/samples/scheduling/calendar/multiple-selection/package.json +++ b/samples/scheduling/calendar/multiple-selection/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/scheduling/calendar/overview/package.json b/samples/scheduling/calendar/overview/package.json index 40ef693eb9..45f2816d86 100644 --- a/samples/scheduling/calendar/overview/package.json +++ b/samples/scheduling/calendar/overview/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/scheduling/calendar/range-selection/package.json b/samples/scheduling/calendar/range-selection/package.json index eb79f0983f..755d99176e 100644 --- a/samples/scheduling/calendar/range-selection/package.json +++ b/samples/scheduling/calendar/range-selection/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/scheduling/calendar/size/package.json b/samples/scheduling/calendar/size/package.json index 9cb3af0a44..3f873a0948 100644 --- a/samples/scheduling/calendar/size/package.json +++ b/samples/scheduling/calendar/size/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/scheduling/calendar/special-dates/package.json b/samples/scheduling/calendar/special-dates/package.json index ccc7846365..f271747f9b 100644 --- a/samples/scheduling/calendar/special-dates/package.json +++ b/samples/scheduling/calendar/special-dates/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/scheduling/calendar/styling/package.json b/samples/scheduling/calendar/styling/package.json index e362e923f3..b563a56cfa 100644 --- a/samples/scheduling/calendar/styling/package.json +++ b/samples/scheduling/calendar/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/scheduling/calendar/week-numbers/package.json b/samples/scheduling/calendar/week-numbers/package.json index 5c16852dd2..9e16b59c2c 100644 --- a/samples/scheduling/calendar/week-numbers/package.json +++ b/samples/scheduling/calendar/week-numbers/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/scheduling/date-picker/dialog-mode/package.json b/samples/scheduling/date-picker/dialog-mode/package.json index 472d3b11ce..3b78ecccd3 100644 --- a/samples/scheduling/date-picker/dialog-mode/package.json +++ b/samples/scheduling/date-picker/dialog-mode/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/scheduling/date-picker/form/package.json b/samples/scheduling/date-picker/form/package.json index 472d3b11ce..3b78ecccd3 100644 --- a/samples/scheduling/date-picker/form/package.json +++ b/samples/scheduling/date-picker/form/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/scheduling/date-picker/format/package.json b/samples/scheduling/date-picker/format/package.json index 472d3b11ce..3b78ecccd3 100644 --- a/samples/scheduling/date-picker/format/package.json +++ b/samples/scheduling/date-picker/format/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/scheduling/date-picker/overview/package.json b/samples/scheduling/date-picker/overview/package.json index 472d3b11ce..3b78ecccd3 100644 --- a/samples/scheduling/date-picker/overview/package.json +++ b/samples/scheduling/date-picker/overview/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/scheduling/date-picker/styling/package.json b/samples/scheduling/date-picker/styling/package.json index 472d3b11ce..3b78ecccd3 100644 --- a/samples/scheduling/date-picker/styling/package.json +++ b/samples/scheduling/date-picker/styling/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/scheduling/date-range-picker/custom-ranges/package.json b/samples/scheduling/date-range-picker/custom-ranges/package.json index 857893dc09..6acab50ba6 100644 --- a/samples/scheduling/date-range-picker/custom-ranges/package.json +++ b/samples/scheduling/date-range-picker/custom-ranges/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/scheduling/date-range-picker/form/package.json b/samples/scheduling/date-range-picker/form/package.json index 0ed17e3ec9..db6e7fbb41 100644 --- a/samples/scheduling/date-range-picker/form/package.json +++ b/samples/scheduling/date-range-picker/form/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/scheduling/date-range-picker/overview/package.json b/samples/scheduling/date-range-picker/overview/package.json index 9871526082..ed57734693 100644 --- a/samples/scheduling/date-range-picker/overview/package.json +++ b/samples/scheduling/date-range-picker/overview/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/scheduling/date-range-picker/slots/package.json b/samples/scheduling/date-range-picker/slots/package.json index 8a65f1a7e5..2a8db118b2 100644 --- a/samples/scheduling/date-range-picker/slots/package.json +++ b/samples/scheduling/date-range-picker/slots/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", diff --git a/samples/scheduling/date-range-picker/styling/package.json b/samples/scheduling/date-range-picker/styling/package.json index eab518a9f1..516f98fe95 100644 --- a/samples/scheduling/date-range-picker/styling/package.json +++ b/samples/scheduling/date-range-picker/styling/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.4.0", + "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", From a852e4078040865c9f9fd8fccf5d53927dc2cb6a Mon Sep 17 00:00:00 2001 From: Deyan Kamburov Date: Mon, 23 Feb 2026 17:27:07 +0200 Subject: [PATCH 37/43] chore: resolve version mismatches (#1038) * chore: resolve version mismatches * chore: execute gulp command --- browser/package-lock.json | 97 ++++--------------- browser/package.json | 4 +- browser/tasks/gulp-samples.js | 2 +- .../annotations-all/package.json | 2 +- .../annotations-callouts/package.json | 2 +- .../annotations-crosshairs/package.json | 2 +- .../annotations-custom/package.json | 2 +- .../annotations-final-value/package.json | 2 +- .../annotations-highlighting/package.json | 2 +- .../area-chart-multiple-sources/package.json | 2 +- .../area-chart-single-source/package.json | 2 +- .../area-chart-styling/package.json | 2 +- .../category-chart/axis-gap/package.json | 2 +- .../axis-gridlines/package.json | 2 +- .../category-chart/axis-inverted/package.json | 2 +- .../category-chart/axis-labels/package.json | 2 +- .../axis-locations/package.json | 2 +- .../category-chart/axis-options/package.json | 2 +- .../category-chart/axis-overlap/package.json | 2 +- .../category-chart/axis-range/package.json | 2 +- .../axis-tickmarks/package.json | 2 +- .../category-chart/axis-titles/package.json | 2 +- .../chart-highlight-filter/package.json | 2 +- .../package.json | 2 +- .../column-chart-single-source/package.json | 2 +- .../column-chart-styling/package.json | 2 +- .../column-chart-with-tooltips/package.json | 2 +- .../custom-selection/package.json | 2 +- .../data-aggregations/package.json | 2 +- .../category-chart/data-filter/package.json | 2 +- .../package.json | 2 +- .../category-chart/data-legend/package.json | 2 +- .../package.json | 2 +- .../data-tooltip-positioning/package.json | 2 +- .../category-chart/data-tooltip/package.json | 2 +- .../format-specifiers/package.json | 2 +- .../highlighting-behavior/package.json | 2 +- .../highlighting-mode/package.json | 2 +- .../legend-highlighting/package.json | 2 +- .../line-chart-multiple-sources/package.json | 2 +- .../line-chart-single-source/package.json | 2 +- .../line-chart-styling/package.json | 2 +- .../marker-options/package.json | 2 +- .../category-chart/overview/package.json | 2 +- .../point-chart-multiple-sources/package.json | 2 +- .../point-chart-single-source/package.json | 2 +- .../point-chart-styling/package.json | 2 +- .../selection-matcher/package.json | 2 +- .../selection-modes/package.json | 2 +- .../selection-multiple-modes/package.json | 2 +- .../spline-area-multiple-sources/package.json | 2 +- .../spline-area-single-source/package.json | 2 +- .../spline-area-styling/package.json | 2 +- .../spline-multiple-sources/package.json | 2 +- .../spline-single-source/package.json | 2 +- .../spline-styling/package.json | 2 +- .../step-area-multiple-sources/package.json | 2 +- .../step-area-single-source/package.json | 2 +- .../step-area-styling/package.json | 2 +- .../step-line-multiple-sources/package.json | 2 +- .../step-line-single-source/package.json | 2 +- .../step-line-styling/package.json | 2 +- .../category-chart/value-lines/package.json | 2 +- .../chart-dashboard/package.json | 2 +- .../financial-dashboard/package.json | 2 +- .../gauge-dashboard/package.json | 2 +- .../local-data-source-dashboard/package.json | 2 +- .../dashboard-tile/map-dashboard/package.json | 2 +- .../dashboard-tile/pie-dashboard/package.json | 2 +- .../annotations-custom/package.json | 2 +- .../package.json | 2 +- .../axis-label-rotation/package.json | 2 +- .../data-chart/axis-min-max-gap/package.json | 2 +- .../bar-chart-multiple-sources/package.json | 2 +- .../bar-chart-overlapping/package.json | 2 +- .../bar-chart-single-source/package.json | 2 +- .../data-chart/bar-chart-styling/package.json | 2 +- .../callout-layer-styling/package.json | 2 +- .../package.json | 2 +- .../package.json | 2 +- .../chart-highlight-filter/package.json | 2 +- .../data-chart/dash-array-axes/package.json | 2 +- .../data-chart/dash-array-series/package.json | 2 +- .../dash-array-tickmarks/package.json | 2 +- .../dash-array-trendline/package.json | 2 +- .../data-annotation-band-layer/package.json | 2 +- .../data-annotation-line-layer/package.json | 2 +- .../package.json | 2 +- .../package.json | 2 +- .../data-annotation-rect-layer/package.json | 2 +- .../data-annotation-slice-layer/package.json | 2 +- .../data-annotation-strip-layer/package.json | 2 +- .../package.json | 2 +- .../data-legend-grouping/package.json | 2 +- .../data-legend-styling/package.json | 2 +- .../data-chart/data-legend/package.json | 2 +- .../package.json | 2 +- .../data-tooltip-grouping/package.json | 2 +- .../data-tooltip-styling/package.json | 2 +- .../data-chart/data-tooltip/package.json | 2 +- .../financial-price-series/package.json | 2 +- .../data-chart/format-specifiers/package.json | 2 +- .../itemized-bar-chart/package.json | 2 +- .../itemized-column-chart/package.json | 2 +- .../itemized-stacked-bar-chart/package.json | 2 +- .../package.json | 2 +- .../polar-area-chart-styling/package.json | 2 +- .../data-chart/polar-area-chart/package.json | 2 +- .../data-chart/polar-line-chart/package.json | 2 +- .../polar-scatter-chart/package.json | 2 +- .../polar-spline-area-chart/package.json | 2 +- .../polar-spline-chart/package.json | 2 +- .../radial-area-chart-styling/package.json | 2 +- .../data-chart/radial-area-chart/package.json | 2 +- .../package.json | 2 +- .../radial-column-chart/package.json | 2 +- .../data-chart/radial-label-mode/package.json | 2 +- .../data-chart/radial-line-chart/package.json | 2 +- .../data-chart/radial-pie-chart/package.json | 2 +- .../package.json | 2 +- .../package.json | 2 +- .../data-chart/range-area-chart/package.json | 2 +- .../range-column-chart/package.json | 2 +- .../package.json | 2 +- .../package.json | 2 +- .../package.json | 2 +- .../scatter-bubble-chart-styling/package.json | 2 +- .../scatter-line-chart/package.json | 2 +- .../scatter-line-threshold/package.json | 2 +- .../scatter-point-chart/package.json | 2 +- .../scatter-spline-chart/package.json | 2 +- .../data-chart/selection-matcher/package.json | 2 +- .../stacked-100-area-chart/package.json | 2 +- .../stacked-100-bar-chart/package.json | 2 +- .../stacked-100-column-chart/package.json | 2 +- .../stacked-100-line-chart/package.json | 2 +- .../package.json | 2 +- .../stacked-100-spline-chart/package.json | 2 +- .../stacked-area-chart/package.json | 2 +- .../data-chart/stacked-bar-chart/package.json | 2 +- .../stacked-column-chart/package.json | 2 +- .../stacked-line-chart/package.json | 2 +- .../stacked-spline-area-chart/package.json | 2 +- .../stacked-spline-chart/package.json | 2 +- .../data-chart/transition-event/package.json | 2 +- .../data-chart/trendline-layer/package.json | 2 +- .../user-annotation-layer/package.json | 2 +- .../data-chart/waterfall-chart/package.json | 2 +- .../animation-replay/package.json | 2 +- .../data-pie-chart/animation/package.json | 2 +- .../highlight-filter/package.json | 2 +- .../data-pie-chart/highlighting/package.json | 2 +- .../charts/data-pie-chart/legend/package.json | 2 +- .../charts/data-pie-chart/others/package.json | 2 +- .../data-pie-chart/overview/package.json | 2 +- .../data-pie-chart/selection/package.json | 2 +- .../charts/doughnut-chart/legend/package.json | 2 +- .../doughnut-chart/overview/package.json | 2 +- .../charts/doughnut-chart/rings/package.json | 2 +- .../package.json | 2 +- .../data-legend-styling-props/package.json | 2 +- .../financial-chart/data-legend/package.json | 2 +- .../package.json | 2 +- .../data-tooltip-styling-props/package.json | 2 +- .../financial-chart/data-tooltip/package.json | 2 +- .../format-specifiers/package.json | 2 +- .../financial-chart/scrollbars/package.json | 2 +- samples/charts/pie-chart/legend/package.json | 2 +- samples/charts/pie-chart/others/package.json | 2 +- .../charts/pie-chart/overview/package.json | 2 +- samples/charts/pie-chart/styling/package.json | 2 +- .../sparkline/display-area/package.json | 2 +- .../sparkline/display-column/package.json | 2 +- .../sparkline/display-lines/package.json | 2 +- .../sparkline/display-winloss/package.json | 2 +- samples/charts/sparkline/markers/package.json | 2 +- .../sparkline/normal-range/package.json | 2 +- .../charts/sparkline/trendlines/package.json | 2 +- .../sparkline/unknown-values/package.json | 2 +- .../package.json | 2 +- .../actions-built-in-data-chart/package.json | 2 +- .../toolbar/color-editor-support/package.json | 2 +- .../charts/toolbar/custom-tool/package.json | 2 +- .../package.json | 2 +- .../package.json | 2 +- samples/charts/toolbar/theming/package.json | 2 +- .../highlighting-percent-based/package.json | 2 +- .../charts/tree-map/highlighting/package.json | 2 +- samples/charts/tree-map/layout/package.json | 2 +- samples/charts/tree-map/overview/package.json | 2 +- samples/charts/tree-map/styling/package.json | 2 +- .../data-grid/accessibility/package.json | 2 +- .../binding-data-service/package.json | 2 +- .../data-grid/binding-live-data/package.json | 2 +- .../data-grid/binding-local-data/package.json | 2 +- .../binding-remote-data/package.json | 2 +- .../data-grid/cell-activation/package.json | 2 +- .../grids/data-grid/cell-editing/package.json | 2 +- .../grids/data-grid/cell-merging/package.json | 2 +- .../data-grid/cell-selection/package.json | 2 +- .../data-grid/column-animation/package.json | 2 +- .../column-chooser-picker/package.json | 2 +- .../column-chooser-toolbar/package.json | 2 +- .../column-filter-expressions/package.json | 2 +- .../column-filter-operands/package.json | 2 +- .../data-grid/column-filtering/package.json | 2 +- .../data-grid/column-moving/package.json | 2 +- .../data-grid/column-options/package.json | 2 +- .../column-pinning-picker/package.json | 2 +- .../column-pinning-toolbar/package.json | 2 +- .../data-grid/column-resizing/package.json | 2 +- .../data-grid/column-scrolling/package.json | 2 +- .../data-grid/column-sorting/package.json | 2 +- .../data-grid/column-summaries/package.json | 2 +- .../grids/data-grid/column-types/package.json | 2 +- .../data-grid/load-save-layout/package.json | 2 +- .../grids/data-grid/localization/package.json | 2 +- samples/grids/data-grid/overview/package.json | 2 +- samples/grids/data-grid/pager/package.json | 2 +- .../grids/data-grid/performance/package.json | 2 +- .../row-group-descriptions/package.json | 2 +- .../grids/data-grid/row-grouping/package.json | 2 +- .../data-grid/row-highlighting/package.json | 2 +- .../grids/data-grid/row-paging/package.json | 2 +- .../grids/data-grid/row-pinning/package.json | 2 +- .../data-grid/row-selection/package.json | 2 +- .../type-comparison-table/package.json | 2 +- .../data-grid/type-heatmap-table/package.json | 2 +- .../type-marketing-table/package.json | 2 +- .../data-grid/type-matrix-table/package.json | 2 +- .../type-periodic-table/package.json | 2 +- .../column-config-basic/package.json | 2 +- .../column-config-dynamic/package.json | 2 +- .../column-config-headers/package.json | 2 +- .../grids/grid-lite/data-binding/package.json | 2 +- .../filtering-config-events/package.json | 2 +- .../filtering-config-remote/package.json | 2 +- .../grid-lite/filtering-config/package.json | 2 +- samples/grids/grid-lite/overview/package.json | 2 +- .../grid-lite/sort-config-events/package.json | 2 +- .../grid-lite/sort-config-grid/package.json | 2 +- .../sort-config-pipeline/package.json | 2 +- .../grid-lite/sort-config-sample/package.json | 2 +- .../styling-custom-theme/package.json | 2 +- samples/grids/grid/action-strip/package.json | 2 +- .../advanced-filtering-options/package.json | 2 +- .../advanced-filtering-style/package.json | 2 +- .../grid/binding-composite-data/package.json | 2 +- .../grids/grid/binding-crud-data/package.json | 2 +- .../grid/binding-nested-data-1/package.json | 2 +- .../grids/grid/cascading-combo/package.json | 2 +- .../grid/cell-editing-sample/package.json | 2 +- .../grid/cell-editing-styling/package.json | 2 +- .../cell-merge-custom-sample/package.json | 2 +- samples/grids/grid/cell-merge/package.json | 2 +- .../grid/cell-selection-mode/package.json | 2 +- .../grid/cell-selection-style/package.json | 2 +- .../grid/change-icons-custom/package.json | 2 +- .../grid/clipboard-operations/package.json | 2 +- .../grid/column-auto-sizing/package.json | 2 +- .../column-collapsible-groups/package.json | 2 +- .../grids/grid/column-data-types/package.json | 2 +- .../grid/column-hiding-options/package.json | 2 +- .../column-hiding-toolbar-style/package.json | 2 +- .../grid/column-hiding-toolbar/package.json | 2 +- .../grid/column-moving-options/package.json | 2 +- .../grid/column-moving-styles/package.json | 2 +- .../column-pinning-both-sides/package.json | 2 +- .../grid/column-pinning-options/package.json | 2 +- .../column-pinning-right-side/package.json | 2 +- .../grid/column-pinning-styles/package.json | 2 +- .../grids/grid/column-pinning/package.json | 2 +- .../grid/column-resize-styling/package.json | 2 +- .../grids/grid/column-resizing/package.json | 2 +- .../grid/column-selection-group/package.json | 2 +- .../grid/column-selection-mode/package.json | 2 +- .../grid/column-selection-styles/package.json | 2 +- .../column-sorting-indicators/package.json | 2 +- .../grid/column-sorting-options/package.json | 2 +- .../grid/column-sorting-style/package.json | 2 +- .../conditional-cell-style-1/package.json | 2 +- .../conditional-cell-style-2/package.json | 2 +- .../conditional-row-selectors/package.json | 2 +- .../grid/custom-context-menu/package.json | 2 +- .../data-batch-editing-actions/package.json | 2 +- .../package.json | 2 +- .../grids/grid/data-searching/package.json | 2 +- .../grid/data-summary-formatter/package.json | 2 +- .../grid/data-summary-options/package.json | 2 +- .../grid/data-summary-template/package.json | 2 +- .../grid/data-validation-style/package.json | 2 +- .../package.json | 2 +- .../package.json | 2 +- .../grid/data-validator-service/package.json | 2 +- .../grids/grid/editing-columns/package.json | 2 +- .../grids/grid/editing-events/package.json | 2 +- .../grid/editing-excel-style/package.json | 2 +- .../grids/grid/editing-lifecycle/package.json | 2 +- .../grids/grid/excel-exporting/package.json | 2 +- .../package.json | 2 +- .../package.json | 2 +- .../package.json | 2 +- .../excel-style-filtering-style/package.json | 2 +- .../external-advanced-filtering/package.json | 2 +- .../grids/grid/filtering-options/package.json | 2 +- .../grid/filtering-strategy/package.json | 2 +- .../grids/grid/filtering-style/package.json | 2 +- samples/grids/grid/finjs/package.json | 2 +- .../grids/grid/groupby-custom/package.json | 2 +- .../grid/groupby-expressions/package.json | 2 +- .../grids/grid/groupby-paging/package.json | 2 +- .../grids/grid/groupby-styling/package.json | 2 +- .../grid/groupby-summary-options/package.json | 2 +- .../grid/groupby-summary-styling/package.json | 2 +- .../grids/grid/infinite-scroll/package.json | 2 +- .../keyboard-custom-navigation/package.json | 2 +- .../grid/keyboard-mrl-navigation/package.json | 2 +- .../grid/layout-display-density/package.json | 2 +- samples/grids/grid/master-detail/package.json | 2 +- .../multi-cell-selection-mode/package.json | 2 +- .../multi-column-headers-export/package.json | 2 +- .../package.json | 2 +- .../multi-column-headers-styling/package.json | 2 +- .../package.json | 2 +- .../multi-row-layout-options/package.json | 2 +- .../grid/multi-row-layout-style/package.json | 2 +- samples/grids/grid/overview/package.json | 2 +- samples/grids/grid/paste/package.json | 2 +- .../grid/remote-paging-data/package.json | 2 +- .../grid/remote-paging-grid/package.json | 2 +- samples/grids/grid/row-adding/package.json | 2 +- samples/grids/grid/row-classes/package.json | 2 +- samples/grids/grid/row-drag-base/package.json | 2 +- .../grid/row-editing-options/package.json | 2 +- .../grids/grid/row-editing-style/package.json | 2 +- .../grids/grid/row-paging-basic/package.json | 2 +- .../grid/row-paging-options/package.json | 2 +- .../grids/grid/row-pinning-drag/package.json | 2 +- .../row-pinning-extra-column/package.json | 2 +- .../grid/row-pinning-options/package.json | 2 +- .../grids/grid/row-pinning-style/package.json | 2 +- samples/grids/grid/row-reorder/package.json | 2 +- .../grid/row-selection-mode/package.json | 2 +- .../row-selection-template-excel/package.json | 2 +- .../package.json | 2 +- samples/grids/grid/row-styles/package.json | 2 +- .../grid/state-persistence-about/package.json | 2 +- .../grid/state-persistence-main/package.json | 2 +- .../grid/styling-custom-CSS/package.json | 2 +- .../grids/grid/toolbar-sample-1/package.json | 2 +- .../grids/grid/toolbar-sample-2/package.json | 2 +- .../grids/grid/toolbar-sample-3/package.json | 2 +- samples/grids/grid/toolbar-style/package.json | 2 +- .../action-strip/package.json | 2 +- .../advanced-filtering-options/package.json | 2 +- .../advanced-filtering-style/package.json | 2 +- .../cell-editing-sample/package.json | 2 +- .../cell-editing-styling/package.json | 2 +- .../cell-merge-custom-sample/package.json | 2 +- .../hierarchical-grid/cell-merge/package.json | 2 +- .../cell-selection-mode/package.json | 2 +- .../cell-selection-overview/package.json | 2 +- .../cell-selection-style/package.json | 2 +- .../column-auto-sizing/package.json | 2 +- .../column-collapsible-groups/package.json | 2 +- .../column-hiding-toolbar-style/package.json | 2 +- .../column-hiding-toolbar/package.json | 2 +- .../column-moving-options/package.json | 2 +- .../column-moving-styles/package.json | 2 +- .../column-pinning-both-sides/package.json | 2 +- .../column-pinning-options/package.json | 2 +- .../column-pinning-right-side/package.json | 2 +- .../column-pinning-styles/package.json | 2 +- .../column-pinning/package.json | 2 +- .../column-resize-styling/package.json | 2 +- .../column-resizing/package.json | 2 +- .../column-selection-group/package.json | 2 +- .../column-selection-mode/package.json | 2 +- .../column-selection-styles/package.json | 2 +- .../column-sorting-indicators/package.json | 2 +- .../column-sorting-options/package.json | 2 +- .../column-sorting-style/package.json | 2 +- .../conditional-cell-style-1/package.json | 2 +- .../conditional-cell-style-2/package.json | 2 +- .../conditional-row-selectors/package.json | 2 +- .../custom-filtering/package.json | 2 +- .../data-exporting-indicator/package.json | 2 +- .../package.json | 2 +- .../data-summary-formatter/package.json | 2 +- .../data-summary-options-styling/package.json | 2 +- .../data-summary-options/package.json | 2 +- .../data-summary-template/package.json | 2 +- .../editing-columns/package.json | 2 +- .../editing-events/package.json | 2 +- .../editing-lifecycle/package.json | 2 +- .../excel-exporting/package.json | 2 +- .../package.json | 2 +- .../package.json | 2 +- .../package.json | 2 +- .../excel-style-filtering-style/package.json | 2 +- .../filtering-options/package.json | 2 +- .../filtering-style/package.json | 2 +- .../hierarchical-grid-options/package.json | 2 +- .../package.json | 2 +- .../hierarchical-grid-styling/package.json | 2 +- .../layout-display-density/package.json | 2 +- .../multi-column-headers-export/package.json | 2 +- .../package.json | 2 +- .../multi-column-headers-styling/package.json | 2 +- .../package.json | 2 +- .../hierarchical-grid/overview/package.json | 2 +- .../remote-paging-hgrid/package.json | 2 +- .../hierarchical-grid/row-adding/package.json | 2 +- .../row-classes/package.json | 2 +- .../row-drag-base/package.json | 2 +- .../row-editing-options/package.json | 2 +- .../row-editing-style/package.json | 2 +- .../row-pinning-extra-column/package.json | 2 +- .../row-pinning-options/package.json | 2 +- .../row-pinning-style/package.json | 2 +- .../row-reorder/package.json | 2 +- .../row-selection-mode/package.json | 2 +- .../package.json | 2 +- .../hierarchical-grid/row-styles/package.json | 2 +- .../state-persistence-about/package.json | 2 +- .../state-persistence-main/package.json | 2 +- .../toolbar-sample-3/package.json | 2 +- .../toolbar-sample-4/package.json | 2 +- .../toolbar-style/package.json | 2 +- .../aggregate-max-sales/package.json | 2 +- .../aggregate-units-sold/package.json | 2 +- .../pivot-grid/data-selector/package.json | 2 +- .../grids/pivot-grid/features/package.json | 2 +- .../state-persistence-about/package.json | 2 +- .../state-persistence-main/package.json | 2 +- .../grids/tree-grid/action-strip/package.json | 2 +- .../advanced-filtering-options/package.json | 2 +- .../advanced-filtering-style/package.json | 2 +- .../cell-editing-sample/package.json | 2 +- .../cell-editing-styling/package.json | 2 +- .../cell-merge-custom-sample/package.json | 2 +- .../grids/tree-grid/cell-merge/package.json | 2 +- .../cell-selection-mode/package.json | 2 +- .../cell-selection-style/package.json | 2 +- .../clipboard-operations/package.json | 2 +- .../tree-grid/column-auto-sizing/package.json | 2 +- .../column-collapsible-groups/package.json | 2 +- .../tree-grid/column-data-types/package.json | 2 +- .../column-hiding-toolbar-style/package.json | 2 +- .../column-hiding-toolbar/package.json | 2 +- .../column-moving-options/package.json | 2 +- .../column-moving-styles/package.json | 2 +- .../column-pinning-both-sides/package.json | 2 +- .../column-pinning-options/package.json | 2 +- .../column-pinning-right-side/package.json | 2 +- .../column-pinning-styles/package.json | 2 +- .../column-pinning-toolbar/package.json | 2 +- .../tree-grid/column-pinning/package.json | 2 +- .../column-resize-styling/package.json | 2 +- .../tree-grid/column-resizing/package.json | 2 +- .../column-selection-group/package.json | 2 +- .../column-selection-mode/package.json | 2 +- .../column-selection-style/package.json | 2 +- .../column-selection-styles/package.json | 2 +- .../column-sorting-indicators/package.json | 2 +- .../column-sorting-options/package.json | 2 +- .../column-sorting-style/package.json | 2 +- .../conditional-cell-style-1/package.json | 2 +- .../conditional-cell-style-2/package.json | 2 +- .../conditional-row-selectors/package.json | 2 +- .../data-exporting-indicator/package.json | 2 +- .../data-summary-children/package.json | 2 +- .../data-summary-formatter/package.json | 2 +- .../data-summary-options-styling/package.json | 2 +- .../data-summary-options/package.json | 2 +- .../data-summary-template/package.json | 2 +- .../tree-grid/editing-columns/package.json | 2 +- .../tree-grid/editing-events/package.json | 2 +- .../tree-grid/editing-lifecycle/package.json | 2 +- .../tree-grid/excel-exporting/package.json | 2 +- .../package.json | 2 +- .../package.json | 2 +- .../package.json | 2 +- .../excel-style-filtering-style/package.json | 2 +- .../tree-grid/filtering-options/package.json | 2 +- .../tree-grid/filtering-style/package.json | 2 +- .../keyboard-custom-navigation/package.json | 2 +- .../layout-display-density/package.json | 2 +- .../multi-cell-selection-mode/package.json | 2 +- .../multi-column-headers-export/package.json | 2 +- .../package.json | 2 +- .../multi-column-headers-styling/package.json | 2 +- .../package.json | 2 +- .../tree-grid/overview-styling/package.json | 2 +- samples/grids/tree-grid/overview/package.json | 2 +- .../grids/tree-grid/row-adding/package.json | 2 +- .../grids/tree-grid/row-classes/package.json | 2 +- .../tree-grid/row-drag-base/package.json | 2 +- .../row-editing-options/package.json | 2 +- .../tree-grid/row-editing-style/package.json | 2 +- .../tree-grid/row-paging-basic/package.json | 2 +- .../tree-grid/row-paging-options/package.json | 2 +- .../tree-grid/row-paging-style/package.json | 2 +- .../row-pinning-extra-column/package.json | 2 +- .../row-pinning-options/package.json | 2 +- .../tree-grid/row-pinning-style/package.json | 2 +- .../grids/tree-grid/row-reorder/package.json | 2 +- .../tree-grid/row-selection-mode/package.json | 2 +- .../row-selection-template-excel/package.json | 2 +- .../package.json | 2 +- .../grids/tree-grid/row-styles/package.json | 2 +- .../state-persistence-about/package.json | 2 +- .../state-persistence-main/package.json | 2 +- .../tree-grid/toolbar-sample-1/package.json | 2 +- .../tree-grid/toolbar-sample-2/package.json | 2 +- .../tree-grid/toolbar-sample-3/package.json | 2 +- .../tree-grid/toolbar-sample-4/package.json | 2 +- .../tree-grid/toolbar-style/package.json | 2 +- .../using-primary-foreign-keys/package.json | 2 +- samples/inputs/badge/outlined/package.json | 2 +- samples/inputs/badge/shape/package.json | 2 +- samples/inputs/badge/styling/package.json | 2 +- samples/inputs/badge/variants/package.json | 2 +- .../button-group/alignment/package.json | 2 +- .../inputs/button-group/overview/package.json | 2 +- .../button-group/selection/package.json | 2 +- samples/inputs/button-group/size/package.json | 2 +- .../inputs/button-group/styling/package.json | 2 +- samples/inputs/button/contained/package.json | 2 +- samples/inputs/button/download/package.json | 2 +- samples/inputs/button/fab/package.json | 2 +- samples/inputs/button/flat/package.json | 2 +- samples/inputs/button/outlined/package.json | 2 +- samples/inputs/button/overview/package.json | 2 +- samples/inputs/button/size/package.json | 2 +- samples/inputs/button/styling/package.json | 2 +- samples/inputs/checkbox/checking/package.json | 2 +- samples/inputs/checkbox/disabled/package.json | 2 +- .../checkbox/indeterminate/package.json | 2 +- samples/inputs/checkbox/label/package.json | 2 +- samples/inputs/checkbox/overview/package.json | 2 +- samples/inputs/checkbox/styling/package.json | 2 +- samples/inputs/chip/multiple/package.json | 2 +- samples/inputs/chip/overview/package.json | 2 +- samples/inputs/chip/size/package.json | 2 +- samples/inputs/chip/styling/package.json | 2 +- samples/inputs/chip/variants/package.json | 2 +- .../dynamic/package.json | 2 +- .../indeterminate/package.json | 2 +- .../simple/package.json | 2 +- .../styling/package.json | 2 +- .../inputs/color-editor/overview/package.json | 2 +- samples/inputs/combo/features/package.json | 2 +- samples/inputs/combo/overview/package.json | 2 +- samples/inputs/combo/selection/package.json | 2 +- samples/inputs/combo/simplified/package.json | 2 +- samples/inputs/combo/styling/package.json | 2 +- samples/inputs/combo/templates/package.json | 2 +- .../input-format-display-format/package.json | 2 +- .../min-max-value/package.json | 2 +- .../date-time-input/overview/package.json | 2 +- .../date-time-input/step-up-down/package.json | 2 +- .../date-time-input/styling/package.json | 2 +- samples/inputs/dropdown/group/package.json | 2 +- samples/inputs/dropdown/header/package.json | 2 +- samples/inputs/dropdown/item/package.json | 2 +- samples/inputs/dropdown/overview/package.json | 2 +- samples/inputs/dropdown/position/package.json | 2 +- samples/inputs/dropdown/styling/package.json | 2 +- samples/inputs/dropdown/target/package.json | 2 +- samples/inputs/icon-button/size/package.json | 2 +- .../inputs/icon-button/styling/package.json | 2 +- .../inputs/icon-button/variant/package.json | 2 +- samples/inputs/input/helper-text/package.json | 2 +- samples/inputs/input/overview/package.json | 2 +- .../inputs/input/prefix-suffix/package.json | 2 +- samples/inputs/input/size/package.json | 2 +- samples/inputs/input/styling/package.json | 2 +- .../dynamic/package.json | 2 +- .../simple/package.json | 2 +- .../striped/package.json | 2 +- .../styling/package.json | 2 +- .../types/package.json | 2 +- .../mask-input/applying-mask/package.json | 2 +- .../inputs/mask-input/overview/package.json | 2 +- .../mask-input/value-modes/package.json | 2 +- samples/inputs/radio/alignment/package.json | 2 +- samples/inputs/radio/disabled/package.json | 2 +- samples/inputs/radio/group/package.json | 2 +- samples/inputs/radio/invalid/package.json | 2 +- samples/inputs/radio/label/package.json | 2 +- samples/inputs/radio/styling/package.json | 2 +- samples/inputs/rating/basic/package.json | 2 +- samples/inputs/rating/custom/package.json | 2 +- samples/inputs/rating/empty/package.json | 2 +- .../rating/single-selection/package.json | 2 +- samples/inputs/rating/styling/package.json | 2 +- samples/inputs/ripple/button/package.json | 2 +- samples/inputs/ripple/color/package.json | 2 +- samples/inputs/select/group/package.json | 2 +- samples/inputs/select/header/package.json | 2 +- samples/inputs/select/item/package.json | 2 +- samples/inputs/select/overview/package.json | 2 +- samples/inputs/select/styling/package.json | 2 +- .../inputs/slider/constraints/package.json | 2 +- samples/inputs/slider/disabled/package.json | 2 +- samples/inputs/slider/discrete/package.json | 2 +- samples/inputs/slider/labels/package.json | 2 +- samples/inputs/slider/overview/package.json | 2 +- samples/inputs/slider/styling/package.json | 2 +- .../inputs/slider/tick-labels/package.json | 2 +- samples/inputs/slider/ticks/package.json | 2 +- .../inputs/slider/value-format/package.json | 2 +- samples/inputs/slider/value/package.json | 2 +- samples/inputs/switches/checking/package.json | 2 +- samples/inputs/switches/disabled/package.json | 2 +- samples/inputs/switches/label/package.json | 2 +- samples/inputs/switches/overview/package.json | 2 +- samples/inputs/switches/styling/package.json | 2 +- .../textarea/form-integration/package.json | 2 +- samples/inputs/textarea/overview/package.json | 2 +- samples/inputs/textarea/resize/package.json | 2 +- samples/inputs/textarea/slots/package.json | 2 +- samples/inputs/textarea/styling/package.json | 2 +- samples/inputs/tooltip/advanced/package.json | 2 +- samples/inputs/tooltip/overview/package.json | 2 +- samples/inputs/tooltip/placement/package.json | 2 +- samples/inputs/tooltip/rich/package.json | 2 +- samples/inputs/tooltip/styling/package.json | 2 +- samples/inputs/tooltip/triggers/package.json | 2 +- .../interactions/chat/features/package.json | 2 +- .../interactions/chat/overview/package.json | 2 +- .../interactions/chat/styling/package.json | 2 +- .../accordion/customization/package.json | 2 +- .../accordion/nested-scenario/package.json | 2 +- .../layouts/accordion/overview/package.json | 2 +- samples/layouts/avatar/icon/package.json | 2 +- samples/layouts/avatar/image/package.json | 2 +- samples/layouts/avatar/initials/package.json | 2 +- samples/layouts/avatar/shape/package.json | 2 +- samples/layouts/avatar/size/package.json | 2 +- samples/layouts/avatar/styling/package.json | 2 +- samples/layouts/card/horizontal/package.json | 2 +- samples/layouts/card/overview/package.json | 2 +- .../layouts/card/semi-horizontal/package.json | 2 +- samples/layouts/card/styling/package.json | 2 +- .../layouts/carousel/animations/package.json | 2 +- .../layouts/carousel/components/package.json | 2 +- .../layouts/carousel/overview/package.json | 2 +- .../layouts/carousel/thumbnail/package.json | 2 +- samples/layouts/divider/dashed/package.json | 2 +- samples/layouts/divider/middle/package.json | 2 +- samples/layouts/divider/overview/package.json | 2 +- samples/layouts/divider/select/package.json | 2 +- samples/layouts/divider/vertical/package.json | 2 +- .../component-customization/package.json | 2 +- .../properties-and-events/package.json | 2 +- .../expansion-panel/styling/package.json | 2 +- .../expansion-panel/usage/package.json | 2 +- samples/layouts/icon/sizing/package.json | 2 +- samples/layouts/icon/styling/package.json | 2 +- .../layouts/stepper/animations/package.json | 2 +- samples/layouts/stepper/linear/package.json | 2 +- .../layouts/stepper/orientation/package.json | 2 +- .../layouts/stepper/steptypes/package.json | 2 +- samples/layouts/stepper/styling/package.json | 2 +- samples/layouts/tabs/alignment/package.json | 2 +- samples/layouts/tabs/overview/package.json | 2 +- .../layouts/tabs/prefix-suffix/package.json | 2 +- samples/layouts/tabs/scrolling/package.json | 2 +- samples/layouts/tabs/styling/package.json | 2 +- .../layouts/tile-manager/actions/package.json | 2 +- .../tile-manager/columngap/package.json | 2 +- .../tile-manager/dragndrop/package.json | 2 +- .../layouts/tile-manager/layout/package.json | 2 +- .../tile-manager/overview/package.json | 2 +- .../layouts/tile-manager/resize/package.json | 2 +- .../layouts/tile-manager/styling/package.json | 2 +- samples/menus/nav-bar/overview/package.json | 2 +- samples/menus/nav-bar/styling/package.json | 2 +- .../nav-drawer/add-drawer-items/package.json | 2 +- .../menus/nav-drawer/add-mini/package.json | 2 +- .../add-positions-navbar/package.json | 2 +- samples/menus/nav-drawer/styling/package.json | 2 +- .../banner-advanced-sample/package.json | 2 +- .../banner/banner-sample-1/package.json | 2 +- .../banner/banner-sample-2/package.json | 2 +- .../banner/banner-styling/package.json | 2 +- .../dialog/closing-variations/package.json | 2 +- .../notifications/dialog/form/package.json | 2 +- .../dialog/overview/package.json | 2 +- .../notifications/dialog/styling/package.json | 2 +- .../snackbar/action-text/package.json | 2 +- .../snackbar/display-time/package.json | 2 +- .../snackbar/overview/package.json | 2 +- .../snackbar/styling/package.json | 2 +- .../notifications/toast/overview/package.json | 2 +- .../toast/properties/package.json | 2 +- .../notifications/toast/styling/package.json | 2 +- .../calendar/disabled-dates/package.json | 2 +- .../calendar/formatting/package.json | 2 +- .../scheduling/calendar/header/package.json | 2 +- .../calendar/multiple-months/package.json | 2 +- .../calendar/multiple-selection/package.json | 2 +- .../scheduling/calendar/overview/package.json | 2 +- .../calendar/range-selection/package.json | 2 +- samples/scheduling/calendar/size/package.json | 2 +- .../calendar/special-dates/package.json | 2 +- .../scheduling/calendar/styling/package.json | 2 +- .../calendar/week-numbers/package.json | 2 +- .../date-picker/dialog-mode/package.json | 2 +- .../scheduling/date-picker/form/package.json | 2 +- .../date-picker/format/package.json | 2 +- .../date-picker/overview/package.json | 2 +- .../date-picker/styling/package.json | 2 +- .../custom-ranges/package.json | 2 +- .../date-range-picker/form/package.json | 2 +- .../date-range-picker/overview/package.json | 2 +- .../date-range-picker/slots/package.json | 2 +- .../date-range-picker/styling/package.json | 2 +- 720 files changed, 738 insertions(+), 799 deletions(-) diff --git a/browser/package-lock.json b/browser/package-lock.json index 1882e12c69..d220754e94 100644 --- a/browser/package-lock.json +++ b/browser/package-lock.json @@ -33,9 +33,9 @@ "igniteui-react-spreadsheet": "19.3.2", "igniteui-react-spreadsheet-chart-adapter": "19.3.2", "igniteui-theming": "^24.0.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", - "marked": "^16.4.1", + "marked": "^17.0.0", "marked-shiki": "^1.2.1", "prop-types": "15.7.2", "react": "^19.2.0", @@ -8428,20 +8428,6 @@ } } }, - "node_modules/igniteui-grid-lite/node_modules/marked": { - "version": "17.0.3", - "resolved": "https://registry.npmjs.org/marked/-/marked-17.0.3.tgz", - "integrity": "sha512-jt1v2ObpyOKR8p4XaUJVk3YWRJ5n+i4+rjQopxvV32rSndTJXvIzuUdWWIy/1pFQMkQmvTXawzDNqOH/CUmx6A==", - "license": "MIT", - "optional": true, - "peer": true, - "bin": { - "marked": "bin/marked.js" - }, - "engines": { - "node": ">= 20" - } - }, "node_modules/igniteui-i18n-core": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/igniteui-i18n-core/-/igniteui-i18n-core-1.0.4.tgz", @@ -8654,7 +8640,18 @@ "igniteui-react-spreadsheet": "19.3.2" } }, - "node_modules/igniteui-react/node_modules/igniteui-webcomponents": { + "node_modules/igniteui-theming": { + "version": "24.0.2", + "resolved": "https://registry.npmjs.org/igniteui-theming/-/igniteui-theming-24.0.2.tgz", + "integrity": "sha512-ZDiL4NxatT84AzwOeFavld8ygz1C13OE/Szn+PsM8GiHYgijyLk9GRzTuF8Mof7ChYEKZK53JF46SLGLjkzebw==", + "license": "MIT" + }, + "node_modules/igniteui-trial-watermark": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/igniteui-trial-watermark/-/igniteui-trial-watermark-1.0.3.tgz", + "integrity": "sha512-q6thtu+7R6MOB+i9GorFPCcWeOImW43BzCAtKnDAYWwaoueb8Lg1EhBkIhAyfEIH+yZ/9c5lnZdU61/GRPoP+g==" + }, + "node_modules/igniteui-webcomponents": { "version": "7.0.0-rc.0", "resolved": "https://registry.npmjs.org/igniteui-webcomponents/-/igniteui-webcomponents-7.0.0-rc.0.tgz", "integrity": "sha512-U8u6NgfTypL5Nz7KW/NHcXm7QWdqJ6ge4e2YcsTowXWAuA1DmO+l+dve3I4G8UPUT6pl7JmPV1daIRC3AuMD+g==", @@ -8694,65 +8691,6 @@ } } }, - "node_modules/igniteui-react/node_modules/marked": { - "version": "17.0.3", - "resolved": "https://registry.npmjs.org/marked/-/marked-17.0.3.tgz", - "integrity": "sha512-jt1v2ObpyOKR8p4XaUJVk3YWRJ5n+i4+rjQopxvV32rSndTJXvIzuUdWWIy/1pFQMkQmvTXawzDNqOH/CUmx6A==", - "license": "MIT", - "optional": true, - "peer": true, - "bin": { - "marked": "bin/marked.js" - }, - "engines": { - "node": ">= 20" - } - }, - "node_modules/igniteui-theming": { - "version": "24.0.2", - "resolved": "https://registry.npmjs.org/igniteui-theming/-/igniteui-theming-24.0.2.tgz", - "integrity": "sha512-ZDiL4NxatT84AzwOeFavld8ygz1C13OE/Szn+PsM8GiHYgijyLk9GRzTuF8Mof7ChYEKZK53JF46SLGLjkzebw==", - "license": "MIT" - }, - "node_modules/igniteui-trial-watermark": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/igniteui-trial-watermark/-/igniteui-trial-watermark-1.0.3.tgz", - "integrity": "sha512-q6thtu+7R6MOB+i9GorFPCcWeOImW43BzCAtKnDAYWwaoueb8Lg1EhBkIhAyfEIH+yZ/9c5lnZdU61/GRPoP+g==" - }, - "node_modules/igniteui-webcomponents": { - "version": "6.3.6", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents/-/igniteui-webcomponents-6.3.6.tgz", - "integrity": "sha512-MRCCD204AE/0H2WRWiZHdRnpuldn/pjzk+3VGAtOvJ03+22HlmE3/7sMhnfNqsxqn/SHFTTFzBV56f3FEFu1+w==", - "dependencies": { - "@floating-ui/dom": "^1.7.0", - "@lit-labs/virtualizer": "^2.1.0", - "@lit/context": "^1.1.0", - "lit": "^3.3.0" - }, - "engines": { - "node": ">=20" - }, - "peerDependencies": { - "dompurify": "^3.2.0", - "marked": "^16.3.0", - "marked-shiki": "^1.2.0", - "shiki": "^3.12.0" - }, - "peerDependenciesMeta": { - "dompurify": { - "optional": true - }, - "marked": { - "optional": true - }, - "marked-shiki": { - "optional": true - }, - "shiki": { - "optional": true - } - } - }, "node_modules/igniteui-webcomponents-grids": { "version": "6.3.0-rc.2", "resolved": "https://registry.npmjs.org/igniteui-webcomponents-grids/-/igniteui-webcomponents-grids-6.3.0-rc.2.tgz", @@ -10235,9 +10173,10 @@ } }, "node_modules/marked": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/marked/-/marked-16.4.2.tgz", - "integrity": "sha512-TI3V8YYWvkVf3KJe1dRkpnjs68JUPyEa5vjKrp1XEEJUAOaQc+Qj+L1qWbPd0SJuAdQkFU0h73sXXqwDYxsiDA==", + "version": "17.0.3", + "resolved": "https://registry.npmjs.org/marked/-/marked-17.0.3.tgz", + "integrity": "sha512-jt1v2ObpyOKR8p4XaUJVk3YWRJ5n+i4+rjQopxvV32rSndTJXvIzuUdWWIy/1pFQMkQmvTXawzDNqOH/CUmx6A==", + "license": "MIT", "bin": { "marked": "bin/marked.js" }, diff --git a/browser/package.json b/browser/package.json index c9078845a1..47f450f101 100644 --- a/browser/package.json +++ b/browser/package.json @@ -41,9 +41,9 @@ "igniteui-react-spreadsheet": "19.3.2", "igniteui-react-spreadsheet-chart-adapter": "19.3.2", "igniteui-theming": "^24.0.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", - "marked": "^16.4.1", + "marked": "^17.0.0", "marked-shiki": "^1.2.1", "prop-types": "15.7.2", "react": "^19.2.0", diff --git a/browser/tasks/gulp-samples.js b/browser/tasks/gulp-samples.js index 6dd9121688..e1a2c2b1c1 100644 --- a/browser/tasks/gulp-samples.js +++ b/browser/tasks/gulp-samples.js @@ -859,7 +859,7 @@ function updateIG(cb) { { version: "19.3.2", name: "igniteui-react-dashboards" }, { version: "^19.5.0-rc.0", name: "igniteui-react" }, // these IG packages are sometimes updated: - { version: "^6.3.0", name: "igniteui-webcomponents" }, + { version: "^7.0.0-rc.0", name: "igniteui-webcomponents" }, { version: "^19.4.0", name: "igniteui-react-dockmanager" }, { version: "~0.5.0", name: "igniteui-grid-lite" }, // main react packages diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/area-chart-multiple-sources/package.json b/samples/charts/category-chart/area-chart-multiple-sources/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/area-chart-single-source/package.json b/samples/charts/category-chart/area-chart-single-source/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/column-chart-multiple-sources/package.json b/samples/charts/category-chart/column-chart-multiple-sources/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/column-chart-single-source/package.json b/samples/charts/category-chart/column-chart-single-source/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/custom-selection/package.json b/samples/charts/category-chart/custom-selection/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/category-chart/custom-selection/package.json +++ b/samples/charts/category-chart/custom-selection/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/data-filter/package.json b/samples/charts/category-chart/data-filter/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/category-chart/data-filter/package.json +++ b/samples/charts/category-chart/data-filter/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/package.json b/samples/charts/category-chart/data-legend-formatting-decimals/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/format-specifiers/package.json b/samples/charts/category-chart/format-specifiers/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/category-chart/format-specifiers/package.json +++ b/samples/charts/category-chart/format-specifiers/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/category-chart/highlighting-behavior/package.json +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/category-chart/highlighting-mode/package.json +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/legend-highlighting/package.json b/samples/charts/category-chart/legend-highlighting/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/category-chart/legend-highlighting/package.json +++ b/samples/charts/category-chart/legend-highlighting/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/line-chart-multiple-sources/package.json b/samples/charts/category-chart/line-chart-multiple-sources/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/line-chart-single-source/package.json b/samples/charts/category-chart/line-chart-single-source/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/point-chart-multiple-sources/package.json b/samples/charts/category-chart/point-chart-multiple-sources/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/point-chart-single-source/package.json b/samples/charts/category-chart/point-chart-single-source/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/selection-matcher/package.json b/samples/charts/category-chart/selection-matcher/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/category-chart/selection-matcher/package.json +++ b/samples/charts/category-chart/selection-matcher/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/selection-modes/package.json b/samples/charts/category-chart/selection-modes/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/category-chart/selection-modes/package.json +++ b/samples/charts/category-chart/selection-modes/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/selection-multiple-modes/package.json b/samples/charts/category-chart/selection-multiple-modes/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/category-chart/selection-multiple-modes/package.json +++ b/samples/charts/category-chart/selection-multiple-modes/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/spline-area-multiple-sources/package.json b/samples/charts/category-chart/spline-area-multiple-sources/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/spline-area-single-source/package.json b/samples/charts/category-chart/spline-area-single-source/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/step-area-multiple-sources/package.json b/samples/charts/category-chart/step-area-multiple-sources/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/step-area-single-source/package.json b/samples/charts/category-chart/step-area-single-source/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/step-line-multiple-sources/package.json b/samples/charts/category-chart/step-line-multiple-sources/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/step-line-single-source/package.json b/samples/charts/category-chart/step-line-single-source/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/dashboard-tile/chart-dashboard/package.json b/samples/charts/dashboard-tile/chart-dashboard/package.json index a6294c0564..1811f7e4d5 100644 --- a/samples/charts/dashboard-tile/chart-dashboard/package.json +++ b/samples/charts/dashboard-tile/chart-dashboard/package.json @@ -24,7 +24,7 @@ "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-react-maps": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/dashboard-tile/financial-dashboard/package.json b/samples/charts/dashboard-tile/financial-dashboard/package.json index 7366d1bd7f..5478abf5fc 100644 --- a/samples/charts/dashboard-tile/financial-dashboard/package.json +++ b/samples/charts/dashboard-tile/financial-dashboard/package.json @@ -24,7 +24,7 @@ "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-react-maps": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/dashboard-tile/gauge-dashboard/package.json b/samples/charts/dashboard-tile/gauge-dashboard/package.json index 7366d1bd7f..5478abf5fc 100644 --- a/samples/charts/dashboard-tile/gauge-dashboard/package.json +++ b/samples/charts/dashboard-tile/gauge-dashboard/package.json @@ -24,7 +24,7 @@ "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-react-maps": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/dashboard-tile/local-data-source-dashboard/package.json b/samples/charts/dashboard-tile/local-data-source-dashboard/package.json index 7366d1bd7f..5478abf5fc 100644 --- a/samples/charts/dashboard-tile/local-data-source-dashboard/package.json +++ b/samples/charts/dashboard-tile/local-data-source-dashboard/package.json @@ -24,7 +24,7 @@ "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-react-maps": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/dashboard-tile/map-dashboard/package.json b/samples/charts/dashboard-tile/map-dashboard/package.json index 7366d1bd7f..5478abf5fc 100644 --- a/samples/charts/dashboard-tile/map-dashboard/package.json +++ b/samples/charts/dashboard-tile/map-dashboard/package.json @@ -24,7 +24,7 @@ "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-react-maps": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/dashboard-tile/pie-dashboard/package.json b/samples/charts/dashboard-tile/pie-dashboard/package.json index 7366d1bd7f..5478abf5fc 100644 --- a/samples/charts/dashboard-tile/pie-dashboard/package.json +++ b/samples/charts/dashboard-tile/pie-dashboard/package.json @@ -24,7 +24,7 @@ "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-react-maps": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/package.json b/samples/charts/data-chart/axis-annotations-corner-radius/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/axis-min-max-gap/package.json b/samples/charts/data-chart/axis-min-max-gap/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/package.json b/samples/charts/data-chart/bar-chart-multiple-sources/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/bar-chart-single-source/package.json b/samples/charts/data-chart/bar-chart-single-source/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/dash-array-axes/package.json b/samples/charts/data-chart/dash-array-axes/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/dash-array-axes/package.json +++ b/samples/charts/data-chart/dash-array-axes/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/dash-array-series/package.json b/samples/charts/data-chart/dash-array-series/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/dash-array-series/package.json +++ b/samples/charts/data-chart/dash-array-series/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/dash-array-tickmarks/package.json b/samples/charts/data-chart/dash-array-tickmarks/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/package.json +++ b/samples/charts/data-chart/dash-array-tickmarks/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/dash-array-trendline/package.json b/samples/charts/data-chart/dash-array-trendline/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/dash-array-trendline/package.json +++ b/samples/charts/data-chart/dash-array-trendline/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/data-annotation-band-layer/package.json b/samples/charts/data-chart/data-annotation-band-layer/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/data-annotation-band-layer/package.json +++ b/samples/charts/data-chart/data-annotation-band-layer/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/data-annotation-line-layer/package.json b/samples/charts/data-chart/data-annotation-line-layer/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/data-annotation-line-layer/package.json +++ b/samples/charts/data-chart/data-annotation-line-layer/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json b/samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/data-annotation-rect-layer/package.json b/samples/charts/data-chart/data-annotation-rect-layer/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/data-annotation-rect-layer/package.json +++ b/samples/charts/data-chart/data-annotation-rect-layer/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/data-annotation-slice-layer/package.json b/samples/charts/data-chart/data-annotation-slice-layer/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/data-annotation-slice-layer/package.json +++ b/samples/charts/data-chart/data-annotation-slice-layer/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/data-annotation-strip-layer/package.json b/samples/charts/data-chart/data-annotation-strip-layer/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/data-annotation-strip-layer/package.json +++ b/samples/charts/data-chart/data-annotation-strip-layer/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/data-legend-grouping/package.json b/samples/charts/data-chart/data-legend-grouping/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/data-legend-grouping/package.json +++ b/samples/charts/data-chart/data-legend-grouping/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/data-legend-styling/package.json b/samples/charts/data-chart/data-legend-styling/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/data-legend-styling/package.json +++ b/samples/charts/data-chart/data-legend-styling/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/data-tooltip-grouping/package.json b/samples/charts/data-chart/data-tooltip-grouping/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/data-tooltip-styling/package.json b/samples/charts/data-chart/data-tooltip-styling/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/data-chart/data-tooltip-styling/package.json +++ b/samples/charts/data-chart/data-tooltip-styling/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/format-specifiers/package.json b/samples/charts/data-chart/format-specifiers/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/format-specifiers/package.json +++ b/samples/charts/data-chart/format-specifiers/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/itemized-bar-chart/package.json b/samples/charts/data-chart/itemized-bar-chart/package.json index bb68d0047e..e6c3a539d7 100644 --- a/samples/charts/data-chart/itemized-bar-chart/package.json +++ b/samples/charts/data-chart/itemized-bar-chart/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/itemized-column-chart/package.json b/samples/charts/data-chart/itemized-column-chart/package.json index bb68d0047e..e6c3a539d7 100644 --- a/samples/charts/data-chart/itemized-column-chart/package.json +++ b/samples/charts/data-chart/itemized-column-chart/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/itemized-stacked-bar-chart/package.json b/samples/charts/data-chart/itemized-stacked-bar-chart/package.json index bb68d0047e..e6c3a539d7 100644 --- a/samples/charts/data-chart/itemized-stacked-bar-chart/package.json +++ b/samples/charts/data-chart/itemized-stacked-bar-chart/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/itemized-stacked-column-chart/package.json b/samples/charts/data-chart/itemized-stacked-column-chart/package.json index bb68d0047e..e6c3a539d7 100644 --- a/samples/charts/data-chart/itemized-stacked-column-chart/package.json +++ b/samples/charts/data-chart/itemized-stacked-column-chart/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/polar-area-chart-styling/package.json b/samples/charts/data-chart/polar-area-chart-styling/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/package.json +++ b/samples/charts/data-chart/polar-area-chart-styling/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/polar-area-chart/package.json b/samples/charts/data-chart/polar-area-chart/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/polar-area-chart/package.json +++ b/samples/charts/data-chart/polar-area-chart/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/polar-line-chart/package.json b/samples/charts/data-chart/polar-line-chart/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/polar-line-chart/package.json +++ b/samples/charts/data-chart/polar-line-chart/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/polar-scatter-chart/package.json b/samples/charts/data-chart/polar-scatter-chart/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/polar-scatter-chart/package.json +++ b/samples/charts/data-chart/polar-scatter-chart/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/polar-spline-area-chart/package.json b/samples/charts/data-chart/polar-spline-area-chart/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/package.json +++ b/samples/charts/data-chart/polar-spline-area-chart/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/polar-spline-chart/package.json b/samples/charts/data-chart/polar-spline-chart/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/polar-spline-chart/package.json +++ b/samples/charts/data-chart/polar-spline-chart/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/radial-area-chart-styling/package.json b/samples/charts/data-chart/radial-area-chart-styling/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/package.json +++ b/samples/charts/data-chart/radial-area-chart-styling/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/radial-area-chart/package.json b/samples/charts/data-chart/radial-area-chart/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/radial-area-chart/package.json +++ b/samples/charts/data-chart/radial-area-chart/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/radial-column-chart-selection/package.json b/samples/charts/data-chart/radial-column-chart-selection/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/radial-column-chart-selection/package.json +++ b/samples/charts/data-chart/radial-column-chart-selection/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/radial-column-chart/package.json b/samples/charts/data-chart/radial-column-chart/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/radial-column-chart/package.json +++ b/samples/charts/data-chart/radial-column-chart/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/radial-label-mode/package.json b/samples/charts/data-chart/radial-label-mode/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/data-chart/radial-label-mode/package.json +++ b/samples/charts/data-chart/radial-label-mode/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/radial-line-chart/package.json b/samples/charts/data-chart/radial-line-chart/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/radial-line-chart/package.json +++ b/samples/charts/data-chart/radial-line-chart/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/radial-pie-chart/package.json b/samples/charts/data-chart/radial-pie-chart/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/radial-pie-chart/package.json +++ b/samples/charts/data-chart/radial-pie-chart/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/range-area-chart/package.json b/samples/charts/data-chart/range-area-chart/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/range-area-chart/package.json +++ b/samples/charts/data-chart/range-area-chart/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/range-column-chart/package.json b/samples/charts/data-chart/range-column-chart/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/range-column-chart/package.json +++ b/samples/charts/data-chart/range-column-chart/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/scatter-line-chart/package.json b/samples/charts/data-chart/scatter-line-chart/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/scatter-line-chart/package.json +++ b/samples/charts/data-chart/scatter-line-chart/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/scatter-line-threshold/package.json b/samples/charts/data-chart/scatter-line-threshold/package.json index bb68d0047e..e6c3a539d7 100644 --- a/samples/charts/data-chart/scatter-line-threshold/package.json +++ b/samples/charts/data-chart/scatter-line-threshold/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/scatter-point-chart/package.json b/samples/charts/data-chart/scatter-point-chart/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/scatter-point-chart/package.json +++ b/samples/charts/data-chart/scatter-point-chart/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/scatter-spline-chart/package.json b/samples/charts/data-chart/scatter-spline-chart/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/scatter-spline-chart/package.json +++ b/samples/charts/data-chart/scatter-spline-chart/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/selection-matcher/package.json b/samples/charts/data-chart/selection-matcher/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/selection-matcher/package.json +++ b/samples/charts/data-chart/selection-matcher/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-100-area-chart/package.json b/samples/charts/data-chart/stacked-100-area-chart/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-area-chart/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-100-bar-chart/package.json b/samples/charts/data-chart/stacked-100-bar-chart/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-100-column-chart/package.json b/samples/charts/data-chart/stacked-100-column-chart/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/package.json +++ b/samples/charts/data-chart/stacked-100-column-chart/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-100-line-chart/package.json b/samples/charts/data-chart/stacked-100-line-chart/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/package.json +++ b/samples/charts/data-chart/stacked-100-line-chart/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-100-spline-chart/package.json b/samples/charts/data-chart/stacked-100-spline-chart/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-area-chart/package.json b/samples/charts/data-chart/stacked-area-chart/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/stacked-area-chart/package.json +++ b/samples/charts/data-chart/stacked-area-chart/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-bar-chart/package.json b/samples/charts/data-chart/stacked-bar-chart/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/stacked-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-bar-chart/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-column-chart/package.json b/samples/charts/data-chart/stacked-column-chart/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/stacked-column-chart/package.json +++ b/samples/charts/data-chart/stacked-column-chart/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-line-chart/package.json b/samples/charts/data-chart/stacked-line-chart/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/stacked-line-chart/package.json +++ b/samples/charts/data-chart/stacked-line-chart/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-spline-area-chart/package.json b/samples/charts/data-chart/stacked-spline-area-chart/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-spline-chart/package.json b/samples/charts/data-chart/stacked-spline-chart/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/stacked-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-chart/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/trendline-layer/package.json b/samples/charts/data-chart/trendline-layer/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/trendline-layer/package.json +++ b/samples/charts/data-chart/trendline-layer/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/user-annotation-layer/package.json b/samples/charts/data-chart/user-annotation-layer/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/data-chart/user-annotation-layer/package.json +++ b/samples/charts/data-chart/user-annotation-layer/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/waterfall-chart/package.json b/samples/charts/data-chart/waterfall-chart/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-chart/waterfall-chart/package.json +++ b/samples/charts/data-chart/waterfall-chart/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-pie-chart/animation-replay/package.json b/samples/charts/data-pie-chart/animation-replay/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/data-pie-chart/animation-replay/package.json +++ b/samples/charts/data-pie-chart/animation-replay/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-pie-chart/animation/package.json b/samples/charts/data-pie-chart/animation/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/data-pie-chart/animation/package.json +++ b/samples/charts/data-pie-chart/animation/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-pie-chart/highlight-filter/package.json b/samples/charts/data-pie-chart/highlight-filter/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-pie-chart/highlight-filter/package.json +++ b/samples/charts/data-pie-chart/highlight-filter/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-pie-chart/highlighting/package.json b/samples/charts/data-pie-chart/highlighting/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/data-pie-chart/highlighting/package.json +++ b/samples/charts/data-pie-chart/highlighting/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-pie-chart/legend/package.json b/samples/charts/data-pie-chart/legend/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/data-pie-chart/legend/package.json +++ b/samples/charts/data-pie-chart/legend/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-pie-chart/others/package.json b/samples/charts/data-pie-chart/others/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/data-pie-chart/others/package.json +++ b/samples/charts/data-pie-chart/others/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-pie-chart/overview/package.json b/samples/charts/data-pie-chart/overview/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/data-pie-chart/overview/package.json +++ b/samples/charts/data-pie-chart/overview/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-pie-chart/selection/package.json b/samples/charts/data-pie-chart/selection/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/data-pie-chart/selection/package.json +++ b/samples/charts/data-pie-chart/selection/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/doughnut-chart/legend/package.json b/samples/charts/doughnut-chart/legend/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/doughnut-chart/legend/package.json +++ b/samples/charts/doughnut-chart/legend/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/doughnut-chart/overview/package.json b/samples/charts/doughnut-chart/overview/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/doughnut-chart/overview/package.json +++ b/samples/charts/doughnut-chart/overview/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/doughnut-chart/rings/package.json b/samples/charts/doughnut-chart/rings/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/doughnut-chart/rings/package.json +++ b/samples/charts/doughnut-chart/rings/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/package.json b/samples/charts/financial-chart/data-legend-formatting-currency/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/financial-chart/data-legend-styling-props/package.json b/samples/charts/financial-chart/data-legend-styling-props/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/package.json +++ b/samples/charts/financial-chart/data-legend-styling-props/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/financial-chart/data-legend/package.json b/samples/charts/financial-chart/data-legend/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/financial-chart/data-legend/package.json +++ b/samples/charts/financial-chart/data-legend/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/package.json b/samples/charts/financial-chart/data-tooltip-styling-props/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/package.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/financial-chart/data-tooltip/package.json b/samples/charts/financial-chart/data-tooltip/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/financial-chart/data-tooltip/package.json +++ b/samples/charts/financial-chart/data-tooltip/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/financial-chart/format-specifiers/package.json b/samples/charts/financial-chart/format-specifiers/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/financial-chart/format-specifiers/package.json +++ b/samples/charts/financial-chart/format-specifiers/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/financial-chart/scrollbars/package.json b/samples/charts/financial-chart/scrollbars/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/pie-chart/legend/package.json b/samples/charts/pie-chart/legend/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/pie-chart/styling/package.json b/samples/charts/pie-chart/styling/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/sparkline/display-winloss/package.json b/samples/charts/sparkline/display-winloss/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/toolbar/actions-built-in-category-chart/package.json b/samples/charts/toolbar/actions-built-in-category-chart/package.json index eae626637a..d169e4dd6d 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -20,7 +20,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/toolbar/actions-built-in-data-chart/package.json b/samples/charts/toolbar/actions-built-in-data-chart/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/toolbar/color-editor-support/package.json b/samples/charts/toolbar/color-editor-support/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/toolbar/color-editor-support/package.json +++ b/samples/charts/toolbar/color-editor-support/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/toolbar/custom-tool/package.json b/samples/charts/toolbar/custom-tool/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/toolbar/custom-tool/package.json +++ b/samples/charts/toolbar/custom-tool/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/package.json b/samples/charts/toolbar/layout-actions-for-data-chart/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/package.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/package.json b/samples/charts/toolbar/layout-in-vertical-orientation/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/package.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/tree-map/highlighting-percent-based/package.json b/samples/charts/tree-map/highlighting-percent-based/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/tree-map/highlighting-percent-based/package.json +++ b/samples/charts/tree-map/highlighting-percent-based/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/tree-map/highlighting/package.json b/samples/charts/tree-map/highlighting/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/tree-map/highlighting/package.json +++ b/samples/charts/tree-map/highlighting/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index af6ac7d347..0279be0c15 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -19,7 +19,7 @@ "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/tree-map/overview/package.json b/samples/charts/tree-map/overview/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/tree-map/overview/package.json +++ b/samples/charts/tree-map/overview/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/tree-map/styling/package.json b/samples/charts/tree-map/styling/package.json index f5e910c29d..01534b4881 100644 --- a/samples/charts/tree-map/styling/package.json +++ b/samples/charts/tree-map/styling/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/accessibility/package.json b/samples/grids/data-grid/accessibility/package.json index a3d8318643..75d53fdc34 100644 --- a/samples/grids/data-grid/accessibility/package.json +++ b/samples/grids/data-grid/accessibility/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/binding-data-service/package.json b/samples/grids/data-grid/binding-data-service/package.json index 7f7ef6bcdf..1ed573ab5b 100644 --- a/samples/grids/data-grid/binding-data-service/package.json +++ b/samples/grids/data-grid/binding-data-service/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/binding-live-data/package.json b/samples/grids/data-grid/binding-live-data/package.json index 7e30d08243..6d291dfda8 100644 --- a/samples/grids/data-grid/binding-live-data/package.json +++ b/samples/grids/data-grid/binding-live-data/package.json @@ -19,7 +19,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/binding-local-data/package.json b/samples/grids/data-grid/binding-local-data/package.json index 70d11d7a71..c583eee9c3 100644 --- a/samples/grids/data-grid/binding-local-data/package.json +++ b/samples/grids/data-grid/binding-local-data/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/binding-remote-data/package.json b/samples/grids/data-grid/binding-remote-data/package.json index 19f72320b4..aff815fad2 100644 --- a/samples/grids/data-grid/binding-remote-data/package.json +++ b/samples/grids/data-grid/binding-remote-data/package.json @@ -17,7 +17,7 @@ "igniteui-react-datasources": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/cell-activation/package.json b/samples/grids/data-grid/cell-activation/package.json index 63ba9cc6a9..d74e8f650f 100644 --- a/samples/grids/data-grid/cell-activation/package.json +++ b/samples/grids/data-grid/cell-activation/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/cell-editing/package.json b/samples/grids/data-grid/cell-editing/package.json index 93b856f6c5..cc5e42b190 100644 --- a/samples/grids/data-grid/cell-editing/package.json +++ b/samples/grids/data-grid/cell-editing/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/cell-merging/package.json b/samples/grids/data-grid/cell-merging/package.json index aae15bb92d..4363a47971 100644 --- a/samples/grids/data-grid/cell-merging/package.json +++ b/samples/grids/data-grid/cell-merging/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/cell-selection/package.json b/samples/grids/data-grid/cell-selection/package.json index a776208013..a576499a06 100644 --- a/samples/grids/data-grid/cell-selection/package.json +++ b/samples/grids/data-grid/cell-selection/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/column-animation/package.json b/samples/grids/data-grid/column-animation/package.json index dc2c110dcc..076c2738d4 100644 --- a/samples/grids/data-grid/column-animation/package.json +++ b/samples/grids/data-grid/column-animation/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/column-chooser-picker/package.json b/samples/grids/data-grid/column-chooser-picker/package.json index 7d7cc5c429..119a3468c9 100644 --- a/samples/grids/data-grid/column-chooser-picker/package.json +++ b/samples/grids/data-grid/column-chooser-picker/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/column-chooser-toolbar/package.json b/samples/grids/data-grid/column-chooser-toolbar/package.json index 421522a3af..545084c792 100644 --- a/samples/grids/data-grid/column-chooser-toolbar/package.json +++ b/samples/grids/data-grid/column-chooser-toolbar/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/column-filter-expressions/package.json b/samples/grids/data-grid/column-filter-expressions/package.json index 8a89a9b179..38c9279791 100644 --- a/samples/grids/data-grid/column-filter-expressions/package.json +++ b/samples/grids/data-grid/column-filter-expressions/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/column-filter-operands/package.json b/samples/grids/data-grid/column-filter-operands/package.json index 4182c06011..60e614e3d1 100644 --- a/samples/grids/data-grid/column-filter-operands/package.json +++ b/samples/grids/data-grid/column-filter-operands/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/column-filtering/package.json b/samples/grids/data-grid/column-filtering/package.json index 177e1434a7..8cc48f95d4 100644 --- a/samples/grids/data-grid/column-filtering/package.json +++ b/samples/grids/data-grid/column-filtering/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/column-moving/package.json b/samples/grids/data-grid/column-moving/package.json index efffc71d85..9676eaf52c 100644 --- a/samples/grids/data-grid/column-moving/package.json +++ b/samples/grids/data-grid/column-moving/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/column-options/package.json b/samples/grids/data-grid/column-options/package.json index 454b4d5dfa..3b24f8bf24 100644 --- a/samples/grids/data-grid/column-options/package.json +++ b/samples/grids/data-grid/column-options/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/column-pinning-picker/package.json b/samples/grids/data-grid/column-pinning-picker/package.json index c12ac31c53..d1be8e6a41 100644 --- a/samples/grids/data-grid/column-pinning-picker/package.json +++ b/samples/grids/data-grid/column-pinning-picker/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/column-pinning-toolbar/package.json b/samples/grids/data-grid/column-pinning-toolbar/package.json index a9c3a6fbad..686bf5f0e9 100644 --- a/samples/grids/data-grid/column-pinning-toolbar/package.json +++ b/samples/grids/data-grid/column-pinning-toolbar/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/column-resizing/package.json b/samples/grids/data-grid/column-resizing/package.json index 737331a94e..d416393684 100644 --- a/samples/grids/data-grid/column-resizing/package.json +++ b/samples/grids/data-grid/column-resizing/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/column-scrolling/package.json b/samples/grids/data-grid/column-scrolling/package.json index 3d0e4d3545..1678bff29b 100644 --- a/samples/grids/data-grid/column-scrolling/package.json +++ b/samples/grids/data-grid/column-scrolling/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/column-sorting/package.json b/samples/grids/data-grid/column-sorting/package.json index f9b394dbaf..fce3262479 100644 --- a/samples/grids/data-grid/column-sorting/package.json +++ b/samples/grids/data-grid/column-sorting/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/column-summaries/package.json b/samples/grids/data-grid/column-summaries/package.json index caebf8c6fd..92422fc62a 100644 --- a/samples/grids/data-grid/column-summaries/package.json +++ b/samples/grids/data-grid/column-summaries/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/column-types/package.json b/samples/grids/data-grid/column-types/package.json index 802852b350..235865e66e 100644 --- a/samples/grids/data-grid/column-types/package.json +++ b/samples/grids/data-grid/column-types/package.json @@ -17,7 +17,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/load-save-layout/package.json b/samples/grids/data-grid/load-save-layout/package.json index 1b93ec7b29..668f937d17 100644 --- a/samples/grids/data-grid/load-save-layout/package.json +++ b/samples/grids/data-grid/load-save-layout/package.json @@ -19,7 +19,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/localization/package.json b/samples/grids/data-grid/localization/package.json index f88ef032c4..2c2eaec7f7 100644 --- a/samples/grids/data-grid/localization/package.json +++ b/samples/grids/data-grid/localization/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/overview/package.json b/samples/grids/data-grid/overview/package.json index 639304c200..97f748efd6 100644 --- a/samples/grids/data-grid/overview/package.json +++ b/samples/grids/data-grid/overview/package.json @@ -17,7 +17,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/pager/package.json b/samples/grids/data-grid/pager/package.json index 9a2f2e3e9f..8698b962b9 100644 --- a/samples/grids/data-grid/pager/package.json +++ b/samples/grids/data-grid/pager/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/performance/package.json b/samples/grids/data-grid/performance/package.json index 440a450f9c..0912bee499 100644 --- a/samples/grids/data-grid/performance/package.json +++ b/samples/grids/data-grid/performance/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/row-group-descriptions/package.json b/samples/grids/data-grid/row-group-descriptions/package.json index ad34eaf1a5..1de3076b45 100644 --- a/samples/grids/data-grid/row-group-descriptions/package.json +++ b/samples/grids/data-grid/row-group-descriptions/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/row-grouping/package.json b/samples/grids/data-grid/row-grouping/package.json index ad34eaf1a5..1de3076b45 100644 --- a/samples/grids/data-grid/row-grouping/package.json +++ b/samples/grids/data-grid/row-grouping/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/row-highlighting/package.json b/samples/grids/data-grid/row-highlighting/package.json index bce69d652d..cfbbf07c22 100644 --- a/samples/grids/data-grid/row-highlighting/package.json +++ b/samples/grids/data-grid/row-highlighting/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/row-paging/package.json b/samples/grids/data-grid/row-paging/package.json index dd0cd14164..57001822e1 100644 --- a/samples/grids/data-grid/row-paging/package.json +++ b/samples/grids/data-grid/row-paging/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/row-pinning/package.json b/samples/grids/data-grid/row-pinning/package.json index 2765e6124a..1b140e2b4a 100644 --- a/samples/grids/data-grid/row-pinning/package.json +++ b/samples/grids/data-grid/row-pinning/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/row-selection/package.json b/samples/grids/data-grid/row-selection/package.json index 0575335580..cf46063852 100644 --- a/samples/grids/data-grid/row-selection/package.json +++ b/samples/grids/data-grid/row-selection/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/type-comparison-table/package.json b/samples/grids/data-grid/type-comparison-table/package.json index e48ff8c063..4df4e3a3c1 100644 --- a/samples/grids/data-grid/type-comparison-table/package.json +++ b/samples/grids/data-grid/type-comparison-table/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/type-heatmap-table/package.json b/samples/grids/data-grid/type-heatmap-table/package.json index f30c773fc5..e0498913ab 100644 --- a/samples/grids/data-grid/type-heatmap-table/package.json +++ b/samples/grids/data-grid/type-heatmap-table/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/type-marketing-table/package.json b/samples/grids/data-grid/type-marketing-table/package.json index 7f532c507c..ab427de81e 100644 --- a/samples/grids/data-grid/type-marketing-table/package.json +++ b/samples/grids/data-grid/type-marketing-table/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/type-matrix-table/package.json b/samples/grids/data-grid/type-matrix-table/package.json index 29f2d2a9c6..edba159bf5 100644 --- a/samples/grids/data-grid/type-matrix-table/package.json +++ b/samples/grids/data-grid/type-matrix-table/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/type-periodic-table/package.json b/samples/grids/data-grid/type-periodic-table/package.json index de79acb629..89f5ad06d9 100644 --- a/samples/grids/data-grid/type-periodic-table/package.json +++ b/samples/grids/data-grid/type-periodic-table/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/grid-lite/column-config-basic/package.json b/samples/grids/grid-lite/column-config-basic/package.json index 76e7f02310..aee4586d48 100644 --- a/samples/grids/grid-lite/column-config-basic/package.json +++ b/samples/grids/grid-lite/column-config-basic/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-grid-lite": "~0.5.0", "igniteui-react": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid-lite/column-config-dynamic/package.json b/samples/grids/grid-lite/column-config-dynamic/package.json index 76e7f02310..aee4586d48 100644 --- a/samples/grids/grid-lite/column-config-dynamic/package.json +++ b/samples/grids/grid-lite/column-config-dynamic/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-grid-lite": "~0.5.0", "igniteui-react": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid-lite/column-config-headers/package.json b/samples/grids/grid-lite/column-config-headers/package.json index 76e7f02310..aee4586d48 100644 --- a/samples/grids/grid-lite/column-config-headers/package.json +++ b/samples/grids/grid-lite/column-config-headers/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-grid-lite": "~0.5.0", "igniteui-react": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid-lite/data-binding/package.json b/samples/grids/grid-lite/data-binding/package.json index 76e7f02310..aee4586d48 100644 --- a/samples/grids/grid-lite/data-binding/package.json +++ b/samples/grids/grid-lite/data-binding/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-grid-lite": "~0.5.0", "igniteui-react": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid-lite/filtering-config-events/package.json b/samples/grids/grid-lite/filtering-config-events/package.json index 76e7f02310..aee4586d48 100644 --- a/samples/grids/grid-lite/filtering-config-events/package.json +++ b/samples/grids/grid-lite/filtering-config-events/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-grid-lite": "~0.5.0", "igniteui-react": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid-lite/filtering-config-remote/package.json b/samples/grids/grid-lite/filtering-config-remote/package.json index 76e7f02310..aee4586d48 100644 --- a/samples/grids/grid-lite/filtering-config-remote/package.json +++ b/samples/grids/grid-lite/filtering-config-remote/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-grid-lite": "~0.5.0", "igniteui-react": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid-lite/filtering-config/package.json b/samples/grids/grid-lite/filtering-config/package.json index 76e7f02310..aee4586d48 100644 --- a/samples/grids/grid-lite/filtering-config/package.json +++ b/samples/grids/grid-lite/filtering-config/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-grid-lite": "~0.5.0", "igniteui-react": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid-lite/overview/package.json b/samples/grids/grid-lite/overview/package.json index 76e7f02310..aee4586d48 100644 --- a/samples/grids/grid-lite/overview/package.json +++ b/samples/grids/grid-lite/overview/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-grid-lite": "~0.5.0", "igniteui-react": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid-lite/sort-config-events/package.json b/samples/grids/grid-lite/sort-config-events/package.json index 76e7f02310..aee4586d48 100644 --- a/samples/grids/grid-lite/sort-config-events/package.json +++ b/samples/grids/grid-lite/sort-config-events/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-grid-lite": "~0.5.0", "igniteui-react": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid-lite/sort-config-grid/package.json b/samples/grids/grid-lite/sort-config-grid/package.json index 76e7f02310..aee4586d48 100644 --- a/samples/grids/grid-lite/sort-config-grid/package.json +++ b/samples/grids/grid-lite/sort-config-grid/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-grid-lite": "~0.5.0", "igniteui-react": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid-lite/sort-config-pipeline/package.json b/samples/grids/grid-lite/sort-config-pipeline/package.json index 76e7f02310..aee4586d48 100644 --- a/samples/grids/grid-lite/sort-config-pipeline/package.json +++ b/samples/grids/grid-lite/sort-config-pipeline/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-grid-lite": "~0.5.0", "igniteui-react": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid-lite/sort-config-sample/package.json b/samples/grids/grid-lite/sort-config-sample/package.json index 76e7f02310..aee4586d48 100644 --- a/samples/grids/grid-lite/sort-config-sample/package.json +++ b/samples/grids/grid-lite/sort-config-sample/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-grid-lite": "~0.5.0", "igniteui-react": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid-lite/styling-custom-theme/package.json b/samples/grids/grid-lite/styling-custom-theme/package.json index e384b6f087..a6e59554fe 100644 --- a/samples/grids/grid-lite/styling-custom-theme/package.json +++ b/samples/grids/grid-lite/styling-custom-theme/package.json @@ -17,7 +17,7 @@ "igniteui-grid-lite": "~0.5.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-theming": "^24.0.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/action-strip/package.json b/samples/grids/grid/action-strip/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/grid/action-strip/package.json +++ b/samples/grids/grid/action-strip/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/advanced-filtering-options/package.json b/samples/grids/grid/advanced-filtering-options/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/advanced-filtering-options/package.json +++ b/samples/grids/grid/advanced-filtering-options/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/advanced-filtering-style/package.json b/samples/grids/grid/advanced-filtering-style/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/advanced-filtering-style/package.json +++ b/samples/grids/grid/advanced-filtering-style/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/binding-composite-data/package.json b/samples/grids/grid/binding-composite-data/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/binding-composite-data/package.json +++ b/samples/grids/grid/binding-composite-data/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/binding-crud-data/package.json b/samples/grids/grid/binding-crud-data/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/grid/binding-crud-data/package.json +++ b/samples/grids/grid/binding-crud-data/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/binding-nested-data-1/package.json b/samples/grids/grid/binding-nested-data-1/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/binding-nested-data-1/package.json +++ b/samples/grids/grid/binding-nested-data-1/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/cascading-combo/package.json b/samples/grids/grid/cascading-combo/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/cascading-combo/package.json +++ b/samples/grids/grid/cascading-combo/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/cell-editing-sample/package.json b/samples/grids/grid/cell-editing-sample/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/cell-editing-sample/package.json +++ b/samples/grids/grid/cell-editing-sample/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/cell-editing-styling/package.json b/samples/grids/grid/cell-editing-styling/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/cell-editing-styling/package.json +++ b/samples/grids/grid/cell-editing-styling/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/cell-merge-custom-sample/package.json b/samples/grids/grid/cell-merge-custom-sample/package.json index a31c7c5b87..c06c48b1c3 100644 --- a/samples/grids/grid/cell-merge-custom-sample/package.json +++ b/samples/grids/grid/cell-merge-custom-sample/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/cell-merge/package.json b/samples/grids/grid/cell-merge/package.json index a31c7c5b87..c06c48b1c3 100644 --- a/samples/grids/grid/cell-merge/package.json +++ b/samples/grids/grid/cell-merge/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/cell-selection-mode/package.json b/samples/grids/grid/cell-selection-mode/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/grid/cell-selection-mode/package.json +++ b/samples/grids/grid/cell-selection-mode/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/cell-selection-style/package.json b/samples/grids/grid/cell-selection-style/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/cell-selection-style/package.json +++ b/samples/grids/grid/cell-selection-style/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/change-icons-custom/package.json b/samples/grids/grid/change-icons-custom/package.json index da6a11c0c8..7612824c28 100644 --- a/samples/grids/grid/change-icons-custom/package.json +++ b/samples/grids/grid/change-icons-custom/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/clipboard-operations/package.json b/samples/grids/grid/clipboard-operations/package.json index da6a11c0c8..7612824c28 100644 --- a/samples/grids/grid/clipboard-operations/package.json +++ b/samples/grids/grid/clipboard-operations/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-auto-sizing/package.json b/samples/grids/grid/column-auto-sizing/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/column-auto-sizing/package.json +++ b/samples/grids/grid/column-auto-sizing/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-collapsible-groups/package.json b/samples/grids/grid/column-collapsible-groups/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/column-collapsible-groups/package.json +++ b/samples/grids/grid/column-collapsible-groups/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-data-types/package.json b/samples/grids/grid/column-data-types/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/column-data-types/package.json +++ b/samples/grids/grid/column-data-types/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-hiding-options/package.json b/samples/grids/grid/column-hiding-options/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/column-hiding-options/package.json +++ b/samples/grids/grid/column-hiding-options/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-hiding-toolbar-style/package.json b/samples/grids/grid/column-hiding-toolbar-style/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/column-hiding-toolbar-style/package.json +++ b/samples/grids/grid/column-hiding-toolbar-style/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-hiding-toolbar/package.json b/samples/grids/grid/column-hiding-toolbar/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/column-hiding-toolbar/package.json +++ b/samples/grids/grid/column-hiding-toolbar/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-moving-options/package.json b/samples/grids/grid/column-moving-options/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/column-moving-options/package.json +++ b/samples/grids/grid/column-moving-options/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-moving-styles/package.json b/samples/grids/grid/column-moving-styles/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/column-moving-styles/package.json +++ b/samples/grids/grid/column-moving-styles/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-pinning-both-sides/package.json b/samples/grids/grid/column-pinning-both-sides/package.json index a31c7c5b87..c06c48b1c3 100644 --- a/samples/grids/grid/column-pinning-both-sides/package.json +++ b/samples/grids/grid/column-pinning-both-sides/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-pinning-options/package.json b/samples/grids/grid/column-pinning-options/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/column-pinning-options/package.json +++ b/samples/grids/grid/column-pinning-options/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-pinning-right-side/package.json b/samples/grids/grid/column-pinning-right-side/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/column-pinning-right-side/package.json +++ b/samples/grids/grid/column-pinning-right-side/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-pinning-styles/package.json b/samples/grids/grid/column-pinning-styles/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/column-pinning-styles/package.json +++ b/samples/grids/grid/column-pinning-styles/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-pinning/package.json b/samples/grids/grid/column-pinning/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/column-pinning/package.json +++ b/samples/grids/grid/column-pinning/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-resize-styling/package.json b/samples/grids/grid/column-resize-styling/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/column-resize-styling/package.json +++ b/samples/grids/grid/column-resize-styling/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-resizing/package.json b/samples/grids/grid/column-resizing/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/column-resizing/package.json +++ b/samples/grids/grid/column-resizing/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-selection-group/package.json b/samples/grids/grid/column-selection-group/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/column-selection-group/package.json +++ b/samples/grids/grid/column-selection-group/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-selection-mode/package.json b/samples/grids/grid/column-selection-mode/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/grid/column-selection-mode/package.json +++ b/samples/grids/grid/column-selection-mode/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-selection-styles/package.json b/samples/grids/grid/column-selection-styles/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/column-selection-styles/package.json +++ b/samples/grids/grid/column-selection-styles/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-sorting-indicators/package.json b/samples/grids/grid/column-sorting-indicators/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/column-sorting-indicators/package.json +++ b/samples/grids/grid/column-sorting-indicators/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-sorting-options/package.json b/samples/grids/grid/column-sorting-options/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/grid/column-sorting-options/package.json +++ b/samples/grids/grid/column-sorting-options/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-sorting-style/package.json b/samples/grids/grid/column-sorting-style/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/column-sorting-style/package.json +++ b/samples/grids/grid/column-sorting-style/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/conditional-cell-style-1/package.json b/samples/grids/grid/conditional-cell-style-1/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/grid/conditional-cell-style-1/package.json +++ b/samples/grids/grid/conditional-cell-style-1/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/conditional-cell-style-2/package.json b/samples/grids/grid/conditional-cell-style-2/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/conditional-cell-style-2/package.json +++ b/samples/grids/grid/conditional-cell-style-2/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/conditional-row-selectors/package.json b/samples/grids/grid/conditional-row-selectors/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/conditional-row-selectors/package.json +++ b/samples/grids/grid/conditional-row-selectors/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/custom-context-menu/package.json b/samples/grids/grid/custom-context-menu/package.json index da6a11c0c8..7612824c28 100644 --- a/samples/grids/grid/custom-context-menu/package.json +++ b/samples/grids/grid/custom-context-menu/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/data-batch-editing-actions/package.json b/samples/grids/grid/data-batch-editing-actions/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/grid/data-batch-editing-actions/package.json +++ b/samples/grids/grid/data-batch-editing-actions/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/data-performance-virtualization/package.json b/samples/grids/grid/data-performance-virtualization/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/data-performance-virtualization/package.json +++ b/samples/grids/grid/data-performance-virtualization/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/data-searching/package.json b/samples/grids/grid/data-searching/package.json index da6a11c0c8..7612824c28 100644 --- a/samples/grids/grid/data-searching/package.json +++ b/samples/grids/grid/data-searching/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/data-summary-formatter/package.json b/samples/grids/grid/data-summary-formatter/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/data-summary-formatter/package.json +++ b/samples/grids/grid/data-summary-formatter/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/data-summary-options/package.json b/samples/grids/grid/data-summary-options/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/data-summary-options/package.json +++ b/samples/grids/grid/data-summary-options/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/data-summary-template/package.json b/samples/grids/grid/data-summary-template/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/grid/data-summary-template/package.json +++ b/samples/grids/grid/data-summary-template/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/data-validation-style/package.json b/samples/grids/grid/data-validation-style/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/data-validation-style/package.json +++ b/samples/grids/grid/data-validation-style/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/data-validator-service-cross-field/package.json b/samples/grids/grid/data-validator-service-cross-field/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/grid/data-validator-service-cross-field/package.json +++ b/samples/grids/grid/data-validator-service-cross-field/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/data-validator-service-extended/package.json b/samples/grids/grid/data-validator-service-extended/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/grid/data-validator-service-extended/package.json +++ b/samples/grids/grid/data-validator-service-extended/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/data-validator-service/package.json b/samples/grids/grid/data-validator-service/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/grid/data-validator-service/package.json +++ b/samples/grids/grid/data-validator-service/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/editing-columns/package.json b/samples/grids/grid/editing-columns/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/editing-columns/package.json +++ b/samples/grids/grid/editing-columns/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/editing-events/package.json b/samples/grids/grid/editing-events/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/editing-events/package.json +++ b/samples/grids/grid/editing-events/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/editing-excel-style/package.json b/samples/grids/grid/editing-excel-style/package.json index da6a11c0c8..7612824c28 100644 --- a/samples/grids/grid/editing-excel-style/package.json +++ b/samples/grids/grid/editing-excel-style/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/editing-lifecycle/package.json b/samples/grids/grid/editing-lifecycle/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/editing-lifecycle/package.json +++ b/samples/grids/grid/editing-lifecycle/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/excel-exporting/package.json b/samples/grids/grid/excel-exporting/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/excel-exporting/package.json +++ b/samples/grids/grid/excel-exporting/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/excel-style-filtering-sample-1/package.json b/samples/grids/grid/excel-style-filtering-sample-1/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/grid/excel-style-filtering-sample-1/package.json +++ b/samples/grids/grid/excel-style-filtering-sample-1/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/excel-style-filtering-sample-2/package.json b/samples/grids/grid/excel-style-filtering-sample-2/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/grid/excel-style-filtering-sample-2/package.json +++ b/samples/grids/grid/excel-style-filtering-sample-2/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/excel-style-filtering-sample-3/package.json b/samples/grids/grid/excel-style-filtering-sample-3/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/grid/excel-style-filtering-sample-3/package.json +++ b/samples/grids/grid/excel-style-filtering-sample-3/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/excel-style-filtering-style/package.json b/samples/grids/grid/excel-style-filtering-style/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/grid/excel-style-filtering-style/package.json +++ b/samples/grids/grid/excel-style-filtering-style/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/external-advanced-filtering/package.json b/samples/grids/grid/external-advanced-filtering/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/grid/external-advanced-filtering/package.json +++ b/samples/grids/grid/external-advanced-filtering/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/filtering-options/package.json b/samples/grids/grid/filtering-options/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/grid/filtering-options/package.json +++ b/samples/grids/grid/filtering-options/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/filtering-strategy/package.json b/samples/grids/grid/filtering-strategy/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/filtering-strategy/package.json +++ b/samples/grids/grid/filtering-strategy/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/filtering-style/package.json b/samples/grids/grid/filtering-style/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/grid/filtering-style/package.json +++ b/samples/grids/grid/filtering-style/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/finjs/package.json b/samples/grids/grid/finjs/package.json index 982522f24f..f8dda802a9 100644 --- a/samples/grids/grid/finjs/package.json +++ b/samples/grids/grid/finjs/package.json @@ -22,7 +22,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/groupby-custom/package.json b/samples/grids/grid/groupby-custom/package.json index da6a11c0c8..7612824c28 100644 --- a/samples/grids/grid/groupby-custom/package.json +++ b/samples/grids/grid/groupby-custom/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/groupby-expressions/package.json b/samples/grids/grid/groupby-expressions/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/groupby-expressions/package.json +++ b/samples/grids/grid/groupby-expressions/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/groupby-paging/package.json b/samples/grids/grid/groupby-paging/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/groupby-paging/package.json +++ b/samples/grids/grid/groupby-paging/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/groupby-styling/package.json b/samples/grids/grid/groupby-styling/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/groupby-styling/package.json +++ b/samples/grids/grid/groupby-styling/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/groupby-summary-options/package.json b/samples/grids/grid/groupby-summary-options/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/grid/groupby-summary-options/package.json +++ b/samples/grids/grid/groupby-summary-options/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/groupby-summary-styling/package.json b/samples/grids/grid/groupby-summary-styling/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/grid/groupby-summary-styling/package.json +++ b/samples/grids/grid/groupby-summary-styling/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/infinite-scroll/package.json b/samples/grids/grid/infinite-scroll/package.json index da6a11c0c8..7612824c28 100644 --- a/samples/grids/grid/infinite-scroll/package.json +++ b/samples/grids/grid/infinite-scroll/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/keyboard-custom-navigation/package.json b/samples/grids/grid/keyboard-custom-navigation/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/grid/keyboard-custom-navigation/package.json +++ b/samples/grids/grid/keyboard-custom-navigation/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/keyboard-mrl-navigation/package.json b/samples/grids/grid/keyboard-mrl-navigation/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/keyboard-mrl-navigation/package.json +++ b/samples/grids/grid/keyboard-mrl-navigation/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/layout-display-density/package.json b/samples/grids/grid/layout-display-density/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/grid/layout-display-density/package.json +++ b/samples/grids/grid/layout-display-density/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/master-detail/package.json b/samples/grids/grid/master-detail/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/master-detail/package.json +++ b/samples/grids/grid/master-detail/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/multi-cell-selection-mode/package.json b/samples/grids/grid/multi-cell-selection-mode/package.json index da6a11c0c8..7612824c28 100644 --- a/samples/grids/grid/multi-cell-selection-mode/package.json +++ b/samples/grids/grid/multi-cell-selection-mode/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/multi-column-headers-export/package.json b/samples/grids/grid/multi-column-headers-export/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/multi-column-headers-export/package.json +++ b/samples/grids/grid/multi-column-headers-export/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/multi-column-headers-overview/package.json b/samples/grids/grid/multi-column-headers-overview/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/grid/multi-column-headers-overview/package.json +++ b/samples/grids/grid/multi-column-headers-overview/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/multi-column-headers-styling/package.json b/samples/grids/grid/multi-column-headers-styling/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/multi-column-headers-styling/package.json +++ b/samples/grids/grid/multi-column-headers-styling/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/multi-column-headers-template/package.json b/samples/grids/grid/multi-column-headers-template/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/multi-column-headers-template/package.json +++ b/samples/grids/grid/multi-column-headers-template/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/multi-row-layout-options/package.json b/samples/grids/grid/multi-row-layout-options/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/multi-row-layout-options/package.json +++ b/samples/grids/grid/multi-row-layout-options/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/multi-row-layout-style/package.json b/samples/grids/grid/multi-row-layout-style/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/multi-row-layout-style/package.json +++ b/samples/grids/grid/multi-row-layout-style/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/overview/package.json b/samples/grids/grid/overview/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/overview/package.json +++ b/samples/grids/grid/overview/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/paste/package.json b/samples/grids/grid/paste/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/grid/paste/package.json +++ b/samples/grids/grid/paste/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/remote-paging-data/package.json b/samples/grids/grid/remote-paging-data/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/grid/remote-paging-data/package.json +++ b/samples/grids/grid/remote-paging-data/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/remote-paging-grid/package.json b/samples/grids/grid/remote-paging-grid/package.json index 3e0ac8205b..3ee098bff2 100644 --- a/samples/grids/grid/remote-paging-grid/package.json +++ b/samples/grids/grid/remote-paging-grid/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/row-adding/package.json b/samples/grids/grid/row-adding/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/row-adding/package.json +++ b/samples/grids/grid/row-adding/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/row-classes/package.json b/samples/grids/grid/row-classes/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/row-classes/package.json +++ b/samples/grids/grid/row-classes/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/row-drag-base/package.json b/samples/grids/grid/row-drag-base/package.json index da6a11c0c8..7612824c28 100644 --- a/samples/grids/grid/row-drag-base/package.json +++ b/samples/grids/grid/row-drag-base/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/row-editing-options/package.json b/samples/grids/grid/row-editing-options/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/row-editing-options/package.json +++ b/samples/grids/grid/row-editing-options/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/row-editing-style/package.json b/samples/grids/grid/row-editing-style/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/row-editing-style/package.json +++ b/samples/grids/grid/row-editing-style/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/row-paging-basic/package.json b/samples/grids/grid/row-paging-basic/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/row-paging-basic/package.json +++ b/samples/grids/grid/row-paging-basic/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/row-paging-options/package.json b/samples/grids/grid/row-paging-options/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/grid/row-paging-options/package.json +++ b/samples/grids/grid/row-paging-options/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/row-pinning-drag/package.json b/samples/grids/grid/row-pinning-drag/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/grid/row-pinning-drag/package.json +++ b/samples/grids/grid/row-pinning-drag/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/row-pinning-extra-column/package.json b/samples/grids/grid/row-pinning-extra-column/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/grid/row-pinning-extra-column/package.json +++ b/samples/grids/grid/row-pinning-extra-column/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/row-pinning-options/package.json b/samples/grids/grid/row-pinning-options/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/grid/row-pinning-options/package.json +++ b/samples/grids/grid/row-pinning-options/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/row-pinning-style/package.json b/samples/grids/grid/row-pinning-style/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/row-pinning-style/package.json +++ b/samples/grids/grid/row-pinning-style/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/row-reorder/package.json b/samples/grids/grid/row-reorder/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/grid/row-reorder/package.json +++ b/samples/grids/grid/row-reorder/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/row-selection-mode/package.json b/samples/grids/grid/row-selection-mode/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/grid/row-selection-mode/package.json +++ b/samples/grids/grid/row-selection-mode/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/row-selection-template-excel/package.json b/samples/grids/grid/row-selection-template-excel/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/grid/row-selection-template-excel/package.json +++ b/samples/grids/grid/row-selection-template-excel/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/row-selection-template-numbers/package.json b/samples/grids/grid/row-selection-template-numbers/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/row-selection-template-numbers/package.json +++ b/samples/grids/grid/row-selection-template-numbers/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/row-styles/package.json b/samples/grids/grid/row-styles/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/row-styles/package.json +++ b/samples/grids/grid/row-styles/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/state-persistence-about/package.json b/samples/grids/grid/state-persistence-about/package.json index da6a11c0c8..7612824c28 100644 --- a/samples/grids/grid/state-persistence-about/package.json +++ b/samples/grids/grid/state-persistence-about/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/state-persistence-main/package.json b/samples/grids/grid/state-persistence-main/package.json index da6a11c0c8..7612824c28 100644 --- a/samples/grids/grid/state-persistence-main/package.json +++ b/samples/grids/grid/state-persistence-main/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/styling-custom-CSS/package.json b/samples/grids/grid/styling-custom-CSS/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/styling-custom-CSS/package.json +++ b/samples/grids/grid/styling-custom-CSS/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/toolbar-sample-1/package.json b/samples/grids/grid/toolbar-sample-1/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/toolbar-sample-1/package.json +++ b/samples/grids/grid/toolbar-sample-1/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/toolbar-sample-2/package.json b/samples/grids/grid/toolbar-sample-2/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/toolbar-sample-2/package.json +++ b/samples/grids/grid/toolbar-sample-2/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/toolbar-sample-3/package.json b/samples/grids/grid/toolbar-sample-3/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/toolbar-sample-3/package.json +++ b/samples/grids/grid/toolbar-sample-3/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/toolbar-style/package.json b/samples/grids/grid/toolbar-style/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/grid/toolbar-style/package.json +++ b/samples/grids/grid/toolbar-style/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/action-strip/package.json b/samples/grids/hierarchical-grid/action-strip/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/action-strip/package.json +++ b/samples/grids/hierarchical-grid/action-strip/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/advanced-filtering-options/package.json b/samples/grids/hierarchical-grid/advanced-filtering-options/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-options/package.json +++ b/samples/grids/hierarchical-grid/advanced-filtering-options/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/advanced-filtering-style/package.json b/samples/grids/hierarchical-grid/advanced-filtering-style/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-style/package.json +++ b/samples/grids/hierarchical-grid/advanced-filtering-style/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/cell-editing-sample/package.json b/samples/grids/hierarchical-grid/cell-editing-sample/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/cell-editing-sample/package.json +++ b/samples/grids/hierarchical-grid/cell-editing-sample/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/cell-editing-styling/package.json b/samples/grids/hierarchical-grid/cell-editing-styling/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/cell-editing-styling/package.json +++ b/samples/grids/hierarchical-grid/cell-editing-styling/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/cell-merge-custom-sample/package.json b/samples/grids/hierarchical-grid/cell-merge-custom-sample/package.json index a31c7c5b87..c06c48b1c3 100644 --- a/samples/grids/hierarchical-grid/cell-merge-custom-sample/package.json +++ b/samples/grids/hierarchical-grid/cell-merge-custom-sample/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/cell-merge/package.json b/samples/grids/hierarchical-grid/cell-merge/package.json index a31c7c5b87..c06c48b1c3 100644 --- a/samples/grids/hierarchical-grid/cell-merge/package.json +++ b/samples/grids/hierarchical-grid/cell-merge/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/cell-selection-mode/package.json b/samples/grids/hierarchical-grid/cell-selection-mode/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/hierarchical-grid/cell-selection-mode/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-mode/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/cell-selection-overview/package.json b/samples/grids/hierarchical-grid/cell-selection-overview/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/hierarchical-grid/cell-selection-overview/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-overview/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/cell-selection-style/package.json b/samples/grids/hierarchical-grid/cell-selection-style/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/hierarchical-grid/cell-selection-style/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-style/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-auto-sizing/package.json b/samples/grids/hierarchical-grid/column-auto-sizing/package.json index da6a11c0c8..7612824c28 100644 --- a/samples/grids/hierarchical-grid/column-auto-sizing/package.json +++ b/samples/grids/hierarchical-grid/column-auto-sizing/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-collapsible-groups/package.json b/samples/grids/hierarchical-grid/column-collapsible-groups/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/column-collapsible-groups/package.json +++ b/samples/grids/hierarchical-grid/column-collapsible-groups/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json b/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json +++ b/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json b/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json +++ b/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-moving-options/package.json b/samples/grids/hierarchical-grid/column-moving-options/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/column-moving-options/package.json +++ b/samples/grids/hierarchical-grid/column-moving-options/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-moving-styles/package.json b/samples/grids/hierarchical-grid/column-moving-styles/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/column-moving-styles/package.json +++ b/samples/grids/hierarchical-grid/column-moving-styles/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-pinning-both-sides/package.json b/samples/grids/hierarchical-grid/column-pinning-both-sides/package.json index a31c7c5b87..c06c48b1c3 100644 --- a/samples/grids/hierarchical-grid/column-pinning-both-sides/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-both-sides/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-pinning-options/package.json b/samples/grids/hierarchical-grid/column-pinning-options/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/column-pinning-options/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-options/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-pinning-right-side/package.json b/samples/grids/hierarchical-grid/column-pinning-right-side/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/column-pinning-right-side/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-right-side/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-pinning-styles/package.json b/samples/grids/hierarchical-grid/column-pinning-styles/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/column-pinning-styles/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-styles/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-pinning/package.json b/samples/grids/hierarchical-grid/column-pinning/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/column-pinning/package.json +++ b/samples/grids/hierarchical-grid/column-pinning/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-resize-styling/package.json b/samples/grids/hierarchical-grid/column-resize-styling/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/column-resize-styling/package.json +++ b/samples/grids/hierarchical-grid/column-resize-styling/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-resizing/package.json b/samples/grids/hierarchical-grid/column-resizing/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/column-resizing/package.json +++ b/samples/grids/hierarchical-grid/column-resizing/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-selection-group/package.json b/samples/grids/hierarchical-grid/column-selection-group/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/column-selection-group/package.json +++ b/samples/grids/hierarchical-grid/column-selection-group/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-selection-mode/package.json b/samples/grids/hierarchical-grid/column-selection-mode/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/hierarchical-grid/column-selection-mode/package.json +++ b/samples/grids/hierarchical-grid/column-selection-mode/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-selection-styles/package.json b/samples/grids/hierarchical-grid/column-selection-styles/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/column-selection-styles/package.json +++ b/samples/grids/hierarchical-grid/column-selection-styles/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-sorting-indicators/package.json b/samples/grids/hierarchical-grid/column-sorting-indicators/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/column-sorting-indicators/package.json +++ b/samples/grids/hierarchical-grid/column-sorting-indicators/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-sorting-options/package.json b/samples/grids/hierarchical-grid/column-sorting-options/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/column-sorting-options/package.json +++ b/samples/grids/hierarchical-grid/column-sorting-options/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-sorting-style/package.json b/samples/grids/hierarchical-grid/column-sorting-style/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/column-sorting-style/package.json +++ b/samples/grids/hierarchical-grid/column-sorting-style/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json b/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json +++ b/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json b/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json +++ b/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/conditional-row-selectors/package.json b/samples/grids/hierarchical-grid/conditional-row-selectors/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/conditional-row-selectors/package.json +++ b/samples/grids/hierarchical-grid/conditional-row-selectors/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/custom-filtering/package.json b/samples/grids/hierarchical-grid/custom-filtering/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/custom-filtering/package.json +++ b/samples/grids/hierarchical-grid/custom-filtering/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/data-exporting-indicator/package.json b/samples/grids/hierarchical-grid/data-exporting-indicator/package.json index da6a11c0c8..7612824c28 100644 --- a/samples/grids/hierarchical-grid/data-exporting-indicator/package.json +++ b/samples/grids/hierarchical-grid/data-exporting-indicator/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/data-performance-virtualization/package.json b/samples/grids/hierarchical-grid/data-performance-virtualization/package.json index da6a11c0c8..7612824c28 100644 --- a/samples/grids/hierarchical-grid/data-performance-virtualization/package.json +++ b/samples/grids/hierarchical-grid/data-performance-virtualization/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/data-summary-formatter/package.json b/samples/grids/hierarchical-grid/data-summary-formatter/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/data-summary-formatter/package.json +++ b/samples/grids/hierarchical-grid/data-summary-formatter/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/data-summary-options-styling/package.json b/samples/grids/hierarchical-grid/data-summary-options-styling/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/data-summary-options-styling/package.json +++ b/samples/grids/hierarchical-grid/data-summary-options-styling/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/data-summary-options/package.json b/samples/grids/hierarchical-grid/data-summary-options/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/data-summary-options/package.json +++ b/samples/grids/hierarchical-grid/data-summary-options/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/data-summary-template/package.json b/samples/grids/hierarchical-grid/data-summary-template/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/hierarchical-grid/data-summary-template/package.json +++ b/samples/grids/hierarchical-grid/data-summary-template/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/editing-columns/package.json b/samples/grids/hierarchical-grid/editing-columns/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/editing-columns/package.json +++ b/samples/grids/hierarchical-grid/editing-columns/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/editing-events/package.json b/samples/grids/hierarchical-grid/editing-events/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/editing-events/package.json +++ b/samples/grids/hierarchical-grid/editing-events/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/editing-lifecycle/package.json b/samples/grids/hierarchical-grid/editing-lifecycle/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/editing-lifecycle/package.json +++ b/samples/grids/hierarchical-grid/editing-lifecycle/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/excel-exporting/package.json b/samples/grids/hierarchical-grid/excel-exporting/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/excel-exporting/package.json +++ b/samples/grids/hierarchical-grid/excel-exporting/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/filtering-options/package.json b/samples/grids/hierarchical-grid/filtering-options/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/filtering-options/package.json +++ b/samples/grids/hierarchical-grid/filtering-options/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/filtering-style/package.json b/samples/grids/hierarchical-grid/filtering-style/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/filtering-style/package.json +++ b/samples/grids/hierarchical-grid/filtering-style/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json b/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json b/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json b/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/layout-display-density/package.json b/samples/grids/hierarchical-grid/layout-display-density/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/hierarchical-grid/layout-display-density/package.json +++ b/samples/grids/hierarchical-grid/layout-display-density/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/multi-column-headers-export/package.json b/samples/grids/hierarchical-grid/multi-column-headers-export/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-export/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-export/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json b/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json b/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/multi-column-headers-template/package.json b/samples/grids/hierarchical-grid/multi-column-headers-template/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-template/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-template/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/overview/package.json b/samples/grids/hierarchical-grid/overview/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/overview/package.json +++ b/samples/grids/hierarchical-grid/overview/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/remote-paging-hgrid/package.json b/samples/grids/hierarchical-grid/remote-paging-hgrid/package.json index da6a11c0c8..7612824c28 100644 --- a/samples/grids/hierarchical-grid/remote-paging-hgrid/package.json +++ b/samples/grids/hierarchical-grid/remote-paging-hgrid/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-adding/package.json b/samples/grids/hierarchical-grid/row-adding/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/row-adding/package.json +++ b/samples/grids/hierarchical-grid/row-adding/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-classes/package.json b/samples/grids/hierarchical-grid/row-classes/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/row-classes/package.json +++ b/samples/grids/hierarchical-grid/row-classes/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-drag-base/package.json b/samples/grids/hierarchical-grid/row-drag-base/package.json index da6a11c0c8..7612824c28 100644 --- a/samples/grids/hierarchical-grid/row-drag-base/package.json +++ b/samples/grids/hierarchical-grid/row-drag-base/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-editing-options/package.json b/samples/grids/hierarchical-grid/row-editing-options/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/row-editing-options/package.json +++ b/samples/grids/hierarchical-grid/row-editing-options/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-editing-style/package.json b/samples/grids/hierarchical-grid/row-editing-style/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/row-editing-style/package.json +++ b/samples/grids/hierarchical-grid/row-editing-style/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json b/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json +++ b/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-pinning-options/package.json b/samples/grids/hierarchical-grid/row-pinning-options/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/hierarchical-grid/row-pinning-options/package.json +++ b/samples/grids/hierarchical-grid/row-pinning-options/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-pinning-style/package.json b/samples/grids/hierarchical-grid/row-pinning-style/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/row-pinning-style/package.json +++ b/samples/grids/hierarchical-grid/row-pinning-style/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-reorder/package.json b/samples/grids/hierarchical-grid/row-reorder/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/row-reorder/package.json +++ b/samples/grids/hierarchical-grid/row-reorder/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-selection-mode/package.json b/samples/grids/hierarchical-grid/row-selection-mode/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/hierarchical-grid/row-selection-mode/package.json +++ b/samples/grids/hierarchical-grid/row-selection-mode/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json b/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json +++ b/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-styles/package.json b/samples/grids/hierarchical-grid/row-styles/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/row-styles/package.json +++ b/samples/grids/hierarchical-grid/row-styles/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/state-persistence-about/package.json b/samples/grids/hierarchical-grid/state-persistence-about/package.json index da6a11c0c8..7612824c28 100644 --- a/samples/grids/hierarchical-grid/state-persistence-about/package.json +++ b/samples/grids/hierarchical-grid/state-persistence-about/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/state-persistence-main/package.json b/samples/grids/hierarchical-grid/state-persistence-main/package.json index da6a11c0c8..7612824c28 100644 --- a/samples/grids/hierarchical-grid/state-persistence-main/package.json +++ b/samples/grids/hierarchical-grid/state-persistence-main/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/toolbar-sample-3/package.json b/samples/grids/hierarchical-grid/toolbar-sample-3/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-3/package.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-3/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/toolbar-sample-4/package.json b/samples/grids/hierarchical-grid/toolbar-sample-4/package.json index da6a11c0c8..7612824c28 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-4/package.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-4/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/toolbar-style/package.json b/samples/grids/hierarchical-grid/toolbar-style/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/hierarchical-grid/toolbar-style/package.json +++ b/samples/grids/hierarchical-grid/toolbar-style/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/pivot-grid/aggregate-max-sales/package.json b/samples/grids/pivot-grid/aggregate-max-sales/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/pivot-grid/aggregate-max-sales/package.json +++ b/samples/grids/pivot-grid/aggregate-max-sales/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/pivot-grid/aggregate-units-sold/package.json b/samples/grids/pivot-grid/aggregate-units-sold/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/pivot-grid/aggregate-units-sold/package.json +++ b/samples/grids/pivot-grid/aggregate-units-sold/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/pivot-grid/data-selector/package.json b/samples/grids/pivot-grid/data-selector/package.json index da6a11c0c8..7612824c28 100644 --- a/samples/grids/pivot-grid/data-selector/package.json +++ b/samples/grids/pivot-grid/data-selector/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/pivot-grid/features/package.json b/samples/grids/pivot-grid/features/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/pivot-grid/features/package.json +++ b/samples/grids/pivot-grid/features/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/pivot-grid/state-persistence-about/package.json b/samples/grids/pivot-grid/state-persistence-about/package.json index da6a11c0c8..7612824c28 100644 --- a/samples/grids/pivot-grid/state-persistence-about/package.json +++ b/samples/grids/pivot-grid/state-persistence-about/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/pivot-grid/state-persistence-main/package.json b/samples/grids/pivot-grid/state-persistence-main/package.json index da6a11c0c8..7612824c28 100644 --- a/samples/grids/pivot-grid/state-persistence-main/package.json +++ b/samples/grids/pivot-grid/state-persistence-main/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/action-strip/package.json b/samples/grids/tree-grid/action-strip/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/action-strip/package.json +++ b/samples/grids/tree-grid/action-strip/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/advanced-filtering-options/package.json b/samples/grids/tree-grid/advanced-filtering-options/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/advanced-filtering-options/package.json +++ b/samples/grids/tree-grid/advanced-filtering-options/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/advanced-filtering-style/package.json b/samples/grids/tree-grid/advanced-filtering-style/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/advanced-filtering-style/package.json +++ b/samples/grids/tree-grid/advanced-filtering-style/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/cell-editing-sample/package.json b/samples/grids/tree-grid/cell-editing-sample/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/cell-editing-sample/package.json +++ b/samples/grids/tree-grid/cell-editing-sample/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/cell-editing-styling/package.json b/samples/grids/tree-grid/cell-editing-styling/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/cell-editing-styling/package.json +++ b/samples/grids/tree-grid/cell-editing-styling/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/cell-merge-custom-sample/package.json b/samples/grids/tree-grid/cell-merge-custom-sample/package.json index a31c7c5b87..c06c48b1c3 100644 --- a/samples/grids/tree-grid/cell-merge-custom-sample/package.json +++ b/samples/grids/tree-grid/cell-merge-custom-sample/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/cell-merge/package.json b/samples/grids/tree-grid/cell-merge/package.json index a31c7c5b87..c06c48b1c3 100644 --- a/samples/grids/tree-grid/cell-merge/package.json +++ b/samples/grids/tree-grid/cell-merge/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/cell-selection-mode/package.json b/samples/grids/tree-grid/cell-selection-mode/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/tree-grid/cell-selection-mode/package.json +++ b/samples/grids/tree-grid/cell-selection-mode/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/cell-selection-style/package.json b/samples/grids/tree-grid/cell-selection-style/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/cell-selection-style/package.json +++ b/samples/grids/tree-grid/cell-selection-style/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/clipboard-operations/package.json b/samples/grids/tree-grid/clipboard-operations/package.json index da6a11c0c8..7612824c28 100644 --- a/samples/grids/tree-grid/clipboard-operations/package.json +++ b/samples/grids/tree-grid/clipboard-operations/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-auto-sizing/package.json b/samples/grids/tree-grid/column-auto-sizing/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/column-auto-sizing/package.json +++ b/samples/grids/tree-grid/column-auto-sizing/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-collapsible-groups/package.json b/samples/grids/tree-grid/column-collapsible-groups/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/column-collapsible-groups/package.json +++ b/samples/grids/tree-grid/column-collapsible-groups/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-data-types/package.json b/samples/grids/tree-grid/column-data-types/package.json index da6a11c0c8..7612824c28 100644 --- a/samples/grids/tree-grid/column-data-types/package.json +++ b/samples/grids/tree-grid/column-data-types/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-hiding-toolbar-style/package.json b/samples/grids/tree-grid/column-hiding-toolbar-style/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar-style/package.json +++ b/samples/grids/tree-grid/column-hiding-toolbar-style/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-hiding-toolbar/package.json b/samples/grids/tree-grid/column-hiding-toolbar/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar/package.json +++ b/samples/grids/tree-grid/column-hiding-toolbar/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-moving-options/package.json b/samples/grids/tree-grid/column-moving-options/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/column-moving-options/package.json +++ b/samples/grids/tree-grid/column-moving-options/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-moving-styles/package.json b/samples/grids/tree-grid/column-moving-styles/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/column-moving-styles/package.json +++ b/samples/grids/tree-grid/column-moving-styles/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-pinning-both-sides/package.json b/samples/grids/tree-grid/column-pinning-both-sides/package.json index a31c7c5b87..c06c48b1c3 100644 --- a/samples/grids/tree-grid/column-pinning-both-sides/package.json +++ b/samples/grids/tree-grid/column-pinning-both-sides/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-pinning-options/package.json b/samples/grids/tree-grid/column-pinning-options/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/column-pinning-options/package.json +++ b/samples/grids/tree-grid/column-pinning-options/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-pinning-right-side/package.json b/samples/grids/tree-grid/column-pinning-right-side/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/column-pinning-right-side/package.json +++ b/samples/grids/tree-grid/column-pinning-right-side/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-pinning-styles/package.json b/samples/grids/tree-grid/column-pinning-styles/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/column-pinning-styles/package.json +++ b/samples/grids/tree-grid/column-pinning-styles/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-pinning-toolbar/package.json b/samples/grids/tree-grid/column-pinning-toolbar/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/column-pinning-toolbar/package.json +++ b/samples/grids/tree-grid/column-pinning-toolbar/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-pinning/package.json b/samples/grids/tree-grid/column-pinning/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/column-pinning/package.json +++ b/samples/grids/tree-grid/column-pinning/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-resize-styling/package.json b/samples/grids/tree-grid/column-resize-styling/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/column-resize-styling/package.json +++ b/samples/grids/tree-grid/column-resize-styling/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-resizing/package.json b/samples/grids/tree-grid/column-resizing/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/column-resizing/package.json +++ b/samples/grids/tree-grid/column-resizing/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-selection-group/package.json b/samples/grids/tree-grid/column-selection-group/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/column-selection-group/package.json +++ b/samples/grids/tree-grid/column-selection-group/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-selection-mode/package.json b/samples/grids/tree-grid/column-selection-mode/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/tree-grid/column-selection-mode/package.json +++ b/samples/grids/tree-grid/column-selection-mode/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-selection-style/package.json b/samples/grids/tree-grid/column-selection-style/package.json index da6a11c0c8..7612824c28 100644 --- a/samples/grids/tree-grid/column-selection-style/package.json +++ b/samples/grids/tree-grid/column-selection-style/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-selection-styles/package.json b/samples/grids/tree-grid/column-selection-styles/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/column-selection-styles/package.json +++ b/samples/grids/tree-grid/column-selection-styles/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-sorting-indicators/package.json b/samples/grids/tree-grid/column-sorting-indicators/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/column-sorting-indicators/package.json +++ b/samples/grids/tree-grid/column-sorting-indicators/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-sorting-options/package.json b/samples/grids/tree-grid/column-sorting-options/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/tree-grid/column-sorting-options/package.json +++ b/samples/grids/tree-grid/column-sorting-options/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-sorting-style/package.json b/samples/grids/tree-grid/column-sorting-style/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/tree-grid/column-sorting-style/package.json +++ b/samples/grids/tree-grid/column-sorting-style/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/conditional-cell-style-1/package.json b/samples/grids/tree-grid/conditional-cell-style-1/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/conditional-cell-style-1/package.json +++ b/samples/grids/tree-grid/conditional-cell-style-1/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/conditional-cell-style-2/package.json b/samples/grids/tree-grid/conditional-cell-style-2/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/conditional-cell-style-2/package.json +++ b/samples/grids/tree-grid/conditional-cell-style-2/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/conditional-row-selectors/package.json b/samples/grids/tree-grid/conditional-row-selectors/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/conditional-row-selectors/package.json +++ b/samples/grids/tree-grid/conditional-row-selectors/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/data-exporting-indicator/package.json b/samples/grids/tree-grid/data-exporting-indicator/package.json index da6a11c0c8..7612824c28 100644 --- a/samples/grids/tree-grid/data-exporting-indicator/package.json +++ b/samples/grids/tree-grid/data-exporting-indicator/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/data-summary-children/package.json b/samples/grids/tree-grid/data-summary-children/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/tree-grid/data-summary-children/package.json +++ b/samples/grids/tree-grid/data-summary-children/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/data-summary-formatter/package.json b/samples/grids/tree-grid/data-summary-formatter/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/data-summary-formatter/package.json +++ b/samples/grids/tree-grid/data-summary-formatter/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/data-summary-options-styling/package.json b/samples/grids/tree-grid/data-summary-options-styling/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/data-summary-options-styling/package.json +++ b/samples/grids/tree-grid/data-summary-options-styling/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/data-summary-options/package.json b/samples/grids/tree-grid/data-summary-options/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/data-summary-options/package.json +++ b/samples/grids/tree-grid/data-summary-options/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/data-summary-template/package.json b/samples/grids/tree-grid/data-summary-template/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/tree-grid/data-summary-template/package.json +++ b/samples/grids/tree-grid/data-summary-template/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/editing-columns/package.json b/samples/grids/tree-grid/editing-columns/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/editing-columns/package.json +++ b/samples/grids/tree-grid/editing-columns/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/editing-events/package.json b/samples/grids/tree-grid/editing-events/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/editing-events/package.json +++ b/samples/grids/tree-grid/editing-events/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/editing-lifecycle/package.json b/samples/grids/tree-grid/editing-lifecycle/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/editing-lifecycle/package.json +++ b/samples/grids/tree-grid/editing-lifecycle/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/excel-exporting/package.json b/samples/grids/tree-grid/excel-exporting/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/excel-exporting/package.json +++ b/samples/grids/tree-grid/excel-exporting/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json b/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json b/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json b/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/excel-style-filtering-style/package.json b/samples/grids/tree-grid/excel-style-filtering-style/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/excel-style-filtering-style/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-style/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/filtering-options/package.json b/samples/grids/tree-grid/filtering-options/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/filtering-options/package.json +++ b/samples/grids/tree-grid/filtering-options/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/filtering-style/package.json b/samples/grids/tree-grid/filtering-style/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/filtering-style/package.json +++ b/samples/grids/tree-grid/filtering-style/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/keyboard-custom-navigation/package.json b/samples/grids/tree-grid/keyboard-custom-navigation/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/tree-grid/keyboard-custom-navigation/package.json +++ b/samples/grids/tree-grid/keyboard-custom-navigation/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/layout-display-density/package.json b/samples/grids/tree-grid/layout-display-density/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/tree-grid/layout-display-density/package.json +++ b/samples/grids/tree-grid/layout-display-density/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/multi-cell-selection-mode/package.json b/samples/grids/tree-grid/multi-cell-selection-mode/package.json index da6a11c0c8..7612824c28 100644 --- a/samples/grids/tree-grid/multi-cell-selection-mode/package.json +++ b/samples/grids/tree-grid/multi-cell-selection-mode/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/multi-column-headers-export/package.json b/samples/grids/tree-grid/multi-column-headers-export/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/multi-column-headers-export/package.json +++ b/samples/grids/tree-grid/multi-column-headers-export/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/multi-column-headers-overview/package.json b/samples/grids/tree-grid/multi-column-headers-overview/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/tree-grid/multi-column-headers-overview/package.json +++ b/samples/grids/tree-grid/multi-column-headers-overview/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/multi-column-headers-styling/package.json b/samples/grids/tree-grid/multi-column-headers-styling/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/multi-column-headers-styling/package.json +++ b/samples/grids/tree-grid/multi-column-headers-styling/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/multi-column-headers-template/package.json b/samples/grids/tree-grid/multi-column-headers-template/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/multi-column-headers-template/package.json +++ b/samples/grids/tree-grid/multi-column-headers-template/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/overview-styling/package.json b/samples/grids/tree-grid/overview-styling/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/overview-styling/package.json +++ b/samples/grids/tree-grid/overview-styling/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/overview/package.json b/samples/grids/tree-grid/overview/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/tree-grid/overview/package.json +++ b/samples/grids/tree-grid/overview/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/row-adding/package.json b/samples/grids/tree-grid/row-adding/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/row-adding/package.json +++ b/samples/grids/tree-grid/row-adding/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/row-classes/package.json b/samples/grids/tree-grid/row-classes/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/row-classes/package.json +++ b/samples/grids/tree-grid/row-classes/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/row-drag-base/package.json b/samples/grids/tree-grid/row-drag-base/package.json index da6a11c0c8..7612824c28 100644 --- a/samples/grids/tree-grid/row-drag-base/package.json +++ b/samples/grids/tree-grid/row-drag-base/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/row-editing-options/package.json b/samples/grids/tree-grid/row-editing-options/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/row-editing-options/package.json +++ b/samples/grids/tree-grid/row-editing-options/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/row-editing-style/package.json b/samples/grids/tree-grid/row-editing-style/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/row-editing-style/package.json +++ b/samples/grids/tree-grid/row-editing-style/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/row-paging-basic/package.json b/samples/grids/tree-grid/row-paging-basic/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/row-paging-basic/package.json +++ b/samples/grids/tree-grid/row-paging-basic/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/row-paging-options/package.json b/samples/grids/tree-grid/row-paging-options/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/tree-grid/row-paging-options/package.json +++ b/samples/grids/tree-grid/row-paging-options/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/row-paging-style/package.json b/samples/grids/tree-grid/row-paging-style/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/row-paging-style/package.json +++ b/samples/grids/tree-grid/row-paging-style/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/row-pinning-extra-column/package.json b/samples/grids/tree-grid/row-pinning-extra-column/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/row-pinning-extra-column/package.json +++ b/samples/grids/tree-grid/row-pinning-extra-column/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/row-pinning-options/package.json b/samples/grids/tree-grid/row-pinning-options/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/tree-grid/row-pinning-options/package.json +++ b/samples/grids/tree-grid/row-pinning-options/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/row-pinning-style/package.json b/samples/grids/tree-grid/row-pinning-style/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/row-pinning-style/package.json +++ b/samples/grids/tree-grid/row-pinning-style/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/row-reorder/package.json b/samples/grids/tree-grid/row-reorder/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/row-reorder/package.json +++ b/samples/grids/tree-grid/row-reorder/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/row-selection-mode/package.json b/samples/grids/tree-grid/row-selection-mode/package.json index 696a2c935b..4627ecf3f8 100644 --- a/samples/grids/tree-grid/row-selection-mode/package.json +++ b/samples/grids/tree-grid/row-selection-mode/package.json @@ -20,7 +20,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/row-selection-template-excel/package.json b/samples/grids/tree-grid/row-selection-template-excel/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/row-selection-template-excel/package.json +++ b/samples/grids/tree-grid/row-selection-template-excel/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/row-selection-template-numbers/package.json b/samples/grids/tree-grid/row-selection-template-numbers/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/row-selection-template-numbers/package.json +++ b/samples/grids/tree-grid/row-selection-template-numbers/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/row-styles/package.json b/samples/grids/tree-grid/row-styles/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/row-styles/package.json +++ b/samples/grids/tree-grid/row-styles/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/state-persistence-about/package.json b/samples/grids/tree-grid/state-persistence-about/package.json index da6a11c0c8..7612824c28 100644 --- a/samples/grids/tree-grid/state-persistence-about/package.json +++ b/samples/grids/tree-grid/state-persistence-about/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/state-persistence-main/package.json b/samples/grids/tree-grid/state-persistence-main/package.json index da6a11c0c8..7612824c28 100644 --- a/samples/grids/tree-grid/state-persistence-main/package.json +++ b/samples/grids/tree-grid/state-persistence-main/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/toolbar-sample-1/package.json b/samples/grids/tree-grid/toolbar-sample-1/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/toolbar-sample-1/package.json +++ b/samples/grids/tree-grid/toolbar-sample-1/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/toolbar-sample-2/package.json b/samples/grids/tree-grid/toolbar-sample-2/package.json index da6a11c0c8..7612824c28 100644 --- a/samples/grids/tree-grid/toolbar-sample-2/package.json +++ b/samples/grids/tree-grid/toolbar-sample-2/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/toolbar-sample-3/package.json b/samples/grids/tree-grid/toolbar-sample-3/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/toolbar-sample-3/package.json +++ b/samples/grids/tree-grid/toolbar-sample-3/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/toolbar-sample-4/package.json b/samples/grids/tree-grid/toolbar-sample-4/package.json index da6a11c0c8..7612824c28 100644 --- a/samples/grids/tree-grid/toolbar-sample-4/package.json +++ b/samples/grids/tree-grid/toolbar-sample-4/package.json @@ -21,7 +21,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/toolbar-style/package.json b/samples/grids/tree-grid/toolbar-style/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/toolbar-style/package.json +++ b/samples/grids/tree-grid/toolbar-style/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/using-primary-foreign-keys/package.json b/samples/grids/tree-grid/using-primary-foreign-keys/package.json index 6d3c7df216..5221cd49b1 100644 --- a/samples/grids/tree-grid/using-primary-foreign-keys/package.json +++ b/samples/grids/tree-grid/using-primary-foreign-keys/package.json @@ -18,7 +18,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/badge/outlined/package.json b/samples/inputs/badge/outlined/package.json index b458bc43be..bc749fff5b 100644 --- a/samples/inputs/badge/outlined/package.json +++ b/samples/inputs/badge/outlined/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/badge/shape/package.json b/samples/inputs/badge/shape/package.json index da02811226..4d7200c9b1 100644 --- a/samples/inputs/badge/shape/package.json +++ b/samples/inputs/badge/shape/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/badge/styling/package.json b/samples/inputs/badge/styling/package.json index da02811226..4d7200c9b1 100644 --- a/samples/inputs/badge/styling/package.json +++ b/samples/inputs/badge/styling/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/badge/variants/package.json b/samples/inputs/badge/variants/package.json index 2d46aa4283..dacb0820fc 100644 --- a/samples/inputs/badge/variants/package.json +++ b/samples/inputs/badge/variants/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/button-group/alignment/package.json b/samples/inputs/button-group/alignment/package.json index 16f9206b9f..9407bb252f 100644 --- a/samples/inputs/button-group/alignment/package.json +++ b/samples/inputs/button-group/alignment/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/button-group/overview/package.json b/samples/inputs/button-group/overview/package.json index 013310b7ed..7e2f7a8b83 100644 --- a/samples/inputs/button-group/overview/package.json +++ b/samples/inputs/button-group/overview/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/button-group/selection/package.json b/samples/inputs/button-group/selection/package.json index 84ad70b056..5b96362279 100644 --- a/samples/inputs/button-group/selection/package.json +++ b/samples/inputs/button-group/selection/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/button-group/size/package.json b/samples/inputs/button-group/size/package.json index 0e1c4585ec..ed7fbe6e28 100644 --- a/samples/inputs/button-group/size/package.json +++ b/samples/inputs/button-group/size/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/button-group/styling/package.json b/samples/inputs/button-group/styling/package.json index db16f82452..a386a90c5d 100644 --- a/samples/inputs/button-group/styling/package.json +++ b/samples/inputs/button-group/styling/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/button/contained/package.json b/samples/inputs/button/contained/package.json index ad712677f9..60f8b7c900 100644 --- a/samples/inputs/button/contained/package.json +++ b/samples/inputs/button/contained/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/button/download/package.json b/samples/inputs/button/download/package.json index 75b49aedd8..f22b2e9a27 100644 --- a/samples/inputs/button/download/package.json +++ b/samples/inputs/button/download/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/button/fab/package.json b/samples/inputs/button/fab/package.json index c1ffbd7f43..6393215fc2 100644 --- a/samples/inputs/button/fab/package.json +++ b/samples/inputs/button/fab/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/button/flat/package.json b/samples/inputs/button/flat/package.json index e557628abc..63563ef19f 100644 --- a/samples/inputs/button/flat/package.json +++ b/samples/inputs/button/flat/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/button/outlined/package.json b/samples/inputs/button/outlined/package.json index 9568d64f2f..0030297957 100644 --- a/samples/inputs/button/outlined/package.json +++ b/samples/inputs/button/outlined/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/button/overview/package.json b/samples/inputs/button/overview/package.json index cb42602fb7..effd270122 100644 --- a/samples/inputs/button/overview/package.json +++ b/samples/inputs/button/overview/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/button/size/package.json b/samples/inputs/button/size/package.json index d9150416f7..f615918c6b 100644 --- a/samples/inputs/button/size/package.json +++ b/samples/inputs/button/size/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/button/styling/package.json b/samples/inputs/button/styling/package.json index de13fa6806..8698687af3 100644 --- a/samples/inputs/button/styling/package.json +++ b/samples/inputs/button/styling/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/checkbox/checking/package.json b/samples/inputs/checkbox/checking/package.json index b1d9cb7fa9..093ab74cdd 100644 --- a/samples/inputs/checkbox/checking/package.json +++ b/samples/inputs/checkbox/checking/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/checkbox/disabled/package.json b/samples/inputs/checkbox/disabled/package.json index f8ab3898c9..1127a47365 100644 --- a/samples/inputs/checkbox/disabled/package.json +++ b/samples/inputs/checkbox/disabled/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/checkbox/indeterminate/package.json b/samples/inputs/checkbox/indeterminate/package.json index 59d2233ccd..1ee8049f38 100644 --- a/samples/inputs/checkbox/indeterminate/package.json +++ b/samples/inputs/checkbox/indeterminate/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/checkbox/label/package.json b/samples/inputs/checkbox/label/package.json index 770d8cd187..58d3398864 100644 --- a/samples/inputs/checkbox/label/package.json +++ b/samples/inputs/checkbox/label/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/checkbox/overview/package.json b/samples/inputs/checkbox/overview/package.json index 5ed3552b0a..7f2b33a892 100644 --- a/samples/inputs/checkbox/overview/package.json +++ b/samples/inputs/checkbox/overview/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/checkbox/styling/package.json b/samples/inputs/checkbox/styling/package.json index 5ed3552b0a..7f2b33a892 100644 --- a/samples/inputs/checkbox/styling/package.json +++ b/samples/inputs/checkbox/styling/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/chip/multiple/package.json b/samples/inputs/chip/multiple/package.json index 7b62f76f23..e07c3b4956 100644 --- a/samples/inputs/chip/multiple/package.json +++ b/samples/inputs/chip/multiple/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/chip/overview/package.json b/samples/inputs/chip/overview/package.json index 70cd0146a7..e4fc0b5933 100644 --- a/samples/inputs/chip/overview/package.json +++ b/samples/inputs/chip/overview/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/chip/size/package.json b/samples/inputs/chip/size/package.json index 090f9d010a..6521fa2fbc 100644 --- a/samples/inputs/chip/size/package.json +++ b/samples/inputs/chip/size/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/chip/styling/package.json b/samples/inputs/chip/styling/package.json index 8cdce31604..6de6401fde 100644 --- a/samples/inputs/chip/styling/package.json +++ b/samples/inputs/chip/styling/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/chip/variants/package.json b/samples/inputs/chip/variants/package.json index ddf68e109b..5cf36a182d 100644 --- a/samples/inputs/chip/variants/package.json +++ b/samples/inputs/chip/variants/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/circular-progress-indicator/dynamic/package.json b/samples/inputs/circular-progress-indicator/dynamic/package.json index c4b1cea153..aea1c52e9f 100644 --- a/samples/inputs/circular-progress-indicator/dynamic/package.json +++ b/samples/inputs/circular-progress-indicator/dynamic/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/circular-progress-indicator/indeterminate/package.json b/samples/inputs/circular-progress-indicator/indeterminate/package.json index 2ca3fd1960..0b86da9ea0 100644 --- a/samples/inputs/circular-progress-indicator/indeterminate/package.json +++ b/samples/inputs/circular-progress-indicator/indeterminate/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/circular-progress-indicator/simple/package.json b/samples/inputs/circular-progress-indicator/simple/package.json index a06732a0ba..1f4ed42d18 100644 --- a/samples/inputs/circular-progress-indicator/simple/package.json +++ b/samples/inputs/circular-progress-indicator/simple/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/circular-progress-indicator/styling/package.json b/samples/inputs/circular-progress-indicator/styling/package.json index ed3048dea5..7643698c21 100644 --- a/samples/inputs/circular-progress-indicator/styling/package.json +++ b/samples/inputs/circular-progress-indicator/styling/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/color-editor/overview/package.json b/samples/inputs/color-editor/overview/package.json index c77496a09f..ccd70a75a5 100644 --- a/samples/inputs/color-editor/overview/package.json +++ b/samples/inputs/color-editor/overview/package.json @@ -17,7 +17,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/combo/features/package.json b/samples/inputs/combo/features/package.json index 97a99df485..cffaf1d293 100644 --- a/samples/inputs/combo/features/package.json +++ b/samples/inputs/combo/features/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/combo/overview/package.json b/samples/inputs/combo/overview/package.json index ed41d94183..8efe0e5b3e 100644 --- a/samples/inputs/combo/overview/package.json +++ b/samples/inputs/combo/overview/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/combo/selection/package.json b/samples/inputs/combo/selection/package.json index 26441edbad..83a6f9e8ff 100644 --- a/samples/inputs/combo/selection/package.json +++ b/samples/inputs/combo/selection/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/combo/simplified/package.json b/samples/inputs/combo/simplified/package.json index 6d4424298d..c9ef2040ba 100644 --- a/samples/inputs/combo/simplified/package.json +++ b/samples/inputs/combo/simplified/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/combo/styling/package.json b/samples/inputs/combo/styling/package.json index 9652b94bc0..c0ced05626 100644 --- a/samples/inputs/combo/styling/package.json +++ b/samples/inputs/combo/styling/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/combo/templates/package.json b/samples/inputs/combo/templates/package.json index e641272efa..8edce1d360 100644 --- a/samples/inputs/combo/templates/package.json +++ b/samples/inputs/combo/templates/package.json @@ -18,7 +18,7 @@ "igniteui-react-grids": "^19.5.0-rc.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/date-time-input/input-format-display-format/package.json b/samples/inputs/date-time-input/input-format-display-format/package.json index 01e81e7b58..076876bd18 100644 --- a/samples/inputs/date-time-input/input-format-display-format/package.json +++ b/samples/inputs/date-time-input/input-format-display-format/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/date-time-input/min-max-value/package.json b/samples/inputs/date-time-input/min-max-value/package.json index 3060b85946..7b0d59c0b4 100644 --- a/samples/inputs/date-time-input/min-max-value/package.json +++ b/samples/inputs/date-time-input/min-max-value/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/date-time-input/overview/package.json b/samples/inputs/date-time-input/overview/package.json index 0229cafda2..56066e1e40 100644 --- a/samples/inputs/date-time-input/overview/package.json +++ b/samples/inputs/date-time-input/overview/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/date-time-input/step-up-down/package.json b/samples/inputs/date-time-input/step-up-down/package.json index fb0b116d0e..afa0f9d2c2 100644 --- a/samples/inputs/date-time-input/step-up-down/package.json +++ b/samples/inputs/date-time-input/step-up-down/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/date-time-input/styling/package.json b/samples/inputs/date-time-input/styling/package.json index 0229cafda2..56066e1e40 100644 --- a/samples/inputs/date-time-input/styling/package.json +++ b/samples/inputs/date-time-input/styling/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/dropdown/group/package.json b/samples/inputs/dropdown/group/package.json index 83bb301ca8..b59c5e3eb2 100644 --- a/samples/inputs/dropdown/group/package.json +++ b/samples/inputs/dropdown/group/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/dropdown/header/package.json b/samples/inputs/dropdown/header/package.json index 5367789702..c2c732e920 100644 --- a/samples/inputs/dropdown/header/package.json +++ b/samples/inputs/dropdown/header/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/dropdown/item/package.json b/samples/inputs/dropdown/item/package.json index a632bb49e3..e747d0ec64 100644 --- a/samples/inputs/dropdown/item/package.json +++ b/samples/inputs/dropdown/item/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/dropdown/overview/package.json b/samples/inputs/dropdown/overview/package.json index 44493bc371..0c39ac943c 100644 --- a/samples/inputs/dropdown/overview/package.json +++ b/samples/inputs/dropdown/overview/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/dropdown/position/package.json b/samples/inputs/dropdown/position/package.json index d44caec58b..b840e2545d 100644 --- a/samples/inputs/dropdown/position/package.json +++ b/samples/inputs/dropdown/position/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/dropdown/styling/package.json b/samples/inputs/dropdown/styling/package.json index 60324b28f3..e12b944fcf 100644 --- a/samples/inputs/dropdown/styling/package.json +++ b/samples/inputs/dropdown/styling/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/dropdown/target/package.json b/samples/inputs/dropdown/target/package.json index 0d9198dcbf..b3365fb8fc 100644 --- a/samples/inputs/dropdown/target/package.json +++ b/samples/inputs/dropdown/target/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/icon-button/size/package.json b/samples/inputs/icon-button/size/package.json index 38e8923f85..f650ab0b44 100644 --- a/samples/inputs/icon-button/size/package.json +++ b/samples/inputs/icon-button/size/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/icon-button/styling/package.json b/samples/inputs/icon-button/styling/package.json index e03d80ffc6..8d9b22c96c 100644 --- a/samples/inputs/icon-button/styling/package.json +++ b/samples/inputs/icon-button/styling/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/icon-button/variant/package.json b/samples/inputs/icon-button/variant/package.json index 1b3f13c98a..0854a454cb 100644 --- a/samples/inputs/icon-button/variant/package.json +++ b/samples/inputs/icon-button/variant/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/input/helper-text/package.json b/samples/inputs/input/helper-text/package.json index 9f986c412e..ebffc4f49e 100644 --- a/samples/inputs/input/helper-text/package.json +++ b/samples/inputs/input/helper-text/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/input/overview/package.json b/samples/inputs/input/overview/package.json index 4cf8b73683..23897da212 100644 --- a/samples/inputs/input/overview/package.json +++ b/samples/inputs/input/overview/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/input/prefix-suffix/package.json b/samples/inputs/input/prefix-suffix/package.json index 3611e42c41..7dac4c5639 100644 --- a/samples/inputs/input/prefix-suffix/package.json +++ b/samples/inputs/input/prefix-suffix/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/input/size/package.json b/samples/inputs/input/size/package.json index 7229a7560c..1a31941072 100644 --- a/samples/inputs/input/size/package.json +++ b/samples/inputs/input/size/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/input/styling/package.json b/samples/inputs/input/styling/package.json index ea35b60f03..d2675b63f4 100644 --- a/samples/inputs/input/styling/package.json +++ b/samples/inputs/input/styling/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/linear-progress-indicator/dynamic/package.json b/samples/inputs/linear-progress-indicator/dynamic/package.json index d8c60c9c01..07ba420dd1 100644 --- a/samples/inputs/linear-progress-indicator/dynamic/package.json +++ b/samples/inputs/linear-progress-indicator/dynamic/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/linear-progress-indicator/simple/package.json b/samples/inputs/linear-progress-indicator/simple/package.json index c399f19ec1..d4d71b0cb1 100644 --- a/samples/inputs/linear-progress-indicator/simple/package.json +++ b/samples/inputs/linear-progress-indicator/simple/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/linear-progress-indicator/striped/package.json b/samples/inputs/linear-progress-indicator/striped/package.json index 53bef9e490..c9525b49b1 100644 --- a/samples/inputs/linear-progress-indicator/striped/package.json +++ b/samples/inputs/linear-progress-indicator/striped/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/linear-progress-indicator/styling/package.json b/samples/inputs/linear-progress-indicator/styling/package.json index 8967189a0f..f4c38d0f3b 100644 --- a/samples/inputs/linear-progress-indicator/styling/package.json +++ b/samples/inputs/linear-progress-indicator/styling/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/linear-progress-indicator/types/package.json b/samples/inputs/linear-progress-indicator/types/package.json index 5a72455580..02a04bbd10 100644 --- a/samples/inputs/linear-progress-indicator/types/package.json +++ b/samples/inputs/linear-progress-indicator/types/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/mask-input/applying-mask/package.json b/samples/inputs/mask-input/applying-mask/package.json index 81aa5de792..ab036fc159 100644 --- a/samples/inputs/mask-input/applying-mask/package.json +++ b/samples/inputs/mask-input/applying-mask/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/mask-input/overview/package.json b/samples/inputs/mask-input/overview/package.json index a62224a29a..67de23f349 100644 --- a/samples/inputs/mask-input/overview/package.json +++ b/samples/inputs/mask-input/overview/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/mask-input/value-modes/package.json b/samples/inputs/mask-input/value-modes/package.json index 92bc5aba1f..032dfc9bf9 100644 --- a/samples/inputs/mask-input/value-modes/package.json +++ b/samples/inputs/mask-input/value-modes/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/radio/alignment/package.json b/samples/inputs/radio/alignment/package.json index 11ede84091..65176e4a71 100644 --- a/samples/inputs/radio/alignment/package.json +++ b/samples/inputs/radio/alignment/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/radio/disabled/package.json b/samples/inputs/radio/disabled/package.json index 1e447f6085..e4a8cd43d5 100644 --- a/samples/inputs/radio/disabled/package.json +++ b/samples/inputs/radio/disabled/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/radio/group/package.json b/samples/inputs/radio/group/package.json index e0f6bdf55c..29d7ad2dea 100644 --- a/samples/inputs/radio/group/package.json +++ b/samples/inputs/radio/group/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/radio/invalid/package.json b/samples/inputs/radio/invalid/package.json index 9efa0e4729..c155adc26b 100644 --- a/samples/inputs/radio/invalid/package.json +++ b/samples/inputs/radio/invalid/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/radio/label/package.json b/samples/inputs/radio/label/package.json index ad71013013..39750807e1 100644 --- a/samples/inputs/radio/label/package.json +++ b/samples/inputs/radio/label/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/radio/styling/package.json b/samples/inputs/radio/styling/package.json index fe69719f01..174a40be93 100644 --- a/samples/inputs/radio/styling/package.json +++ b/samples/inputs/radio/styling/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/rating/basic/package.json b/samples/inputs/rating/basic/package.json index cb42602fb7..effd270122 100644 --- a/samples/inputs/rating/basic/package.json +++ b/samples/inputs/rating/basic/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/rating/custom/package.json b/samples/inputs/rating/custom/package.json index cb42602fb7..effd270122 100644 --- a/samples/inputs/rating/custom/package.json +++ b/samples/inputs/rating/custom/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/rating/empty/package.json b/samples/inputs/rating/empty/package.json index cb42602fb7..effd270122 100644 --- a/samples/inputs/rating/empty/package.json +++ b/samples/inputs/rating/empty/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/rating/single-selection/package.json b/samples/inputs/rating/single-selection/package.json index cb42602fb7..effd270122 100644 --- a/samples/inputs/rating/single-selection/package.json +++ b/samples/inputs/rating/single-selection/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/rating/styling/package.json b/samples/inputs/rating/styling/package.json index cb42602fb7..effd270122 100644 --- a/samples/inputs/rating/styling/package.json +++ b/samples/inputs/rating/styling/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/ripple/button/package.json b/samples/inputs/ripple/button/package.json index 447a998d34..168d284d7a 100644 --- a/samples/inputs/ripple/button/package.json +++ b/samples/inputs/ripple/button/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/ripple/color/package.json b/samples/inputs/ripple/color/package.json index 0f40b4f38d..73227979e3 100644 --- a/samples/inputs/ripple/color/package.json +++ b/samples/inputs/ripple/color/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/select/group/package.json b/samples/inputs/select/group/package.json index cd6d208b6f..f6a82d5960 100644 --- a/samples/inputs/select/group/package.json +++ b/samples/inputs/select/group/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/select/header/package.json b/samples/inputs/select/header/package.json index a32b724d1f..57577c96a2 100644 --- a/samples/inputs/select/header/package.json +++ b/samples/inputs/select/header/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/select/item/package.json b/samples/inputs/select/item/package.json index d249af3739..d15f871e52 100644 --- a/samples/inputs/select/item/package.json +++ b/samples/inputs/select/item/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/select/overview/package.json b/samples/inputs/select/overview/package.json index 577b8ad064..702a639179 100644 --- a/samples/inputs/select/overview/package.json +++ b/samples/inputs/select/overview/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/select/styling/package.json b/samples/inputs/select/styling/package.json index 5122dd6a5d..0d07531ab1 100644 --- a/samples/inputs/select/styling/package.json +++ b/samples/inputs/select/styling/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/slider/constraints/package.json b/samples/inputs/slider/constraints/package.json index da6b6b33b1..befc394e53 100644 --- a/samples/inputs/slider/constraints/package.json +++ b/samples/inputs/slider/constraints/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/slider/disabled/package.json b/samples/inputs/slider/disabled/package.json index cbe40aec92..e1cd0358c2 100644 --- a/samples/inputs/slider/disabled/package.json +++ b/samples/inputs/slider/disabled/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/slider/discrete/package.json b/samples/inputs/slider/discrete/package.json index 97e4e64854..0876b8b8b2 100644 --- a/samples/inputs/slider/discrete/package.json +++ b/samples/inputs/slider/discrete/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/slider/labels/package.json b/samples/inputs/slider/labels/package.json index 522df9477e..a60a53326c 100644 --- a/samples/inputs/slider/labels/package.json +++ b/samples/inputs/slider/labels/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/slider/overview/package.json b/samples/inputs/slider/overview/package.json index c7bd0c0bbe..ec2301e185 100644 --- a/samples/inputs/slider/overview/package.json +++ b/samples/inputs/slider/overview/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/slider/styling/package.json b/samples/inputs/slider/styling/package.json index cd6395b943..441c40208f 100644 --- a/samples/inputs/slider/styling/package.json +++ b/samples/inputs/slider/styling/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/slider/tick-labels/package.json b/samples/inputs/slider/tick-labels/package.json index 98f6480da2..d29d319b1d 100644 --- a/samples/inputs/slider/tick-labels/package.json +++ b/samples/inputs/slider/tick-labels/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/slider/ticks/package.json b/samples/inputs/slider/ticks/package.json index 2d233849e7..6a019023aa 100644 --- a/samples/inputs/slider/ticks/package.json +++ b/samples/inputs/slider/ticks/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/slider/value-format/package.json b/samples/inputs/slider/value-format/package.json index ecc0d46737..00a42b9e73 100644 --- a/samples/inputs/slider/value-format/package.json +++ b/samples/inputs/slider/value-format/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/slider/value/package.json b/samples/inputs/slider/value/package.json index 57c79a6a37..c722b33ad7 100644 --- a/samples/inputs/slider/value/package.json +++ b/samples/inputs/slider/value/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/switches/checking/package.json b/samples/inputs/switches/checking/package.json index 17787a63c9..83177dd5b0 100644 --- a/samples/inputs/switches/checking/package.json +++ b/samples/inputs/switches/checking/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/switches/disabled/package.json b/samples/inputs/switches/disabled/package.json index de77ff441a..68116bce5c 100644 --- a/samples/inputs/switches/disabled/package.json +++ b/samples/inputs/switches/disabled/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/switches/label/package.json b/samples/inputs/switches/label/package.json index 63aff93153..c84d64ae33 100644 --- a/samples/inputs/switches/label/package.json +++ b/samples/inputs/switches/label/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/switches/overview/package.json b/samples/inputs/switches/overview/package.json index d62cb9c41c..0648d8576d 100644 --- a/samples/inputs/switches/overview/package.json +++ b/samples/inputs/switches/overview/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/switches/styling/package.json b/samples/inputs/switches/styling/package.json index 17787a63c9..83177dd5b0 100644 --- a/samples/inputs/switches/styling/package.json +++ b/samples/inputs/switches/styling/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/textarea/form-integration/package.json b/samples/inputs/textarea/form-integration/package.json index 20b14fe683..c91ef2b923 100644 --- a/samples/inputs/textarea/form-integration/package.json +++ b/samples/inputs/textarea/form-integration/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/textarea/overview/package.json b/samples/inputs/textarea/overview/package.json index 4742ec014e..1b7220960c 100644 --- a/samples/inputs/textarea/overview/package.json +++ b/samples/inputs/textarea/overview/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/textarea/resize/package.json b/samples/inputs/textarea/resize/package.json index bfa4621c4d..1241f54d59 100644 --- a/samples/inputs/textarea/resize/package.json +++ b/samples/inputs/textarea/resize/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/textarea/slots/package.json b/samples/inputs/textarea/slots/package.json index 96179e073a..210a64a447 100644 --- a/samples/inputs/textarea/slots/package.json +++ b/samples/inputs/textarea/slots/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/textarea/styling/package.json b/samples/inputs/textarea/styling/package.json index e7f55660b9..e1f56648ac 100644 --- a/samples/inputs/textarea/styling/package.json +++ b/samples/inputs/textarea/styling/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/tooltip/advanced/package.json b/samples/inputs/tooltip/advanced/package.json index 289d837228..90fd14e6c4 100644 --- a/samples/inputs/tooltip/advanced/package.json +++ b/samples/inputs/tooltip/advanced/package.json @@ -16,7 +16,7 @@ "igniteui-react": "^19.5.0-rc.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/tooltip/overview/package.json b/samples/inputs/tooltip/overview/package.json index cb42602fb7..effd270122 100644 --- a/samples/inputs/tooltip/overview/package.json +++ b/samples/inputs/tooltip/overview/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/tooltip/placement/package.json b/samples/inputs/tooltip/placement/package.json index cb42602fb7..effd270122 100644 --- a/samples/inputs/tooltip/placement/package.json +++ b/samples/inputs/tooltip/placement/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/tooltip/rich/package.json b/samples/inputs/tooltip/rich/package.json index cb42602fb7..effd270122 100644 --- a/samples/inputs/tooltip/rich/package.json +++ b/samples/inputs/tooltip/rich/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/tooltip/styling/package.json b/samples/inputs/tooltip/styling/package.json index cb42602fb7..effd270122 100644 --- a/samples/inputs/tooltip/styling/package.json +++ b/samples/inputs/tooltip/styling/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/tooltip/triggers/package.json b/samples/inputs/tooltip/triggers/package.json index cb42602fb7..effd270122 100644 --- a/samples/inputs/tooltip/triggers/package.json +++ b/samples/inputs/tooltip/triggers/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/interactions/chat/features/package.json b/samples/interactions/chat/features/package.json index 8650d8743b..7e4af7b2ca 100644 --- a/samples/interactions/chat/features/package.json +++ b/samples/interactions/chat/features/package.json @@ -16,7 +16,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "marked": "^16.4.1", "marked-shiki": "^1.2.1", "react": "^19.2.0", diff --git a/samples/interactions/chat/overview/package.json b/samples/interactions/chat/overview/package.json index 98468dfb16..46997d0138 100644 --- a/samples/interactions/chat/overview/package.json +++ b/samples/interactions/chat/overview/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/interactions/chat/styling/package.json b/samples/interactions/chat/styling/package.json index 12313f24c6..38a91a6843 100644 --- a/samples/interactions/chat/styling/package.json +++ b/samples/interactions/chat/styling/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/accordion/customization/package.json b/samples/layouts/accordion/customization/package.json index 6a14b8218a..6794d97e3e 100644 --- a/samples/layouts/accordion/customization/package.json +++ b/samples/layouts/accordion/customization/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/accordion/nested-scenario/package.json b/samples/layouts/accordion/nested-scenario/package.json index 9ed31ae571..a544a8f017 100644 --- a/samples/layouts/accordion/nested-scenario/package.json +++ b/samples/layouts/accordion/nested-scenario/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/accordion/overview/package.json b/samples/layouts/accordion/overview/package.json index eb2368958d..05cddc34db 100644 --- a/samples/layouts/accordion/overview/package.json +++ b/samples/layouts/accordion/overview/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/avatar/icon/package.json b/samples/layouts/avatar/icon/package.json index 6b5240e634..d1a7ddae3f 100644 --- a/samples/layouts/avatar/icon/package.json +++ b/samples/layouts/avatar/icon/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/avatar/image/package.json b/samples/layouts/avatar/image/package.json index 2f6b7983cf..ea27d90ca3 100644 --- a/samples/layouts/avatar/image/package.json +++ b/samples/layouts/avatar/image/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/avatar/initials/package.json b/samples/layouts/avatar/initials/package.json index 27da01c34b..c974e5b612 100644 --- a/samples/layouts/avatar/initials/package.json +++ b/samples/layouts/avatar/initials/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/avatar/shape/package.json b/samples/layouts/avatar/shape/package.json index 72b50fd2ec..e453d2f424 100644 --- a/samples/layouts/avatar/shape/package.json +++ b/samples/layouts/avatar/shape/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/avatar/size/package.json b/samples/layouts/avatar/size/package.json index dce35f164b..6e6c769325 100644 --- a/samples/layouts/avatar/size/package.json +++ b/samples/layouts/avatar/size/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/avatar/styling/package.json b/samples/layouts/avatar/styling/package.json index 1e5a263b69..268f09ca87 100644 --- a/samples/layouts/avatar/styling/package.json +++ b/samples/layouts/avatar/styling/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/card/horizontal/package.json b/samples/layouts/card/horizontal/package.json index fc95ea0b26..14573a0ecc 100644 --- a/samples/layouts/card/horizontal/package.json +++ b/samples/layouts/card/horizontal/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/card/overview/package.json b/samples/layouts/card/overview/package.json index d5c47a6907..048c6a2011 100644 --- a/samples/layouts/card/overview/package.json +++ b/samples/layouts/card/overview/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/card/semi-horizontal/package.json b/samples/layouts/card/semi-horizontal/package.json index ae344570f8..983947dff2 100644 --- a/samples/layouts/card/semi-horizontal/package.json +++ b/samples/layouts/card/semi-horizontal/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/card/styling/package.json b/samples/layouts/card/styling/package.json index df64b56456..c50a6e227f 100644 --- a/samples/layouts/card/styling/package.json +++ b/samples/layouts/card/styling/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/carousel/animations/package.json b/samples/layouts/carousel/animations/package.json index cede0a85d8..3cc1705853 100644 --- a/samples/layouts/carousel/animations/package.json +++ b/samples/layouts/carousel/animations/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/carousel/components/package.json b/samples/layouts/carousel/components/package.json index 123ba65173..b10b274d63 100644 --- a/samples/layouts/carousel/components/package.json +++ b/samples/layouts/carousel/components/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/carousel/overview/package.json b/samples/layouts/carousel/overview/package.json index 962a112a5c..44c1fc4ec5 100644 --- a/samples/layouts/carousel/overview/package.json +++ b/samples/layouts/carousel/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/carousel/thumbnail/package.json b/samples/layouts/carousel/thumbnail/package.json index 846cc9b76f..a8fb2b7356 100644 --- a/samples/layouts/carousel/thumbnail/package.json +++ b/samples/layouts/carousel/thumbnail/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/divider/dashed/package.json b/samples/layouts/divider/dashed/package.json index 6b5240e634..d1a7ddae3f 100644 --- a/samples/layouts/divider/dashed/package.json +++ b/samples/layouts/divider/dashed/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/divider/middle/package.json b/samples/layouts/divider/middle/package.json index 6b5240e634..d1a7ddae3f 100644 --- a/samples/layouts/divider/middle/package.json +++ b/samples/layouts/divider/middle/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/divider/overview/package.json b/samples/layouts/divider/overview/package.json index 6b5240e634..d1a7ddae3f 100644 --- a/samples/layouts/divider/overview/package.json +++ b/samples/layouts/divider/overview/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/divider/select/package.json b/samples/layouts/divider/select/package.json index 6b5240e634..d1a7ddae3f 100644 --- a/samples/layouts/divider/select/package.json +++ b/samples/layouts/divider/select/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/divider/vertical/package.json b/samples/layouts/divider/vertical/package.json index 6b5240e634..d1a7ddae3f 100644 --- a/samples/layouts/divider/vertical/package.json +++ b/samples/layouts/divider/vertical/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/expansion-panel/component-customization/package.json b/samples/layouts/expansion-panel/component-customization/package.json index b54e0a0c15..2c085de99b 100644 --- a/samples/layouts/expansion-panel/component-customization/package.json +++ b/samples/layouts/expansion-panel/component-customization/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/expansion-panel/properties-and-events/package.json b/samples/layouts/expansion-panel/properties-and-events/package.json index f193f97296..00c40fc488 100644 --- a/samples/layouts/expansion-panel/properties-and-events/package.json +++ b/samples/layouts/expansion-panel/properties-and-events/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/expansion-panel/styling/package.json b/samples/layouts/expansion-panel/styling/package.json index 1578ad678f..d0722e11d4 100644 --- a/samples/layouts/expansion-panel/styling/package.json +++ b/samples/layouts/expansion-panel/styling/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/expansion-panel/usage/package.json b/samples/layouts/expansion-panel/usage/package.json index 65e75e3e8e..a3f153dee9 100644 --- a/samples/layouts/expansion-panel/usage/package.json +++ b/samples/layouts/expansion-panel/usage/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/icon/sizing/package.json b/samples/layouts/icon/sizing/package.json index e9599f0ca0..baaa62fcf2 100644 --- a/samples/layouts/icon/sizing/package.json +++ b/samples/layouts/icon/sizing/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/icon/styling/package.json b/samples/layouts/icon/styling/package.json index 6b44e23388..30a17b4915 100644 --- a/samples/layouts/icon/styling/package.json +++ b/samples/layouts/icon/styling/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/stepper/animations/package.json b/samples/layouts/stepper/animations/package.json index e0f6bdf55c..29d7ad2dea 100644 --- a/samples/layouts/stepper/animations/package.json +++ b/samples/layouts/stepper/animations/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/stepper/linear/package.json b/samples/layouts/stepper/linear/package.json index e0f6bdf55c..29d7ad2dea 100644 --- a/samples/layouts/stepper/linear/package.json +++ b/samples/layouts/stepper/linear/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/stepper/orientation/package.json b/samples/layouts/stepper/orientation/package.json index e0f6bdf55c..29d7ad2dea 100644 --- a/samples/layouts/stepper/orientation/package.json +++ b/samples/layouts/stepper/orientation/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/stepper/steptypes/package.json b/samples/layouts/stepper/steptypes/package.json index e0f6bdf55c..29d7ad2dea 100644 --- a/samples/layouts/stepper/steptypes/package.json +++ b/samples/layouts/stepper/steptypes/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/stepper/styling/package.json b/samples/layouts/stepper/styling/package.json index 4b0c506cd0..cf54719c73 100644 --- a/samples/layouts/stepper/styling/package.json +++ b/samples/layouts/stepper/styling/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/tabs/alignment/package.json b/samples/layouts/tabs/alignment/package.json index e0f6bdf55c..29d7ad2dea 100644 --- a/samples/layouts/tabs/alignment/package.json +++ b/samples/layouts/tabs/alignment/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/tabs/overview/package.json b/samples/layouts/tabs/overview/package.json index e0f6bdf55c..29d7ad2dea 100644 --- a/samples/layouts/tabs/overview/package.json +++ b/samples/layouts/tabs/overview/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/tabs/prefix-suffix/package.json b/samples/layouts/tabs/prefix-suffix/package.json index e0f6bdf55c..29d7ad2dea 100644 --- a/samples/layouts/tabs/prefix-suffix/package.json +++ b/samples/layouts/tabs/prefix-suffix/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/tabs/scrolling/package.json b/samples/layouts/tabs/scrolling/package.json index e0f6bdf55c..29d7ad2dea 100644 --- a/samples/layouts/tabs/scrolling/package.json +++ b/samples/layouts/tabs/scrolling/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/tabs/styling/package.json b/samples/layouts/tabs/styling/package.json index e0f6bdf55c..29d7ad2dea 100644 --- a/samples/layouts/tabs/styling/package.json +++ b/samples/layouts/tabs/styling/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/tile-manager/actions/package.json b/samples/layouts/tile-manager/actions/package.json index e0f6bdf55c..29d7ad2dea 100644 --- a/samples/layouts/tile-manager/actions/package.json +++ b/samples/layouts/tile-manager/actions/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/tile-manager/columngap/package.json b/samples/layouts/tile-manager/columngap/package.json index e0f6bdf55c..29d7ad2dea 100644 --- a/samples/layouts/tile-manager/columngap/package.json +++ b/samples/layouts/tile-manager/columngap/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/tile-manager/dragndrop/package.json b/samples/layouts/tile-manager/dragndrop/package.json index e0f6bdf55c..29d7ad2dea 100644 --- a/samples/layouts/tile-manager/dragndrop/package.json +++ b/samples/layouts/tile-manager/dragndrop/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/tile-manager/layout/package.json b/samples/layouts/tile-manager/layout/package.json index e0f6bdf55c..29d7ad2dea 100644 --- a/samples/layouts/tile-manager/layout/package.json +++ b/samples/layouts/tile-manager/layout/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/tile-manager/overview/package.json b/samples/layouts/tile-manager/overview/package.json index e0f6bdf55c..29d7ad2dea 100644 --- a/samples/layouts/tile-manager/overview/package.json +++ b/samples/layouts/tile-manager/overview/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/tile-manager/resize/package.json b/samples/layouts/tile-manager/resize/package.json index e0f6bdf55c..29d7ad2dea 100644 --- a/samples/layouts/tile-manager/resize/package.json +++ b/samples/layouts/tile-manager/resize/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/tile-manager/styling/package.json b/samples/layouts/tile-manager/styling/package.json index e0f6bdf55c..29d7ad2dea 100644 --- a/samples/layouts/tile-manager/styling/package.json +++ b/samples/layouts/tile-manager/styling/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/menus/nav-bar/overview/package.json b/samples/menus/nav-bar/overview/package.json index 2f98f2b06f..ea43c38d2c 100644 --- a/samples/menus/nav-bar/overview/package.json +++ b/samples/menus/nav-bar/overview/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/menus/nav-bar/styling/package.json b/samples/menus/nav-bar/styling/package.json index 9e84d919ce..60003bc4ab 100644 --- a/samples/menus/nav-bar/styling/package.json +++ b/samples/menus/nav-bar/styling/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/menus/nav-drawer/add-drawer-items/package.json b/samples/menus/nav-drawer/add-drawer-items/package.json index 6cb8126115..0b22aa0b93 100644 --- a/samples/menus/nav-drawer/add-drawer-items/package.json +++ b/samples/menus/nav-drawer/add-drawer-items/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/menus/nav-drawer/add-mini/package.json b/samples/menus/nav-drawer/add-mini/package.json index a26957b18e..63034acca1 100644 --- a/samples/menus/nav-drawer/add-mini/package.json +++ b/samples/menus/nav-drawer/add-mini/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/menus/nav-drawer/add-positions-navbar/package.json b/samples/menus/nav-drawer/add-positions-navbar/package.json index ceb53b6706..55a01794a3 100644 --- a/samples/menus/nav-drawer/add-positions-navbar/package.json +++ b/samples/menus/nav-drawer/add-positions-navbar/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/menus/nav-drawer/styling/package.json b/samples/menus/nav-drawer/styling/package.json index 8908e97746..89536abc63 100644 --- a/samples/menus/nav-drawer/styling/package.json +++ b/samples/menus/nav-drawer/styling/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/notifications/banner/banner-advanced-sample/package.json b/samples/notifications/banner/banner-advanced-sample/package.json index 26094a04d5..6b2adbeecb 100644 --- a/samples/notifications/banner/banner-advanced-sample/package.json +++ b/samples/notifications/banner/banner-advanced-sample/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/notifications/banner/banner-sample-1/package.json b/samples/notifications/banner/banner-sample-1/package.json index e6dd572d23..784b0d7440 100644 --- a/samples/notifications/banner/banner-sample-1/package.json +++ b/samples/notifications/banner/banner-sample-1/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/notifications/banner/banner-sample-2/package.json b/samples/notifications/banner/banner-sample-2/package.json index 9d76c419b6..3ac680c239 100644 --- a/samples/notifications/banner/banner-sample-2/package.json +++ b/samples/notifications/banner/banner-sample-2/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/notifications/banner/banner-styling/package.json b/samples/notifications/banner/banner-styling/package.json index de53da01aa..8fbaaf6335 100644 --- a/samples/notifications/banner/banner-styling/package.json +++ b/samples/notifications/banner/banner-styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/notifications/dialog/closing-variations/package.json b/samples/notifications/dialog/closing-variations/package.json index e25b144c00..40e397b6de 100644 --- a/samples/notifications/dialog/closing-variations/package.json +++ b/samples/notifications/dialog/closing-variations/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/notifications/dialog/form/package.json b/samples/notifications/dialog/form/package.json index daf464b05d..30198e4905 100644 --- a/samples/notifications/dialog/form/package.json +++ b/samples/notifications/dialog/form/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/notifications/dialog/overview/package.json b/samples/notifications/dialog/overview/package.json index a176bcd666..0e8c38e30c 100644 --- a/samples/notifications/dialog/overview/package.json +++ b/samples/notifications/dialog/overview/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/notifications/dialog/styling/package.json b/samples/notifications/dialog/styling/package.json index 9ac8e9100e..ea24862cf4 100644 --- a/samples/notifications/dialog/styling/package.json +++ b/samples/notifications/dialog/styling/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/notifications/snackbar/action-text/package.json b/samples/notifications/snackbar/action-text/package.json index 0e54593895..eadaec253d 100644 --- a/samples/notifications/snackbar/action-text/package.json +++ b/samples/notifications/snackbar/action-text/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/notifications/snackbar/display-time/package.json b/samples/notifications/snackbar/display-time/package.json index 1e84920e74..e140962210 100644 --- a/samples/notifications/snackbar/display-time/package.json +++ b/samples/notifications/snackbar/display-time/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/notifications/snackbar/overview/package.json b/samples/notifications/snackbar/overview/package.json index 7ecdf41a70..efdbecad08 100644 --- a/samples/notifications/snackbar/overview/package.json +++ b/samples/notifications/snackbar/overview/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/notifications/snackbar/styling/package.json b/samples/notifications/snackbar/styling/package.json index 9cbf9b4826..7e8418b7f4 100644 --- a/samples/notifications/snackbar/styling/package.json +++ b/samples/notifications/snackbar/styling/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/notifications/toast/overview/package.json b/samples/notifications/toast/overview/package.json index 9ec8383b3d..0d363361c9 100644 --- a/samples/notifications/toast/overview/package.json +++ b/samples/notifications/toast/overview/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/notifications/toast/properties/package.json b/samples/notifications/toast/properties/package.json index 9397836a0e..026f38feb1 100644 --- a/samples/notifications/toast/properties/package.json +++ b/samples/notifications/toast/properties/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/notifications/toast/styling/package.json b/samples/notifications/toast/styling/package.json index d1a3dc196d..c1efbc87f1 100644 --- a/samples/notifications/toast/styling/package.json +++ b/samples/notifications/toast/styling/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/calendar/disabled-dates/package.json b/samples/scheduling/calendar/disabled-dates/package.json index 8386107476..b77b760e69 100644 --- a/samples/scheduling/calendar/disabled-dates/package.json +++ b/samples/scheduling/calendar/disabled-dates/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/calendar/formatting/package.json b/samples/scheduling/calendar/formatting/package.json index 5c21e664fb..747f544997 100644 --- a/samples/scheduling/calendar/formatting/package.json +++ b/samples/scheduling/calendar/formatting/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/calendar/header/package.json b/samples/scheduling/calendar/header/package.json index 96dee83201..c031b7e212 100644 --- a/samples/scheduling/calendar/header/package.json +++ b/samples/scheduling/calendar/header/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/calendar/multiple-months/package.json b/samples/scheduling/calendar/multiple-months/package.json index 85fe96555a..d702103421 100644 --- a/samples/scheduling/calendar/multiple-months/package.json +++ b/samples/scheduling/calendar/multiple-months/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/calendar/multiple-selection/package.json b/samples/scheduling/calendar/multiple-selection/package.json index 9987a02ae6..2166af584d 100644 --- a/samples/scheduling/calendar/multiple-selection/package.json +++ b/samples/scheduling/calendar/multiple-selection/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/calendar/overview/package.json b/samples/scheduling/calendar/overview/package.json index 45f2816d86..887d22767f 100644 --- a/samples/scheduling/calendar/overview/package.json +++ b/samples/scheduling/calendar/overview/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/calendar/range-selection/package.json b/samples/scheduling/calendar/range-selection/package.json index 755d99176e..65ed37dece 100644 --- a/samples/scheduling/calendar/range-selection/package.json +++ b/samples/scheduling/calendar/range-selection/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/calendar/size/package.json b/samples/scheduling/calendar/size/package.json index 3f873a0948..816c4a9036 100644 --- a/samples/scheduling/calendar/size/package.json +++ b/samples/scheduling/calendar/size/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/calendar/special-dates/package.json b/samples/scheduling/calendar/special-dates/package.json index f271747f9b..4bb9104f13 100644 --- a/samples/scheduling/calendar/special-dates/package.json +++ b/samples/scheduling/calendar/special-dates/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/calendar/styling/package.json b/samples/scheduling/calendar/styling/package.json index b563a56cfa..574e34c437 100644 --- a/samples/scheduling/calendar/styling/package.json +++ b/samples/scheduling/calendar/styling/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/calendar/week-numbers/package.json b/samples/scheduling/calendar/week-numbers/package.json index 9e16b59c2c..4712b4fbbe 100644 --- a/samples/scheduling/calendar/week-numbers/package.json +++ b/samples/scheduling/calendar/week-numbers/package.json @@ -15,7 +15,7 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/date-picker/dialog-mode/package.json b/samples/scheduling/date-picker/dialog-mode/package.json index 3b78ecccd3..fed6e2d4ae 100644 --- a/samples/scheduling/date-picker/dialog-mode/package.json +++ b/samples/scheduling/date-picker/dialog-mode/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/date-picker/form/package.json b/samples/scheduling/date-picker/form/package.json index 3b78ecccd3..fed6e2d4ae 100644 --- a/samples/scheduling/date-picker/form/package.json +++ b/samples/scheduling/date-picker/form/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/date-picker/format/package.json b/samples/scheduling/date-picker/format/package.json index 3b78ecccd3..fed6e2d4ae 100644 --- a/samples/scheduling/date-picker/format/package.json +++ b/samples/scheduling/date-picker/format/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/date-picker/overview/package.json b/samples/scheduling/date-picker/overview/package.json index 3b78ecccd3..fed6e2d4ae 100644 --- a/samples/scheduling/date-picker/overview/package.json +++ b/samples/scheduling/date-picker/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/date-picker/styling/package.json b/samples/scheduling/date-picker/styling/package.json index 3b78ecccd3..fed6e2d4ae 100644 --- a/samples/scheduling/date-picker/styling/package.json +++ b/samples/scheduling/date-picker/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/date-range-picker/custom-ranges/package.json b/samples/scheduling/date-range-picker/custom-ranges/package.json index 6acab50ba6..d7c164e692 100644 --- a/samples/scheduling/date-range-picker/custom-ranges/package.json +++ b/samples/scheduling/date-range-picker/custom-ranges/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/date-range-picker/form/package.json b/samples/scheduling/date-range-picker/form/package.json index db6e7fbb41..2c86ad45ed 100644 --- a/samples/scheduling/date-range-picker/form/package.json +++ b/samples/scheduling/date-range-picker/form/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/date-range-picker/overview/package.json b/samples/scheduling/date-range-picker/overview/package.json index ed57734693..bc5eb4e672 100644 --- a/samples/scheduling/date-range-picker/overview/package.json +++ b/samples/scheduling/date-range-picker/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/date-range-picker/slots/package.json b/samples/scheduling/date-range-picker/slots/package.json index 2a8db118b2..3df9f69f32 100644 --- a/samples/scheduling/date-range-picker/slots/package.json +++ b/samples/scheduling/date-range-picker/slots/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/date-range-picker/styling/package.json b/samples/scheduling/date-range-picker/styling/package.json index 516f98fe95..e0dcea568b 100644 --- a/samples/scheduling/date-range-picker/styling/package.json +++ b/samples/scheduling/date-range-picker/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-react": "^19.5.0-rc.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^6.3.0", + "igniteui-webcomponents": "^7.0.0-rc.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" From 269571d77fd9e7932dbc267ffcf7b5c4424739bb Mon Sep 17 00:00:00 2001 From: Deyan Kamburov Date: Tue, 24 Feb 2026 02:08:13 +0200 Subject: [PATCH 38/43] chore: use sass instead of sass-embed - build error (#1039) * chore: use sass instead of sass-embed - build error * chore: add clean package-lock --- browser/package-lock.json | 3956 ++++++++++++++++++++++--------------- browser/package.json | 2 +- 2 files changed, 2335 insertions(+), 1623 deletions(-) diff --git a/browser/package-lock.json b/browser/package-lock.json index d220754e94..c0fbfbf81d 100644 --- a/browser/package-lock.json +++ b/browser/package-lock.json @@ -89,7 +89,7 @@ "remark": "^14.0.2", "remark-frontmatter": "^2.0.0", "run-sequence": "^2.2.1", - "sass-embedded": "^1.84.0", + "sass": "^1.84.0", "ts-loader": "^9.5.4", "ts-node": "^10.9.2", "typescript": "^4.8.4", @@ -103,12 +103,13 @@ } }, "node_modules/@babel/code-frame": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", - "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz", + "integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-validator-identifier": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5", "js-tokens": "^4.0.0", "picocolors": "^1.1.1" }, @@ -117,29 +118,31 @@ } }, "node_modules/@babel/compat-data": { - "version": "7.28.5", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.5.tgz", - "integrity": "sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==", + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.0.tgz", + "integrity": "sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.28.5", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.5.tgz", - "integrity": "sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==", + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.0.tgz", + "integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.27.1", - "@babel/generator": "^7.28.5", - "@babel/helper-compilation-targets": "^7.27.2", - "@babel/helper-module-transforms": "^7.28.3", - "@babel/helpers": "^7.28.4", - "@babel/parser": "^7.28.5", - "@babel/template": "^7.27.2", - "@babel/traverse": "^7.28.5", - "@babel/types": "^7.28.5", + "@babel/code-frame": "^7.29.0", + "@babel/generator": "^7.29.0", + "@babel/helper-compilation-targets": "^7.28.6", + "@babel/helper-module-transforms": "^7.28.6", + "@babel/helpers": "^7.28.6", + "@babel/parser": "^7.29.0", + "@babel/template": "^7.28.6", + "@babel/traverse": "^7.29.0", + "@babel/types": "^7.29.0", "@jridgewell/remapping": "^2.3.5", "convert-source-map": "^2.0.0", "debug": "^4.1.0", @@ -156,13 +159,14 @@ } }, "node_modules/@babel/generator": { - "version": "7.28.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.5.tgz", - "integrity": "sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==", + "version": "7.29.1", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.1.tgz", + "integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/parser": "^7.28.5", - "@babel/types": "^7.28.5", + "@babel/parser": "^7.29.0", + "@babel/types": "^7.29.0", "@jridgewell/gen-mapping": "^0.3.12", "@jridgewell/trace-mapping": "^0.3.28", "jsesc": "^3.0.2" @@ -176,6 +180,7 @@ "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz", "integrity": "sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==", "dev": true, + "license": "MIT", "dependencies": { "@babel/types": "^7.27.3" }, @@ -184,12 +189,13 @@ } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.27.2", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz", - "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==", + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz", + "integrity": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.27.2", + "@babel/compat-data": "^7.28.6", "@babel/helper-validator-option": "^7.27.1", "browserslist": "^4.24.0", "lru-cache": "^5.1.1", @@ -200,17 +206,18 @@ } }, "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.28.5", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.28.5.tgz", - "integrity": "sha512-q3WC4JfdODypvxArsJQROfupPBq9+lMwjKq7C33GhbFYJsufD0yd/ziwD+hJucLeWsnFPWZjsU2DNFqBPE7jwQ==", + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.28.6.tgz", + "integrity": "sha512-dTOdvsjnG3xNT9Y0AUg1wAl38y+4Rl4sf9caSQZOXdNqVn+H+HbbJ4IyyHaIqNR6SW9oJpA/RuRjsjCw2IdIow==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.27.3", "@babel/helper-member-expression-to-functions": "^7.28.5", "@babel/helper-optimise-call-expression": "^7.27.1", - "@babel/helper-replace-supers": "^7.27.1", + "@babel/helper-replace-supers": "^7.28.6", "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", - "@babel/traverse": "^7.28.5", + "@babel/traverse": "^7.28.6", "semver": "^6.3.1" }, "engines": { @@ -225,6 +232,7 @@ "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.9.0" } @@ -234,6 +242,7 @@ "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.28.5.tgz", "integrity": "sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==", "dev": true, + "license": "MIT", "dependencies": { "@babel/traverse": "^7.28.5", "@babel/types": "^7.28.5" @@ -243,27 +252,29 @@ } }, "node_modules/@babel/helper-module-imports": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz", - "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==", + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz", + "integrity": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/traverse": "^7.27.1", - "@babel/types": "^7.27.1" + "@babel/traverse": "^7.28.6", + "@babel/types": "^7.28.6" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.28.3", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz", - "integrity": "sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==", + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.6.tgz", + "integrity": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-module-imports": "^7.27.1", - "@babel/helper-validator-identifier": "^7.27.1", - "@babel/traverse": "^7.28.3" + "@babel/helper-module-imports": "^7.28.6", + "@babel/helper-validator-identifier": "^7.28.5", + "@babel/traverse": "^7.28.6" }, "engines": { "node": ">=6.9.0" @@ -277,6 +288,7 @@ "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz", "integrity": "sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==", "dev": true, + "license": "MIT", "dependencies": { "@babel/types": "^7.27.1" }, @@ -285,23 +297,25 @@ } }, "node_modules/@babel/helper-plugin-utils": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz", - "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==", + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.28.6.tgz", + "integrity": "sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-replace-supers": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.27.1.tgz", - "integrity": "sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==", + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.28.6.tgz", + "integrity": "sha512-mq8e+laIk94/yFec3DxSjCRD2Z0TAjhVbEJY3UQrlwVo15Lmt7C2wAUbK4bjnTs4APkwsYLTahXRraQXhb1WCg==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-member-expression-to-functions": "^7.27.1", + "@babel/helper-member-expression-to-functions": "^7.28.5", "@babel/helper-optimise-call-expression": "^7.27.1", - "@babel/traverse": "^7.27.1" + "@babel/traverse": "^7.28.6" }, "engines": { "node": ">=6.9.0" @@ -315,6 +329,7 @@ "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz", "integrity": "sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==", "dev": true, + "license": "MIT", "dependencies": { "@babel/traverse": "^7.27.1", "@babel/types": "^7.27.1" @@ -328,6 +343,7 @@ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.9.0" } @@ -337,6 +353,7 @@ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.9.0" } @@ -346,30 +363,33 @@ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helpers": { - "version": "7.28.4", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz", - "integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==", + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.6.tgz", + "integrity": "sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/template": "^7.27.2", - "@babel/types": "^7.28.4" + "@babel/template": "^7.28.6", + "@babel/types": "^7.28.6" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/parser": { - "version": "7.28.5", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz", - "integrity": "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==", + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.0.tgz", + "integrity": "sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/types": "^7.28.5" + "@babel/types": "^7.29.0" }, "bin": { "parser": "bin/babel-parser.js" @@ -384,6 +404,7 @@ "integrity": "sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==", "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-property-in-object instead.", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", "@babel/helper-create-class-features-plugin": "^7.21.0", @@ -402,6 +423,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -413,13 +435,14 @@ } }, "node_modules/@babel/plugin-transform-class-static-block": { - "version": "7.28.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.28.3.tgz", - "integrity": "sha512-LtPXlBbRoc4Njl/oh1CeD/3jC+atytbnf/UqLoqTDcEYGUPj022+rvfkbDYieUrSj3CaV4yHDByPE+T2HwfsJg==", + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.28.6.tgz", + "integrity": "sha512-rfQ++ghVwTWTqQ7w8qyDxL1XGihjBss4CmTgGRCTAC9RIbhVpyp4fOeZtta0Lbf+dTNIVJer6ych2ibHwkZqsQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.28.3", - "@babel/helper-plugin-utils": "^7.27.1" + "@babel/helper-create-class-features-plugin": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6" }, "engines": { "node": ">=6.9.0" @@ -429,14 +452,15 @@ } }, "node_modules/@babel/plugin-transform-private-property-in-object": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.27.1.tgz", - "integrity": "sha512-5J+IhqTi1XPa0DXF83jYOaARrX+41gOewWbkPyjMNRDqgOCqdffGh8L3f/Ek5utaEBZExjSAzcyjmV9SSAWObQ==", + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.28.6.tgz", + "integrity": "sha512-b97jvNSOb5+ehyQmBpmhOCiUC5oVK4PMnpRvO7+ymFBoqYjeDHIU9jnrNUuwHOiL9RpGDoKBpSViarV+BU+eVA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.27.1", - "@babel/helper-create-class-features-plugin": "^7.27.1", - "@babel/helper-plugin-utils": "^7.27.1" + "@babel/helper-annotate-as-pure": "^7.27.3", + "@babel/helper-create-class-features-plugin": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6" }, "engines": { "node": ">=6.9.0" @@ -450,6 +474,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz", "integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, @@ -465,6 +490,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz", "integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, @@ -476,39 +502,42 @@ } }, "node_modules/@babel/runtime": { - "version": "7.28.4", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz", - "integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==", + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.6.tgz", + "integrity": "sha512-05WQkdpL9COIMz4LjTxGpPNCdlpyimKppYNoJ5Di5EUObifl8t4tuLuUBBZEpoLYOmfvIWrsp9fCl0HoPRVTdA==", + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/template": { - "version": "7.27.2", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", - "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz", + "integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.27.1", - "@babel/parser": "^7.27.2", - "@babel/types": "^7.27.1" + "@babel/code-frame": "^7.28.6", + "@babel/parser": "^7.28.6", + "@babel/types": "^7.28.6" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { - "version": "7.28.5", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.5.tgz", - "integrity": "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==", + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.0.tgz", + "integrity": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.27.1", - "@babel/generator": "^7.28.5", + "@babel/code-frame": "^7.29.0", + "@babel/generator": "^7.29.0", "@babel/helper-globals": "^7.28.0", - "@babel/parser": "^7.28.5", - "@babel/template": "^7.27.2", - "@babel/types": "^7.28.5", + "@babel/parser": "^7.29.0", + "@babel/template": "^7.28.6", + "@babel/types": "^7.29.0", "debug": "^4.3.1" }, "engines": { @@ -516,10 +545,11 @@ } }, "node_modules/@babel/types": { - "version": "7.28.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz", - "integrity": "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==", + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz", + "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-string-parser": "^7.27.1", "@babel/helper-validator-identifier": "^7.28.5" @@ -528,18 +558,12 @@ "node": ">=6.9.0" } }, - "node_modules/@bufbuild/protobuf": { - "version": "2.10.1", - "resolved": "https://registry.npmjs.org/@bufbuild/protobuf/-/protobuf-2.10.1.tgz", - "integrity": "sha512-ckS3+vyJb5qGpEYv/s1OebUHDi/xSNtfgw1wqKZo7MR9F2z+qXr0q5XagafAG/9O0QPVIUfST0smluYSTpYFkg==", - "dev": true, - "license": "(Apache-2.0 AND BSD-3-Clause)" - }, "node_modules/@cspotcode/source-map-support": { "version": "0.8.1", "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", "dev": true, + "license": "MIT", "dependencies": { "@jridgewell/trace-mapping": "0.3.9" }, @@ -552,15 +576,16 @@ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", "dev": true, + "license": "MIT", "dependencies": { "@jridgewell/resolve-uri": "^3.0.3", "@jridgewell/sourcemap-codec": "^1.4.10" } }, "node_modules/@esbuild/aix-ppc64": { - "version": "0.25.12", - "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.12.tgz", - "integrity": "sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==", + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.3.tgz", + "integrity": "sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==", "cpu": [ "ppc64" ], @@ -575,9 +600,9 @@ } }, "node_modules/@esbuild/android-arm": { - "version": "0.25.12", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.12.tgz", - "integrity": "sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==", + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.3.tgz", + "integrity": "sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==", "cpu": [ "arm" ], @@ -592,9 +617,9 @@ } }, "node_modules/@esbuild/android-arm64": { - "version": "0.25.12", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.12.tgz", - "integrity": "sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==", + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.3.tgz", + "integrity": "sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==", "cpu": [ "arm64" ], @@ -609,9 +634,9 @@ } }, "node_modules/@esbuild/android-x64": { - "version": "0.25.12", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.12.tgz", - "integrity": "sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==", + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.3.tgz", + "integrity": "sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==", "cpu": [ "x64" ], @@ -626,9 +651,9 @@ } }, "node_modules/@esbuild/darwin-arm64": { - "version": "0.25.12", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.12.tgz", - "integrity": "sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==", + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.3.tgz", + "integrity": "sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==", "cpu": [ "arm64" ], @@ -643,9 +668,9 @@ } }, "node_modules/@esbuild/darwin-x64": { - "version": "0.25.12", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.12.tgz", - "integrity": "sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==", + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.3.tgz", + "integrity": "sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==", "cpu": [ "x64" ], @@ -660,9 +685,9 @@ } }, "node_modules/@esbuild/freebsd-arm64": { - "version": "0.25.12", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.12.tgz", - "integrity": "sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==", + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.3.tgz", + "integrity": "sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==", "cpu": [ "arm64" ], @@ -677,9 +702,9 @@ } }, "node_modules/@esbuild/freebsd-x64": { - "version": "0.25.12", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.12.tgz", - "integrity": "sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==", + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.3.tgz", + "integrity": "sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==", "cpu": [ "x64" ], @@ -694,9 +719,9 @@ } }, "node_modules/@esbuild/linux-arm": { - "version": "0.25.12", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.12.tgz", - "integrity": "sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==", + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.3.tgz", + "integrity": "sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==", "cpu": [ "arm" ], @@ -711,9 +736,9 @@ } }, "node_modules/@esbuild/linux-arm64": { - "version": "0.25.12", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.12.tgz", - "integrity": "sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==", + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.3.tgz", + "integrity": "sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==", "cpu": [ "arm64" ], @@ -728,9 +753,9 @@ } }, "node_modules/@esbuild/linux-ia32": { - "version": "0.25.12", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.12.tgz", - "integrity": "sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==", + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.3.tgz", + "integrity": "sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==", "cpu": [ "ia32" ], @@ -745,9 +770,9 @@ } }, "node_modules/@esbuild/linux-loong64": { - "version": "0.25.12", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.12.tgz", - "integrity": "sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==", + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.3.tgz", + "integrity": "sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==", "cpu": [ "loong64" ], @@ -762,9 +787,9 @@ } }, "node_modules/@esbuild/linux-mips64el": { - "version": "0.25.12", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.12.tgz", - "integrity": "sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==", + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.3.tgz", + "integrity": "sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==", "cpu": [ "mips64el" ], @@ -779,9 +804,9 @@ } }, "node_modules/@esbuild/linux-ppc64": { - "version": "0.25.12", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.12.tgz", - "integrity": "sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==", + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.3.tgz", + "integrity": "sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==", "cpu": [ "ppc64" ], @@ -796,9 +821,9 @@ } }, "node_modules/@esbuild/linux-riscv64": { - "version": "0.25.12", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.12.tgz", - "integrity": "sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==", + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.3.tgz", + "integrity": "sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==", "cpu": [ "riscv64" ], @@ -813,9 +838,9 @@ } }, "node_modules/@esbuild/linux-s390x": { - "version": "0.25.12", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.12.tgz", - "integrity": "sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==", + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.3.tgz", + "integrity": "sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==", "cpu": [ "s390x" ], @@ -830,9 +855,9 @@ } }, "node_modules/@esbuild/linux-x64": { - "version": "0.25.12", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.12.tgz", - "integrity": "sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==", + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.3.tgz", + "integrity": "sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==", "cpu": [ "x64" ], @@ -847,9 +872,9 @@ } }, "node_modules/@esbuild/netbsd-arm64": { - "version": "0.25.12", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.12.tgz", - "integrity": "sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==", + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.3.tgz", + "integrity": "sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==", "cpu": [ "arm64" ], @@ -864,9 +889,9 @@ } }, "node_modules/@esbuild/netbsd-x64": { - "version": "0.25.12", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.12.tgz", - "integrity": "sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==", + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.3.tgz", + "integrity": "sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==", "cpu": [ "x64" ], @@ -881,9 +906,9 @@ } }, "node_modules/@esbuild/openbsd-arm64": { - "version": "0.25.12", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.12.tgz", - "integrity": "sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==", + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.3.tgz", + "integrity": "sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==", "cpu": [ "arm64" ], @@ -898,9 +923,9 @@ } }, "node_modules/@esbuild/openbsd-x64": { - "version": "0.25.12", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.12.tgz", - "integrity": "sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==", + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.3.tgz", + "integrity": "sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==", "cpu": [ "x64" ], @@ -915,9 +940,9 @@ } }, "node_modules/@esbuild/openharmony-arm64": { - "version": "0.25.12", - "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.12.tgz", - "integrity": "sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==", + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.3.tgz", + "integrity": "sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==", "cpu": [ "arm64" ], @@ -932,9 +957,9 @@ } }, "node_modules/@esbuild/sunos-x64": { - "version": "0.25.12", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.12.tgz", - "integrity": "sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==", + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.3.tgz", + "integrity": "sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==", "cpu": [ "x64" ], @@ -949,9 +974,9 @@ } }, "node_modules/@esbuild/win32-arm64": { - "version": "0.25.12", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.12.tgz", - "integrity": "sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==", + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.3.tgz", + "integrity": "sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==", "cpu": [ "arm64" ], @@ -966,9 +991,9 @@ } }, "node_modules/@esbuild/win32-ia32": { - "version": "0.25.12", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.12.tgz", - "integrity": "sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==", + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.3.tgz", + "integrity": "sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==", "cpu": [ "ia32" ], @@ -983,13 +1008,14 @@ } }, "node_modules/@esbuild/win32-x64": { - "version": "0.25.12", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.12.tgz", - "integrity": "sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==", + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.3.tgz", + "integrity": "sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "win32" @@ -999,10 +1025,11 @@ } }, "node_modules/@eslint-community/eslint-utils": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.0.tgz", - "integrity": "sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==", + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz", + "integrity": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==", "dev": true, + "license": "MIT", "dependencies": { "eslint-visitor-keys": "^3.4.3" }, @@ -1021,6 +1048,7 @@ "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz", "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==", "dev": true, + "license": "MIT", "engines": { "node": "^12.0.0 || ^14.0.0 || >=16.0.0" } @@ -1030,6 +1058,7 @@ "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", "dev": true, + "license": "MIT", "dependencies": { "ajv": "^6.12.4", "debug": "^4.3.2", @@ -1053,31 +1082,35 @@ "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz", "integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==", "dev": true, + "license": "MIT", "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, "node_modules/@floating-ui/core": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.7.3.tgz", - "integrity": "sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==", + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.7.4.tgz", + "integrity": "sha512-C3HlIdsBxszvm5McXlB8PeOEWfBhcGBTZGkGlWc2U0KFY5IwG5OQEuQ8rq52DZmcHDlPLd+YFBK+cZcytwIFWg==", + "license": "MIT", "dependencies": { "@floating-ui/utils": "^0.2.10" } }, "node_modules/@floating-ui/dom": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.7.4.tgz", - "integrity": "sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==", + "version": "1.7.5", + "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.7.5.tgz", + "integrity": "sha512-N0bD2kIPInNHUHehXhMke1rBGs1dwqvC9O9KYMyyjK7iXt7GAhnro7UlcuYcGdS/yYOlq0MAVgrow8IbWJwyqg==", + "license": "MIT", "dependencies": { - "@floating-ui/core": "^1.7.3", + "@floating-ui/core": "^1.7.4", "@floating-ui/utils": "^0.2.10" } }, "node_modules/@floating-ui/utils": { "version": "0.2.10", "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.10.tgz", - "integrity": "sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==" + "integrity": "sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==", + "license": "MIT" }, "node_modules/@humanwhocodes/config-array": { "version": "0.13.0", @@ -1085,6 +1118,7 @@ "integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==", "deprecated": "Use @eslint/config-array instead", "dev": true, + "license": "Apache-2.0", "dependencies": { "@humanwhocodes/object-schema": "^2.0.3", "debug": "^4.3.1", @@ -1099,6 +1133,7 @@ "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", "dev": true, + "license": "Apache-2.0", "engines": { "node": ">=12.22" }, @@ -1112,13 +1147,15 @@ "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", "deprecated": "Use @eslint/object-schema instead", - "dev": true + "dev": true, + "license": "BSD-3-Clause" }, "node_modules/@jest/expect-utils": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", "dev": true, + "license": "MIT", "dependencies": { "jest-get-type": "^29.6.3" }, @@ -1131,6 +1168,7 @@ "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", "dev": true, + "license": "MIT", "dependencies": { "@sinclair/typebox": "^0.27.8" }, @@ -1143,6 +1181,7 @@ "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", "dev": true, + "license": "MIT", "dependencies": { "@jest/schemas": "^29.6.3", "@types/istanbul-lib-coverage": "^2.0.0", @@ -1160,6 +1199,7 @@ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", "dev": true, + "license": "MIT", "dependencies": { "@jridgewell/sourcemap-codec": "^1.5.0", "@jridgewell/trace-mapping": "^0.3.24" @@ -1170,6 +1210,7 @@ "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", "dev": true, + "license": "MIT", "dependencies": { "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.24" @@ -1180,6 +1221,7 @@ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.0.0" } @@ -1189,6 +1231,7 @@ "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.11.tgz", "integrity": "sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==", "dev": true, + "license": "MIT", "dependencies": { "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25" @@ -1198,27 +1241,31 @@ "version": "1.5.5", "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@jridgewell/trace-mapping": { "version": "0.3.31", "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", "dev": true, + "license": "MIT", "dependencies": { "@jridgewell/resolve-uri": "^3.1.0", "@jridgewell/sourcemap-codec": "^1.4.14" } }, "node_modules/@lit-labs/ssr-dom-shim": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@lit-labs/ssr-dom-shim/-/ssr-dom-shim-1.4.0.tgz", - "integrity": "sha512-ficsEARKnmmW5njugNYKipTm4SFnbik7CXtoencDZzmzo/dQ+2Q0bgkzJuoJP20Aj0F+izzJjOqsnkd6F/o1bw==" + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/@lit-labs/ssr-dom-shim/-/ssr-dom-shim-1.5.1.tgz", + "integrity": "sha512-Aou5UdlSpr5whQe8AA/bZG0jMj96CoJIWbGfZ91qieWu5AWUMKw8VR/pAkQkJYvBNhmCcWnZlyyk5oze8JIqYA==", + "license": "BSD-3-Clause" }, "node_modules/@lit-labs/virtualizer": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/@lit-labs/virtualizer/-/virtualizer-2.1.1.tgz", "integrity": "sha512-JWxMwnlouLdwpw8spLTuax53WMnSP3xt0dCyxAS7GJr5Otda9MGgR/ghAdfwhSY75TmjbE1T2TqChwoGCw3ggw==", + "license": "BSD-3-Clause", "dependencies": { "lit": "^3.2.0", "tslib": "^2.0.3" @@ -1228,6 +1275,7 @@ "version": "1.1.6", "resolved": "https://registry.npmjs.org/@lit/context/-/context-1.1.6.tgz", "integrity": "sha512-M26qDE6UkQbZA2mQ3RjJ3Gzd8TxP+/0obMgE5HfkfLhEEyYE3Bui4A5XHiGPjy0MUGAyxB3QgVuw2ciS0kHn6A==", + "license": "BSD-3-Clause", "dependencies": { "@lit/reactive-element": "^1.6.2 || ^2.1.0" } @@ -1236,16 +1284,18 @@ "version": "1.0.8", "resolved": "https://registry.npmjs.org/@lit/react/-/react-1.0.8.tgz", "integrity": "sha512-p2+YcF+JE67SRX3mMlJ1TKCSTsgyOVdAwd/nxp3NuV1+Cb6MWALbN6nT7Ld4tpmYofcE5kcaSY1YBB9erY+6fw==", + "license": "BSD-3-Clause", "peerDependencies": { "@types/react": "17 || 18 || 19" } }, "node_modules/@lit/reactive-element": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@lit/reactive-element/-/reactive-element-2.1.1.tgz", - "integrity": "sha512-N+dm5PAYdQ8e6UlywyyrgI2t++wFGXfHx+dSJ1oBrg6FAxUj40jId++EaRm80MKX5JnlH1sBsyZ5h0bcZKemCg==", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@lit/reactive-element/-/reactive-element-2.1.2.tgz", + "integrity": "sha512-pbCDiVMnne1lYUIaYNN5wrwQXDtHaYtg7YEFPeW+hws6U47WeFvISGUWekPGKWOP1ygrs0ef0o1VJMk1exos5A==", + "license": "BSD-3-Clause", "dependencies": { - "@lit-labs/ssr-dom-shim": "^1.4.0" + "@lit-labs/ssr-dom-shim": "^1.5.0" } }, "node_modules/@nodelib/fs.scandir": { @@ -1253,6 +1303,7 @@ "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "dev": true, + "license": "MIT", "dependencies": { "@nodelib/fs.stat": "2.0.5", "run-parallel": "^1.1.9" @@ -1266,6 +1317,7 @@ "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", "dev": true, + "license": "MIT", "engines": { "node": ">= 8" } @@ -1275,6 +1327,7 @@ "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "dev": true, + "license": "MIT", "dependencies": { "@nodelib/fs.scandir": "2.1.5", "fastq": "^1.6.0" @@ -1284,18 +1337,18 @@ } }, "node_modules/@parcel/watcher": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.1.tgz", - "integrity": "sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==", + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.6.tgz", + "integrity": "sha512-tmmZ3lQxAe/k/+rNnXQRawJ4NjxO2hqiOLTHvWchtGZULp4RyFeh6aU4XdOYBFe2KE1oShQTv4AblOs2iOrNnQ==", "dev": true, "hasInstallScript": true, "license": "MIT", "optional": true, "dependencies": { - "detect-libc": "^1.0.3", + "detect-libc": "^2.0.3", "is-glob": "^4.0.3", - "micromatch": "^4.0.5", - "node-addon-api": "^7.0.0" + "node-addon-api": "^7.0.0", + "picomatch": "^4.0.3" }, "engines": { "node": ">= 10.0.0" @@ -1305,25 +1358,25 @@ "url": "https://opencollective.com/parcel" }, "optionalDependencies": { - "@parcel/watcher-android-arm64": "2.5.1", - "@parcel/watcher-darwin-arm64": "2.5.1", - "@parcel/watcher-darwin-x64": "2.5.1", - "@parcel/watcher-freebsd-x64": "2.5.1", - "@parcel/watcher-linux-arm-glibc": "2.5.1", - "@parcel/watcher-linux-arm-musl": "2.5.1", - "@parcel/watcher-linux-arm64-glibc": "2.5.1", - "@parcel/watcher-linux-arm64-musl": "2.5.1", - "@parcel/watcher-linux-x64-glibc": "2.5.1", - "@parcel/watcher-linux-x64-musl": "2.5.1", - "@parcel/watcher-win32-arm64": "2.5.1", - "@parcel/watcher-win32-ia32": "2.5.1", - "@parcel/watcher-win32-x64": "2.5.1" + "@parcel/watcher-android-arm64": "2.5.6", + "@parcel/watcher-darwin-arm64": "2.5.6", + "@parcel/watcher-darwin-x64": "2.5.6", + "@parcel/watcher-freebsd-x64": "2.5.6", + "@parcel/watcher-linux-arm-glibc": "2.5.6", + "@parcel/watcher-linux-arm-musl": "2.5.6", + "@parcel/watcher-linux-arm64-glibc": "2.5.6", + "@parcel/watcher-linux-arm64-musl": "2.5.6", + "@parcel/watcher-linux-x64-glibc": "2.5.6", + "@parcel/watcher-linux-x64-musl": "2.5.6", + "@parcel/watcher-win32-arm64": "2.5.6", + "@parcel/watcher-win32-ia32": "2.5.6", + "@parcel/watcher-win32-x64": "2.5.6" } }, "node_modules/@parcel/watcher-android-arm64": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.1.tgz", - "integrity": "sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==", + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.6.tgz", + "integrity": "sha512-YQxSS34tPF/6ZG7r/Ih9xy+kP/WwediEUsqmtf0cuCV5TPPKw/PQHRhueUo6JdeFJaqV3pyjm0GdYjZotbRt/A==", "cpu": [ "arm64" ], @@ -1342,9 +1395,9 @@ } }, "node_modules/@parcel/watcher-darwin-arm64": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.1.tgz", - "integrity": "sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==", + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.6.tgz", + "integrity": "sha512-Z2ZdrnwyXvvvdtRHLmM4knydIdU9adO3D4n/0cVipF3rRiwP+3/sfzpAwA/qKFL6i1ModaabkU7IbpeMBgiVEA==", "cpu": [ "arm64" ], @@ -1363,9 +1416,9 @@ } }, "node_modules/@parcel/watcher-darwin-x64": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.1.tgz", - "integrity": "sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==", + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.6.tgz", + "integrity": "sha512-HgvOf3W9dhithcwOWX9uDZyn1lW9R+7tPZ4sug+NGrGIo4Rk1hAXLEbcH1TQSqxts0NYXXlOWqVpvS1SFS4fRg==", "cpu": [ "x64" ], @@ -1384,9 +1437,9 @@ } }, "node_modules/@parcel/watcher-freebsd-x64": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.1.tgz", - "integrity": "sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==", + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.6.tgz", + "integrity": "sha512-vJVi8yd/qzJxEKHkeemh7w3YAn6RJCtYlE4HPMoVnCpIXEzSrxErBW5SJBgKLbXU3WdIpkjBTeUNtyBVn8TRng==", "cpu": [ "x64" ], @@ -1405,9 +1458,9 @@ } }, "node_modules/@parcel/watcher-linux-arm-glibc": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.1.tgz", - "integrity": "sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==", + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.6.tgz", + "integrity": "sha512-9JiYfB6h6BgV50CCfasfLf/uvOcJskMSwcdH1PHH9rvS1IrNy8zad6IUVPVUfmXr+u+Km9IxcfMLzgdOudz9EQ==", "cpu": [ "arm" ], @@ -1426,9 +1479,9 @@ } }, "node_modules/@parcel/watcher-linux-arm-musl": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.1.tgz", - "integrity": "sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==", + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.6.tgz", + "integrity": "sha512-Ve3gUCG57nuUUSyjBq/MAM0CzArtuIOxsBdQ+ftz6ho8n7s1i9E1Nmk/xmP323r2YL0SONs1EuwqBp2u1k5fxg==", "cpu": [ "arm" ], @@ -1447,9 +1500,9 @@ } }, "node_modules/@parcel/watcher-linux-arm64-glibc": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.1.tgz", - "integrity": "sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==", + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.6.tgz", + "integrity": "sha512-f2g/DT3NhGPdBmMWYoxixqYr3v/UXcmLOYy16Bx0TM20Tchduwr4EaCbmxh1321TABqPGDpS8D/ggOTaljijOA==", "cpu": [ "arm64" ], @@ -1468,9 +1521,9 @@ } }, "node_modules/@parcel/watcher-linux-arm64-musl": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.1.tgz", - "integrity": "sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==", + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.6.tgz", + "integrity": "sha512-qb6naMDGlbCwdhLj6hgoVKJl2odL34z2sqkC7Z6kzir8b5W65WYDpLB6R06KabvZdgoHI/zxke4b3zR0wAbDTA==", "cpu": [ "arm64" ], @@ -1489,9 +1542,9 @@ } }, "node_modules/@parcel/watcher-linux-x64-glibc": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.1.tgz", - "integrity": "sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==", + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.6.tgz", + "integrity": "sha512-kbT5wvNQlx7NaGjzPFu8nVIW1rWqV780O7ZtkjuWaPUgpv2NMFpjYERVi0UYj1msZNyCzGlaCWEtzc+exjMGbQ==", "cpu": [ "x64" ], @@ -1510,9 +1563,9 @@ } }, "node_modules/@parcel/watcher-linux-x64-musl": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.1.tgz", - "integrity": "sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==", + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.6.tgz", + "integrity": "sha512-1JRFeC+h7RdXwldHzTsmdtYR/Ku8SylLgTU/reMuqdVD7CtLwf0VR1FqeprZ0eHQkO0vqsbvFLXUmYm/uNKJBg==", "cpu": [ "x64" ], @@ -1531,9 +1584,9 @@ } }, "node_modules/@parcel/watcher-win32-arm64": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.1.tgz", - "integrity": "sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==", + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.6.tgz", + "integrity": "sha512-3ukyebjc6eGlw9yRt678DxVF7rjXatWiHvTXqphZLvo7aC5NdEgFufVwjFfY51ijYEWpXbqF5jtrK275z52D4Q==", "cpu": [ "arm64" ], @@ -1552,9 +1605,9 @@ } }, "node_modules/@parcel/watcher-win32-ia32": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.1.tgz", - "integrity": "sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==", + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.6.tgz", + "integrity": "sha512-k35yLp1ZMwwee3Ez/pxBi5cf4AoBKYXj00CZ80jUz5h8prpiaQsiRPKQMxoLstNuqe2vR4RNPEAEcjEFzhEz/g==", "cpu": [ "ia32" ], @@ -1573,9 +1626,9 @@ } }, "node_modules/@parcel/watcher-win32-x64": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.1.tgz", - "integrity": "sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==", + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.6.tgz", + "integrity": "sha512-hbQlYcCq5dlAX9Qx+kFb0FHue6vbjlf0FrNzSKdYK2APUf7tGfGxQCk2ihEREmbR6ZMc0MVAD5RIX/41gpUzTw==", "cpu": [ "x64" ], @@ -1593,22 +1646,38 @@ "url": "https://opencollective.com/parcel" } }, + "node_modules/@parcel/watcher/node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, "node_modules/@polka/url": { "version": "1.0.0-next.29", "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.29.tgz", "integrity": "sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@rolldown/pluginutils": { - "version": "1.0.0-beta.47", - "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.47.tgz", - "integrity": "sha512-8QagwMH3kNCuzD8EWL8R2YPW5e4OrHNSAHRFDdmFqEwEaD/KcNKjVoumo+gP2vW5eKB2UPbM6vTYiGZX0ixLnw==", - "dev": true + "version": "1.0.0-rc.3", + "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.3.tgz", + "integrity": "sha512-eybk3TjzzzV97Dlj5c+XrBFW57eTNhzod66y9HrBlzJ6NsCrWCp/2kaPS3K9wJmurBC0Tdw4yPjXKZqlznim3Q==", + "dev": true, + "license": "MIT" }, "node_modules/@rollup/rollup-android-arm-eabi": { - "version": "4.53.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.53.2.tgz", - "integrity": "sha512-yDPzwsgiFO26RJA4nZo8I+xqzh7sJTZIWQOxn+/XOdPE31lAvLIYCKqjV+lNH/vxE2L2iH3plKxDCRK6i+CwhA==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.59.0.tgz", + "integrity": "sha512-upnNBkA6ZH2VKGcBj9Fyl9IGNPULcjXRlg0LLeaioQWueH30p6IXtJEbKAgvyv+mJaMxSm1l6xwDXYjpEMiLMg==", "cpu": [ "arm" ], @@ -1620,9 +1689,9 @@ ] }, "node_modules/@rollup/rollup-android-arm64": { - "version": "4.53.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.53.2.tgz", - "integrity": "sha512-k8FontTxIE7b0/OGKeSN5B6j25EuppBcWM33Z19JoVT7UTXFSo3D9CdU39wGTeb29NO3XxpMNauh09B+Ibw+9g==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.59.0.tgz", + "integrity": "sha512-hZ+Zxj3SySm4A/DylsDKZAeVg0mvi++0PYVceVyX7hemkw7OreKdCvW2oQ3T1FMZvCaQXqOTHb8qmBShoqk69Q==", "cpu": [ "arm64" ], @@ -1634,9 +1703,9 @@ ] }, "node_modules/@rollup/rollup-darwin-arm64": { - "version": "4.53.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.53.2.tgz", - "integrity": "sha512-A6s4gJpomNBtJ2yioj8bflM2oogDwzUiMl2yNJ2v9E7++sHrSrsQ29fOfn5DM/iCzpWcebNYEdXpaK4tr2RhfQ==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.59.0.tgz", + "integrity": "sha512-W2Psnbh1J8ZJw0xKAd8zdNgF9HRLkdWwwdWqubSVk0pUuQkoHnv7rx4GiF9rT4t5DIZGAsConRE3AxCdJ4m8rg==", "cpu": [ "arm64" ], @@ -1648,9 +1717,9 @@ ] }, "node_modules/@rollup/rollup-darwin-x64": { - "version": "4.53.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.53.2.tgz", - "integrity": "sha512-e6XqVmXlHrBlG56obu9gDRPW3O3hLxpwHpLsBJvuI8qqnsrtSZ9ERoWUXtPOkY8c78WghyPHZdmPhHLWNdAGEw==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.59.0.tgz", + "integrity": "sha512-ZW2KkwlS4lwTv7ZVsYDiARfFCnSGhzYPdiOU4IM2fDbL+QGlyAbjgSFuqNRbSthybLbIJ915UtZBtmuLrQAT/w==", "cpu": [ "x64" ], @@ -1662,9 +1731,9 @@ ] }, "node_modules/@rollup/rollup-freebsd-arm64": { - "version": "4.53.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.53.2.tgz", - "integrity": "sha512-v0E9lJW8VsrwPux5Qe5CwmH/CF/2mQs6xU1MF3nmUxmZUCHazCjLgYvToOk+YuuUqLQBio1qkkREhxhc656ViA==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.59.0.tgz", + "integrity": "sha512-EsKaJ5ytAu9jI3lonzn3BgG8iRBjV4LxZexygcQbpiU0wU0ATxhNVEpXKfUa0pS05gTcSDMKpn3Sx+QB9RlTTA==", "cpu": [ "arm64" ], @@ -1676,9 +1745,9 @@ ] }, "node_modules/@rollup/rollup-freebsd-x64": { - "version": "4.53.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.53.2.tgz", - "integrity": "sha512-ClAmAPx3ZCHtp6ysl4XEhWU69GUB1D+s7G9YjHGhIGCSrsg00nEGRRZHmINYxkdoJehde8VIsDC5t9C0gb6yqA==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.59.0.tgz", + "integrity": "sha512-d3DuZi2KzTMjImrxoHIAODUZYoUUMsuUiY4SRRcJy6NJoZ6iIqWnJu9IScV9jXysyGMVuW+KNzZvBLOcpdl3Vg==", "cpu": [ "x64" ], @@ -1690,9 +1759,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm-gnueabihf": { - "version": "4.53.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.53.2.tgz", - "integrity": "sha512-EPlb95nUsz6Dd9Qy13fI5kUPXNSljaG9FiJ4YUGU1O/Q77i5DYFW5KR8g1OzTcdZUqQQ1KdDqsTohdFVwCwjqg==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.59.0.tgz", + "integrity": "sha512-t4ONHboXi/3E0rT6OZl1pKbl2Vgxf9vJfWgmUoCEVQVxhW6Cw/c8I6hbbu7DAvgp82RKiH7TpLwxnJeKv2pbsw==", "cpu": [ "arm" ], @@ -1704,9 +1773,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm-musleabihf": { - "version": "4.53.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.53.2.tgz", - "integrity": "sha512-BOmnVW+khAUX+YZvNfa0tGTEMVVEerOxN0pDk2E6N6DsEIa2Ctj48FOMfNDdrwinocKaC7YXUZ1pHlKpnkja/Q==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.59.0.tgz", + "integrity": "sha512-CikFT7aYPA2ufMD086cVORBYGHffBo4K8MQ4uPS/ZnY54GKj36i196u8U+aDVT2LX4eSMbyHtyOh7D7Zvk2VvA==", "cpu": [ "arm" ], @@ -1718,9 +1787,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm64-gnu": { - "version": "4.53.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.53.2.tgz", - "integrity": "sha512-Xt2byDZ+6OVNuREgBXr4+CZDJtrVso5woFtpKdGPhpTPHcNG7D8YXeQzpNbFRxzTVqJf7kvPMCub/pcGUWgBjA==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.59.0.tgz", + "integrity": "sha512-jYgUGk5aLd1nUb1CtQ8E+t5JhLc9x5WdBKew9ZgAXg7DBk0ZHErLHdXM24rfX+bKrFe+Xp5YuJo54I5HFjGDAA==", "cpu": [ "arm64" ], @@ -1732,9 +1801,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm64-musl": { - "version": "4.53.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.53.2.tgz", - "integrity": "sha512-+LdZSldy/I9N8+klim/Y1HsKbJ3BbInHav5qE9Iy77dtHC/pibw1SR/fXlWyAk0ThnpRKoODwnAuSjqxFRDHUQ==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.59.0.tgz", + "integrity": "sha512-peZRVEdnFWZ5Bh2KeumKG9ty7aCXzzEsHShOZEFiCQlDEepP1dpUl/SrUNXNg13UmZl+gzVDPsiCwnV1uI0RUA==", "cpu": [ "arm64" ], @@ -1746,9 +1815,23 @@ ] }, "node_modules/@rollup/rollup-linux-loong64-gnu": { - "version": "4.53.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.53.2.tgz", - "integrity": "sha512-8ms8sjmyc1jWJS6WdNSA23rEfdjWB30LH8Wqj0Cqvv7qSHnvw6kgMMXRdop6hkmGPlyYBdRPkjJnj3KCUHV/uQ==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.59.0.tgz", + "integrity": "sha512-gbUSW/97f7+r4gHy3Jlup8zDG190AuodsWnNiXErp9mT90iCy9NKKU0Xwx5k8VlRAIV2uU9CsMnEFg/xXaOfXg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-musl": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.59.0.tgz", + "integrity": "sha512-yTRONe79E+o0FWFijasoTjtzG9EBedFXJMl888NBEDCDV9I2wGbFFfJQQe63OijbFCUZqxpHz1GzpbtSFikJ4Q==", "cpu": [ "loong64" ], @@ -1760,9 +1843,23 @@ ] }, "node_modules/@rollup/rollup-linux-ppc64-gnu": { - "version": "4.53.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.53.2.tgz", - "integrity": "sha512-3HRQLUQbpBDMmzoxPJYd3W6vrVHOo2cVW8RUo87Xz0JPJcBLBr5kZ1pGcQAhdZgX9VV7NbGNipah1omKKe23/g==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.59.0.tgz", + "integrity": "sha512-sw1o3tfyk12k3OEpRddF68a1unZ5VCN7zoTNtSn2KndUE+ea3m3ROOKRCZxEpmT9nsGnogpFP9x6mnLTCaoLkA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-musl": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.59.0.tgz", + "integrity": "sha512-+2kLtQ4xT3AiIxkzFVFXfsmlZiG5FXYW7ZyIIvGA7Bdeuh9Z0aN4hVyXS/G1E9bTP/vqszNIN/pUKCk/BTHsKA==", "cpu": [ "ppc64" ], @@ -1774,9 +1871,9 @@ ] }, "node_modules/@rollup/rollup-linux-riscv64-gnu": { - "version": "4.53.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.53.2.tgz", - "integrity": "sha512-fMjKi+ojnmIvhk34gZP94vjogXNNUKMEYs+EDaB/5TG/wUkoeua7p7VCHnE6T2Tx+iaghAqQX8teQzcvrYpaQA==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.59.0.tgz", + "integrity": "sha512-NDYMpsXYJJaj+I7UdwIuHHNxXZ/b/N2hR15NyH3m2qAtb/hHPA4g4SuuvrdxetTdndfj9b1WOmy73kcPRoERUg==", "cpu": [ "riscv64" ], @@ -1788,9 +1885,9 @@ ] }, "node_modules/@rollup/rollup-linux-riscv64-musl": { - "version": "4.53.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.53.2.tgz", - "integrity": "sha512-XuGFGU+VwUUV5kLvoAdi0Wz5Xbh2SrjIxCtZj6Wq8MDp4bflb/+ThZsVxokM7n0pcbkEr2h5/pzqzDYI7cCgLQ==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.59.0.tgz", + "integrity": "sha512-nLckB8WOqHIf1bhymk+oHxvM9D3tyPndZH8i8+35p/1YiVoVswPid2yLzgX7ZJP0KQvnkhM4H6QZ5m0LzbyIAg==", "cpu": [ "riscv64" ], @@ -1802,9 +1899,9 @@ ] }, "node_modules/@rollup/rollup-linux-s390x-gnu": { - "version": "4.53.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.53.2.tgz", - "integrity": "sha512-w6yjZF0P+NGzWR3AXWX9zc0DNEGdtvykB03uhonSHMRa+oWA6novflo2WaJr6JZakG2ucsyb+rvhrKac6NIy+w==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.59.0.tgz", + "integrity": "sha512-oF87Ie3uAIvORFBpwnCvUzdeYUqi2wY6jRFWJAy1qus/udHFYIkplYRW+wo+GRUP4sKzYdmE1Y3+rY5Gc4ZO+w==", "cpu": [ "s390x" ], @@ -1816,9 +1913,9 @@ ] }, "node_modules/@rollup/rollup-linux-x64-gnu": { - "version": "4.53.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.53.2.tgz", - "integrity": "sha512-yo8d6tdfdeBArzC7T/PnHd7OypfI9cbuZzPnzLJIyKYFhAQ8SvlkKtKBMbXDxe1h03Rcr7u++nFS7tqXz87Gtw==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.59.0.tgz", + "integrity": "sha512-3AHmtQq/ppNuUspKAlvA8HtLybkDflkMuLK4DPo77DfthRb71V84/c4MlWJXixZz4uruIH4uaa07IqoAkG64fg==", "cpu": [ "x64" ], @@ -1830,9 +1927,9 @@ ] }, "node_modules/@rollup/rollup-linux-x64-musl": { - "version": "4.53.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.53.2.tgz", - "integrity": "sha512-ah59c1YkCxKExPP8O9PwOvs+XRLKwh/mV+3YdKqQ5AMQ0r4M4ZDuOrpWkUaqO7fzAHdINzV9tEVu8vNw48z0lA==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.59.0.tgz", + "integrity": "sha512-2UdiwS/9cTAx7qIUZB/fWtToJwvt0Vbo0zmnYt7ED35KPg13Q0ym1g442THLC7VyI6JfYTP4PiSOWyoMdV2/xg==", "cpu": [ "x64" ], @@ -1843,10 +1940,24 @@ "linux" ] }, + "node_modules/@rollup/rollup-openbsd-x64": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.59.0.tgz", + "integrity": "sha512-M3bLRAVk6GOwFlPTIxVBSYKUaqfLrn8l0psKinkCFxl4lQvOSz8ZrKDz2gxcBwHFpci0B6rttydI4IpS4IS/jQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ] + }, "node_modules/@rollup/rollup-openharmony-arm64": { - "version": "4.53.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.53.2.tgz", - "integrity": "sha512-4VEd19Wmhr+Zy7hbUsFZ6YXEiP48hE//KPLCSVNY5RMGX2/7HZ+QkN55a3atM1C/BZCGIgqN+xrVgtdak2S9+A==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.59.0.tgz", + "integrity": "sha512-tt9KBJqaqp5i5HUZzoafHZX8b5Q2Fe7UjYERADll83O4fGqJ49O1FsL6LpdzVFQcpwvnyd0i+K/VSwu/o/nWlA==", "cpu": [ "arm64" ], @@ -1858,9 +1969,9 @@ ] }, "node_modules/@rollup/rollup-win32-arm64-msvc": { - "version": "4.53.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.53.2.tgz", - "integrity": "sha512-IlbHFYc/pQCgew/d5fslcy1KEaYVCJ44G8pajugd8VoOEI8ODhtb/j8XMhLpwHCMB3yk2J07ctup10gpw2nyMA==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.59.0.tgz", + "integrity": "sha512-V5B6mG7OrGTwnxaNUzZTDTjDS7F75PO1ae6MJYdiMu60sq0CqN5CVeVsbhPxalupvTX8gXVSU9gq+Rx1/hvu6A==", "cpu": [ "arm64" ], @@ -1872,9 +1983,9 @@ ] }, "node_modules/@rollup/rollup-win32-ia32-msvc": { - "version": "4.53.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.53.2.tgz", - "integrity": "sha512-lNlPEGgdUfSzdCWU176ku/dQRnA7W+Gp8d+cWv73jYrb8uT7HTVVxq62DUYxjbaByuf1Yk0RIIAbDzp+CnOTFg==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.59.0.tgz", + "integrity": "sha512-UKFMHPuM9R0iBegwzKF4y0C4J9u8C6MEJgFuXTBerMk7EJ92GFVFYBfOZaSGLu6COf7FxpQNqhNS4c4icUPqxA==", "cpu": [ "ia32" ], @@ -1886,26 +1997,28 @@ ] }, "node_modules/@rollup/rollup-win32-x64-gnu": { - "version": "4.53.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.53.2.tgz", - "integrity": "sha512-S6YojNVrHybQis2lYov1sd+uj7K0Q05NxHcGktuMMdIQ2VixGwAfbJ23NnlvvVV1bdpR2m5MsNBViHJKcA4ADw==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.59.0.tgz", + "integrity": "sha512-laBkYlSS1n2L8fSo1thDNGrCTQMmxjYY5G0WFWjFFYZkKPjsMBsgJfGf4TLxXrF6RyhI60L8TMOjBMvXiTcxeA==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "win32" ] }, "node_modules/@rollup/rollup-win32-x64-msvc": { - "version": "4.53.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.53.2.tgz", - "integrity": "sha512-k+/Rkcyx//P6fetPoLMb8pBeqJBNGx81uuf7iljX9++yNBVRDQgD04L+SVXmXmh5ZP4/WOp4mWF0kmi06PW2tA==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.59.0.tgz", + "integrity": "sha512-2HRCml6OztYXyJXAvdDXPKcawukWY2GpR5/nxKp4iBgiO3wcoEGkAaqctIbZcNB6KlUQBIqt8VYkNSj2397EfA==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "win32" @@ -1979,22 +2092,25 @@ "license": "MIT" }, "node_modules/@sinclair/typebox": { - "version": "0.27.8", - "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", - "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", - "dev": true + "version": "0.27.10", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.10.tgz", + "integrity": "sha512-MTBk/3jGLNB2tVxv6uLlFh1iu64iYOQ2PbdOSK3NW8JZsmlaOh2q6sdtKowBhfw8QFLmYNzTW4/oK4uATIi6ZA==", + "dev": true, + "license": "MIT" }, "node_modules/@socket.io/component-emitter": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/@socket.io/component-emitter/-/component-emitter-3.1.2.tgz", "integrity": "sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@testing-library/dom": { "version": "10.4.1", "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-10.4.1.tgz", "integrity": "sha512-o4PXJQidqJl82ckFaXUeoAW+XysPLauYI43Abki5hABd853iMhitooc6znOnczgbTYmEP6U6/y1ZyKAIsvMKGg==", "dev": true, + "license": "MIT", "dependencies": { "@babel/code-frame": "^7.10.4", "@babel/runtime": "^7.12.5", @@ -2014,6 +2130,7 @@ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, + "license": "MIT", "engines": { "node": ">=10" }, @@ -2026,6 +2143,7 @@ "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", "dev": true, + "license": "MIT", "dependencies": { "ansi-regex": "^5.0.1", "ansi-styles": "^5.0.0", @@ -2039,13 +2157,15 @@ "version": "17.0.2", "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@testing-library/user-event": { "version": "14.6.1", "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-14.6.1.tgz", "integrity": "sha512-vq7fv0rnt+QTXgPxr5Hjc210p6YKq2kmdziLgnsZGgLJ9e6VAShx1pACLuRjd/AS/sr7phAR58OIIpf0LlmQNw==", "dev": true, + "license": "MIT", "engines": { "node": ">=12", "npm": ">=6" @@ -2058,37 +2178,43 @@ "version": "1.0.12", "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.12.tgz", "integrity": "sha512-UCYBaeFvM11aU2y3YPZ//O5Rhj+xKyzy7mvcIoAjASbigy8mHMryP5cK7dgjlz2hWxh1g5pLw084E0a/wlUSFQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@tsconfig/node12": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@tsconfig/node14": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@tsconfig/node16": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@types/aria-query": { "version": "5.0.4", "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.4.tgz", "integrity": "sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@types/babel__core": { "version": "7.20.5", "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", "dev": true, + "license": "MIT", "dependencies": { "@babel/parser": "^7.20.7", "@babel/types": "^7.20.7", @@ -2102,6 +2228,7 @@ "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz", "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==", "dev": true, + "license": "MIT", "dependencies": { "@babel/types": "^7.0.0" } @@ -2111,6 +2238,7 @@ "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", "dev": true, + "license": "MIT", "dependencies": { "@babel/parser": "^7.1.0", "@babel/types": "^7.0.0" @@ -2121,6 +2249,7 @@ "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz", "integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==", "dev": true, + "license": "MIT", "dependencies": { "@babel/types": "^7.28.2" } @@ -2130,6 +2259,7 @@ "resolved": "https://registry.npmjs.org/@types/chai/-/chai-5.2.3.tgz", "integrity": "sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==", "dev": true, + "license": "MIT", "dependencies": { "@types/deep-eql": "*", "assertion-error": "^2.0.1" @@ -2140,6 +2270,7 @@ "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.19.tgz", "integrity": "sha512-mFNylyeyqN93lfe/9CSxOGREz8cpzAhH+E93xJ4xWQf62V8sQ/24reV2nyzUWM6H6Xji+GGHpkbLe7pVoUEskg==", "dev": true, + "license": "MIT", "dependencies": { "@types/node": "*" } @@ -2149,6 +2280,7 @@ "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz", "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==", "dev": true, + "license": "MIT", "dependencies": { "@types/ms": "*" } @@ -2157,13 +2289,15 @@ "version": "4.0.2", "resolved": "https://registry.npmjs.org/@types/deep-eql/-/deep-eql-4.0.2.tgz", "integrity": "sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@types/eslint": { "version": "9.6.1", "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-9.6.1.tgz", "integrity": "sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==", "dev": true, + "license": "MIT", "dependencies": { "@types/estree": "*", "@types/json-schema": "*" @@ -2174,6 +2308,7 @@ "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", "dev": true, + "license": "MIT", "dependencies": { "@types/eslint": "*", "@types/estree": "*" @@ -2183,24 +2318,28 @@ "version": "1.0.8", "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@types/expect": { "version": "1.20.4", "resolved": "https://registry.npmjs.org/@types/expect/-/expect-1.20.4.tgz", "integrity": "sha512-Q5Vn3yjTDyCMV50TB6VRIbQNxSE4OmZR86VSbGaNpfUolm0iePBB4KdEEHmxoY5sT2+2DIvXW0rvMDP2nHZ4Mg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@types/file-saver": { "version": "2.0.7", "resolved": "https://registry.npmjs.org/@types/file-saver/-/file-saver-2.0.7.tgz", - "integrity": "sha512-dNKVfHd/jk0SkR/exKGj2ggkB45MAkzvWCaqLUUgkyjITkGNzH8H+yUwr+BLJUBjZOe9w8X3wgmXhZDRg1ED6A==" + "integrity": "sha512-dNKVfHd/jk0SkR/exKGj2ggkB45MAkzvWCaqLUUgkyjITkGNzH8H+yUwr+BLJUBjZOe9w8X3wgmXhZDRg1ED6A==", + "license": "MIT" }, "node_modules/@types/glob": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", "dev": true, + "license": "MIT", "dependencies": { "@types/minimatch": "*", "@types/node": "*" @@ -2211,6 +2350,7 @@ "resolved": "https://registry.npmjs.org/@types/glob-stream/-/glob-stream-8.0.3.tgz", "integrity": "sha512-vctgrT9AH/GK3TRaIbRUU0TZn12GBU4kzelZdPyJp1Sc8L/6Wrq21UrtN4+x4saqTg6COUIUtFV6JSYcVln/EQ==", "dev": true, + "license": "MIT", "dependencies": { "@types/node": "*", "@types/picomatch": "*", @@ -2222,6 +2362,7 @@ "resolved": "https://registry.npmjs.org/@types/gulp/-/gulp-4.0.18.tgz", "integrity": "sha512-IqkYa4sXkwH2uwqO2aXYOoAisJpLX13BPaS6lmEAoG4BbgOay3qqGQFsT9LMSSQVMQlEKU7wTUW0sPV46V0olw==", "dev": true, + "license": "MIT", "dependencies": { "@types/node": "*", "@types/undertaker": ">=1.2.6", @@ -2241,19 +2382,22 @@ "node_modules/@types/history": { "version": "4.7.11", "resolved": "https://registry.npmjs.org/@types/history/-/history-4.7.11.tgz", - "integrity": "sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==" + "integrity": "sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==", + "license": "MIT" }, "node_modules/@types/istanbul-lib-coverage": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@types/istanbul-lib-report": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", "dev": true, + "license": "MIT", "dependencies": { "@types/istanbul-lib-coverage": "*" } @@ -2263,6 +2407,7 @@ "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", "dev": true, + "license": "MIT", "dependencies": { "@types/istanbul-lib-report": "*" } @@ -2272,6 +2417,7 @@ "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.14.tgz", "integrity": "sha512-ZN+4sdnLUbo8EVvVc2ao0GFW6oVrQRPn4K2lglySj7APvSrgzxHiNNK99us4WDMi57xxA2yggblIAMNhXOotLQ==", "dev": true, + "license": "MIT", "dependencies": { "expect": "^29.0.0", "pretty-format": "^29.0.0" @@ -2281,13 +2427,15 @@ "version": "7.0.15", "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@types/mdast": { "version": "3.0.15", "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.15.tgz", "integrity": "sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==", "dev": true, + "license": "MIT", "dependencies": { "@types/unist": "^2" } @@ -2297,30 +2445,30 @@ "resolved": "https://registry.npmjs.org/@types/merge2/-/merge2-1.4.4.tgz", "integrity": "sha512-WZLSif3sHKMlq6vW22R9ub5f+/CEFFlSCY8actv9WBU/8RMJes5zHog9+8oEVLTkaIPaM8fp8XpLaHZggPWN9Q==", "dev": true, + "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/minimatch": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-6.0.0.tgz", - "integrity": "sha512-zmPitbQ8+6zNutpwgcQuLcsEpn/Cj54Kbn7L5pX0Os5kdWplB7xPgEh/g+SWOB/qmows2gpuCaPyduq8ZZRnxA==", - "deprecated": "This is a stub types definition. minimatch provides its own type definitions, so you do not need this installed.", + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", + "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", "dev": true, - "dependencies": { - "minimatch": "*" - } + "license": "MIT" }, "node_modules/@types/ms": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz", "integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@types/node": { - "version": "24.10.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-24.10.1.tgz", - "integrity": "sha512-GNWcUTRBgIRJD5zj+Tq0fKOJ5XZajIiBroOF0yvj2bSU1WvNdYS/dn9UxwsujGW4JX06dnHyjV2y9rRaybH0iQ==", + "version": "24.10.13", + "resolved": "https://registry.npmjs.org/@types/node/-/node-24.10.13.tgz", + "integrity": "sha512-oH72nZRfDv9lADUBSo104Aq7gPHpQZc4BTx38r9xf9pg5LfP6EzSyH2n7qFmmxRQXh7YlUXODcYsg6PuTDSxGg==", + "license": "MIT", "dependencies": { "undici-types": "~7.16.0" } @@ -2329,26 +2477,30 @@ "version": "4.0.2", "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@types/picomatch": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/@types/picomatch/-/picomatch-4.0.2.tgz", "integrity": "sha512-qHHxQ+P9PysNEGbALT8f8YOSHW0KJu6l2xU8DYY0fu/EmGxXdVnuTLvFUvBgPJMSqXq29SYHveejeAha+4AYgA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@types/prop-types": { "version": "15.7.15", "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.15.tgz", - "integrity": "sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==" + "integrity": "sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==", + "license": "MIT" }, "node_modules/@types/react": { - "version": "18.3.26", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.26.tgz", - "integrity": "sha512-RFA/bURkcKzx/X9oumPG9Vp3D3JUgus/d0b67KB0t5S/raciymilkOa66olh78MUI92QLbEJevO7rvqU/kjwKA==", + "version": "18.3.28", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.28.tgz", + "integrity": "sha512-z9VXpC7MWrhfWipitjNdgCauoMLRdIILQsAEV+ZesIzBq/oUlxk0m3ApZuMFCXdnS4U7KrI+l3WRUEGQ8K1QKw==", + "license": "MIT", "dependencies": { "@types/prop-types": "*", - "csstype": "^3.0.2" + "csstype": "^3.2.2" } }, "node_modules/@types/react-dom": { @@ -2356,6 +2508,7 @@ "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.7.tgz", "integrity": "sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==", "dev": true, + "license": "MIT", "peerDependencies": { "@types/react": "^18.0.0" } @@ -2364,6 +2517,7 @@ "version": "5.5.5", "resolved": "https://registry.npmjs.org/@types/react-loadable/-/react-loadable-5.5.5.tgz", "integrity": "sha512-TDDZAtxqQFE90+qbv63BOJFKKbxsZW0cHbT70OOT7MLkik1815NwN0Gn4SyoJSkvh+XxUr0axsFGlP5Ak/SdpA==", + "license": "MIT", "dependencies": { "@types/react": "*", "@types/webpack": "^4" @@ -2373,6 +2527,7 @@ "version": "5.1.20", "resolved": "https://registry.npmjs.org/@types/react-router/-/react-router-5.1.20.tgz", "integrity": "sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==", + "license": "MIT", "dependencies": { "@types/history": "^4.7.11", "@types/react": "*" @@ -2383,6 +2538,7 @@ "resolved": "https://registry.npmjs.org/@types/react-router-dom/-/react-router-dom-5.3.3.tgz", "integrity": "sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==", "dev": true, + "license": "MIT", "dependencies": { "@types/history": "^4.7.11", "@types/react": "*", @@ -2393,6 +2549,7 @@ "version": "2.9.2", "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-2.9.2.tgz", "integrity": "sha512-5Fv2DQNO+GpdPZcxp2x/OQG/H19A01WlmpjVD9cKvVFmoVLOZ9LvBgSWG6pSXIU4og5fgbvGPaCV5+VGkWAEHA==", + "license": "MIT", "dependencies": { "@types/react": "*" } @@ -2401,24 +2558,28 @@ "version": "7.7.1", "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.7.1.tgz", "integrity": "sha512-FmgJfu+MOcQ370SD0ev7EI8TlCAfKYU+B4m5T3yXc1CiRN94g/SZPtsCkk506aUDtlMnFZvasDwHHUcZUEaYuA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@types/source-list-map": { "version": "0.1.6", "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.6.tgz", - "integrity": "sha512-5JcVt1u5HDmlXkwOD2nslZVllBBc7HDuOICfiZah2Z0is8M8g+ddAEawbmd3VjedfDHBzxCaXLs07QEmb7y54g==" + "integrity": "sha512-5JcVt1u5HDmlXkwOD2nslZVllBBc7HDuOICfiZah2Z0is8M8g+ddAEawbmd3VjedfDHBzxCaXLs07QEmb7y54g==", + "license": "MIT" }, "node_modules/@types/stack-utils": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@types/streamx": { "version": "2.9.5", "resolved": "https://registry.npmjs.org/@types/streamx/-/streamx-2.9.5.tgz", "integrity": "sha512-IHYsa6jYrck8VEdSwpY141FTTf6D7boPeMq9jy4qazNrFMA4VbRz/sw5LSsfR7jwdDcx0QKWkUexZvsWBC2eIQ==", "dev": true, + "license": "MIT", "dependencies": { "@types/node": "*" } @@ -2426,17 +2587,20 @@ "node_modules/@types/tapable": { "version": "1.0.12", "resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.12.tgz", - "integrity": "sha512-bTHG8fcxEqv1M9+TD14P8ok8hjxoOCkfKc8XXLaaD05kI7ohpeI956jtDOD3XHKBQrlyPughUtzm1jtVhHpA5Q==" + "integrity": "sha512-bTHG8fcxEqv1M9+TD14P8ok8hjxoOCkfKc8XXLaaD05kI7ohpeI956jtDOD3XHKBQrlyPughUtzm1jtVhHpA5Q==", + "license": "MIT" }, "node_modules/@types/trusted-types": { "version": "2.0.7", "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz", - "integrity": "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==" + "integrity": "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==", + "license": "MIT" }, "node_modules/@types/uglify-js": { "version": "3.17.5", "resolved": "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.17.5.tgz", "integrity": "sha512-TU+fZFBTBcXj/GpDpDaBmgWk/gn96kMZ+uocaFUlV2f8a6WdMzzI44QBCmGcCiYR0Y6ZlNRiyUyKKt5nl/lbzQ==", + "license": "MIT", "dependencies": { "source-map": "^0.6.1" } @@ -2446,6 +2610,7 @@ "resolved": "https://registry.npmjs.org/@types/undertaker/-/undertaker-1.2.12.tgz", "integrity": "sha512-52BiBni1srlIx/o7anEB1Y230yr3+21P0utA4VXLyeyeR2gHANKi5kJ/e0FakD4RYEXX0D9dOC7PDrVqL1j98Q==", "dev": true, + "license": "MIT", "dependencies": { "@types/node": "*", "@types/undertaker-registry": "*", @@ -2456,18 +2621,21 @@ "version": "1.0.4", "resolved": "https://registry.npmjs.org/@types/undertaker-registry/-/undertaker-registry-1.0.4.tgz", "integrity": "sha512-tW77pHh2TU4uebWXWeEM5laiw8BuJ7pyJYDh6xenOs75nhny2kVgwYbegJ4BoLMYsIrXaBpKYaPdYO3/udG+hg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@types/unist": { "version": "2.0.11", "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", - "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==", + "license": "MIT" }, "node_modules/@types/vinyl": { "version": "2.0.12", "resolved": "https://registry.npmjs.org/@types/vinyl/-/vinyl-2.0.12.tgz", "integrity": "sha512-Sr2fYMBUVGYq8kj3UthXFAu5UN6ZW+rYr4NACjZQJvHvj+c8lYv0CahmZ2P/r7iUkN44gGUBwqxZkrKXYPb7cw==", "dev": true, + "license": "MIT", "dependencies": { "@types/expect": "^1.20.4", "@types/node": "*" @@ -2478,6 +2646,7 @@ "resolved": "https://registry.npmjs.org/@types/vinyl-fs/-/vinyl-fs-3.0.7.tgz", "integrity": "sha512-ojGFhBnh5pj5Crf2yBOk3rjJXUX2U4W9z6tZ7hn6pUbQa/J8KH8NrXem0POYVQWI3ifnx4T65DPktuWfxc3iiA==", "dev": true, + "license": "MIT", "dependencies": { "@types/glob-stream": "*", "@types/node": "*", @@ -2488,6 +2657,7 @@ "version": "4.41.40", "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.40.tgz", "integrity": "sha512-u6kMFSBM9HcoTpUXnL6mt2HSzftqb3JgYV6oxIgL2dl6sX6aCa5k6SOkzv5DuZjBTPUE/dJltKtwwuqrkZHpfw==", + "license": "MIT", "dependencies": { "@types/node": "*", "@types/tapable": "^1", @@ -2501,6 +2671,7 @@ "version": "3.2.3", "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-3.2.3.tgz", "integrity": "sha512-4nZOdMwSPHZ4pTEZzSp0AsTM4K7Qmu40UKW4tJDiOVs20UzYF9l+qUe4s0ftfN0pin06n+5cWWDJXH+sbhAiDw==", + "license": "MIT", "dependencies": { "@types/node": "*", "@types/source-list-map": "*", @@ -2511,6 +2682,7 @@ "version": "0.7.6", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.6.tgz", "integrity": "sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==", + "license": "BSD-3-Clause", "engines": { "node": ">= 12" } @@ -2520,6 +2692,7 @@ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.35.tgz", "integrity": "sha512-qUHkeCyQFxMXg79wQfTtfndEC+N9ZZg76HJftDJp+qH2tV7Gj4OJi7l+PiWwJ+pWtW8GwSmqsDj/oymhrTWXjg==", "dev": true, + "license": "MIT", "dependencies": { "@types/yargs-parser": "*" } @@ -2528,13 +2701,15 @@ "version": "21.0.3", "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@typescript-eslint/eslint-plugin": { "version": "5.62.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz", "integrity": "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==", "dev": true, + "license": "MIT", "dependencies": { "@eslint-community/regexpp": "^4.4.0", "@typescript-eslint/scope-manager": "5.62.0", @@ -2565,10 +2740,11 @@ } }, "node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": { - "version": "7.7.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", - "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "version": "7.7.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz", + "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver.js" }, @@ -2581,6 +2757,7 @@ "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz", "integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "@typescript-eslint/scope-manager": "5.62.0", "@typescript-eslint/types": "5.62.0", @@ -2608,6 +2785,7 @@ "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", "dev": true, + "license": "MIT", "dependencies": { "@typescript-eslint/types": "5.62.0", "@typescript-eslint/visitor-keys": "5.62.0" @@ -2625,6 +2803,7 @@ "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz", "integrity": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==", "dev": true, + "license": "MIT", "dependencies": { "@typescript-eslint/typescript-estree": "5.62.0", "@typescript-eslint/utils": "5.62.0", @@ -2652,6 +2831,7 @@ "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==", "dev": true, + "license": "MIT", "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, @@ -2665,6 +2845,7 @@ "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "@typescript-eslint/types": "5.62.0", "@typescript-eslint/visitor-keys": "5.62.0", @@ -2688,10 +2869,11 @@ } }, "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { - "version": "7.7.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", - "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "version": "7.7.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz", + "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver.js" }, @@ -2704,6 +2886,7 @@ "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz", "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==", "dev": true, + "license": "MIT", "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@types/json-schema": "^7.0.9", @@ -2726,10 +2909,11 @@ } }, "node_modules/@typescript-eslint/utils/node_modules/semver": { - "version": "7.7.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", - "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "version": "7.7.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz", + "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver.js" }, @@ -2742,6 +2926,7 @@ "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", "dev": true, + "license": "MIT", "dependencies": { "@typescript-eslint/types": "5.62.0", "eslint-visitor-keys": "^3.3.0" @@ -2757,18 +2942,20 @@ "node_modules/@ungap/structured-clone": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz", - "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==" + "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==", + "license": "ISC" }, "node_modules/@vitejs/plugin-react": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-5.1.1.tgz", - "integrity": "sha512-WQfkSw0QbQ5aJ2CHYw23ZGkqnRwqKHD/KYsMeTkZzPT4Jcf0DcBxBtwMJxnu6E7oxw5+JC6ZAiePgh28uJ1HBA==", + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-5.1.4.tgz", + "integrity": "sha512-VIcFLdRi/VYRU8OL/puL7QXMYafHmqOnwTZY50U1JPlCNj30PxCMx65c494b1K9be9hX83KVt0+gTEwTWLqToA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/core": "^7.28.5", + "@babel/core": "^7.29.0", "@babel/plugin-transform-react-jsx-self": "^7.27.1", "@babel/plugin-transform-react-jsx-source": "^7.27.1", - "@rolldown/pluginutils": "1.0.0-beta.47", + "@rolldown/pluginutils": "1.0.0-rc.3", "@types/babel__core": "^7.20.5", "react-refresh": "^0.18.0" }, @@ -2784,6 +2971,7 @@ "resolved": "https://registry.npmjs.org/@vitest/browser/-/browser-3.2.4.tgz", "integrity": "sha512-tJxiPrWmzH8a+w9nLKlQMzAKX/7VjFs50MWgcAj7p9XQ7AQ9/35fByFYptgPELyLw+0aixTnC4pUWV+APcZ/kw==", "dev": true, + "license": "MIT", "dependencies": { "@testing-library/dom": "^10.4.0", "@testing-library/user-event": "^14.6.1", @@ -2819,6 +3007,7 @@ "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-3.2.4.tgz", "integrity": "sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==", "dev": true, + "license": "MIT", "dependencies": { "@types/chai": "^5.2.2", "@vitest/spy": "3.2.4", @@ -2835,6 +3024,7 @@ "resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-3.2.4.tgz", "integrity": "sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ==", "dev": true, + "license": "MIT", "dependencies": { "@vitest/spy": "3.2.4", "estree-walker": "^3.0.3", @@ -2861,6 +3051,7 @@ "resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-3.2.4.tgz", "integrity": "sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==", "dev": true, + "license": "MIT", "dependencies": { "tinyrainbow": "^2.0.0" }, @@ -2873,6 +3064,7 @@ "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-3.2.4.tgz", "integrity": "sha512-oukfKT9Mk41LreEW09vt45f8wx7DordoWUZMYdY/cyAk7w5TWkTRCNZYF7sX7n2wB7jyGAl74OxgwhPgKaqDMQ==", "dev": true, + "license": "MIT", "dependencies": { "@vitest/utils": "3.2.4", "pathe": "^2.0.3", @@ -2887,6 +3079,7 @@ "resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-3.2.4.tgz", "integrity": "sha512-dEYtS7qQP2CjU27QBC5oUOxLE/v5eLkGqPE0ZKEIDGMs4vKWe7IjgLOeauHsR0D5YuuycGRO5oSRXnwnmA78fQ==", "dev": true, + "license": "MIT", "dependencies": { "@vitest/pretty-format": "3.2.4", "magic-string": "^0.30.17", @@ -2901,6 +3094,7 @@ "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-3.2.4.tgz", "integrity": "sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw==", "dev": true, + "license": "MIT", "dependencies": { "tinyspy": "^4.0.3" }, @@ -2913,6 +3107,7 @@ "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-3.2.4.tgz", "integrity": "sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==", "dev": true, + "license": "MIT", "dependencies": { "@vitest/pretty-format": "3.2.4", "loupe": "^3.1.4", @@ -2927,6 +3122,7 @@ "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", "dev": true, + "license": "MIT", "dependencies": { "@webassemblyjs/helper-numbers": "1.13.2", "@webassemblyjs/helper-wasm-bytecode": "1.13.2" @@ -2936,25 +3132,29 @@ "version": "1.13.2", "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@webassemblyjs/helper-api-error": { "version": "1.13.2", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@webassemblyjs/helper-buffer": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@webassemblyjs/helper-numbers": { "version": "1.13.2", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", "dev": true, + "license": "MIT", "dependencies": { "@webassemblyjs/floating-point-hex-parser": "1.13.2", "@webassemblyjs/helper-api-error": "1.13.2", @@ -2965,13 +3165,15 @@ "version": "1.13.2", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@webassemblyjs/helper-wasm-section": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", "dev": true, + "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.14.1", "@webassemblyjs/helper-buffer": "1.14.1", @@ -2984,6 +3186,7 @@ "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", "dev": true, + "license": "MIT", "dependencies": { "@xtuc/ieee754": "^1.2.0" } @@ -2993,6 +3196,7 @@ "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", "dev": true, + "license": "Apache-2.0", "dependencies": { "@xtuc/long": "4.2.2" } @@ -3001,13 +3205,15 @@ "version": "1.13.2", "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@webassemblyjs/wasm-edit": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", "dev": true, + "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.14.1", "@webassemblyjs/helper-buffer": "1.14.1", @@ -3024,6 +3230,7 @@ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", "dev": true, + "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.14.1", "@webassemblyjs/helper-wasm-bytecode": "1.13.2", @@ -3037,6 +3244,7 @@ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", "dev": true, + "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.14.1", "@webassemblyjs/helper-buffer": "1.14.1", @@ -3049,6 +3257,7 @@ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", "dev": true, + "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.14.1", "@webassemblyjs/helper-api-error": "1.13.2", @@ -3063,6 +3272,7 @@ "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", "dev": true, + "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.14.1", "@xtuc/long": "4.2.2" @@ -3072,19 +3282,22 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", - "dev": true + "dev": true, + "license": "BSD-3-Clause" }, "node_modules/@xtuc/long": { "version": "4.2.2", "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", - "dev": true + "dev": true, + "license": "Apache-2.0" }, "node_modules/accepts": { "version": "1.3.8", "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", "dev": true, + "license": "MIT", "dependencies": { "mime-types": "~2.1.34", "negotiator": "0.6.3" @@ -3094,10 +3307,11 @@ } }, "node_modules/acorn": { - "version": "8.15.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", - "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", + "version": "8.16.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz", + "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==", "dev": true, + "license": "MIT", "bin": { "acorn": "bin/acorn" }, @@ -3110,6 +3324,7 @@ "resolved": "https://registry.npmjs.org/acorn-import-phases/-/acorn-import-phases-1.0.4.tgz", "integrity": "sha512-wKmbr/DDiIXzEOiWrTTUcDm24kQ2vGfZQvM2fwg2vXqR5uW6aapr7ObPtj1th32b9u90/Pf4AItvdTh42fBmVQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=10.13.0" }, @@ -3122,15 +3337,17 @@ "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", "dev": true, + "license": "MIT", "peerDependencies": { "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, "node_modules/acorn-walk": { - "version": "8.3.4", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz", - "integrity": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==", + "version": "8.3.5", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.5.tgz", + "integrity": "sha512-HEHNfbars9v4pgpW6SO1KSPkfoS0xVOM/9UzkJltjlsHZmJasxg8aXkuZa7SMf8vKGIBhpUsPluQSqhJFCqebw==", "dev": true, + "license": "MIT", "dependencies": { "acorn": "^8.11.0" }, @@ -3143,6 +3360,7 @@ "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==", "dev": true, + "license": "MIT", "engines": { "node": ">= 10.0.0" } @@ -3152,6 +3370,7 @@ "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", "dev": true, + "license": "MIT", "dependencies": { "clean-stack": "^2.0.0", "indent-string": "^4.0.0" @@ -3161,10 +3380,11 @@ } }, "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "version": "6.14.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.14.0.tgz", + "integrity": "sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==", "dev": true, + "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", @@ -3181,6 +3401,7 @@ "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", "dev": true, + "license": "MIT", "dependencies": { "ajv": "^8.0.0" }, @@ -3194,10 +3415,11 @@ } }, "node_modules/ajv-formats/node_modules/ajv": { - "version": "8.17.1", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", - "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.18.0.tgz", + "integrity": "sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==", "dev": true, + "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.3", "fast-uri": "^3.0.1", @@ -3213,13 +3435,15 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/ajv-keywords": { "version": "3.5.2", "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", "dev": true, + "license": "MIT", "peerDependencies": { "ajv": "^6.9.1" } @@ -3229,6 +3453,7 @@ "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-1.1.0.tgz", "integrity": "sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA==", "dev": true, + "license": "MIT", "dependencies": { "ansi-wrap": "^0.1.0" }, @@ -3241,6 +3466,7 @@ "resolved": "https://registry.npmjs.org/ansi-cyan/-/ansi-cyan-0.1.1.tgz", "integrity": "sha512-eCjan3AVo/SxZ0/MyIYRtkpxIu/H3xZN7URr1vXVrISxeyz8fUFz0FJziamK4sS8I+t35y4rHg1b2PklyBe/7A==", "dev": true, + "license": "MIT", "dependencies": { "ansi-wrap": "0.1.0" }, @@ -3253,6 +3479,7 @@ "resolved": "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz", "integrity": "sha512-HrgGIZUl8h2EHuZaU9hTR/cU5nhKxpVE1V6kdGsQ8e4zirElJ5fvtfc8N7Q1oq1aatO275i8pUFUCpNWCAnVWw==", "dev": true, + "license": "MIT", "dependencies": { "ansi-wrap": "0.1.0" }, @@ -3265,6 +3492,7 @@ "resolved": "https://registry.npmjs.org/ansi-red/-/ansi-red-0.1.1.tgz", "integrity": "sha512-ewaIr5y+9CUTGFwZfpECUbFlGcC0GCw1oqR9RI6h1gQCd9Aj2GxSckCnPsVJnmfMZbwFYE+leZGASgkWl06Jow==", "dev": true, + "license": "MIT", "dependencies": { "ansi-wrap": "0.1.0" }, @@ -3277,6 +3505,7 @@ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -3286,6 +3515,7 @@ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -3301,6 +3531,7 @@ "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz", "integrity": "sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -3309,6 +3540,7 @@ "version": "3.1.3", "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "license": "ISC", "dependencies": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" @@ -3317,23 +3549,12 @@ "node": ">= 8" } }, - "node_modules/anymatch/node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "license": "MIT", - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, "node_modules/append-buffer": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/append-buffer/-/append-buffer-1.0.2.tgz", "integrity": "sha512-WLbYiXzD3y/ATLZFufV/rZvWdZOs+Z/+5v1rBZ463Jn398pa6kcde27cvozYnBoxXblGZTFfoPpsaEw0orU5BA==", "dev": true, + "license": "MIT", "dependencies": { "buffer-equal": "^1.0.0" }, @@ -3345,25 +3566,29 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz", "integrity": "sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/arg": { "version": "4.1.3", "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/argparse": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true + "dev": true, + "license": "Python-2.0" }, "node_modules/aria-query": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", "dev": true, + "license": "Apache-2.0", "dependencies": { "dequal": "^2.0.3" } @@ -3373,6 +3598,7 @@ "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -3382,6 +3608,7 @@ "resolved": "https://registry.npmjs.org/arr-filter/-/arr-filter-1.1.2.tgz", "integrity": "sha512-A2BETWCqhsecSvCkWAeVBFLH6sXEUGASuzkpjL3GR1SlL/PWL6M3J8EAAld2Uubmh39tvkJTqC9LeLHCUKmFXA==", "dev": true, + "license": "MIT", "dependencies": { "make-iterator": "^1.0.0" }, @@ -3394,6 +3621,7 @@ "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -3403,6 +3631,7 @@ "resolved": "https://registry.npmjs.org/arr-map/-/arr-map-2.0.2.tgz", "integrity": "sha512-tVqVTHt+Q5Xb09qRkbu+DidW1yYzz5izWS2Xm2yFm7qJnmUfz4HPzNxbHkdRJbz2lrqI7S+z17xNYdFcBBO8Hw==", "dev": true, + "license": "MIT", "dependencies": { "make-iterator": "^1.0.0" }, @@ -3415,6 +3644,7 @@ "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -3424,6 +3654,7 @@ "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz", "integrity": "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==", "dev": true, + "license": "MIT", "dependencies": { "call-bound": "^1.0.3", "is-array-buffer": "^3.0.5" @@ -3440,6 +3671,7 @@ "resolved": "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz", "integrity": "sha512-zHjL5SZa68hkKHBFBK6DJCTtr9sfTCPCaph/L7tMSLcTFgy+zX7E+6q5UArbtOtMBCtxdICpfTCspRse+ywyXA==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -3449,6 +3681,7 @@ "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.9.tgz", "integrity": "sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.4", @@ -3471,6 +3704,7 @@ "resolved": "https://registry.npmjs.org/array-initial/-/array-initial-1.1.0.tgz", "integrity": "sha512-BC4Yl89vneCYfpLrs5JU2aAu9/a+xWbeKhvISg9PT7eWFB9UlRvI+rKEtk6mgxWr3dSkk9gQ8hCrdqt06NXPdw==", "dev": true, + "license": "MIT", "dependencies": { "array-slice": "^1.0.0", "is-number": "^4.0.0" @@ -3484,6 +3718,7 @@ "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -3493,6 +3728,7 @@ "resolved": "https://registry.npmjs.org/array-last/-/array-last-1.3.0.tgz", "integrity": "sha512-eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg==", "dev": true, + "license": "MIT", "dependencies": { "is-number": "^4.0.0" }, @@ -3505,6 +3741,7 @@ "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -3514,6 +3751,7 @@ "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz", "integrity": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -3523,6 +3761,7 @@ "resolved": "https://registry.npmjs.org/array-sort/-/array-sort-1.0.0.tgz", "integrity": "sha512-ihLeJkonmdiAsD7vpgN3CRcx2J2S0TiYW+IS/5zHBI7mKUq3ySvBdzzBfD236ubDBQFiiyG3SWCPc+msQ9KoYg==", "dev": true, + "license": "MIT", "dependencies": { "default-compare": "^1.0.0", "get-value": "^2.0.6", @@ -3537,6 +3776,7 @@ "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -3546,6 +3786,7 @@ "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -3555,6 +3796,7 @@ "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz", "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", @@ -3575,6 +3817,7 @@ "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz", "integrity": "sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.8", "define-properties": "^1.2.1", @@ -3593,6 +3836,7 @@ "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz", "integrity": "sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.8", "define-properties": "^1.2.1", @@ -3611,6 +3855,7 @@ "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz", "integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", @@ -3627,6 +3872,7 @@ "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz", "integrity": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==", "dev": true, + "license": "MIT", "dependencies": { "array-buffer-byte-length": "^1.0.1", "call-bind": "^1.0.8", @@ -3648,6 +3894,7 @@ "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-2.0.1.tgz", "integrity": "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==", "dev": true, + "license": "MIT", "engines": { "node": ">=12" } @@ -3657,6 +3904,7 @@ "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -3666,6 +3914,7 @@ "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", "dev": true, + "license": "MIT", "dependencies": { "lodash": "^4.17.14" } @@ -3675,6 +3924,7 @@ "resolved": "https://registry.npmjs.org/async-done/-/async-done-1.3.2.tgz", "integrity": "sha512-uYkTP8dw2og1tu1nmza1n1CMW0qb8gWWlwqMmLb7MhBVs4BXrFziT6HXUd+/RlRA/i4H9AkofYloUbs1fwMqlw==", "dev": true, + "license": "MIT", "dependencies": { "end-of-stream": "^1.1.0", "once": "^1.3.2", @@ -3695,13 +3945,15 @@ "type": "individual", "url": "https://paulmillr.com/funding/" } - ] + ], + "license": "MIT" }, "node_modules/async-each-series": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/async-each-series/-/async-each-series-0.1.1.tgz", "integrity": "sha512-p4jj6Fws4Iy2m0iCmI2am2ZNZCgbdgE+P8F/8csmn2vx7ixXrO2zGcuNsD46X5uZSVecmkEy/M06X2vG8KD6dQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.8.0" } @@ -3711,6 +3963,7 @@ "resolved": "https://registry.npmjs.org/async-function/-/async-function-1.0.0.tgz", "integrity": "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" } @@ -3720,6 +3973,7 @@ "resolved": "https://registry.npmjs.org/async-settle/-/async-settle-1.0.0.tgz", "integrity": "sha512-VPXfB4Vk49z1LHHodrEQ6Xf7W4gg1w0dAPROHngx7qgDjqmIQ+fXmwgGXTW/ITLai0YLSvWepJOP9EVpMnEAcw==", "dev": true, + "license": "MIT", "dependencies": { "async-done": "^1.2.2" }, @@ -3732,6 +3986,7 @@ "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", "dev": true, + "license": "ISC", "engines": { "node": ">= 4.0.0" } @@ -3741,6 +3996,7 @@ "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", "dev": true, + "license": "(MIT OR Apache-2.0)", "bin": { "atob": "bin/atob.js" }, @@ -3753,6 +4009,7 @@ "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", "dev": true, + "license": "MIT", "dependencies": { "possible-typed-array-names": "^1.0.0" }, @@ -3768,6 +4025,7 @@ "resolved": "https://registry.npmjs.org/bach/-/bach-1.2.0.tgz", "integrity": "sha512-bZOOfCb3gXBXbTFXq3OZtGR88LwGeJvzu6szttaIzymOTS4ZttBNOWSv7aLZja2EMycKtRYV0Oa8SNKH/zkxvg==", "dev": true, + "license": "MIT", "dependencies": { "arr-filter": "^1.1.1", "arr-flatten": "^1.0.1", @@ -3788,6 +4046,7 @@ "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", "dev": true, + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -3797,13 +4056,15 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/base": { "version": "0.11.2", "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", "dev": true, + "license": "MIT", "dependencies": { "cache-base": "^1.0.1", "class-utils": "^0.3.5", @@ -3822,6 +4083,7 @@ "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", "dev": true, + "license": "MIT", "dependencies": { "is-descriptor": "^1.0.0" }, @@ -3834,30 +4096,37 @@ "resolved": "https://registry.npmjs.org/base64id/-/base64id-2.0.0.tgz", "integrity": "sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==", "dev": true, + "license": "MIT", "engines": { "node": "^4.5.0 || >= 5.9" } }, "node_modules/baseline-browser-mapping": { - "version": "2.8.29", - "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.8.29.tgz", - "integrity": "sha512-sXdt2elaVnhpDNRDz+1BDx1JQoJRuNk7oVlAlbGiFkLikHCAQiccexF/9e91zVi6RCgqspl04aP+6Cnl9zRLrA==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.0.tgz", + "integrity": "sha512-lIyg0szRfYbiy67j9KN8IyeD7q7hcmqnJ1ddWmNt19ItGpNN64mnllmxUNFIOdOm6by97jlL6wfpTTJrmnjWAA==", "dev": true, + "license": "Apache-2.0", "bin": { - "baseline-browser-mapping": "dist/cli.js" + "baseline-browser-mapping": "dist/cli.cjs" + }, + "engines": { + "node": ">=6.0.0" } }, "node_modules/batch": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/big.js": { "version": "5.2.2", "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", "dev": true, + "license": "MIT", "engines": { "node": "*" } @@ -3867,6 +4136,7 @@ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" }, @@ -3879,6 +4149,7 @@ "resolved": "https://registry.npmjs.org/binaryextensions/-/binaryextensions-2.3.0.tgz", "integrity": "sha512-nAihlQsYGyc5Bwq6+EsubvANYGExeJKHDO3RjnvwU042fawQTQfM3Kxn7IHUXQOz4bzfwsGYYHGSvXyW4zOGLg==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.8" }, @@ -3902,6 +4173,7 @@ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", "dev": true, + "license": "MIT", "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -3912,6 +4184,7 @@ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", "dev": true, + "license": "MIT", "dependencies": { "fill-range": "^7.1.1" }, @@ -3924,6 +4197,7 @@ "resolved": "https://registry.npmjs.org/browser-sync/-/browser-sync-3.0.4.tgz", "integrity": "sha512-mcYOIy4BW6sWSEnTSBjQwWsnbx2btZX78ajTTjdNfyC/EqQVcIe0nQR6894RNAMtvlfAnLaH9L2ka97zpvgenA==", "dev": true, + "license": "Apache-2.0", "dependencies": { "browser-sync-client": "^3.0.4", "browser-sync-ui": "^3.0.4", @@ -3966,6 +4240,7 @@ "resolved": "https://registry.npmjs.org/browser-sync-client/-/browser-sync-client-3.0.4.tgz", "integrity": "sha512-+ew5ubXzGRKVjquBL3u6najS40TG7GxCdyBll0qSRc/n+JRV9gb/yDdRL1IAgRHqjnJTdqeBKKIQabjvjRSYRQ==", "dev": true, + "license": "ISC", "dependencies": { "etag": "1.8.1", "fresh": "0.5.2", @@ -3980,6 +4255,7 @@ "resolved": "https://registry.npmjs.org/browser-sync-ui/-/browser-sync-ui-3.0.4.tgz", "integrity": "sha512-5Po3YARCZ/8yQHFzvrSjn8+hBUF7ZWac39SHsy8Tls+7tE62iq6pYWxpVU6aOOMAGD21RwFQhQeqmJPf70kHEQ==", "dev": true, + "license": "Apache-2.0", "dependencies": { "async-each-series": "0.1.1", "chalk": "4.1.2", @@ -3995,6 +4271,7 @@ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-3.0.1.tgz", "integrity": "sha512-V3Z3WZWVUYd8hoCL5xfXJCaHWYzmtwW5XWYSlLgERi8PWd8bx1kUHUk8L1BT57e49oKnDDD180mjfrHc1yA9rg==", "dev": true, + "license": "MIT", "dependencies": { "graceful-fs": "^4.1.2", "jsonfile": "^3.0.0", @@ -4006,6 +4283,7 @@ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-3.0.1.tgz", "integrity": "sha512-oBko6ZHlubVB5mRFkur5vgYR1UyqX+S6Y/oCfLhqNdcc2fYFlDpIoNc7AfKS1KOGcnNAkvsr0grLck9ANM815w==", "dev": true, + "license": "MIT", "optionalDependencies": { "graceful-fs": "^4.1.6" } @@ -4015,14 +4293,15 @@ "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", "dev": true, + "license": "MIT", "engines": { "node": ">= 4.0.0" } }, "node_modules/browserslist": { - "version": "4.28.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.0.tgz", - "integrity": "sha512-tbydkR/CxfMwelN0vwdP/pLkDwyAASZ+VfWm4EOwlB6SWhx1sYnWLqo8N5j0rAzPfzfRaxt0mM/4wPU/Su84RQ==", + "version": "4.28.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.1.tgz", + "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==", "dev": true, "funding": [ { @@ -4038,12 +4317,13 @@ "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "dependencies": { - "baseline-browser-mapping": "^2.8.25", - "caniuse-lite": "^1.0.30001754", - "electron-to-chromium": "^1.5.249", + "baseline-browser-mapping": "^2.9.0", + "caniuse-lite": "^1.0.30001759", + "electron-to-chromium": "^1.5.263", "node-releases": "^2.0.27", - "update-browserslist-db": "^1.1.4" + "update-browserslist-db": "^1.2.0" }, "bin": { "browserslist": "cli.js" @@ -4056,20 +4336,15 @@ "version": "1.3.4", "resolved": "https://registry.npmjs.org/bs-recipes/-/bs-recipes-1.3.4.tgz", "integrity": "sha512-BXvDkqhDNxXEjeGM8LFkSbR+jzmP/CYpCiVKYn+soB1dDldeU15EBNDkwVXndKuX35wnNUaPd0qSoQEAkmQtMw==", - "dev": true - }, - "node_modules/buffer-builder": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/buffer-builder/-/buffer-builder-0.2.0.tgz", - "integrity": "sha512-7VPMEPuYznPSoR21NE1zvd2Xna6c/CloiZCfcMXR1Jny6PjX0N4Nsa38zcBFo/FMK+BlA+FLKbJCQ0i2yxp+Xg==", "dev": true, - "license": "MIT/X11" + "license": "ISC" }, "node_modules/buffer-equal": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.1.tgz", "integrity": "sha512-QoV3ptgEaQpvVwbXdSO39iqPQTCxSF7A5U99AxbHYqUdCizL/lH2Z0A2y6nbZucxMEOtNyZfG2s6gsVugGpKkg==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.4" }, @@ -4081,13 +4356,15 @@ "version": "1.1.2", "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/bytes": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.8" } @@ -4097,6 +4374,7 @@ "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -4106,6 +4384,7 @@ "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", "dev": true, + "license": "MIT", "dependencies": { "collection-visit": "^1.0.0", "component-emitter": "^1.2.1", @@ -4126,6 +4405,7 @@ "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz", "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==", "dev": true, + "license": "MIT", "dependencies": { "call-bind-apply-helpers": "^1.0.0", "es-define-property": "^1.0.0", @@ -4144,6 +4424,7 @@ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", "dev": true, + "license": "MIT", "dependencies": { "es-errors": "^1.3.0", "function-bind": "^1.1.2" @@ -4157,6 +4438,7 @@ "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", "dev": true, + "license": "MIT", "dependencies": { "call-bind-apply-helpers": "^1.0.2", "get-intrinsic": "^1.3.0" @@ -4173,6 +4455,7 @@ "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } @@ -4182,14 +4465,15 @@ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", "integrity": "sha512-4nhGqUkc4BqbBBB4Q6zLuD7lzzrHYrjKGeYaEji/3tFR5VdJu9v+LilhGIVe8wxEJPPOeWo7eg8dwY13TZ1BNg==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/caniuse-lite": { - "version": "1.0.30001755", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001755.tgz", - "integrity": "sha512-44V+Jm6ctPj7R52Na4TLi3Zri4dWUljJd+RDm+j8LtNCc/ihLCT+X1TzoOAkRETEWqjuLnh9581Tl80FvK7jVA==", + "version": "1.0.30001774", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001774.tgz", + "integrity": "sha512-DDdwPGz99nmIEv216hKSgLD+D4ikHQHjBC/seF98N9CPqRX4M5mSxT9eTV6oyisnJcuzxtZy4n17yKKQYmYQOA==", "dev": true, "funding": [ { @@ -4204,7 +4488,8 @@ "type": "github", "url": "https://github.com/sponsors/ai" } - ] + ], + "license": "CC-BY-4.0" }, "node_modules/ccount": { "version": "2.0.1", @@ -4221,6 +4506,7 @@ "resolved": "https://registry.npmjs.org/chai/-/chai-5.3.3.tgz", "integrity": "sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==", "dev": true, + "license": "MIT", "dependencies": { "assertion-error": "^2.0.1", "check-error": "^2.1.1", @@ -4237,6 +4523,7 @@ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -4253,6 +4540,7 @@ "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz", "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==", "dev": true, + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -4279,10 +4567,11 @@ } }, "node_modules/check-error": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/check-error/-/check-error-2.1.1.tgz", - "integrity": "sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==", + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/check-error/-/check-error-2.1.3.tgz", + "integrity": "sha512-PAJdDJusoxnwm1VwW07VWwUN1sl7smmC3OKggvndJFadxxDRyFJBX/ggnu/KE4kQAB7a3Dp8f/YXC1FlUprWmA==", "dev": true, + "license": "MIT", "engines": { "node": ">= 16" } @@ -4292,6 +4581,7 @@ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", "dev": true, + "license": "MIT", "dependencies": { "anymatch": "~3.1.2", "braces": "~3.0.2", @@ -4316,6 +4606,7 @@ "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.0" } @@ -4331,6 +4622,7 @@ "url": "https://github.com/sponsors/sibiraj-s" } ], + "license": "MIT", "engines": { "node": ">=8" } @@ -4340,6 +4632,7 @@ "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", "dev": true, + "license": "MIT", "dependencies": { "arr-union": "^3.1.0", "define-property": "^0.2.5", @@ -4355,6 +4648,7 @@ "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", "dev": true, + "license": "MIT", "dependencies": { "is-descriptor": "^0.1.0" }, @@ -4367,6 +4661,7 @@ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", "dev": true, + "license": "MIT", "dependencies": { "is-accessor-descriptor": "^1.0.1", "is-data-descriptor": "^1.0.1" @@ -4378,13 +4673,15 @@ "node_modules/classnames": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.3.1.tgz", - "integrity": "sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA==" + "integrity": "sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA==", + "license": "MIT" }, "node_modules/clean-stack": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } @@ -4394,6 +4691,7 @@ "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", "dev": true, + "license": "ISC", "dependencies": { "string-width": "^4.2.0", "strip-ansi": "^6.0.1", @@ -4408,6 +4706,7 @@ "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.8" } @@ -4417,6 +4716,7 @@ "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz", "integrity": "sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.10" } @@ -4425,13 +4725,15 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", "integrity": "sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/cloneable-readable": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.3.tgz", "integrity": "sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==", "dev": true, + "license": "MIT", "dependencies": { "inherits": "^2.0.1", "process-nextick-args": "^2.0.0", @@ -4443,6 +4745,7 @@ "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", "integrity": "sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -4452,6 +4755,7 @@ "resolved": "https://registry.npmjs.org/collection-map/-/collection-map-1.0.0.tgz", "integrity": "sha512-5D2XXSpkOnleOI21TG7p3T0bGAsZ/XknZpKBmGYyluO8pw4zA3K8ZlrBIbC4FXg3m6z/RNFiUFfT2sQK01+UHA==", "dev": true, + "license": "MIT", "dependencies": { "arr-map": "^2.0.2", "for-own": "^1.0.0", @@ -4466,6 +4770,7 @@ "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", "dev": true, + "license": "MIT", "dependencies": { "map-visit": "^1.0.0", "object-visit": "^1.0.0" @@ -4479,6 +4784,7 @@ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, + "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -4490,24 +4796,19 @@ "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/color-support": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", "dev": true, + "license": "ISC", "bin": { "color-support": "bin.js" } }, - "node_modules/colorjs.io": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/colorjs.io/-/colorjs.io-0.5.2.tgz", - "integrity": "sha512-twmVoizEW7ylZSN32OgKdXRmo1qg+wT5/6C3xu5b9QsWzSFAhHLn2xd8ro0diCsKfCj1RdaTP/nrcW+vAoQPIw==", - "dev": true, - "license": "MIT" - }, "node_modules/comma-separated-tokens": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", @@ -4522,13 +4823,15 @@ "version": "2.20.3", "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/component-emitter": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.1.tgz", "integrity": "sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==", "dev": true, + "license": "MIT", "funding": { "url": "https://github.com/sponsors/sindresorhus" } @@ -4537,7 +4840,8 @@ "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/concat-stream": { "version": "1.6.2", @@ -4547,6 +4851,7 @@ "engines": [ "node >= 0.8" ], + "license": "MIT", "dependencies": { "buffer-from": "^1.0.0", "inherits": "^2.0.3", @@ -4559,6 +4864,7 @@ "resolved": "https://registry.npmjs.org/connect/-/connect-3.6.6.tgz", "integrity": "sha512-OO7axMmPpu/2XuX1+2Yrg0ddju31B6xLZMWkJ5rYBu4YRmRVlOjvlY6kw2FJKiAzyxGwnrDUAG4s1Pf0sbBMCQ==", "dev": true, + "license": "MIT", "dependencies": { "debug": "2.6.9", "finalhandler": "1.1.0", @@ -4574,6 +4880,7 @@ "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.8" } @@ -4583,6 +4890,7 @@ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, + "license": "MIT", "dependencies": { "ms": "2.0.0" } @@ -4591,19 +4899,22 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/convert-source-map": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/cookie": { "version": "0.7.2", "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz", "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.6" } @@ -4613,6 +4924,7 @@ "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -4622,6 +4934,7 @@ "resolved": "https://registry.npmjs.org/copy-props/-/copy-props-2.0.5.tgz", "integrity": "sha512-XBlx8HSqrT0ObQwmSzM7WE5k8FxTV75h1DX1Z3n6NhQ/UYYAvInWYmG06vFt7hQZArE2fuO62aihiWIVQwh1sw==", "dev": true, + "license": "MIT", "dependencies": { "each-props": "^1.3.2", "is-plain-object": "^5.0.0" @@ -4630,19 +4943,25 @@ "node_modules/core-util-is": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "license": "MIT" }, "node_modules/cors": { - "version": "2.8.5", - "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", - "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", + "version": "2.8.6", + "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.6.tgz", + "integrity": "sha512-tJtZBBHA6vjIAaF6EnIaq6laBBP9aq/Y3ouVJjEfoHbRBcHBAHYcMh/w8LDrk2PvIMMq8gmopa5D4V8RmbrxGw==", "dev": true, + "license": "MIT", "dependencies": { "object-assign": "^4", "vary": "^1" }, "engines": { "node": ">= 0.10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" } }, "node_modules/cosmiconfig": { @@ -4650,6 +4969,7 @@ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", "dev": true, + "license": "MIT", "dependencies": { "@types/parse-json": "^4.0.0", "import-fresh": "^3.1.0", @@ -4675,13 +4995,15 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/cross-spawn": { "version": "7.0.6", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "dev": true, + "license": "MIT", "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", @@ -4695,18 +5017,21 @@ "version": "1.2.1", "resolved": "https://registry.npmjs.org/cssfontparser/-/cssfontparser-1.2.1.tgz", "integrity": "sha512-6tun4LoZnj7VN6YeegOVb67KBX/7JJsqvj+pv3ZA7F878/eN33AbGa5b/S/wXxS/tcp8nc40xRUrsPlxIyNUPg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/csstype": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz", - "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==" + "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==", + "license": "MIT" }, "node_modules/d": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/d/-/d-1.0.2.tgz", "integrity": "sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==", "dev": true, + "license": "ISC", "dependencies": { "es5-ext": "^0.10.64", "type": "^2.7.2" @@ -4720,6 +5045,7 @@ "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz", "integrity": "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==", "dev": true, + "license": "MIT", "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", @@ -4737,6 +5063,7 @@ "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz", "integrity": "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==", "dev": true, + "license": "MIT", "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", @@ -4754,6 +5081,7 @@ "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz", "integrity": "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==", "dev": true, + "license": "MIT", "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", @@ -4771,6 +5099,7 @@ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", "dev": true, + "license": "MIT", "dependencies": { "ms": "^2.1.3" }, @@ -4788,15 +5117,17 @@ "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/decode-named-character-reference": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.2.0.tgz", - "integrity": "sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.3.0.tgz", + "integrity": "sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==", "dev": true, + "license": "MIT", "dependencies": { "character-entities": "^2.0.0" }, @@ -4810,6 +5141,7 @@ "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10" } @@ -4819,6 +5151,7 @@ "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-5.0.2.tgz", "integrity": "sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } @@ -4827,13 +5160,15 @@ "version": "0.1.4", "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true - }, + "dev": true, + "license": "MIT" + }, "node_modules/deepmerge": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -4843,6 +5178,7 @@ "resolved": "https://registry.npmjs.org/default-compare/-/default-compare-1.0.0.tgz", "integrity": "sha512-QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ==", "dev": true, + "license": "MIT", "dependencies": { "kind-of": "^5.0.2" }, @@ -4855,6 +5191,7 @@ "resolved": "https://registry.npmjs.org/default-resolution/-/default-resolution-2.0.0.tgz", "integrity": "sha512-2xaP6GiwVwOEbXCGoJ4ufgC76m8cj805jrghScewJC2ZDsb9U0b4BIrba+xt/Uytyd0HvQ6+WymSRTfnYj59GQ==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.10" } @@ -4864,6 +5201,7 @@ "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", "dev": true, + "license": "MIT", "dependencies": { "es-define-property": "^1.0.0", "es-errors": "^1.3.0", @@ -4881,6 +5219,7 @@ "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -4890,6 +5229,7 @@ "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", "dev": true, + "license": "MIT", "dependencies": { "define-data-property": "^1.0.1", "has-property-descriptors": "^1.0.0", @@ -4907,6 +5247,7 @@ "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", "dev": true, + "license": "MIT", "dependencies": { "is-descriptor": "^1.0.2", "isobject": "^3.0.1" @@ -4920,6 +5261,7 @@ "resolved": "https://registry.npmjs.org/del/-/del-5.1.0.tgz", "integrity": "sha512-wH9xOVHnczo9jN2IW68BabcecVPxacIA3g/7z6vhSU/4stOKQzeCRK0yD0A24WiAAUJmmVpWqrERcTxnLo3AnA==", "dev": true, + "license": "MIT", "dependencies": { "globby": "^10.0.1", "graceful-fs": "^4.2.2", @@ -4939,6 +5281,7 @@ "resolved": "https://registry.npmjs.org/globby/-/globby-10.0.2.tgz", "integrity": "sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==", "dev": true, + "license": "MIT", "dependencies": { "@types/glob": "^7.1.1", "array-union": "^2.1.0", @@ -4958,6 +5301,7 @@ "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.8" } @@ -4966,6 +5310,7 @@ "version": "2.0.3", "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "license": "MIT", "engines": { "node": ">=6" } @@ -4975,6 +5320,7 @@ "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.8", "npm": "1.2.8000 || >= 1.4.16" @@ -4985,22 +5331,20 @@ "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", "integrity": "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/detect-libc": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", - "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz", + "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==", "dev": true, "license": "Apache-2.0", "optional": true, - "bin": { - "detect-libc": "bin/detect-libc.js" - }, "engines": { - "node": ">=0.10" + "node": ">=8" } }, "node_modules/detect-port-alt": { @@ -5008,6 +5352,7 @@ "resolved": "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz", "integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==", "dev": true, + "license": "MIT", "dependencies": { "address": "^1.0.1", "debug": "^2.6.0" @@ -5025,6 +5370,7 @@ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, + "license": "MIT", "dependencies": { "ms": "2.0.0" } @@ -5033,7 +5379,8 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/dev-ip": { "version": "1.0.1", @@ -5061,10 +5408,11 @@ } }, "node_modules/diff": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", - "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.4.tgz", + "integrity": "sha512-X07nttJQkwkfKfvTPG/KSnE2OMdcUCao6+eXF3wmnIQRn2aPAHH3VxDbDOdegkd6JbPsXqShpvEOHfAT+nCNwQ==", "dev": true, + "license": "BSD-3-Clause", "engines": { "node": ">=0.3.1" } @@ -5074,6 +5422,7 @@ "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", "dev": true, + "license": "MIT", "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } @@ -5083,6 +5432,7 @@ "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "dev": true, + "license": "MIT", "dependencies": { "path-type": "^4.0.0" }, @@ -5095,6 +5445,7 @@ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", "dev": true, + "license": "Apache-2.0", "dependencies": { "esutils": "^2.0.2" }, @@ -5106,21 +5457,24 @@ "version": "0.5.16", "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/dom-helpers": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.8.7", "csstype": "^3.0.2" } }, "node_modules/dompurify": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.3.0.tgz", - "integrity": "sha512-r+f6MYR1gGN1eJv0TVQbhA7if/U7P87cdPl3HN5rikqaBSBxLiCb/b9O+2eG0cxz0ghyU+mU1QkbsOwERMYlWQ==", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.3.1.tgz", + "integrity": "sha512-qkdCKzLNtrgPFP1Vo+98FRzJnBRGe4ffyCea9IwHB1fyxPOeNTHpLKYGd4Uk9xvNoH0ZoOjwZxNptyMwqrId1Q==", + "license": "(MPL-2.0 OR Apache-2.0)", "optionalDependencies": { "@types/trusted-types": "^2.0.7" } @@ -5130,6 +5484,7 @@ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", "dev": true, + "license": "MIT", "dependencies": { "call-bind-apply-helpers": "^1.0.1", "es-errors": "^1.3.0", @@ -5143,13 +5498,15 @@ "version": "0.1.2", "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/duplexify": { "version": "3.7.1", "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", "dev": true, + "license": "MIT", "dependencies": { "end-of-stream": "^1.0.0", "inherits": "^2.0.1", @@ -5162,6 +5519,7 @@ "resolved": "https://registry.npmjs.org/each-props/-/each-props-1.3.2.tgz", "integrity": "sha512-vV0Hem3zAGkJAyU7JSjixeU66rwdynTAa1vofCrSA5fEln+m67Az9CcnkVD776/fsN/UjIWmBDoNRS6t6G9RfA==", "dev": true, + "license": "MIT", "dependencies": { "is-plain-object": "^2.0.1", "object.defaults": "^1.1.0" @@ -5172,6 +5530,7 @@ "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "dev": true, + "license": "MIT", "dependencies": { "isobject": "^3.0.1" }, @@ -5207,25 +5566,29 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/electron-to-chromium": { - "version": "1.5.254", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.254.tgz", - "integrity": "sha512-DcUsWpVhv9svsKRxnSCZ86SjD+sp32SGidNB37KpqXJncp1mfUgKbHvBomE89WJDbfVKw1mdv5+ikrvd43r+Bg==", - "dev": true + "version": "1.5.302", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.302.tgz", + "integrity": "sha512-sM6HAN2LyK82IyPBpznDRqlTQAtuSaO+ShzFiWTvoMJLHyZ+Y39r8VMfHzwbU8MVBzQ4Wdn85+wlZl2TLGIlwg==", + "dev": true, + "license": "ISC" }, "node_modules/emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/emojis-list": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", "dev": true, + "license": "MIT", "engines": { "node": ">= 4" } @@ -5235,6 +5598,7 @@ "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.8" } @@ -5244,15 +5608,17 @@ "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.5.tgz", "integrity": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==", "dev": true, + "license": "MIT", "dependencies": { "once": "^1.4.0" } }, "node_modules/engine.io": { - "version": "6.6.4", - "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.6.4.tgz", - "integrity": "sha512-ZCkIjSYNDyGn0R6ewHDtXgns/Zre/NT6Agvq1/WobF7JXgFff4SeDroKiCO3fNJreU9YG429Sc81o4w5ok/W5g==", + "version": "6.6.5", + "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.6.5.tgz", + "integrity": "sha512-2RZdgEbXmp5+dVbRm0P7HQUImZpICccJy7rN7Tv+SFa55pH+lxnuw6/K1ZxxBfHoYpSkHLAO92oa8O4SwFXA2A==", "dev": true, + "license": "MIT", "dependencies": { "@types/cors": "^2.8.12", "@types/node": ">=10.0.0", @@ -5260,49 +5626,34 @@ "base64id": "2.0.0", "cookie": "~0.7.2", "cors": "~2.8.5", - "debug": "~4.3.1", + "debug": "~4.4.1", "engine.io-parser": "~5.2.1", - "ws": "~8.17.1" + "ws": "~8.18.3" }, "engines": { "node": ">=10.2.0" } }, "node_modules/engine.io-client": { - "version": "6.6.3", - "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.6.3.tgz", - "integrity": "sha512-T0iLjnyNWahNyv/lcjS2y4oE358tVS/SYQNxYXGAJ9/GLgH4VCvOQ/mhTjqU88mLZCQgiG8RIegFHYCdVC+j5w==", + "version": "6.6.4", + "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.6.4.tgz", + "integrity": "sha512-+kjUJnZGwzewFDw951CDWcwj35vMNf2fcj7xQWOctq1F2i1jkDdVvdFG9kM/BEChymCH36KgjnW0NsL58JYRxw==", "dev": true, + "license": "MIT", "dependencies": { "@socket.io/component-emitter": "~3.1.0", - "debug": "~4.3.1", + "debug": "~4.4.1", "engine.io-parser": "~5.2.1", - "ws": "~8.17.1", + "ws": "~8.18.3", "xmlhttprequest-ssl": "~2.1.1" } }, - "node_modules/engine.io-client/node_modules/debug": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", - "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.3" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, "node_modules/engine.io-client/node_modules/ws": { - "version": "8.17.1", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz", - "integrity": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==", + "version": "8.18.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz", + "integrity": "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==", "dev": true, + "license": "MIT", "engines": { "node": ">=10.0.0" }, @@ -5324,32 +5675,17 @@ "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.2.3.tgz", "integrity": "sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q==", "dev": true, + "license": "MIT", "engines": { "node": ">=10.0.0" } }, - "node_modules/engine.io/node_modules/debug": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", - "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.3" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, "node_modules/engine.io/node_modules/ws": { - "version": "8.17.1", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz", - "integrity": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==", + "version": "8.18.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz", + "integrity": "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==", "dev": true, + "license": "MIT", "engines": { "node": ">=10.0.0" }, @@ -5367,13 +5703,14 @@ } }, "node_modules/enhanced-resolve": { - "version": "5.18.3", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.3.tgz", - "integrity": "sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==", + "version": "5.19.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.19.0.tgz", + "integrity": "sha512-phv3E1Xl4tQOShqSte26C7Fl84EwUdZsyOuSSk9qtAGyyQs2s3jJzComh+Abf4g187lUUAvH+H26omrqia2aGg==", "dev": true, + "license": "MIT", "dependencies": { "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" + "tapable": "^2.3.0" }, "engines": { "node": ">=10.13.0" @@ -5384,6 +5721,7 @@ "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.0.tgz", "integrity": "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" }, @@ -5397,15 +5735,17 @@ "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.4.tgz", "integrity": "sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==", "dev": true, + "license": "MIT", "dependencies": { "is-arrayish": "^0.2.1" } }, "node_modules/es-abstract": { - "version": "1.24.0", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.24.0.tgz", - "integrity": "sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==", + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.24.1.tgz", + "integrity": "sha512-zHXBLhP+QehSSbsS9Pt23Gg964240DPd6QCf8WpkqEXxQ7fhdZzYsocOr5u7apWonsS5EjZDmTF+/slGMyasvw==", "dev": true, + "license": "MIT", "dependencies": { "array-buffer-byte-length": "^1.0.2", "arraybuffer.prototype.slice": "^1.0.4", @@ -5474,6 +5814,7 @@ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" } @@ -5483,31 +5824,33 @@ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" } }, "node_modules/es-iterator-helpers": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.2.1.tgz", - "integrity": "sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==", + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.2.2.tgz", + "integrity": "sha512-BrUQ0cPTB/IwXj23HtwHjS9n7O4h9FX94b4xc5zlTHxeLgTAdzYUDyy6KdExAl9lbN5rtfe44xpjpmj9grxs5w==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.8", - "call-bound": "^1.0.3", + "call-bound": "^1.0.4", "define-properties": "^1.2.1", - "es-abstract": "^1.23.6", + "es-abstract": "^1.24.1", "es-errors": "^1.3.0", - "es-set-tostringtag": "^2.0.3", + "es-set-tostringtag": "^2.1.0", "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.6", + "get-intrinsic": "^1.3.0", "globalthis": "^1.0.4", "gopd": "^1.2.0", "has-property-descriptors": "^1.0.2", "has-proto": "^1.2.0", "has-symbols": "^1.1.0", "internal-slot": "^1.1.0", - "iterator.prototype": "^1.1.4", + "iterator.prototype": "^1.1.5", "safe-array-concat": "^1.1.3" }, "engines": { @@ -5518,13 +5861,15 @@ "version": "1.7.0", "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.7.0.tgz", "integrity": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/es-object-atoms": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", "dev": true, + "license": "MIT", "dependencies": { "es-errors": "^1.3.0" }, @@ -5537,6 +5882,7 @@ "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", "dev": true, + "license": "MIT", "dependencies": { "es-errors": "^1.3.0", "get-intrinsic": "^1.2.6", @@ -5552,6 +5898,7 @@ "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz", "integrity": "sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==", "dev": true, + "license": "MIT", "dependencies": { "hasown": "^2.0.2" }, @@ -5564,6 +5911,7 @@ "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.0.tgz", "integrity": "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==", "dev": true, + "license": "MIT", "dependencies": { "is-callable": "^1.2.7", "is-date-object": "^1.0.5", @@ -5582,6 +5930,7 @@ "integrity": "sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==", "dev": true, "hasInstallScript": true, + "license": "ISC", "dependencies": { "es6-iterator": "^2.0.3", "es6-symbol": "^3.1.3", @@ -5597,6 +5946,7 @@ "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", "integrity": "sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==", "dev": true, + "license": "MIT", "dependencies": { "d": "1", "es5-ext": "^0.10.35", @@ -5608,6 +5958,7 @@ "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.4.tgz", "integrity": "sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==", "dev": true, + "license": "ISC", "dependencies": { "d": "^1.0.2", "ext": "^1.7.0" @@ -5621,6 +5972,7 @@ "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz", "integrity": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==", "dev": true, + "license": "ISC", "dependencies": { "d": "1", "es5-ext": "^0.10.46", @@ -5629,11 +5981,12 @@ } }, "node_modules/esbuild": { - "version": "0.25.12", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.12.tgz", - "integrity": "sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==", + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.3.tgz", + "integrity": "sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==", "dev": true, "hasInstallScript": true, + "license": "MIT", "bin": { "esbuild": "bin/esbuild" }, @@ -5641,32 +5994,32 @@ "node": ">=18" }, "optionalDependencies": { - "@esbuild/aix-ppc64": "0.25.12", - "@esbuild/android-arm": "0.25.12", - "@esbuild/android-arm64": "0.25.12", - "@esbuild/android-x64": "0.25.12", - "@esbuild/darwin-arm64": "0.25.12", - "@esbuild/darwin-x64": "0.25.12", - "@esbuild/freebsd-arm64": "0.25.12", - "@esbuild/freebsd-x64": "0.25.12", - "@esbuild/linux-arm": "0.25.12", - "@esbuild/linux-arm64": "0.25.12", - "@esbuild/linux-ia32": "0.25.12", - "@esbuild/linux-loong64": "0.25.12", - "@esbuild/linux-mips64el": "0.25.12", - "@esbuild/linux-ppc64": "0.25.12", - "@esbuild/linux-riscv64": "0.25.12", - "@esbuild/linux-s390x": "0.25.12", - "@esbuild/linux-x64": "0.25.12", - "@esbuild/netbsd-arm64": "0.25.12", - "@esbuild/netbsd-x64": "0.25.12", - "@esbuild/openbsd-arm64": "0.25.12", - "@esbuild/openbsd-x64": "0.25.12", - "@esbuild/openharmony-arm64": "0.25.12", - "@esbuild/sunos-x64": "0.25.12", - "@esbuild/win32-arm64": "0.25.12", - "@esbuild/win32-ia32": "0.25.12", - "@esbuild/win32-x64": "0.25.12" + "@esbuild/aix-ppc64": "0.27.3", + "@esbuild/android-arm": "0.27.3", + "@esbuild/android-arm64": "0.27.3", + "@esbuild/android-x64": "0.27.3", + "@esbuild/darwin-arm64": "0.27.3", + "@esbuild/darwin-x64": "0.27.3", + "@esbuild/freebsd-arm64": "0.27.3", + "@esbuild/freebsd-x64": "0.27.3", + "@esbuild/linux-arm": "0.27.3", + "@esbuild/linux-arm64": "0.27.3", + "@esbuild/linux-ia32": "0.27.3", + "@esbuild/linux-loong64": "0.27.3", + "@esbuild/linux-mips64el": "0.27.3", + "@esbuild/linux-ppc64": "0.27.3", + "@esbuild/linux-riscv64": "0.27.3", + "@esbuild/linux-s390x": "0.27.3", + "@esbuild/linux-x64": "0.27.3", + "@esbuild/netbsd-arm64": "0.27.3", + "@esbuild/netbsd-x64": "0.27.3", + "@esbuild/openbsd-arm64": "0.27.3", + "@esbuild/openbsd-x64": "0.27.3", + "@esbuild/openharmony-arm64": "0.27.3", + "@esbuild/sunos-x64": "0.27.3", + "@esbuild/win32-arm64": "0.27.3", + "@esbuild/win32-ia32": "0.27.3", + "@esbuild/win32-x64": "0.27.3" } }, "node_modules/escalade": { @@ -5674,6 +6027,7 @@ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } @@ -5682,13 +6036,15 @@ "version": "1.0.3", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/escape-string-regexp": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true, + "license": "MIT", "engines": { "node": ">=10" }, @@ -5702,6 +6058,7 @@ "integrity": "sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==", "deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.", "dev": true, + "license": "MIT", "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.6.1", @@ -5757,6 +6114,7 @@ "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-6.15.0.tgz", "integrity": "sha512-a1+kOYLR8wMGustcgAjdydMsQ2A/2ipRPwRKUmfYaSxc9ZPcrku080Ctl6zrZzZNs/U82MjSv+qKREkoq3bJaw==", "dev": true, + "license": "MIT", "dependencies": { "get-stdin": "^6.0.0" }, @@ -5771,13 +6129,15 @@ "version": "1.1.7", "resolved": "https://registry.npmjs.org/eslint-config-react/-/eslint-config-react-1.1.7.tgz", "integrity": "sha512-P4Z6u68wf0BvIvZNu+U8uQsk3DcZ1CcCI1XpUkJlG6vOa+iVcSQLgE01f2DB2kXlKRcT8/3dsH+wveLgvEgbkQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/eslint-plugin-prettier": { "version": "3.4.1", "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-3.4.1.tgz", "integrity": "sha512-htg25EUYUeIhKHXjOinK4BgCcDwtLHjqaxCDsMy5nbnUMkKFvIhMVCp+5GFUXQ4Nr8lBsPqtGAqBenbpFqAA2g==", "dev": true, + "license": "MIT", "dependencies": { "prettier-linter-helpers": "^1.0.0" }, @@ -5799,6 +6159,7 @@ "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.37.5.tgz", "integrity": "sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==", "dev": true, + "license": "MIT", "dependencies": { "array-includes": "^3.1.8", "array.prototype.findlast": "^1.2.5", @@ -5831,6 +6192,7 @@ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", "dev": true, + "license": "Apache-2.0", "dependencies": { "esutils": "^2.0.2" }, @@ -5843,6 +6205,7 @@ "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", "dev": true, + "license": "MIT", "dependencies": { "loose-envify": "^1.4.0", "object-assign": "^4.1.1", @@ -5853,13 +6216,15 @@ "version": "16.13.1", "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/eslint-scope": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^4.1.1" @@ -5873,6 +6238,7 @@ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", "dev": true, + "license": "BSD-2-Clause", "engines": { "node": ">=4.0" } @@ -5882,6 +6248,7 @@ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", "dev": true, + "license": "Apache-2.0", "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, @@ -5894,6 +6261,7 @@ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^5.2.0" @@ -5910,6 +6278,7 @@ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "dev": true, + "license": "ISC", "dependencies": { "is-glob": "^4.0.3" }, @@ -5922,6 +6291,7 @@ "resolved": "https://registry.npmjs.org/esniff/-/esniff-2.0.1.tgz", "integrity": "sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==", "dev": true, + "license": "ISC", "dependencies": { "d": "^1.0.1", "es5-ext": "^0.10.62", @@ -5937,6 +6307,7 @@ "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "acorn": "^8.9.0", "acorn-jsx": "^5.3.2", @@ -5950,10 +6321,11 @@ } }, "node_modules/esquery": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", - "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.7.0.tgz", + "integrity": "sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "estraverse": "^5.1.0" }, @@ -5966,6 +6338,7 @@ "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "estraverse": "^5.2.0" }, @@ -5978,6 +6351,7 @@ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, + "license": "BSD-2-Clause", "engines": { "node": ">=4.0" } @@ -5987,6 +6361,7 @@ "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", "dev": true, + "license": "MIT", "dependencies": { "@types/estree": "^1.0.0" } @@ -5996,6 +6371,7 @@ "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", "dev": true, + "license": "BSD-2-Clause", "engines": { "node": ">=0.10.0" } @@ -6005,6 +6381,7 @@ "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.6" } @@ -6014,6 +6391,7 @@ "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz", "integrity": "sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==", "dev": true, + "license": "MIT", "dependencies": { "d": "1", "es5-ext": "~0.10.14" @@ -6024,6 +6402,7 @@ "resolved": "https://registry.npmjs.org/event-stream/-/event-stream-4.0.1.tgz", "integrity": "sha512-qACXdu/9VHPBzcyhdOWR5/IahhGMf0roTeZJfzz077GwylcDd90yOHLouhmv7GJ5XzPi6ekaQWd8AvPP2nOvpA==", "dev": true, + "license": "MIT", "dependencies": { "duplexer": "^0.1.1", "from": "^0.1.7", @@ -6038,13 +6417,15 @@ "version": "4.0.7", "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/events": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.8.x" } @@ -6054,6 +6435,7 @@ "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", "dev": true, + "license": "MIT", "dependencies": { "debug": "^2.3.3", "define-property": "^0.2.5", @@ -6072,6 +6454,7 @@ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, + "license": "MIT", "dependencies": { "ms": "2.0.0" } @@ -6081,6 +6464,7 @@ "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", "dev": true, + "license": "MIT", "dependencies": { "is-descriptor": "^0.1.0" }, @@ -6093,6 +6477,7 @@ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "dev": true, + "license": "MIT", "dependencies": { "is-extendable": "^0.1.0" }, @@ -6105,6 +6490,7 @@ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", "dev": true, + "license": "MIT", "dependencies": { "is-accessor-descriptor": "^1.0.1", "is-data-descriptor": "^1.0.1" @@ -6118,6 +6504,7 @@ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -6126,13 +6513,15 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/expand-tilde": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", "integrity": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==", "dev": true, + "license": "MIT", "dependencies": { "homedir-polyfill": "^1.0.1" }, @@ -6145,6 +6534,7 @@ "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", "dev": true, + "license": "MIT", "dependencies": { "@jest/expect-utils": "^29.7.0", "jest-get-type": "^29.6.3", @@ -6157,10 +6547,11 @@ } }, "node_modules/expect-type": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/expect-type/-/expect-type-1.2.2.tgz", - "integrity": "sha512-JhFGDVJ7tmDJItKhYgJCGLOWjuK9vPxiXoUFLwLDc99NlmklilbiQJwoctZtt13+xMw91MCk/REan6MWHqDjyA==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/expect-type/-/expect-type-1.3.0.tgz", + "integrity": "sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==", "dev": true, + "license": "Apache-2.0", "engines": { "node": ">=12.0.0" } @@ -6170,6 +6561,7 @@ "resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz", "integrity": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==", "dev": true, + "license": "ISC", "dependencies": { "type": "^2.7.2" } @@ -6178,13 +6570,15 @@ "version": "3.0.2", "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/extend-shallow": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", "dev": true, + "license": "MIT", "dependencies": { "assign-symbols": "^1.0.0", "is-extendable": "^1.0.1" @@ -6198,6 +6592,7 @@ "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", "dev": true, + "license": "MIT", "dependencies": { "array-unique": "^0.3.2", "define-property": "^1.0.0", @@ -6217,6 +6612,7 @@ "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", "dev": true, + "license": "MIT", "dependencies": { "is-descriptor": "^1.0.0" }, @@ -6229,6 +6625,7 @@ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "dev": true, + "license": "MIT", "dependencies": { "is-extendable": "^0.1.0" }, @@ -6241,6 +6638,7 @@ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -6250,6 +6648,7 @@ "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.3.tgz", "integrity": "sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==", "dev": true, + "license": "MIT", "dependencies": { "ansi-gray": "^0.1.1", "color-support": "^1.1.3", @@ -6264,19 +6663,22 @@ "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/fast-diff": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz", "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==", - "dev": true + "dev": true, + "license": "Apache-2.0" }, "node_modules/fast-glob": { "version": "3.3.3", "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", "dev": true, + "license": "MIT", "dependencies": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", @@ -6292,13 +6694,15 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/fast-levenshtein": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/fast-uri": { "version": "3.1.0", @@ -6314,13 +6718,15 @@ "type": "opencollective", "url": "https://opencollective.com/fastify" } - ] + ], + "license": "BSD-3-Clause" }, "node_modules/fastq": { - "version": "1.19.1", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz", - "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.20.1.tgz", + "integrity": "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==", "dev": true, + "license": "ISC", "dependencies": { "reusify": "^1.0.4" } @@ -6330,6 +6736,7 @@ "resolved": "https://registry.npmjs.org/fault/-/fault-1.0.4.tgz", "integrity": "sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==", "dev": true, + "license": "MIT", "dependencies": { "format": "^0.2.0" }, @@ -6338,28 +6745,12 @@ "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/fdir": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", - "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", - "dev": true, - "engines": { - "node": ">=12.0.0" - }, - "peerDependencies": { - "picomatch": "^3 || ^4" - }, - "peerDependenciesMeta": { - "picomatch": { - "optional": true - } - } - }, "node_modules/file-entry-cache": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", "dev": true, + "license": "MIT", "dependencies": { "flat-cache": "^3.0.4" }, @@ -6370,7 +6761,8 @@ "node_modules/file-saver": { "version": "1.3.8", "resolved": "https://registry.npmjs.org/file-saver/-/file-saver-1.3.8.tgz", - "integrity": "sha512-spKHSBQIxxS81N/O21WmuXA2F6wppUCsutpzenOeZzOCCJ5gEfcbqJP983IrpLXzYmXnMUa6J03SubcNPdKrlg==" + "integrity": "sha512-spKHSBQIxxS81N/O21WmuXA2F6wppUCsutpzenOeZzOCCJ5gEfcbqJP983IrpLXzYmXnMUa6J03SubcNPdKrlg==", + "license": "MIT" }, "node_modules/file-uri-to-path": { "version": "1.0.0", @@ -6385,6 +6777,7 @@ "resolved": "https://registry.npmjs.org/filesize/-/filesize-8.0.7.tgz", "integrity": "sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==", "dev": true, + "license": "BSD-3-Clause", "engines": { "node": ">= 0.4.0" } @@ -6394,6 +6787,7 @@ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", "dev": true, + "license": "MIT", "dependencies": { "to-regex-range": "^5.0.1" }, @@ -6406,6 +6800,7 @@ "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.0.tgz", "integrity": "sha512-ejnvM9ZXYzp6PUPUyQBMBf0Co5VX2gr5H2VQe2Ui2jWXNlxv+PYZo8wpAymJNJdLsG1R4p+M4aynF8KuoUEwRw==", "dev": true, + "license": "MIT", "dependencies": { "debug": "2.6.9", "encodeurl": "~1.0.1", @@ -6424,6 +6819,7 @@ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, + "license": "MIT", "dependencies": { "ms": "2.0.0" } @@ -6432,13 +6828,15 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/find-up": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "dev": true, + "license": "MIT", "dependencies": { "locate-path": "^6.0.0", "path-exists": "^4.0.0" @@ -6455,6 +6853,7 @@ "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz", "integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==", "dev": true, + "license": "MIT", "dependencies": { "detect-file": "^1.0.0", "is-glob": "^4.0.0", @@ -6470,6 +6869,7 @@ "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", "dev": true, + "license": "MIT", "dependencies": { "arr-flatten": "^1.1.0", "array-unique": "^0.3.2", @@ -6491,6 +6891,7 @@ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "dev": true, + "license": "MIT", "dependencies": { "is-extendable": "^0.1.0" }, @@ -6503,6 +6904,7 @@ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", "dev": true, + "license": "MIT", "dependencies": { "extend-shallow": "^2.0.1", "is-number": "^3.0.0", @@ -6518,6 +6920,7 @@ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "dev": true, + "license": "MIT", "dependencies": { "is-extendable": "^0.1.0" }, @@ -6529,13 +6932,15 @@ "version": "1.1.6", "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/findup-sync/node_modules/is-extendable": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -6545,6 +6950,7 @@ "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", "dev": true, + "license": "MIT", "dependencies": { "kind-of": "^3.0.2" }, @@ -6557,6 +6963,7 @@ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", "dev": true, + "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -6569,6 +6976,7 @@ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -6578,6 +6986,7 @@ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", "dev": true, + "license": "MIT", "dependencies": { "arr-diff": "^4.0.0", "array-unique": "^0.3.2", @@ -6602,6 +7011,7 @@ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", "dev": true, + "license": "MIT", "dependencies": { "is-number": "^3.0.0", "repeat-string": "^1.6.1" @@ -6615,6 +7025,7 @@ "resolved": "https://registry.npmjs.org/fined/-/fined-1.2.0.tgz", "integrity": "sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==", "dev": true, + "license": "MIT", "dependencies": { "expand-tilde": "^2.0.2", "is-plain-object": "^2.0.3", @@ -6631,6 +7042,7 @@ "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "dev": true, + "license": "MIT", "dependencies": { "isobject": "^3.0.1" }, @@ -6643,6 +7055,7 @@ "resolved": "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.1.tgz", "integrity": "sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.10" } @@ -6652,6 +7065,7 @@ "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", "dev": true, + "license": "MIT", "dependencies": { "flatted": "^3.2.9", "keyv": "^4.5.3", @@ -6665,13 +7079,15 @@ "version": "3.3.3", "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/flush-write-stream": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", "dev": true, + "license": "MIT", "dependencies": { "inherits": "^2.0.3", "readable-stream": "^2.3.6" @@ -6688,6 +7104,7 @@ "url": "https://github.com/sponsors/RubenVerborgh" } ], + "license": "MIT", "engines": { "node": ">=4.0" }, @@ -6702,6 +7119,7 @@ "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz", "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==", "dev": true, + "license": "MIT", "dependencies": { "is-callable": "^1.2.7" }, @@ -6717,6 +7135,7 @@ "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -6726,6 +7145,7 @@ "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz", "integrity": "sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg==", "dev": true, + "license": "MIT", "dependencies": { "for-in": "^1.0.1" }, @@ -6737,13 +7157,15 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/foreachasync/-/foreachasync-3.0.0.tgz", "integrity": "sha512-J+ler7Ta54FwwNcx6wQRDhTIbNeyDcARMkOcguEqnEdtm0jKvN3Li3PDAb2Du3ubJYEWfYL83XMROXdsXAXycw==", - "dev": true + "dev": true, + "license": "Apache2" }, "node_modules/fork-ts-checker-webpack-plugin": { "version": "6.5.3", "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.3.tgz", "integrity": "sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==", "dev": true, + "license": "MIT", "dependencies": { "@babel/code-frame": "^7.8.3", "@types/json-schema": "^7.0.5", @@ -6779,10 +7201,11 @@ } }, "node_modules/fork-ts-checker-webpack-plugin/node_modules/semver": { - "version": "7.7.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", - "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "version": "7.7.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz", + "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver.js" }, @@ -6804,6 +7227,7 @@ "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", "dev": true, + "license": "MIT", "dependencies": { "map-cache": "^0.2.2" }, @@ -6816,6 +7240,7 @@ "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.6" } @@ -6824,19 +7249,22 @@ "version": "0.1.7", "resolved": "https://registry.npmjs.org/from/-/from-0.1.7.tgz", "integrity": "sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/fs": { "version": "0.0.1-security", "resolved": "https://registry.npmjs.org/fs/-/fs-0.0.1-security.tgz", "integrity": "sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/fs-extra": { "version": "9.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", "dev": true, + "license": "MIT", "dependencies": { "at-least-node": "^1.0.0", "graceful-fs": "^4.2.0", @@ -6852,6 +7280,7 @@ "resolved": "https://registry.npmjs.org/fs-mkdirp-stream/-/fs-mkdirp-stream-1.0.0.tgz", "integrity": "sha512-+vSd9frUnapVC2RZYfL3FCB2p3g4TBhaUmrsWlSudsGdnxIuUvBB2QM1VZeBtc49QFwrp+wQLrDs3+xxDgI5gQ==", "dev": true, + "license": "MIT", "dependencies": { "graceful-fs": "^4.1.11", "through2": "^2.0.3" @@ -6865,6 +7294,7 @@ "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", "dev": true, + "license": "MIT", "dependencies": { "readable-stream": "~2.3.6", "xtend": "~4.0.1" @@ -6874,7 +7304,8 @@ "version": "1.1.0", "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.1.0.tgz", "integrity": "sha512-QMUezzXWII9EV5aTFXW1UBVUO77wYPpjqIF8/AviUCThNeSYZykpoTixUeaNNBwmCev0AMDWMAni+f8Hxb1IFw==", - "dev": true + "dev": true, + "license": "Unlicense" }, "node_modules/fs.extra": { "version": "1.3.2", @@ -6914,6 +7345,7 @@ "integrity": "sha512-R5KMKHnPAQaZMqLOsyuyUmcIjSeDm+73eoqQpaXA7AZ22BL+6C+1mcUscgOsNd8WVlJuvlgAPsegcx7pjlV0Dg==", "deprecated": "Rimraf versions prior to v4 are no longer supported", "dev": true, + "license": "MIT", "bin": { "rimraf": "bin.js" } @@ -6922,7 +7354,8 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/fsevents": { "version": "2.3.3", @@ -6944,6 +7377,7 @@ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", "dev": true, + "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -6953,6 +7387,7 @@ "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.8.tgz", "integrity": "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", @@ -6973,6 +7408,7 @@ "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", "dev": true, + "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -6982,6 +7418,7 @@ "resolved": "https://registry.npmjs.org/generator-function/-/generator-function-2.0.1.tgz", "integrity": "sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" } @@ -6991,6 +7428,7 @@ "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.9.0" } @@ -7000,6 +7438,7 @@ "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", "dev": true, + "license": "ISC", "engines": { "node": "6.* || 8.* || >= 10.*" } @@ -7009,6 +7448,7 @@ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", "dev": true, + "license": "MIT", "dependencies": { "call-bind-apply-helpers": "^1.0.2", "es-define-property": "^1.0.1", @@ -7033,6 +7473,7 @@ "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", "dev": true, + "license": "MIT", "dependencies": { "dunder-proto": "^1.0.1", "es-object-atoms": "^1.0.0" @@ -7046,6 +7487,7 @@ "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-6.0.0.tgz", "integrity": "sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g==", "dev": true, + "license": "MIT", "engines": { "node": ">=4" } @@ -7055,6 +7497,7 @@ "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.1.0.tgz", "integrity": "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==", "dev": true, + "license": "MIT", "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", @@ -7072,6 +7515,7 @@ "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -7080,8 +7524,9 @@ "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "deprecated": "Glob versions prior to v9 are no longer supported", + "deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me", "dev": true, + "license": "ISC", "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -7102,6 +7547,7 @@ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, + "license": "ISC", "dependencies": { "is-glob": "^4.0.1" }, @@ -7114,6 +7560,7 @@ "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-6.1.0.tgz", "integrity": "sha512-uMbLGAP3S2aDOHUDfdoYcdIePUCfysbAd0IAoWVZbeGU/oNQ8asHVSshLDJUPWxfzj8zsCG7/XeHPHTtow0nsw==", "dev": true, + "license": "MIT", "dependencies": { "extend": "^3.0.0", "glob": "^7.1.1", @@ -7135,6 +7582,7 @@ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", "dev": true, + "license": "ISC", "dependencies": { "is-glob": "^3.1.0", "path-dirname": "^1.0.0" @@ -7145,6 +7593,7 @@ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", "dev": true, + "license": "MIT", "dependencies": { "is-extglob": "^2.1.0" }, @@ -7156,13 +7605,15 @@ "version": "0.4.1", "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", - "dev": true + "dev": true, + "license": "BSD-2-Clause" }, "node_modules/glob-watcher": { "version": "5.0.5", "resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-5.0.5.tgz", "integrity": "sha512-zOZgGGEHPklZNjZQaZ9f41i7F2YwE+tS5ZHrDhbBCk3stwahn5vQxnFmBJZHoYdusR6R1bLSXeGUy/BhctwKzw==", "dev": true, + "license": "MIT", "dependencies": { "anymatch": "^2.0.0", "async-done": "^1.2.0", @@ -7181,6 +7632,7 @@ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", "dev": true, + "license": "ISC", "dependencies": { "micromatch": "^3.1.4", "normalize-path": "^2.1.1" @@ -7191,6 +7643,7 @@ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", "dev": true, + "license": "MIT", "dependencies": { "remove-trailing-separator": "^1.0.1" }, @@ -7203,6 +7656,7 @@ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -7212,6 +7666,7 @@ "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", "dev": true, + "license": "MIT", "dependencies": { "arr-flatten": "^1.1.0", "array-unique": "^0.3.2", @@ -7233,6 +7688,7 @@ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "dev": true, + "license": "MIT", "dependencies": { "is-extendable": "^0.1.0" }, @@ -7245,6 +7701,7 @@ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", "dev": true, + "license": "MIT", "dependencies": { "anymatch": "^2.0.0", "async-each": "^1.0.1", @@ -7267,6 +7724,7 @@ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", "dev": true, + "license": "MIT", "dependencies": { "extend-shallow": "^2.0.1", "is-number": "^3.0.0", @@ -7282,6 +7740,7 @@ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "dev": true, + "license": "MIT", "dependencies": { "is-extendable": "^0.1.0" }, @@ -7314,6 +7773,7 @@ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", "dev": true, + "license": "ISC", "dependencies": { "is-glob": "^3.1.0", "path-dirname": "^1.0.0" @@ -7324,6 +7784,7 @@ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", "dev": true, + "license": "MIT", "dependencies": { "is-extglob": "^2.1.0" }, @@ -7336,6 +7797,7 @@ "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", "dev": true, + "license": "MIT", "dependencies": { "binary-extensions": "^1.0.0" }, @@ -7347,13 +7809,15 @@ "version": "1.1.6", "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/glob-watcher/node_modules/is-extendable": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -7363,6 +7827,7 @@ "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", "dev": true, + "license": "MIT", "dependencies": { "kind-of": "^3.0.2" }, @@ -7375,6 +7840,7 @@ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", "dev": true, + "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -7387,6 +7853,7 @@ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", "dev": true, + "license": "MIT", "dependencies": { "arr-diff": "^4.0.0", "array-unique": "^0.3.2", @@ -7411,6 +7878,7 @@ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -7420,6 +7888,7 @@ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", "dev": true, + "license": "MIT", "dependencies": { "graceful-fs": "^4.1.11", "micromatch": "^3.1.10", @@ -7434,6 +7903,7 @@ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", "dev": true, + "license": "MIT", "dependencies": { "is-number": "^3.0.0", "repeat-string": "^1.6.1" @@ -7447,6 +7917,7 @@ "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", "dev": true, + "license": "MIT", "dependencies": { "global-prefix": "^3.0.0" }, @@ -7459,6 +7930,7 @@ "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", "dev": true, + "license": "MIT", "dependencies": { "ini": "^1.3.5", "kind-of": "^6.0.2", @@ -7473,6 +7945,7 @@ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -7482,6 +7955,7 @@ "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "dev": true, + "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, @@ -7494,6 +7968,7 @@ "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", "dev": true, + "license": "MIT", "dependencies": { "type-fest": "^0.20.2" }, @@ -7509,6 +7984,7 @@ "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", "dev": true, + "license": "MIT", "dependencies": { "define-properties": "^1.2.1", "gopd": "^1.0.1" @@ -7525,6 +8001,7 @@ "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", "dev": true, + "license": "MIT", "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", @@ -7544,13 +8021,15 @@ "version": "0.1.2", "resolved": "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz", "integrity": "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/glogg": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/glogg/-/glogg-1.0.2.tgz", "integrity": "sha512-5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA==", "dev": true, + "license": "MIT", "dependencies": { "sparkles": "^1.0.0" }, @@ -7563,6 +8042,7 @@ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -7574,19 +8054,22 @@ "version": "4.2.11", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/graphemer": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/gulp": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/gulp/-/gulp-4.0.2.tgz", "integrity": "sha512-dvEs27SCZt2ibF29xYgmnwwCYZxdxhQ/+LFWlbAW8y7jt68L/65402Lz3+CKy0Ov4rOs+NERmDq7YlZaDqUIfA==", "dev": true, + "license": "MIT", "dependencies": { "glob-watcher": "^5.0.3", "gulp-cli": "^2.2.0", @@ -7605,6 +8088,7 @@ "resolved": "https://registry.npmjs.org/gulp-cli/-/gulp-cli-2.3.0.tgz", "integrity": "sha512-zzGBl5fHo0EKSXsHzjspp3y5CONegCm8ErO5Qh0UzFzk2y4tMvzLWhoDokADbarfZRL2pGpRp7yt6gfJX4ph7A==", "dev": true, + "license": "MIT", "dependencies": { "ansi-colors": "^1.0.1", "archy": "^1.0.0", @@ -7637,6 +8121,7 @@ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -7646,6 +8131,7 @@ "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", "integrity": "sha512-0yayqDxWQbqk3ojkYqUKqaAQ6AfNKeKWRNA8kR0WXzAsdHpP4BIaOmMAG87JGuO6qcobyW4GjxHd9PmhEd+T9w==", "dev": true, + "license": "ISC", "dependencies": { "string-width": "^1.0.1", "strip-ansi": "^3.0.1", @@ -7656,13 +8142,15 @@ "version": "1.0.3", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/gulp-cli/node_modules/is-fullwidth-code-point": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", "integrity": "sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==", "dev": true, + "license": "MIT", "dependencies": { "number-is-nan": "^1.0.0" }, @@ -7675,6 +8163,7 @@ "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", "integrity": "sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==", "dev": true, + "license": "MIT", "dependencies": { "code-point-at": "^1.0.0", "is-fullwidth-code-point": "^1.0.0", @@ -7689,6 +8178,7 @@ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", "dev": true, + "license": "MIT", "dependencies": { "ansi-regex": "^2.0.0" }, @@ -7701,6 +8191,7 @@ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", "integrity": "sha512-vAaEaDM946gbNpH5pLVNR+vX2ht6n0Bt3GXwVB1AuAqZosOvHNF3P7wDnh8KLkSqgUh0uh77le7Owgoz+Z9XBw==", "dev": true, + "license": "MIT", "dependencies": { "string-width": "^1.0.1", "strip-ansi": "^3.0.1" @@ -7713,13 +8204,15 @@ "version": "3.2.2", "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.2.tgz", "integrity": "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/gulp-cli/node_modules/yargs": { "version": "7.1.2", "resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.2.tgz", "integrity": "sha512-ZEjj/dQYQy0Zx0lgLMLR8QuaqTihnxirir7EwUHp1Axq4e3+k8jXU5K0VLbNvedv1f4EWtBonDIZm0NUr+jCcA==", "dev": true, + "license": "MIT", "dependencies": { "camelcase": "^3.0.0", "cliui": "^3.2.0", @@ -7741,6 +8234,7 @@ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.1.tgz", "integrity": "sha512-wpav5XYiddjXxirPoCTUPbqM0PXvJ9hiBMvuJgInvo4/lAOTZzUprArw17q2O1P2+GHhbBr18/iQwjL5Z9BqfA==", "dev": true, + "license": "ISC", "dependencies": { "camelcase": "^3.0.0", "object.assign": "^4.1.0" @@ -7751,6 +8245,7 @@ "resolved": "https://registry.npmjs.org/gulp-contains/-/gulp-contains-1.2.0.tgz", "integrity": "sha512-aoYM2Y14aUGJuelFwu/mFOm3rjfuWT7BaBZRNdhDA+CjlAz77Ja7e2h3FHTNstS+6jiicjOT3PBuaxTxG19oFg==", "dev": true, + "license": "MIT", "dependencies": { "plugin-error": "1.0.1", "through2": "^0.6.3", @@ -7762,6 +8257,7 @@ "resolved": "https://registry.npmjs.org/gulp-exec/-/gulp-exec-4.0.0.tgz", "integrity": "sha512-A9JvTyB3P4huusd/43bTr6SDg3MqBxL9AQbLnsKSO6/91wVkHfxgeJZlgDMkqK8sMel4so8wcko4SZOeB1UCgA==", "dev": true, + "license": "MIT", "dependencies": { "lodash.template": "^4.4.0", "plugin-error": "^1.0.1", @@ -7773,6 +8269,7 @@ "resolved": "https://registry.npmjs.org/through2/-/through2-3.0.2.tgz", "integrity": "sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==", "dev": true, + "license": "MIT", "dependencies": { "inherits": "^2.0.4", "readable-stream": "2 || 3" @@ -7783,6 +8280,7 @@ "resolved": "https://registry.npmjs.org/gulp-flatten/-/gulp-flatten-0.4.0.tgz", "integrity": "sha512-eg4spVTAiv1xXmugyaCxWne1oPtNG0UHEtABx5W8ScLiqAYceyYm6GYA36x0Qh8KOIXmAZV97L2aYGnKREG3Sg==", "dev": true, + "license": "MIT", "dependencies": { "plugin-error": "^0.1.2", "through2": "^2.0.0" @@ -7796,6 +8294,7 @@ "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-1.1.0.tgz", "integrity": "sha512-OQwDZUqYaQwyyhDJHThmzId8daf4/RFNLaeh3AevmSeZ5Y7ug4Ga/yKc6l6kTZOBW781rCj103ZuTh8GAsB3+Q==", "dev": true, + "license": "MIT", "dependencies": { "arr-flatten": "^1.0.1", "array-slice": "^0.2.3" @@ -7809,6 +8308,7 @@ "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-2.1.0.tgz", "integrity": "sha512-t5db90jq+qdgk8aFnxEkjqta0B/GHrM1pxzuuZz2zWsOXc5nKu3t+76s/PQBA8FTcM/ipspIH9jWG4OxCBc2eA==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -7818,6 +8318,7 @@ "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-0.2.3.tgz", "integrity": "sha512-rlVfZW/1Ph2SNySXwR9QYkChp8EkOEiTMO5Vwx60usw04i4nWemkm9RXmQqgkQFaLHsqLuADvjp6IfgL9l2M8Q==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -7827,6 +8328,7 @@ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-1.1.4.tgz", "integrity": "sha512-L7AGmkO6jhDkEBBGWlLtftA80Xq8DipnrRPr0pyi7GQLXkaq9JYA4xF4z6qnadIC6euiTDKco0cGSU9muw+WTw==", "dev": true, + "license": "MIT", "dependencies": { "kind-of": "^1.1.0" }, @@ -7839,6 +8341,7 @@ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-1.1.0.tgz", "integrity": "sha512-aUH6ElPnMGon2/YkxRIigV32MOpTVcoXQ1Oo8aYn40s+sJ3j+0gFZsT8HKDcxNy7Fi9zuquWtGaGAahOdv5p/g==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -7848,6 +8351,7 @@ "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-0.1.2.tgz", "integrity": "sha512-WzZHcm4+GO34sjFMxQMqZbsz3xiNEgonCskQ9v+IroMmYgk/tas8dG+Hr2D6IbRPybZ12oWpzE/w3cGJ6FJzOw==", "dev": true, + "license": "MIT", "dependencies": { "ansi-cyan": "^0.1.1", "ansi-red": "^0.1.1", @@ -7864,6 +8368,7 @@ "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", "dev": true, + "license": "MIT", "dependencies": { "readable-stream": "~2.3.6", "xtend": "~4.0.1" @@ -7874,6 +8379,7 @@ "resolved": "https://registry.npmjs.org/gulp-ignore/-/gulp-ignore-3.0.0.tgz", "integrity": "sha512-hRQDJipaU5A84J7QacNGG+bnFU3QLESdjuJCRTAZ5VuKsz4LmvOrECFJeeCtqxP3RV0Pn6mawU0Q3CFZGpirSg==", "dev": true, + "license": "MIT", "dependencies": { "gulp-match": "^1.1.0", "through2": "^3.0.1" @@ -7884,6 +8390,7 @@ "resolved": "https://registry.npmjs.org/through2/-/through2-3.0.2.tgz", "integrity": "sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==", "dev": true, + "license": "MIT", "dependencies": { "inherits": "^2.0.4", "readable-stream": "2 || 3" @@ -7894,6 +8401,7 @@ "resolved": "https://registry.npmjs.org/gulp-match/-/gulp-match-1.1.0.tgz", "integrity": "sha512-DlyVxa1Gj24DitY2OjEsS+X6tDpretuxD6wTfhXE/Rw2hweqc1f6D/XtsJmoiCwLWfXgR87W9ozEityPCVzGtQ==", "dev": true, + "license": "MIT", "dependencies": { "minimatch": "^3.0.3" } @@ -7903,6 +8411,7 @@ "resolved": "https://registry.npmjs.org/gulp-rename/-/gulp-rename-2.1.0.tgz", "integrity": "sha512-dGuzuH8jQGqCMqC544IEPhs5+O2l+IkdoSZsgd4kY97M1CxQeI3qrmweQBIrxLBbjbe/8uEWK8HHcNBc3OCy4g==", "dev": true, + "license": "MIT", "engines": { "node": ">=4" } @@ -7912,6 +8421,7 @@ "resolved": "https://registry.npmjs.org/gulp-replace/-/gulp-replace-1.1.4.tgz", "integrity": "sha512-SVSF7ikuWKhpAW4l4wapAqPPSToJoiNKsbDoUnRrSgwZHH7lH8pbPeQj1aOVYQrbZKhfSVBxVW+Py7vtulRktw==", "dev": true, + "license": "MIT", "dependencies": { "@types/node": "*", "@types/vinyl": "^2.0.4", @@ -7928,6 +8438,7 @@ "resolved": "https://registry.npmjs.org/gulp-shell/-/gulp-shell-0.8.0.tgz", "integrity": "sha512-wHNCgmqbWkk1c6Gc2dOL5SprcoeujQdeepICwfQRo91DIylTE7a794VEE+leq3cE2YDoiS5ulvRfKVIEMazcTQ==", "dev": true, + "license": "MIT", "dependencies": { "chalk": "^3.0.0", "fancy-log": "^1.3.3", @@ -7945,6 +8456,7 @@ "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -7958,6 +8470,7 @@ "resolved": "https://registry.npmjs.org/through2/-/through2-3.0.2.tgz", "integrity": "sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==", "dev": true, + "license": "MIT", "dependencies": { "inherits": "^2.0.4", "readable-stream": "2 || 3" @@ -7967,13 +8480,15 @@ "version": "1.14.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true + "dev": true, + "license": "0BSD" }, "node_modules/gulp-uglify": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/gulp-uglify/-/gulp-uglify-3.0.2.tgz", "integrity": "sha512-gk1dhB74AkV2kzqPMQBLA3jPoIAPd/nlNzP2XMDSG8XZrqnlCiDGAqC+rZOumzFvB5zOphlFh6yr3lgcAb/OOg==", "dev": true, + "license": "MIT", "dependencies": { "array-each": "^1.0.1", "extend-shallow": "^3.0.2", @@ -7992,6 +8507,7 @@ "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", "dev": true, + "license": "MIT", "dependencies": { "readable-stream": "~2.3.6", "xtend": "~4.0.1" @@ -8002,6 +8518,7 @@ "resolved": "https://registry.npmjs.org/gulpclass/-/gulpclass-0.2.0.tgz", "integrity": "sha512-S2p0SgnVLjBbIEw5tHbBV6Wm6abD+leA5xZG6ukf9M+j1I/8zIeKPby9GLWnI90671YRk+lXbvEUROKaZXo8NA==", "dev": true, + "license": "Apache-2.0", "dependencies": { "@types/gulp": "^4.0.5", "@types/merge2": "^1.1.4", @@ -8015,6 +8532,7 @@ "resolved": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz", "integrity": "sha512-hm6N8nrm3Y08jXie48jsC55eCZz9mnb4OirAStEk2deqeyhXU3C1otDVh+ccttMuc1sBi6RX6ZJ720hs9RCvgw==", "dev": true, + "license": "MIT", "dependencies": { "glogg": "^1.0.0" }, @@ -8027,6 +8545,7 @@ "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", "dev": true, + "license": "MIT", "dependencies": { "duplexer": "^0.1.2" }, @@ -8042,6 +8561,7 @@ "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", "integrity": "sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==", "dev": true, + "license": "MIT", "dependencies": { "ansi-regex": "^2.0.0" }, @@ -8054,6 +8574,7 @@ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -8063,6 +8584,7 @@ "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.1.0.tgz", "integrity": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -8075,6 +8597,7 @@ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -8084,6 +8607,7 @@ "resolved": "https://registry.npmjs.org/has-gulplog/-/has-gulplog-0.1.0.tgz", "integrity": "sha512-+F4GzLjwHNNDEAJW2DC1xXfEoPkRDmUdJ7CBYw4MpqtDwOnqdImJl7GWlpqx+Wko6//J8uKTnIe4wZSv7yCqmw==", "dev": true, + "license": "MIT", "dependencies": { "sparkles": "^1.0.0" }, @@ -8096,6 +8620,7 @@ "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", "dev": true, + "license": "MIT", "dependencies": { "es-define-property": "^1.0.0" }, @@ -8108,6 +8633,7 @@ "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz", "integrity": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==", "dev": true, + "license": "MIT", "dependencies": { "dunder-proto": "^1.0.0" }, @@ -8123,6 +8649,7 @@ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -8135,6 +8662,7 @@ "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", "dev": true, + "license": "MIT", "dependencies": { "has-symbols": "^1.0.3" }, @@ -8150,6 +8678,7 @@ "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", "dev": true, + "license": "MIT", "dependencies": { "get-value": "^2.0.6", "has-values": "^1.0.0", @@ -8164,6 +8693,7 @@ "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", "dev": true, + "license": "MIT", "dependencies": { "is-number": "^3.0.0", "kind-of": "^4.0.0" @@ -8176,13 +8706,15 @@ "version": "1.1.6", "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/has-values/node_modules/is-number": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", "dev": true, + "license": "MIT", "dependencies": { "kind-of": "^3.0.2" }, @@ -8195,6 +8727,7 @@ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", "dev": true, + "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -8207,6 +8740,7 @@ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", "dev": true, + "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -8219,6 +8753,7 @@ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", "dev": true, + "license": "MIT", "dependencies": { "function-bind": "^1.1.2" }, @@ -8272,6 +8807,7 @@ "version": "4.10.1", "resolved": "https://registry.npmjs.org/history/-/history-4.10.1.tgz", "integrity": "sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.1.2", "loose-envify": "^1.2.0", @@ -8284,13 +8820,15 @@ "node_modules/hoist-non-react-statics": { "version": "2.5.5", "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz", - "integrity": "sha512-rqcy4pJo55FTTLWt+bU8ukscqHeE/e9KWvsOW2b/a3afxQZhwkQdT1rPPCJ0rYXdj4vNcasY8zHTH+jF/qStxw==" + "integrity": "sha512-rqcy4pJo55FTTLWt+bU8ukscqHeE/e9KWvsOW2b/a3afxQZhwkQdT1rPPCJ0rYXdj4vNcasY8zHTH+jF/qStxw==", + "license": "BSD-3-Clause" }, "node_modules/homedir-polyfill": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", "dev": true, + "license": "MIT", "dependencies": { "parse-passwd": "^1.0.0" }, @@ -8302,7 +8840,8 @@ "version": "2.8.9", "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/html-void-elements": { "version": "3.0.0", @@ -8315,26 +8854,32 @@ } }, "node_modules/http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz", + "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==", "dev": true, + "license": "MIT", "dependencies": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" + "depd": "~2.0.0", + "inherits": "~2.0.4", + "setprototypeof": "~1.2.0", + "statuses": "~2.0.2", + "toidentifier": "~1.0.1" }, "engines": { "node": ">= 0.8" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" } }, "node_modules/http-errors/node_modules/statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz", + "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.8" } @@ -8344,6 +8889,7 @@ "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", "dev": true, + "license": "MIT", "dependencies": { "eventemitter3": "^4.0.0", "follow-redirects": "^1.0.0", @@ -8358,6 +8904,7 @@ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "dev": true, + "license": "MIT", "dependencies": { "safer-buffer": ">= 2.1.2 < 3" }, @@ -8369,6 +8916,7 @@ "version": "1.18.1", "resolved": "https://registry.npmjs.org/igniteui-dockmanager/-/igniteui-dockmanager-1.18.1.tgz", "integrity": "sha512-j0WGS5+yKcJTxB7Jrve2uEc1XH8/r3A5Fegwk5kmom2SfOpMIXrAlMMxuo5EK4m3w4EVyvaGoEhN2thkTnFNVw==", + "license": "SEE LICENSE IN LICENSE", "dependencies": { "igniteui-trial-watermark": "^1.0.3" } @@ -8641,15 +9189,16 @@ } }, "node_modules/igniteui-theming": { - "version": "24.0.2", - "resolved": "https://registry.npmjs.org/igniteui-theming/-/igniteui-theming-24.0.2.tgz", - "integrity": "sha512-ZDiL4NxatT84AzwOeFavld8ygz1C13OE/Szn+PsM8GiHYgijyLk9GRzTuF8Mof7ChYEKZK53JF46SLGLjkzebw==", + "version": "24.1.2", + "resolved": "https://registry.npmjs.org/igniteui-theming/-/igniteui-theming-24.1.2.tgz", + "integrity": "sha512-Buz5rDPnOPkX5iPDyH2jCMRtJu5CnnSFBco0Sw5lkmXXgp6+zVyG6eTZQ/m1UR0AEBwb0tHo+6IIEebpMvRWRQ==", "license": "MIT" }, "node_modules/igniteui-trial-watermark": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/igniteui-trial-watermark/-/igniteui-trial-watermark-1.0.3.tgz", - "integrity": "sha512-q6thtu+7R6MOB+i9GorFPCcWeOImW43BzCAtKnDAYWwaoueb8Lg1EhBkIhAyfEIH+yZ/9c5lnZdU61/GRPoP+g==" + "integrity": "sha512-q6thtu+7R6MOB+i9GorFPCcWeOImW43BzCAtKnDAYWwaoueb8Lg1EhBkIhAyfEIH+yZ/9c5lnZdU61/GRPoP+g==", + "license": "Apache-2.0" }, "node_modules/igniteui-webcomponents": { "version": "7.0.0-rc.0", @@ -8715,6 +9264,7 @@ "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", "dev": true, + "license": "MIT", "engines": { "node": ">= 4" } @@ -8722,13 +9272,15 @@ "node_modules/immediate": { "version": "3.0.6", "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz", - "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==" + "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==", + "license": "MIT" }, "node_modules/immer": { "version": "9.0.21", "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.21.tgz", "integrity": "sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==", "dev": true, + "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/immer" @@ -8739,6 +9291,7 @@ "resolved": "https://registry.npmjs.org/immutable/-/immutable-3.8.2.tgz", "integrity": "sha512-15gZoQ38eYjEjxkorfbcgBKBL6R7T459OuK+CpcWt7O3KF4uPCx2tD0uFETlUDIyo+1789crbMhTvQBSR5yBMg==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -8748,6 +9301,7 @@ "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", "dev": true, + "license": "MIT", "dependencies": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" @@ -8764,6 +9318,7 @@ "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.8.19" } @@ -8773,6 +9328,7 @@ "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -8783,6 +9339,7 @@ "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", "dev": true, + "license": "ISC", "dependencies": { "once": "^1.3.0", "wrappy": "1" @@ -8791,19 +9348,22 @@ "node_modules/inherits": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "license": "ISC" }, "node_modules/ini": { "version": "1.3.8", "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/internal-slot": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz", "integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==", "dev": true, + "license": "MIT", "dependencies": { "es-errors": "^1.3.0", "hasown": "^2.0.2", @@ -8818,6 +9378,7 @@ "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.10" } @@ -8826,6 +9387,7 @@ "version": "2.2.4", "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "license": "MIT", "dependencies": { "loose-envify": "^1.0.0" } @@ -8835,6 +9397,7 @@ "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", "integrity": "sha512-xgs2NH9AE66ucSq4cNG1nhSFghr5l6tdL15Pk+jl46bmmBapgoaY/AacXyaDznAqmGL99TiLSQgO/XazFSKYeQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -8844,6 +9407,7 @@ "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz", "integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==", "dev": true, + "license": "MIT", "dependencies": { "is-relative": "^1.0.0", "is-windows": "^1.0.1" @@ -8857,6 +9421,7 @@ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.1.tgz", "integrity": "sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==", "dev": true, + "license": "MIT", "dependencies": { "hasown": "^2.0.0" }, @@ -8869,6 +9434,7 @@ "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz", "integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", @@ -8885,13 +9451,15 @@ "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/is-async-function": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.1.1.tgz", "integrity": "sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==", "dev": true, + "license": "MIT", "dependencies": { "async-function": "^1.0.0", "call-bound": "^1.0.3", @@ -8911,6 +9479,7 @@ "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz", "integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==", "dev": true, + "license": "MIT", "dependencies": { "has-bigints": "^1.0.2" }, @@ -8926,6 +9495,7 @@ "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", "dev": true, + "license": "MIT", "dependencies": { "binary-extensions": "^2.0.0" }, @@ -8938,6 +9508,7 @@ "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz", "integrity": "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==", "dev": true, + "license": "MIT", "dependencies": { "call-bound": "^1.0.3", "has-tostringtag": "^1.0.2" @@ -8968,6 +9539,7 @@ "url": "https://feross.org/support" } ], + "license": "MIT", "engines": { "node": ">=4" } @@ -8977,6 +9549,7 @@ "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -8989,6 +9562,7 @@ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", "dev": true, + "license": "MIT", "dependencies": { "hasown": "^2.0.2" }, @@ -9004,6 +9578,7 @@ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.1.tgz", "integrity": "sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==", "dev": true, + "license": "MIT", "dependencies": { "hasown": "^2.0.0" }, @@ -9016,6 +9591,7 @@ "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz", "integrity": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==", "dev": true, + "license": "MIT", "dependencies": { "call-bound": "^1.0.2", "get-intrinsic": "^1.2.6", @@ -9033,6 +9609,7 @@ "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz", "integrity": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==", "dev": true, + "license": "MIT", "dependencies": { "call-bound": "^1.0.2", "has-tostringtag": "^1.0.2" @@ -9049,6 +9626,7 @@ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", "dev": true, + "license": "MIT", "dependencies": { "is-accessor-descriptor": "^1.0.1", "is-data-descriptor": "^1.0.1" @@ -9062,6 +9640,7 @@ "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", "dev": true, + "license": "MIT", "bin": { "is-docker": "cli.js" }, @@ -9077,6 +9656,7 @@ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", "dev": true, + "license": "MIT", "dependencies": { "is-plain-object": "^2.0.4" }, @@ -9089,6 +9669,7 @@ "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "dev": true, + "license": "MIT", "dependencies": { "isobject": "^3.0.1" }, @@ -9101,6 +9682,7 @@ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -9110,6 +9692,7 @@ "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz", "integrity": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==", "dev": true, + "license": "MIT", "dependencies": { "call-bound": "^1.0.3" }, @@ -9125,6 +9708,7 @@ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -9134,6 +9718,7 @@ "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.2.tgz", "integrity": "sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==", "dev": true, + "license": "MIT", "dependencies": { "call-bound": "^1.0.4", "generator-function": "^2.0.0", @@ -9153,6 +9738,7 @@ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, + "license": "MIT", "dependencies": { "is-extglob": "^2.1.1" }, @@ -9165,6 +9751,7 @@ "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -9177,6 +9764,7 @@ "resolved": "https://registry.npmjs.org/is-negated-glob/-/is-negated-glob-1.0.0.tgz", "integrity": "sha512-czXVVn/QEmgvej1f50BZ648vUI+em0xqMq2Sn+QncCLN4zj1UAxlT+kw/6ggQTOaZPd1HqKQGEqbpQVtJucWug==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -9186,6 +9774,7 @@ "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -9198,6 +9787,7 @@ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.12.0" } @@ -9207,6 +9797,7 @@ "resolved": "https://registry.npmjs.org/is-number-like/-/is-number-like-1.0.8.tgz", "integrity": "sha512-6rZi3ezCyFcn5L71ywzz2bS5b2Igl1En3eTlZlvKjpz1n3IZLAYMbKYAIQgFmEu0GENg92ziU/faEOA/aixjbA==", "dev": true, + "license": "ISC", "dependencies": { "lodash.isfinite": "^3.3.2" } @@ -9216,6 +9807,7 @@ "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz", "integrity": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==", "dev": true, + "license": "MIT", "dependencies": { "call-bound": "^1.0.3", "has-tostringtag": "^1.0.2" @@ -9232,6 +9824,7 @@ "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } @@ -9241,6 +9834,7 @@ "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -9250,6 +9844,7 @@ "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", "dev": true, + "license": "MIT", "engines": { "node": ">=12" }, @@ -9262,6 +9857,7 @@ "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -9271,6 +9867,7 @@ "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==", "dev": true, + "license": "MIT", "dependencies": { "call-bound": "^1.0.2", "gopd": "^1.2.0", @@ -9289,6 +9886,7 @@ "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz", "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==", "dev": true, + "license": "MIT", "dependencies": { "is-unc-path": "^1.0.0" }, @@ -9301,6 +9899,7 @@ "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } @@ -9310,6 +9909,7 @@ "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -9322,6 +9922,7 @@ "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz", "integrity": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==", "dev": true, + "license": "MIT", "dependencies": { "call-bound": "^1.0.3" }, @@ -9337,6 +9938,7 @@ "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz", "integrity": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==", "dev": true, + "license": "MIT", "dependencies": { "call-bound": "^1.0.3", "has-tostringtag": "^1.0.2" @@ -9353,6 +9955,7 @@ "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz", "integrity": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==", "dev": true, + "license": "MIT", "dependencies": { "call-bound": "^1.0.2", "has-symbols": "^1.1.0", @@ -9370,6 +9973,7 @@ "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz", "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==", "dev": true, + "license": "MIT", "dependencies": { "which-typed-array": "^1.1.16" }, @@ -9385,6 +9989,7 @@ "resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz", "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==", "dev": true, + "license": "MIT", "dependencies": { "unc-path-regex": "^0.1.2" }, @@ -9396,13 +10001,15 @@ "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", "integrity": "sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/is-valid-glob": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-1.0.0.tgz", "integrity": "sha512-AhiROmoEFDSsjx8hW+5sGwgKVIORcXnrlAx/R0ZSeaPw70Vw0CqkGBBhHGL58Uox2eXnU1AnvXJl1XlyedO5bA==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -9412,6 +10019,7 @@ "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -9424,6 +10032,7 @@ "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.1.tgz", "integrity": "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==", "dev": true, + "license": "MIT", "dependencies": { "call-bound": "^1.0.3" }, @@ -9439,6 +10048,7 @@ "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz", "integrity": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==", "dev": true, + "license": "MIT", "dependencies": { "call-bound": "^1.0.3", "get-intrinsic": "^1.2.6" @@ -9455,6 +10065,7 @@ "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -9464,6 +10075,7 @@ "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", "integrity": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==", "dev": true, + "license": "MIT", "engines": { "node": ">=4" } @@ -9471,19 +10083,22 @@ "node_modules/isarray": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==" + "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", + "license": "MIT" }, "node_modules/isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/isobject": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -9493,6 +10108,7 @@ "resolved": "https://registry.npmjs.org/istextorbinary/-/istextorbinary-3.3.0.tgz", "integrity": "sha512-Tvq1W6NAcZeJ8op+Hq7tdZ434rqnMx4CCZ7H0ff83uEloDvVbqAwaMTZcafKGJT0VHkYzuXUiCY4hlXQg6WfoQ==", "dev": true, + "license": "MIT", "dependencies": { "binaryextensions": "^2.2.0", "textextensions": "^3.2.0" @@ -9509,6 +10125,7 @@ "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.5.tgz", "integrity": "sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==", "dev": true, + "license": "MIT", "dependencies": { "define-data-property": "^1.1.4", "es-object-atoms": "^1.0.0", @@ -9526,6 +10143,7 @@ "resolved": "https://registry.npmjs.org/jest-canvas-mock/-/jest-canvas-mock-2.5.2.tgz", "integrity": "sha512-vgnpPupjOL6+L5oJXzxTxFrlGEIbHdZqFU+LFNdtLxZ3lRDCl17FlTMM7IatoRQkrcyOTMlDinjUguqmQ6bR2A==", "dev": true, + "license": "MIT", "dependencies": { "cssfontparser": "^1.2.1", "moo-color": "^1.0.2" @@ -9536,6 +10154,7 @@ "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", "dev": true, + "license": "MIT", "dependencies": { "chalk": "^4.0.0", "diff-sequences": "^29.6.3", @@ -9551,6 +10170,7 @@ "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", "dev": true, + "license": "MIT", "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } @@ -9560,6 +10180,7 @@ "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", "dev": true, + "license": "MIT", "dependencies": { "chalk": "^4.0.0", "jest-diff": "^29.7.0", @@ -9575,6 +10196,7 @@ "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", "dev": true, + "license": "MIT", "dependencies": { "@babel/code-frame": "^7.12.13", "@jest/types": "^29.6.3", @@ -9595,6 +10217,7 @@ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", "dev": true, + "license": "MIT", "dependencies": { "@jest/types": "^29.6.3", "@types/node": "*", @@ -9607,24 +10230,12 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-util/node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, "node_modules/jest-worker": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", "dev": true, + "license": "MIT", "dependencies": { "@types/node": "*", "merge-stream": "^2.0.0", @@ -9639,6 +10250,7 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -9652,13 +10264,15 @@ "node_modules/js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "license": "MIT" }, "node_modules/js-yaml": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz", "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==", "dev": true, + "license": "MIT", "dependencies": { "argparse": "^2.0.1" }, @@ -9671,6 +10285,7 @@ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", "dev": true, + "license": "MIT", "bin": { "jsesc": "bin/jsesc" }, @@ -9682,31 +10297,36 @@ "version": "3.0.1", "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/json-parse-even-better-errors": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/json-stable-stringify-without-jsonify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/json5": { "version": "2.2.3", "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", "dev": true, + "license": "MIT", "bin": { "json5": "lib/cli.js" }, @@ -9719,6 +10339,7 @@ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.0.tgz", "integrity": "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==", "dev": true, + "license": "MIT", "dependencies": { "universalify": "^2.0.0" }, @@ -9731,6 +10352,7 @@ "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", "dev": true, + "license": "MIT", "dependencies": { "array-includes": "^3.1.6", "array.prototype.flat": "^1.3.1", @@ -9745,6 +10367,7 @@ "version": "3.10.1", "resolved": "https://registry.npmjs.org/jszip/-/jszip-3.10.1.tgz", "integrity": "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==", + "license": "(MIT OR GPL-3.0-or-later)", "dependencies": { "lie": "~3.3.0", "pako": "~1.0.2", @@ -9756,13 +10379,15 @@ "version": "1.1.0", "resolved": "https://registry.npmjs.org/just-debounce/-/just-debounce-1.1.0.tgz", "integrity": "sha512-qpcRocdkUmf+UTNBYx5w6dexX5J31AKK1OmPwH630a83DdVVUIngk55RSAiIGpQyoH0dlr872VHfPjnQnK1qDQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/keyv": { "version": "4.5.4", "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", "dev": true, + "license": "MIT", "dependencies": { "json-buffer": "3.0.1" } @@ -9772,6 +10397,7 @@ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -9781,6 +10407,7 @@ "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } @@ -9790,6 +10417,7 @@ "resolved": "https://registry.npmjs.org/last-run/-/last-run-1.1.1.tgz", "integrity": "sha512-U/VxvpX4N/rFvPzr3qG5EtLKEnNI0emvIQB3/ecEwv+8GHaUKbIB8vxv1Oai5FAF0d0r7LXHhLLe5K/yChm5GQ==", "dev": true, + "license": "MIT", "dependencies": { "default-resolution": "^2.0.0", "es6-weak-map": "^2.0.1" @@ -9803,6 +10431,7 @@ "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz", "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==", "dev": true, + "license": "MIT", "dependencies": { "readable-stream": "^2.0.5" }, @@ -9815,6 +10444,7 @@ "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", "integrity": "sha512-YiGkH6EnGrDGqLMITnGjXtGmNtjoXw9SVUzcaos8RBi7Ps0VBylkq+vOcY9QE5poLasPCR849ucFUkl0UzUyOw==", "dev": true, + "license": "MIT", "dependencies": { "invert-kv": "^1.0.0" }, @@ -9827,6 +10457,7 @@ "resolved": "https://registry.npmjs.org/lead/-/lead-1.0.0.tgz", "integrity": "sha512-IpSVCk9AYvLHo5ctcIXxOBpMWUe+4TKN3VPWAKUbJikkmsGp0VrSM8IttVc32D6J4WUsiPE6aEFRNmIoF/gdow==", "dev": true, + "license": "MIT", "dependencies": { "flush-write-stream": "^1.0.2" }, @@ -9839,6 +10470,7 @@ "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, + "license": "MIT", "dependencies": { "prelude-ls": "^1.2.1", "type-check": "~0.4.0" @@ -9851,6 +10483,7 @@ "version": "3.3.0", "resolved": "https://registry.npmjs.org/lie/-/lie-3.3.0.tgz", "integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==", + "license": "MIT", "dependencies": { "immediate": "~3.0.5" } @@ -9860,6 +10493,7 @@ "resolved": "https://registry.npmjs.org/liftoff/-/liftoff-3.1.0.tgz", "integrity": "sha512-DlIPlJUkCV0Ips2zf2pJP0unEoT1kwYhiiPUGF3s/jtxTCjziNLoiVVh+jqWOWeFi6mmwQ5fNxvAUyPad4Dfog==", "dev": true, + "license": "MIT", "dependencies": { "extend": "^3.0.0", "findup-sync": "^3.0.0", @@ -9879,6 +10513,7 @@ "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "dev": true, + "license": "MIT", "dependencies": { "isobject": "^3.0.1" }, @@ -9891,6 +10526,7 @@ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz", "integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==", "dev": true, + "license": "MIT", "dependencies": { "is-core-module": "^2.16.1", "path-parse": "^1.0.7", @@ -9916,12 +10552,14 @@ "version": "1.2.4", "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/lit": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/lit/-/lit-3.3.1.tgz", - "integrity": "sha512-Ksr/8L3PTapbdXJCk+EJVB78jDodUMaP54gD24W186zGRARvwrsPfS60wae/SSCTCNZVPd1chXqio1qHQmu4NA==", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/lit/-/lit-3.3.2.tgz", + "integrity": "sha512-NF9zbsP79l4ao2SNrH3NkfmFgN/hBYSQo90saIVI1o5GpjAdCPVstVzO1MrLOakHoEhYkrtRjPK6Ob521aoYWQ==", + "license": "BSD-3-Clause", "dependencies": { "@lit/reactive-element": "^2.1.0", "lit-element": "^4.2.0", @@ -9929,19 +10567,21 @@ } }, "node_modules/lit-element": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/lit-element/-/lit-element-4.2.1.tgz", - "integrity": "sha512-WGAWRGzirAgyphK2urmYOV72tlvnxw7YfyLDgQ+OZnM9vQQBQnumQ7jUJe6unEzwGU3ahFOjuz1iz1jjrpCPuw==", + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/lit-element/-/lit-element-4.2.2.tgz", + "integrity": "sha512-aFKhNToWxoyhkNDmWZwEva2SlQia+jfG0fjIWV//YeTaWrVnOxD89dPKfigCUspXFmjzOEUQpOkejH5Ly6sG0w==", + "license": "BSD-3-Clause", "dependencies": { - "@lit-labs/ssr-dom-shim": "^1.4.0", + "@lit-labs/ssr-dom-shim": "^1.5.0", "@lit/reactive-element": "^2.1.0", "lit-html": "^3.3.0" } }, "node_modules/lit-html": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/lit-html/-/lit-html-3.3.1.tgz", - "integrity": "sha512-S9hbyDu/vs1qNrithiNyeyv64c9yqiW9l+DBgI18fL+MTvOtWoFR0FWiyq1TxaYef5wNlpEmzlXoBlZEO+WjoA==", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/lit-html/-/lit-html-3.3.2.tgz", + "integrity": "sha512-Qy9hU88zcmaxBXcc10ZpdK7cOLXvXpRoBxERdtqV9QOrfpMZZ6pSYP91LhpPtap3sFMUiL7Tw2RImbe0Al2/kw==", + "license": "BSD-3-Clause", "dependencies": { "@types/trusted-types": "^2.0.2" } @@ -9951,6 +10591,7 @@ "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", "integrity": "sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==", "dev": true, + "license": "MIT", "dependencies": { "graceful-fs": "^4.1.2", "parse-json": "^2.2.0", @@ -9967,6 +10608,7 @@ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", "integrity": "sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==", "dev": true, + "license": "MIT", "dependencies": { "error-ex": "^1.2.0" }, @@ -9979,6 +10621,7 @@ "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.1.tgz", "integrity": "sha512-IWqP2SCPhyVFTBtRcgMHdzlf9ul25NwaFx4wCEH/KjAXuuHY4yNjvPXsBokp8jCB936PyWRaPKUNh8NvylLp2Q==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.11.5" }, @@ -9992,6 +10635,7 @@ "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.3.1.tgz", "integrity": "sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==", "dev": true, + "license": "MIT", "engines": { "node": ">= 12.13.0" } @@ -10001,6 +10645,7 @@ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "dev": true, + "license": "MIT", "dependencies": { "p-locate": "^5.0.0" }, @@ -10012,28 +10657,32 @@ } }, "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true + "version": "4.17.23", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.23.tgz", + "integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==", + "dev": true, + "license": "MIT" }, "node_modules/lodash._reinterpolate": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", "integrity": "sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/lodash.isfinite": { "version": "3.3.2", "resolved": "https://registry.npmjs.org/lodash.isfinite/-/lodash.isfinite-3.3.2.tgz", "integrity": "sha512-7FGG40uhC8Mm633uKW1r58aElFlBlxCrg9JfSi3P6aYiWmfiWF0PgMd86ZUsxE5GwWPdHoS2+48bwTh2VPkIQA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/lodash.merge": { "version": "4.6.2", "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/lodash.template": { "version": "4.5.0", @@ -10041,6 +10690,7 @@ "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==", "deprecated": "This package is deprecated. Use https://socket.dev/npm/package/eta instead.", "dev": true, + "license": "MIT", "dependencies": { "lodash._reinterpolate": "^3.0.0", "lodash.templatesettings": "^4.0.0" @@ -10051,6 +10701,7 @@ "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", "dev": true, + "license": "MIT", "dependencies": { "lodash._reinterpolate": "^3.0.0" } @@ -10060,6 +10711,7 @@ "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz", "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==", "dev": true, + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -10069,6 +10721,7 @@ "version": "1.4.0", "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "license": "MIT", "dependencies": { "js-tokens": "^3.0.0 || ^4.0.0" }, @@ -10080,13 +10733,15 @@ "version": "3.2.1", "resolved": "https://registry.npmjs.org/loupe/-/loupe-3.2.1.tgz", "integrity": "sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/lru-cache": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", "dev": true, + "license": "ISC", "dependencies": { "yallist": "^3.0.2" } @@ -10096,6 +10751,7 @@ "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz", "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==", "dev": true, + "license": "MIT", "bin": { "lz-string": "bin/bin.js" } @@ -10105,6 +10761,7 @@ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz", "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", "dev": true, + "license": "MIT", "dependencies": { "@jridgewell/sourcemap-codec": "^1.5.5" } @@ -10113,13 +10770,15 @@ "version": "1.3.6", "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/make-error-cause": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/make-error-cause/-/make-error-cause-1.2.2.tgz", "integrity": "sha512-4TO2Y3HkBnis4c0dxhAgD/jprySYLACf7nwN6V0HAHDx59g12WlRpUmFy1bRHamjGUEEBrEvCq6SUpsEE2lhUg==", "dev": true, + "license": "Apache-2.0", "dependencies": { "make-error": "^1.2.0" } @@ -10129,6 +10788,7 @@ "resolved": "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz", "integrity": "sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==", "dev": true, + "license": "MIT", "dependencies": { "kind-of": "^6.0.2" }, @@ -10141,6 +10801,7 @@ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -10150,6 +10811,7 @@ "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -10158,13 +10820,15 @@ "version": "0.0.7", "resolved": "https://registry.npmjs.org/map-stream/-/map-stream-0.0.7.tgz", "integrity": "sha512-C0X0KQmGm3N2ftbTGBhSyuydQ+vV1LC3f3zPvT3RXHXNZrvfPZcoXp/N5DOa8vedX/rTMm2CjTtivFg2STJMRQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/map-visit": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", "dev": true, + "license": "MIT", "dependencies": { "object-visit": "^1.0.0" }, @@ -10188,6 +10852,7 @@ "version": "1.2.1", "resolved": "https://registry.npmjs.org/marked-shiki/-/marked-shiki-1.2.1.tgz", "integrity": "sha512-yHxYQhPY5oYaIRnROn98foKhuClark7M373/VpLxiy5TrDu9Jd/LsMwo8w+U91Up4oDb9IXFrP0N1MFRz8W/DQ==", + "license": "MIT", "peerDependencies": { "marked": ">=7.0.0", "shiki": ">=1.0.0" @@ -10198,6 +10863,7 @@ "resolved": "https://registry.npmjs.org/matchdep/-/matchdep-2.0.0.tgz", "integrity": "sha512-LFgVbaHIHMqCRuCZyfCtUOq9/Lnzhi7Z0KFUE2fhD54+JN2jLh3hC02RLkqauJ3U4soU6H1J3tfj/Byk7GoEjA==", "dev": true, + "license": "MIT", "dependencies": { "findup-sync": "^2.0.0", "micromatch": "^3.0.4", @@ -10213,6 +10879,7 @@ "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", "dev": true, + "license": "MIT", "dependencies": { "arr-flatten": "^1.1.0", "array-unique": "^0.3.2", @@ -10234,6 +10901,7 @@ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "dev": true, + "license": "MIT", "dependencies": { "is-extendable": "^0.1.0" }, @@ -10246,6 +10914,7 @@ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", "dev": true, + "license": "MIT", "dependencies": { "extend-shallow": "^2.0.1", "is-number": "^3.0.0", @@ -10261,6 +10930,7 @@ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "dev": true, + "license": "MIT", "dependencies": { "is-extendable": "^0.1.0" }, @@ -10273,6 +10943,7 @@ "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz", "integrity": "sha512-vs+3unmJT45eczmcAZ6zMJtxN3l/QXeccaXQx5cu/MeJMhewVfoWZqibRkOxPnmoR59+Zy5hjabfQc6JLSah4g==", "dev": true, + "license": "MIT", "dependencies": { "detect-file": "^1.0.0", "is-glob": "^3.1.0", @@ -10287,13 +10958,15 @@ "version": "1.1.6", "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/matchdep/node_modules/is-extendable": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -10303,6 +10976,7 @@ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", "dev": true, + "license": "MIT", "dependencies": { "is-extglob": "^2.1.0" }, @@ -10315,6 +10989,7 @@ "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", "dev": true, + "license": "MIT", "dependencies": { "kind-of": "^3.0.2" }, @@ -10327,6 +11002,7 @@ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", "dev": true, + "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -10339,6 +11015,7 @@ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -10348,6 +11025,7 @@ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", "dev": true, + "license": "MIT", "dependencies": { "arr-diff": "^4.0.0", "array-unique": "^0.3.2", @@ -10372,6 +11050,7 @@ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz", "integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==", "dev": true, + "license": "MIT", "dependencies": { "is-core-module": "^2.16.1", "path-parse": "^1.0.7", @@ -10392,6 +11071,7 @@ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", "dev": true, + "license": "MIT", "dependencies": { "is-number": "^3.0.0", "repeat-string": "^1.6.1" @@ -10405,6 +11085,7 @@ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" } @@ -10414,6 +11095,7 @@ "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.1.tgz", "integrity": "sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==", "dev": true, + "license": "MIT", "dependencies": { "@types/mdast": "^3.0.0", "@types/unist": "^2.0.0", @@ -10438,6 +11120,7 @@ "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-3.0.1.tgz", "integrity": "sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==", "dev": true, + "license": "MIT", "dependencies": { "@types/mdast": "^3.0.0", "unist-util-is": "^5.0.0" @@ -10619,6 +11302,7 @@ "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-1.5.0.tgz", "integrity": "sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==", "dev": true, + "license": "MIT", "dependencies": { "@types/mdast": "^3.0.0", "@types/unist": "^2.0.0", @@ -10639,6 +11323,7 @@ "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.2.0.tgz", "integrity": "sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==", "dev": true, + "license": "MIT", "dependencies": { "@types/mdast": "^3.0.0" }, @@ -10652,6 +11337,7 @@ "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", "dev": true, + "license": "Unlicense", "dependencies": { "fs-monkey": "^1.0.4" }, @@ -10663,13 +11349,15 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/merge2": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", "dev": true, + "license": "MIT", "engines": { "node": ">= 8" } @@ -10689,6 +11377,7 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "@types/debug": "^4.0.0", "debug": "^4.0.0", @@ -10724,6 +11413,7 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "decode-named-character-reference": "^1.0.0", "micromark-factory-destination": "^1.0.0", @@ -10758,6 +11448,7 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "micromark-util-character": "^1.0.0", "micromark-util-symbol": "^1.0.0", @@ -10779,6 +11470,7 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "micromark-util-character": "^1.0.0", "micromark-util-symbol": "^1.0.0", @@ -10801,6 +11493,7 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "micromark-util-character": "^1.0.0", "micromark-util-types": "^1.0.0" @@ -10821,6 +11514,7 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "micromark-factory-space": "^1.0.0", "micromark-util-character": "^1.0.0", @@ -10843,6 +11537,7 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "micromark-factory-space": "^1.0.0", "micromark-util-character": "^1.0.0", @@ -10865,6 +11560,7 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "micromark-util-symbol": "^1.0.0", "micromark-util-types": "^1.0.0" @@ -10885,6 +11581,7 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "micromark-util-symbol": "^1.0.0" } @@ -10904,6 +11601,7 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "micromark-util-character": "^1.0.0", "micromark-util-symbol": "^1.0.0", @@ -10925,6 +11623,7 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "micromark-util-chunked": "^1.0.0", "micromark-util-types": "^1.0.0" @@ -10945,6 +11644,7 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "micromark-util-symbol": "^1.0.0" } @@ -10964,6 +11664,7 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "decode-named-character-reference": "^1.0.0", "micromark-util-character": "^1.0.0", @@ -10985,7 +11686,8 @@ "type": "OpenCollective", "url": "https://opencollective.com/unified" } - ] + ], + "license": "MIT" }, "node_modules/micromark-util-html-tag-name": { "version": "1.2.0", @@ -11001,7 +11703,8 @@ "type": "OpenCollective", "url": "https://opencollective.com/unified" } - ] + ], + "license": "MIT" }, "node_modules/micromark-util-normalize-identifier": { "version": "1.1.0", @@ -11018,6 +11721,7 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "micromark-util-symbol": "^1.0.0" } @@ -11037,6 +11741,7 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "micromark-util-types": "^1.0.0" } @@ -11056,6 +11761,7 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "micromark-util-character": "^1.0.0", "micromark-util-encode": "^1.0.0", @@ -11077,6 +11783,7 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "micromark-util-chunked": "^1.0.0", "micromark-util-symbol": "^1.0.0", @@ -11098,7 +11805,8 @@ "type": "OpenCollective", "url": "https://opencollective.com/unified" } - ] + ], + "license": "MIT" }, "node_modules/micromark-util-types": { "version": "1.1.0", @@ -11114,13 +11822,15 @@ "type": "OpenCollective", "url": "https://opencollective.com/unified" } - ] + ], + "license": "MIT" }, "node_modules/micromatch": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", "dev": true, + "license": "MIT", "dependencies": { "braces": "^3.0.3", "picomatch": "^2.3.1" @@ -11129,24 +11839,12 @@ "node": ">=8.6" } }, - "node_modules/micromatch/node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, "node_modules/mime": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", "dev": true, + "license": "MIT", "bin": { "mime": "cli.js" }, @@ -11159,6 +11857,7 @@ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.6" } @@ -11168,6 +11867,7 @@ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "dev": true, + "license": "MIT", "dependencies": { "mime-db": "1.52.0" }, @@ -11176,10 +11876,11 @@ } }, "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.3.tgz", + "integrity": "sha512-M2GCs7Vk83NxkUyQV1bkABc4yxgz9kILhHImZiBPAZ9ybuvCb0/H7lEl5XvIg3g+9d4eNotkZA5IWwYl0tibaA==", "dev": true, + "license": "ISC", "dependencies": { "brace-expansion": "^1.1.7" }, @@ -11191,13 +11892,15 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/mitt/-/mitt-1.2.0.tgz", "integrity": "sha512-r6lj77KlwqLhIUku9UWYes7KJtsczvolZkzp8hbaDPPaE24OmWl5s539Mytlj22siEQKosZ26qCBgda2PKwoJw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/mixin-deep": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", "dev": true, + "license": "MIT", "dependencies": { "for-in": "^1.0.2", "is-extendable": "^1.0.1" @@ -11211,13 +11914,15 @@ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.5.tgz", "integrity": "sha512-8OCq0De/h9ZxseqzCH8Kw/Filf5pF/vMI6+BH7Lu0jXz2pqYCjTAQRolSxRIi+Ax+oCCjlxoJMP0YQ4XlrQNHg==", "deprecated": "Legacy versions of mkdirp are no longer supported. Please update to mkdirp 1.x. (Note that the API surface has changed to use Promises in 1.x.)", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/moo-color": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/moo-color/-/moo-color-1.0.3.tgz", "integrity": "sha512-i/+ZKXMDf6aqYtBhuOcej71YSlbjT3wCO/4H1j8rPvxDJEifdwgg5MaFyu6iYAT8GBZJg2z0dkgK4YMzvURALQ==", "dev": true, + "license": "MIT", "dependencies": { "color-name": "^1.1.4" } @@ -11227,6 +11932,7 @@ "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", "dev": true, + "license": "MIT", "engines": { "node": ">=4" } @@ -11236,6 +11942,7 @@ "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.1.tgz", "integrity": "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=10" } @@ -11244,21 +11951,23 @@ "version": "2.1.3", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/mute-stdout": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/mute-stdout/-/mute-stdout-1.0.1.tgz", "integrity": "sha512-kDcwXR4PS7caBpuRYYBUz9iVixUk3anO3f5OYFiIPwK/20vCzKCHyKoulbiDY1S53zD2bxUpxN/IJ+TnXjfvxg==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.10" } }, "node_modules/nan": { - "version": "2.24.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.24.0.tgz", - "integrity": "sha512-Vpf9qnVW1RaDkoNKFUvfxqAbtI8ncb8OJlqZ9wwpXzWPEsvsB1nvdUi6oYrHIkQ1Y/tMDnr1h4nczS0VB9Xykg==", + "version": "2.25.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.25.0.tgz", + "integrity": "sha512-0M90Ag7Xn5KMLLZ7zliPWP3rT90P6PN+IzVFS0VqmnPktBk3700xUVv8Ikm9EUaUE5SDWdp/BIxdENzVznpm1g==", "dev": true, "license": "MIT", "optional": true @@ -11274,6 +11983,7 @@ "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "bin": { "nanoid": "bin/nanoid.cjs" }, @@ -11286,6 +11996,7 @@ "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", "dev": true, + "license": "MIT", "dependencies": { "arr-diff": "^4.0.0", "array-unique": "^0.3.2", @@ -11308,6 +12019,7 @@ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -11316,19 +12028,22 @@ "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/natural-compare-lite": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/ncp": { "version": "0.4.2", "resolved": "https://registry.npmjs.org/ncp/-/ncp-0.4.2.tgz", "integrity": "sha512-PfGU8jYWdRl4FqJfCy0IzbkGyFHntfWygZg46nFk/dJD/XRrk2cj0SsKSX9n5u5gE0E0YfEpKWrEkfjnlZSTXA==", "dev": true, + "license": "MIT", "bin": { "ncp": "bin/ncp" } @@ -11338,6 +12053,7 @@ "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.6" } @@ -11346,13 +12062,15 @@ "version": "2.6.2", "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/next-tick": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/node-addon-api": { "version": "7.1.1", @@ -11362,17 +12080,38 @@ "license": "MIT", "optional": true }, + "node_modules/node-exports-info": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/node-exports-info/-/node-exports-info-1.6.0.tgz", + "integrity": "sha512-pyFS63ptit/P5WqUkt+UUfe+4oevH+bFeIiPPdfb0pFeYEu/1ELnJu5l+5EcTKYL5M7zaAa7S8ddywgXypqKCw==", + "dev": true, + "license": "MIT", + "dependencies": { + "array.prototype.flatmap": "^1.3.3", + "es-errors": "^1.3.0", + "object.entries": "^1.1.9", + "semver": "^6.3.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/node-releases": { "version": "2.0.27", "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz", "integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/normalize-package-data": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "hosted-git-info": "^2.1.4", "resolve": "^1.10.0", @@ -11385,6 +12124,7 @@ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz", "integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==", "dev": true, + "license": "MIT", "dependencies": { "is-core-module": "^2.16.1", "path-parse": "^1.0.7", @@ -11405,6 +12145,7 @@ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver" } @@ -11413,6 +12154,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -11422,6 +12164,7 @@ "resolved": "https://registry.npmjs.org/now-and-later/-/now-and-later-2.0.1.tgz", "integrity": "sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ==", "dev": true, + "license": "MIT", "dependencies": { "once": "^1.3.2" }, @@ -11434,6 +12177,7 @@ "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", "integrity": "sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -11442,6 +12186,7 @@ "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -11451,6 +12196,7 @@ "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", "dev": true, + "license": "MIT", "dependencies": { "copy-descriptor": "^0.1.0", "define-property": "^0.2.5", @@ -11465,6 +12211,7 @@ "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", "dev": true, + "license": "MIT", "dependencies": { "is-descriptor": "^0.1.0" }, @@ -11476,13 +12223,15 @@ "version": "1.1.6", "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/object-copy/node_modules/is-descriptor": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", "dev": true, + "license": "MIT", "dependencies": { "is-accessor-descriptor": "^1.0.1", "is-data-descriptor": "^1.0.1" @@ -11496,6 +12245,7 @@ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", "dev": true, + "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -11508,6 +12258,7 @@ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -11520,6 +12271,7 @@ "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" } @@ -11529,6 +12281,7 @@ "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", "dev": true, + "license": "MIT", "dependencies": { "isobject": "^3.0.0" }, @@ -11541,6 +12294,7 @@ "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz", "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", @@ -11561,6 +12315,7 @@ "resolved": "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz", "integrity": "sha512-c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA==", "dev": true, + "license": "MIT", "dependencies": { "array-each": "^1.0.1", "array-slice": "^1.0.0", @@ -11576,6 +12331,7 @@ "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.9.tgz", "integrity": "sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.4", @@ -11591,6 +12347,7 @@ "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", @@ -11609,6 +12366,7 @@ "resolved": "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz", "integrity": "sha512-3+mAJu2PLfnSVGHwIWubpOFLscJANBKuB/6A4CxBstc4aqwQY0FWcsppuy4jU5GSB95yES5JHSI+33AWuS4k6w==", "dev": true, + "license": "MIT", "dependencies": { "for-own": "^1.0.0", "make-iterator": "^1.0.0" @@ -11622,6 +12380,7 @@ "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", "dev": true, + "license": "MIT", "dependencies": { "isobject": "^3.0.1" }, @@ -11634,6 +12393,7 @@ "resolved": "https://registry.npmjs.org/object.reduce/-/object.reduce-1.0.1.tgz", "integrity": "sha512-naLhxxpUESbNkRqc35oQ2scZSJueHGQNUfMW/0U37IgN6tE2dgDWg3whf+NEliy3F/QysrO48XKUz/nGPe+AQw==", "dev": true, + "license": "MIT", "dependencies": { "for-own": "^1.0.0", "make-iterator": "^1.0.0" @@ -11647,6 +12407,7 @@ "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.1.tgz", "integrity": "sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", @@ -11665,6 +12426,7 @@ "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", "dev": true, + "license": "MIT", "dependencies": { "ee-first": "1.1.1" }, @@ -11677,6 +12439,7 @@ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", "dev": true, + "license": "ISC", "dependencies": { "wrappy": "1" } @@ -11703,6 +12466,7 @@ "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", "dev": true, + "license": "MIT", "dependencies": { "define-lazy-prop": "^2.0.0", "is-docker": "^2.1.1", @@ -11720,6 +12484,7 @@ "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", "dev": true, + "license": "MIT", "dependencies": { "is-docker": "^2.0.0" }, @@ -11732,6 +12497,7 @@ "resolved": "https://registry.npmjs.org/opn/-/opn-5.3.0.tgz", "integrity": "sha512-bYJHo/LOmoTd+pfiYhfZDnf9zekVJrY+cnS2a5F2x+w5ppvTqObojTP7WiFG+kVZs9Inw+qQ/lw7TroWwhdd2g==", "dev": true, + "license": "MIT", "dependencies": { "is-wsl": "^1.1.0" }, @@ -11744,6 +12510,7 @@ "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", "dev": true, + "license": "MIT", "dependencies": { "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", @@ -11761,6 +12528,7 @@ "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz", "integrity": "sha512-Z87aSjx3r5c0ZB7bcJqIgIRX5bxR7A4aSzvIbaxd0oTkWBCOoKfuGHiKj60CHVUgg1Phm5yMZzBdt8XqRs73Mw==", "dev": true, + "license": "MIT", "dependencies": { "readable-stream": "^2.0.1" } @@ -11770,6 +12538,7 @@ "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", "integrity": "sha512-PRT7ZORmwu2MEFt4/fv3Q+mEfN4zetKxufQrkShY2oGvUms9r8otu5HfdyIFHkYXjO7laNsoVGmM2MANfuTA8g==", "dev": true, + "license": "MIT", "dependencies": { "lcid": "^1.0.0" }, @@ -11782,6 +12551,7 @@ "resolved": "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz", "integrity": "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==", "dev": true, + "license": "MIT", "dependencies": { "get-intrinsic": "^1.2.6", "object-keys": "^1.1.1", @@ -11799,6 +12569,7 @@ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, + "license": "MIT", "dependencies": { "yocto-queue": "^0.1.0" }, @@ -11814,6 +12585,7 @@ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "dev": true, + "license": "MIT", "dependencies": { "p-limit": "^3.0.2" }, @@ -11829,6 +12601,7 @@ "resolved": "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz", "integrity": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==", "dev": true, + "license": "MIT", "dependencies": { "aggregate-error": "^3.0.0" }, @@ -11841,6 +12614,7 @@ "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } @@ -11848,13 +12622,15 @@ "node_modules/pako": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", - "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", + "license": "(MIT AND Zlib)" }, "node_modules/parent-module": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "dev": true, + "license": "MIT", "dependencies": { "callsites": "^3.0.0" }, @@ -11867,6 +12643,7 @@ "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz", "integrity": "sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==", "dev": true, + "license": "MIT", "dependencies": { "is-absolute": "^1.0.0", "map-cache": "^0.2.0", @@ -11881,6 +12658,7 @@ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", "dev": true, + "license": "MIT", "dependencies": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", @@ -11899,6 +12677,7 @@ "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.10" } @@ -11908,6 +12687,7 @@ "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -11917,6 +12697,7 @@ "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.8" } @@ -11926,6 +12707,7 @@ "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -11935,6 +12717,7 @@ "resolved": "https://registry.npmjs.org/path/-/path-0.12.7.tgz", "integrity": "sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==", "dev": true, + "license": "MIT", "dependencies": { "process": "^0.11.1", "util": "^0.10.3" @@ -11944,13 +12727,15 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", "integrity": "sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/path-exists": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -11960,6 +12745,7 @@ "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -11969,6 +12755,7 @@ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -11977,13 +12764,15 @@ "version": "1.0.7", "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/path-root": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz", "integrity": "sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==", "dev": true, + "license": "MIT", "dependencies": { "path-root-regex": "^0.1.0" }, @@ -11996,6 +12785,7 @@ "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", "integrity": "sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -12004,6 +12794,7 @@ "version": "1.9.0", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.9.0.tgz", "integrity": "sha512-xIp7/apCFJuUHdDLWe8O1HIkb0kQrOMb/0u6FXQjemHn/ii5LrIzU6bdECnsiTF/GjZkMEKg1xdiZwNqDYlZ6g==", + "license": "MIT", "dependencies": { "isarray": "0.0.1" } @@ -12013,6 +12804,7 @@ "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -12021,13 +12813,15 @@ "version": "2.0.3", "resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz", "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/pathval": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/pathval/-/pathval-2.0.1.tgz", "integrity": "sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==", "dev": true, + "license": "MIT", "engines": { "node": ">= 14.16" } @@ -12037,6 +12831,10 @@ "resolved": "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz", "integrity": "sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==", "dev": true, + "license": [ + "MIT", + "Apache2" + ], "dependencies": { "through": "~2.3" } @@ -12045,16 +12843,16 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/picomatch": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", - "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", - "dev": true, + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "license": "MIT", "engines": { - "node": ">=12" + "node": ">=8.6" }, "funding": { "url": "https://github.com/sponsors/jonschlinkert" @@ -12065,6 +12863,7 @@ "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -12074,6 +12873,7 @@ "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -12083,6 +12883,7 @@ "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", "dev": true, + "license": "MIT", "dependencies": { "pinkie": "^2.0.0" }, @@ -12095,6 +12896,7 @@ "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", "dev": true, + "license": "MIT", "dependencies": { "find-up": "^3.0.0" }, @@ -12107,6 +12909,7 @@ "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", "dev": true, + "license": "MIT", "dependencies": { "locate-path": "^3.0.0" }, @@ -12119,6 +12922,7 @@ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", "dev": true, + "license": "MIT", "dependencies": { "p-locate": "^3.0.0", "path-exists": "^3.0.0" @@ -12132,6 +12936,7 @@ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, + "license": "MIT", "dependencies": { "p-try": "^2.0.0" }, @@ -12147,6 +12952,7 @@ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", "dev": true, + "license": "MIT", "dependencies": { "p-limit": "^2.0.0" }, @@ -12159,6 +12965,7 @@ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=4" } @@ -12168,6 +12975,7 @@ "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-1.0.1.tgz", "integrity": "sha512-L1zP0dk7vGweZME2i+EeakvUNqSrdiI3F91TwEoYiGrAfUXmVv6fJIq4g82PAXxNsWOp0J7ZqQy/3Szz0ajTxA==", "dev": true, + "license": "MIT", "dependencies": { "ansi-colors": "^1.0.1", "arr-diff": "^4.0.0", @@ -12183,6 +12991,7 @@ "resolved": "https://registry.npmjs.org/portscanner/-/portscanner-2.2.0.tgz", "integrity": "sha512-IFroCz/59Lqa2uBvzK3bKDbDDIEaAY8XJ1jFxcLWTqosrsc32//P4VuSB2vZXoHiHqOmx8B5L5hnKOxL/7FlPw==", "dev": true, + "license": "MIT", "dependencies": { "async": "^2.6.0", "is-number-like": "^1.0.3" @@ -12197,6 +13006,7 @@ "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -12206,6 +13016,7 @@ "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz", "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" } @@ -12229,6 +13040,7 @@ "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "dependencies": { "nanoid": "^3.3.11", "picocolors": "^1.1.1", @@ -12243,6 +13055,7 @@ "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.8.0" } @@ -12252,6 +13065,7 @@ "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", "dev": true, + "license": "MIT", "bin": { "prettier": "bin-prettier.js" }, @@ -12263,10 +13077,11 @@ } }, "node_modules/prettier-linter-helpers": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", - "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.1.tgz", + "integrity": "sha512-SxToR7P8Y2lWmv/kTzVLC1t/GDI2WGjMwNhLLE9qtH8Q13C+aEmuRlzDst4Up4s0Wc8sF2M+J57iB3cMLqftfg==", "dev": true, + "license": "MIT", "dependencies": { "fast-diff": "^1.1.2" }, @@ -12279,6 +13094,7 @@ "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, + "license": "MIT", "dependencies": { "@jest/schemas": "^29.6.3", "ansi-styles": "^5.0.0", @@ -12293,6 +13109,7 @@ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, + "license": "MIT", "engines": { "node": ">=10" }, @@ -12305,6 +13122,7 @@ "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", "integrity": "sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.8" } @@ -12314,6 +13132,7 @@ "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.6.0" } @@ -12321,13 +13140,15 @@ "node_modules/process-nextick-args": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "license": "MIT" }, "node_modules/prompts": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", "dev": true, + "license": "MIT", "dependencies": { "kleur": "^3.0.3", "sisteransi": "^1.0.5" @@ -12340,6 +13161,7 @@ "version": "15.7.2", "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz", "integrity": "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==", + "license": "MIT", "dependencies": { "loose-envify": "^1.4.0", "object-assign": "^4.1.1", @@ -12349,7 +13171,8 @@ "node_modules/prop-types/node_modules/react-is": { "version": "16.13.1", "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "license": "MIT" }, "node_modules/property-information": { "version": "7.1.0", @@ -12366,6 +13189,7 @@ "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", "dev": true, + "license": "MIT", "dependencies": { "end-of-stream": "^1.1.0", "once": "^1.3.1" @@ -12376,6 +13200,7 @@ "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", "dev": true, + "license": "MIT", "dependencies": { "duplexify": "^3.6.0", "inherits": "^2.0.3", @@ -12387,6 +13212,7 @@ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } @@ -12409,13 +13235,15 @@ "type": "consulting", "url": "https://feross.org/support" } - ] + ], + "license": "MIT" }, "node_modules/randombytes": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", "dev": true, + "license": "MIT", "dependencies": { "safe-buffer": "^5.1.0" } @@ -12425,29 +13253,32 @@ "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/raw-body": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", - "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.3.tgz", + "integrity": "sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA==", "dev": true, + "license": "MIT", "dependencies": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" + "bytes": "~3.1.2", + "http-errors": "~2.0.1", + "iconv-lite": "~0.4.24", + "unpipe": "~1.0.0" }, "engines": { "node": ">= 0.8" } }, "node_modules/react": { - "version": "19.2.0", - "resolved": "https://registry.npmjs.org/react/-/react-19.2.0.tgz", - "integrity": "sha512-tmbWg6W31tQLeB5cdIBOicJDJRR2KzXsV7uSK9iNfLWQ5bIZfxuPEHp7M8wiHyHnn0DD1i7w3Zmin0FtkrwoCQ==", + "version": "19.2.4", + "resolved": "https://registry.npmjs.org/react/-/react-19.2.4.tgz", + "integrity": "sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==", + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -12457,6 +13288,7 @@ "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-12.0.1.tgz", "integrity": "sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==", "dev": true, + "license": "MIT", "dependencies": { "@babel/code-frame": "^7.16.0", "address": "^1.1.2", @@ -12488,26 +13320,29 @@ } }, "node_modules/react-dom": { - "version": "19.2.0", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.0.tgz", - "integrity": "sha512-UlbRu4cAiGaIewkPyiRGJk0imDN2T3JjieT6spoL2UeSf5od4n5LB/mQ4ejmxhCFT1tYe8IvaFulzynWovsEFQ==", + "version": "19.2.4", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.4.tgz", + "integrity": "sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==", + "license": "MIT", "dependencies": { "scheduler": "^0.27.0" }, "peerDependencies": { - "react": "^19.2.0" + "react": "^19.2.4" } }, "node_modules/react-error-overlay": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.1.0.tgz", "integrity": "sha512-SN/U6Ytxf1QGkw/9ve5Y+NxBbZM6Ht95tuXNMKs8EJyFa/Vy/+Co3stop3KBHARfn/giv+Lj1uUnTfOJ3moFEQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/react-icons": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/react-icons/-/react-icons-5.5.0.tgz", "integrity": "sha512-MEFcXdkP3dLo8uumGI5xN3lDFNsRtrjbOEKDLD7yv76v4wpnEq2Lt2qeHaQOr34I/wPN3s3+N08WkQ+CW37Xiw==", + "license": "MIT", "peerDependencies": { "react": "*" } @@ -12516,12 +13351,14 @@ "version": "18.3.1", "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/react-loadable": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/react-loadable/-/react-loadable-5.5.0.tgz", "integrity": "sha512-C8Aui0ZpMd4KokxRdVAm2bQtI03k2RMRNzOB+IipV3yxFTSVICv7WoUr5L9ALB5BmKO1iHgZtWM8EvYG83otdg==", + "license": "MIT", "dependencies": { "prop-types": "^15.5.0" }, @@ -12534,6 +13371,7 @@ "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.18.0.tgz", "integrity": "sha512-QgT5//D3jfjJb6Gsjxv0Slpj23ip+HtOpnNgnb2S5zU3CB26G/IDPGoy4RJB42wzFE46DRsstbW6tKHoKbhAxw==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -12542,6 +13380,7 @@ "version": "4.3.1", "resolved": "https://registry.npmjs.org/react-router/-/react-router-4.3.1.tgz", "integrity": "sha512-yrvL8AogDh2X42Dt9iknk4wF4V8bWREPirFfS9gLU1huk6qK41sg7Z/1S81jjTrGHxa3B8R3J6xIkDAA6CVarg==", + "license": "MIT", "dependencies": { "history": "^4.7.2", "hoist-non-react-statics": "^2.5.0", @@ -12559,6 +13398,7 @@ "version": "5.3.4", "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-5.3.4.tgz", "integrity": "sha512-m4EqFMHv/Ih4kpcBCONHbkT68KoAeHN4p3lAGoNryfHi0dMy0kCzEZakiKRsvg5wHZ/JLrLW8o8KomWiz/qbYQ==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.12.13", "history": "^4.9.0", @@ -12576,6 +13416,7 @@ "version": "3.3.2", "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "license": "BSD-3-Clause", "dependencies": { "react-is": "^16.7.0" } @@ -12583,12 +13424,14 @@ "node_modules/react-router-dom/node_modules/react-is": { "version": "16.13.1", "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "license": "MIT" }, "node_modules/react-router-dom/node_modules/react-router": { "version": "5.3.4", "resolved": "https://registry.npmjs.org/react-router/-/react-router-5.3.4.tgz", "integrity": "sha512-Ys9K+ppnJah3QuaRiLxk+jDWOR1MekYQrlytiXxC1RyfbdsZkS5pvKAzCCr031xHixZwpnsYNT5xysdFHQaYsA==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.12.13", "history": "^4.9.0", @@ -12608,6 +13451,7 @@ "version": "4.4.2", "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.2.tgz", "integrity": "sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==", + "license": "BSD-3-Clause", "dependencies": { "@babel/runtime": "^7.5.5", "dom-helpers": "^5.0.1", @@ -12624,6 +13468,7 @@ "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", "integrity": "sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==", "dev": true, + "license": "MIT", "dependencies": { "load-json-file": "^1.0.0", "normalize-package-data": "^2.3.2", @@ -12638,6 +13483,7 @@ "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", "integrity": "sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==", "dev": true, + "license": "MIT", "dependencies": { "find-up": "^1.0.0", "read-pkg": "^1.0.0" @@ -12651,6 +13497,7 @@ "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", "integrity": "sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==", "dev": true, + "license": "MIT", "dependencies": { "path-exists": "^2.0.0", "pinkie-promise": "^2.0.0" @@ -12664,6 +13511,7 @@ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", "integrity": "sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==", "dev": true, + "license": "MIT", "dependencies": { "pinkie-promise": "^2.0.0" }, @@ -12676,6 +13524,7 @@ "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", "integrity": "sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==", "dev": true, + "license": "MIT", "dependencies": { "graceful-fs": "^4.1.2", "pify": "^2.0.0", @@ -12689,6 +13538,7 @@ "version": "2.3.8", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "license": "MIT", "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", @@ -12702,18 +13552,21 @@ "node_modules/readable-stream/node_modules/isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "license": "MIT" }, "node_modules/readable-stream/node_modules/safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "license": "MIT" }, "node_modules/readdirp": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", "dev": true, + "license": "MIT", "dependencies": { "picomatch": "^2.2.1" }, @@ -12721,19 +13574,6 @@ "node": ">=8.10.0" } }, - "node_modules/readdirp/node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, "node_modules/rechoir": { "version": "0.6.2", "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", @@ -12751,6 +13591,7 @@ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz", "integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==", "dev": true, + "license": "MIT", "dependencies": { "is-core-module": "^2.16.1", "path-parse": "^1.0.7", @@ -12771,6 +13612,7 @@ "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.3.tgz", "integrity": "sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==", "dev": true, + "license": "MIT", "dependencies": { "minimatch": "^3.0.5" }, @@ -12783,6 +13625,7 @@ "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz", "integrity": "sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.8", "define-properties": "^1.2.1", @@ -12814,6 +13657,7 @@ "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", "dev": true, + "license": "MIT", "dependencies": { "extend-shallow": "^3.0.2", "safe-regex": "^1.1.0" @@ -12842,6 +13686,7 @@ "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz", "integrity": "sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.8", "define-properties": "^1.2.1", @@ -12862,6 +13707,7 @@ "resolved": "https://registry.npmjs.org/remark/-/remark-14.0.3.tgz", "integrity": "sha512-bfmJW1dmR2LvaMJuAnE88pZP9DktIFYXazkTfOIKZzi3Knk9lT0roItIA24ydOucI3bV/g/tXBA6hzqq3FV9Ew==", "dev": true, + "license": "MIT", "dependencies": { "@types/mdast": "^3.0.0", "remark-parse": "^10.0.0", @@ -12878,6 +13724,7 @@ "resolved": "https://registry.npmjs.org/remark-frontmatter/-/remark-frontmatter-2.0.0.tgz", "integrity": "sha512-uNOQt4tO14qBFWXenF0MLC4cqo3dv8qiHPGyjCl1rwOT0LomSHpcElbjjVh5CwzElInB38HD8aSRVugKQjeyHA==", "dev": true, + "license": "MIT", "dependencies": { "fault": "^1.0.1" }, @@ -12891,6 +13738,7 @@ "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-10.0.2.tgz", "integrity": "sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==", "dev": true, + "license": "MIT", "dependencies": { "@types/mdast": "^3.0.0", "mdast-util-from-markdown": "^1.0.0", @@ -12906,6 +13754,7 @@ "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-10.0.3.tgz", "integrity": "sha512-koyOzCMYoUHudypbj4XpnAKFbkddRMYZHwghnxd7ue5210WzGw6kOBwauJTRUMq16jsovXx8dYNvSSWP89kZ3A==", "dev": true, + "license": "MIT", "dependencies": { "@types/mdast": "^3.0.0", "mdast-util-to-markdown": "^1.0.0", @@ -12921,6 +13770,7 @@ "resolved": "https://registry.npmjs.org/remove-bom-buffer/-/remove-bom-buffer-3.0.0.tgz", "integrity": "sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ==", "dev": true, + "license": "MIT", "dependencies": { "is-buffer": "^1.1.5", "is-utf8": "^0.2.1" @@ -12933,13 +13783,15 @@ "version": "1.1.6", "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/remove-bom-stream": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/remove-bom-stream/-/remove-bom-stream-1.2.0.tgz", "integrity": "sha512-wigO8/O08XHb8YPzpDDT+QmRANfW6vLqxfaXm1YXhnFf3AkSLyjfG3GEFg4McZkmgL7KvCj5u2KczkvSP6NfHA==", "dev": true, + "license": "MIT", "dependencies": { "remove-bom-buffer": "^3.0.0", "safe-buffer": "^5.1.0", @@ -12954,6 +13806,7 @@ "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", "dev": true, + "license": "MIT", "dependencies": { "readable-stream": "~2.3.6", "xtend": "~4.0.1" @@ -12963,13 +13816,15 @@ "version": "1.1.0", "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", "integrity": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/repeat-element": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -12979,6 +13834,7 @@ "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10" } @@ -12988,6 +13844,7 @@ "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.10" } @@ -12997,6 +13854,7 @@ "resolved": "https://registry.npmjs.org/replace-homedir/-/replace-homedir-1.0.0.tgz", "integrity": "sha512-CHPV/GAglbIB1tnQgaiysb8H2yCy8WQ7lcEwQ/eT+kLj0QHV8LnJW0zpqpE7RSkrMSRoa+EBoag86clf7WAgSg==", "dev": true, + "license": "MIT", "dependencies": { "homedir-polyfill": "^1.0.1", "is-absolute": "^1.0.0", @@ -13011,6 +13869,7 @@ "resolved": "https://registry.npmjs.org/replacestream/-/replacestream-4.0.3.tgz", "integrity": "sha512-AC0FiLS352pBBiZhd4VXB1Ab/lh0lEgpP+GGvZqbQh8a5cmXVoTe5EX/YeTFArnp4SRGTHh1qCHu9lGs1qG8sA==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "escape-string-regexp": "^1.0.3", "object-assign": "^4.0.1", @@ -13022,6 +13881,7 @@ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.8.0" } @@ -13031,6 +13891,7 @@ "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -13040,6 +13901,7 @@ "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -13048,27 +13910,36 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", "integrity": "sha512-IqSUtOVP4ksd1C/ej5zeEh/BIP2ajqpn8c5x+q99gvcIG/Qf0cud5raVnE/Dwd0ua9TXYDoDc0RE5hBSdz22Ug==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/requires-port": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/resolve": { - "version": "2.0.0-next.5", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", - "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", + "version": "2.0.0-next.6", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.6.tgz", + "integrity": "sha512-3JmVl5hMGtJ3kMmB3zi3DL25KfkCEyy3Tw7Gmw7z5w8M9WlwoPFnIvwChzu1+cF3iaK3sp18hhPz8ANeimdJfA==", "dev": true, + "license": "MIT", "dependencies": { - "is-core-module": "^2.13.0", + "es-errors": "^1.3.0", + "is-core-module": "^2.16.1", + "node-exports-info": "^1.6.0", + "object-keys": "^1.1.1", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { "resolve": "bin/resolve" }, + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -13078,6 +13949,7 @@ "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", "integrity": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==", "dev": true, + "license": "MIT", "dependencies": { "expand-tilde": "^2.0.0", "global-modules": "^1.0.0" @@ -13091,6 +13963,7 @@ "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", "dev": true, + "license": "MIT", "dependencies": { "global-prefix": "^1.0.1", "is-windows": "^1.0.1", @@ -13105,6 +13978,7 @@ "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", "integrity": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==", "dev": true, + "license": "MIT", "dependencies": { "expand-tilde": "^2.0.2", "homedir-polyfill": "^1.0.1", @@ -13121,6 +13995,7 @@ "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "dev": true, + "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, @@ -13133,6 +14008,7 @@ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", "dev": true, + "license": "MIT", "engines": { "node": ">=4" } @@ -13142,6 +14018,7 @@ "resolved": "https://registry.npmjs.org/resolve-options/-/resolve-options-1.1.0.tgz", "integrity": "sha512-NYDgziiroVeDC29xq7bp/CacZERYsA9bXYd1ZmcJlF3BcrZv5pTb4NG7SjdyKDnXZ84aC4vo2u6sNKIA1LCu/A==", "dev": true, + "license": "MIT", "dependencies": { "value-or-function": "^3.0.0" }, @@ -13152,14 +14029,16 @@ "node_modules/resolve-pathname": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/resolve-pathname/-/resolve-pathname-3.0.0.tgz", - "integrity": "sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==" + "integrity": "sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==", + "license": "MIT" }, "node_modules/resolve-url": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==", "deprecated": "https://github.com/lydell/resolve-url#deprecated", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/resp-modifier": { "version": "6.0.2", @@ -13179,6 +14058,7 @@ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, + "license": "MIT", "dependencies": { "ms": "2.0.0" } @@ -13187,13 +14067,15 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/ret": { "version": "0.1.15", "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.12" } @@ -13203,6 +14085,7 @@ "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", "dev": true, + "license": "MIT", "engines": { "iojs": ">=1.0.0", "node": ">=0.10.0" @@ -13214,6 +14097,7 @@ "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", "deprecated": "Rimraf versions prior to v4 are no longer supported", "dev": true, + "license": "ISC", "dependencies": { "glob": "^7.1.3" }, @@ -13225,10 +14109,11 @@ } }, "node_modules/rollup": { - "version": "4.53.2", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.53.2.tgz", - "integrity": "sha512-MHngMYwGJVi6Fmnk6ISmnk7JAHRNF0UkuucA0CUW3N3a4KnONPEZz+vUanQP/ZC/iY1Qkf3bwPWzyY84wEks1g==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.59.0.tgz", + "integrity": "sha512-2oMpl67a3zCH9H79LeMcbDhXW/UmWG/y2zuqnF2jQq5uq9TbM9TVyXvA4+t+ne2IIkBdrLpAaRQAvo7YI/Yyeg==", "dev": true, + "license": "MIT", "dependencies": { "@types/estree": "1.0.8" }, @@ -13240,28 +14125,31 @@ "npm": ">=8.0.0" }, "optionalDependencies": { - "@rollup/rollup-android-arm-eabi": "4.53.2", - "@rollup/rollup-android-arm64": "4.53.2", - "@rollup/rollup-darwin-arm64": "4.53.2", - "@rollup/rollup-darwin-x64": "4.53.2", - "@rollup/rollup-freebsd-arm64": "4.53.2", - "@rollup/rollup-freebsd-x64": "4.53.2", - "@rollup/rollup-linux-arm-gnueabihf": "4.53.2", - "@rollup/rollup-linux-arm-musleabihf": "4.53.2", - "@rollup/rollup-linux-arm64-gnu": "4.53.2", - "@rollup/rollup-linux-arm64-musl": "4.53.2", - "@rollup/rollup-linux-loong64-gnu": "4.53.2", - "@rollup/rollup-linux-ppc64-gnu": "4.53.2", - "@rollup/rollup-linux-riscv64-gnu": "4.53.2", - "@rollup/rollup-linux-riscv64-musl": "4.53.2", - "@rollup/rollup-linux-s390x-gnu": "4.53.2", - "@rollup/rollup-linux-x64-gnu": "4.53.2", - "@rollup/rollup-linux-x64-musl": "4.53.2", - "@rollup/rollup-openharmony-arm64": "4.53.2", - "@rollup/rollup-win32-arm64-msvc": "4.53.2", - "@rollup/rollup-win32-ia32-msvc": "4.53.2", - "@rollup/rollup-win32-x64-gnu": "4.53.2", - "@rollup/rollup-win32-x64-msvc": "4.53.2", + "@rollup/rollup-android-arm-eabi": "4.59.0", + "@rollup/rollup-android-arm64": "4.59.0", + "@rollup/rollup-darwin-arm64": "4.59.0", + "@rollup/rollup-darwin-x64": "4.59.0", + "@rollup/rollup-freebsd-arm64": "4.59.0", + "@rollup/rollup-freebsd-x64": "4.59.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.59.0", + "@rollup/rollup-linux-arm-musleabihf": "4.59.0", + "@rollup/rollup-linux-arm64-gnu": "4.59.0", + "@rollup/rollup-linux-arm64-musl": "4.59.0", + "@rollup/rollup-linux-loong64-gnu": "4.59.0", + "@rollup/rollup-linux-loong64-musl": "4.59.0", + "@rollup/rollup-linux-ppc64-gnu": "4.59.0", + "@rollup/rollup-linux-ppc64-musl": "4.59.0", + "@rollup/rollup-linux-riscv64-gnu": "4.59.0", + "@rollup/rollup-linux-riscv64-musl": "4.59.0", + "@rollup/rollup-linux-s390x-gnu": "4.59.0", + "@rollup/rollup-linux-x64-gnu": "4.59.0", + "@rollup/rollup-linux-x64-musl": "4.59.0", + "@rollup/rollup-openbsd-x64": "4.59.0", + "@rollup/rollup-openharmony-arm64": "4.59.0", + "@rollup/rollup-win32-arm64-msvc": "4.59.0", + "@rollup/rollup-win32-ia32-msvc": "4.59.0", + "@rollup/rollup-win32-x64-gnu": "4.59.0", + "@rollup/rollup-win32-x64-msvc": "4.59.0", "fsevents": "~2.3.2" } }, @@ -13284,6 +14172,7 @@ "url": "https://feross.org/support" } ], + "license": "MIT", "dependencies": { "queue-microtask": "^1.2.2" } @@ -13293,6 +14182,7 @@ "resolved": "https://registry.npmjs.org/run-sequence/-/run-sequence-2.2.1.tgz", "integrity": "sha512-qkzZnQWMZjcKbh3CNly2srtrkaO/2H/SI5f2eliMCapdRD3UhMrwjfOAZJAnZ2H8Ju4aBzFZkBGXUqFs9V0yxw==", "dev": true, + "license": "MIT", "dependencies": { "chalk": "^1.1.3", "fancy-log": "^1.3.2", @@ -13307,6 +14197,7 @@ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -13316,6 +14207,7 @@ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -13325,6 +14217,7 @@ "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-1.1.0.tgz", "integrity": "sha512-OQwDZUqYaQwyyhDJHThmzId8daf4/RFNLaeh3AevmSeZ5Y7ug4Ga/yKc6l6kTZOBW781rCj103ZuTh8GAsB3+Q==", "dev": true, + "license": "MIT", "dependencies": { "arr-flatten": "^1.0.1", "array-slice": "^0.2.3" @@ -13338,6 +14231,7 @@ "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-2.1.0.tgz", "integrity": "sha512-t5db90jq+qdgk8aFnxEkjqta0B/GHrM1pxzuuZz2zWsOXc5nKu3t+76s/PQBA8FTcM/ipspIH9jWG4OxCBc2eA==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -13347,6 +14241,7 @@ "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-0.2.3.tgz", "integrity": "sha512-rlVfZW/1Ph2SNySXwR9QYkChp8EkOEiTMO5Vwx60usw04i4nWemkm9RXmQqgkQFaLHsqLuADvjp6IfgL9l2M8Q==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -13356,6 +14251,7 @@ "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^2.2.1", "escape-string-regexp": "^1.0.2", @@ -13372,6 +14268,7 @@ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.8.0" } @@ -13381,6 +14278,7 @@ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-1.1.4.tgz", "integrity": "sha512-L7AGmkO6jhDkEBBGWlLtftA80Xq8DipnrRPr0pyi7GQLXkaq9JYA4xF4z6qnadIC6euiTDKco0cGSU9muw+WTw==", "dev": true, + "license": "MIT", "dependencies": { "kind-of": "^1.1.0" }, @@ -13393,6 +14291,7 @@ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-1.1.0.tgz", "integrity": "sha512-aUH6ElPnMGon2/YkxRIigV32MOpTVcoXQ1Oo8aYn40s+sJ3j+0gFZsT8HKDcxNy7Fi9zuquWtGaGAahOdv5p/g==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -13402,6 +14301,7 @@ "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-0.1.2.tgz", "integrity": "sha512-WzZHcm4+GO34sjFMxQMqZbsz3xiNEgonCskQ9v+IroMmYgk/tas8dG+Hr2D6IbRPybZ12oWpzE/w3cGJ6FJzOw==", "dev": true, + "license": "MIT", "dependencies": { "ansi-cyan": "^0.1.1", "ansi-red": "^0.1.1", @@ -13418,6 +14318,7 @@ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", "dev": true, + "license": "MIT", "dependencies": { "ansi-regex": "^2.0.0" }, @@ -13430,6 +14331,7 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", "integrity": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.8.0" } @@ -13438,23 +14340,15 @@ "version": "4.1.0", "resolved": "https://registry.npmjs.org/rx/-/rx-4.1.0.tgz", "integrity": "sha512-CiaiuN6gapkdl+cZUr67W6I8jquN4lkak3vtIsIWCl4XIPP8ffsoyN6/+PuGXnQy8Cu8W2y9Xxh31Rq4M6wUug==", - "dev": true - }, - "node_modules/rxjs": { - "version": "7.8.2", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.2.tgz", - "integrity": "sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==", "dev": true, - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.1.0" - } + "license": "Apache-2.0" }, "node_modules/sade": { "version": "1.8.1", "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz", "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", "dev": true, + "license": "MIT", "dependencies": { "mri": "^1.1.0" }, @@ -13467,6 +14361,7 @@ "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.3.tgz", "integrity": "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.2", @@ -13485,7 +14380,8 @@ "version": "2.0.5", "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/safe-buffer": { "version": "5.2.1", @@ -13505,13 +14401,15 @@ "type": "consulting", "url": "https://feross.org/support" } - ] + ], + "license": "MIT" }, "node_modules/safe-push-apply": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/safe-push-apply/-/safe-push-apply-1.0.0.tgz", "integrity": "sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==", "dev": true, + "license": "MIT", "dependencies": { "es-errors": "^1.3.0", "isarray": "^2.0.5" @@ -13527,13 +14425,15 @@ "version": "2.0.5", "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/safe-regex": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", "integrity": "sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==", "dev": true, + "license": "MIT", "dependencies": { "ret": "~0.1.10" } @@ -13543,6 +14443,7 @@ "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz", "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==", "dev": true, + "license": "MIT", "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", @@ -13559,15 +14460,15 @@ "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/sass": { - "version": "1.96.0", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.96.0.tgz", - "integrity": "sha512-8u4xqqUeugGNCYwr9ARNtQKTOj4KmYiJAVKXf2CTIivTCR51j96htbMKWDru8H5SaQWpyVgTfOF8Ylyf5pun1Q==", + "version": "1.97.3", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.97.3.tgz", + "integrity": "sha512-fDz1zJpd5GycprAbu4Q2PV/RprsRtKC/0z82z0JLgdytmcq0+ujJbJ/09bPGDxCLkKY3Np5cRAOcWiVkLXJURg==", "dev": true, "license": "MIT", - "optional": true, "dependencies": { "chokidar": "^4.0.0", "immutable": "^5.0.2", @@ -13583,439 +14484,66 @@ "@parcel/watcher": "^2.4.1" } }, - "node_modules/sass-embedded": { - "version": "1.96.0", - "resolved": "https://registry.npmjs.org/sass-embedded/-/sass-embedded-1.96.0.tgz", - "integrity": "sha512-z9PQ7owvdhn7UuZGrpPccdkcH9xJd9iCv+UQhcPqppBslYEp0R9LRQVyyPTZg7jfA77bGxz/I8V48LXJR5LjXQ==", + "node_modules/sass/node_modules/chokidar": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz", + "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==", "dev": true, "license": "MIT", "dependencies": { - "@bufbuild/protobuf": "^2.5.0", - "buffer-builder": "^0.2.0", - "colorjs.io": "^0.5.0", - "immutable": "^5.0.2", - "rxjs": "^7.4.0", - "supports-color": "^8.1.1", - "sync-child-process": "^1.0.2", - "varint": "^6.0.0" - }, - "bin": { - "sass": "dist/bin/sass.js" + "readdirp": "^4.0.1" }, "engines": { - "node": ">=16.0.0" + "node": ">= 14.16.0" }, - "optionalDependencies": { - "sass-embedded-all-unknown": "1.96.0", - "sass-embedded-android-arm": "1.96.0", - "sass-embedded-android-arm64": "1.96.0", - "sass-embedded-android-riscv64": "1.96.0", - "sass-embedded-android-x64": "1.96.0", - "sass-embedded-darwin-arm64": "1.96.0", - "sass-embedded-darwin-x64": "1.96.0", - "sass-embedded-linux-arm": "1.96.0", - "sass-embedded-linux-arm64": "1.96.0", - "sass-embedded-linux-musl-arm": "1.96.0", - "sass-embedded-linux-musl-arm64": "1.96.0", - "sass-embedded-linux-musl-riscv64": "1.96.0", - "sass-embedded-linux-musl-x64": "1.96.0", - "sass-embedded-linux-riscv64": "1.96.0", - "sass-embedded-linux-x64": "1.96.0", - "sass-embedded-unknown-all": "1.96.0", - "sass-embedded-win32-arm64": "1.96.0", - "sass-embedded-win32-x64": "1.96.0" - } - }, - "node_modules/sass-embedded-all-unknown": { - "version": "1.96.0", - "resolved": "https://registry.npmjs.org/sass-embedded-all-unknown/-/sass-embedded-all-unknown-1.96.0.tgz", - "integrity": "sha512-UfUHoWZtxmsDjDfK+fKCy0aJe6zThu7oaIQx0c/vnHgvprcddEPIay01qTXhiUa3cFcsMmvlBvPTVw0gjKVtVQ==", - "cpu": [ - "!arm", - "!arm64", - "!riscv64", - "!x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "dependencies": { - "sass": "1.96.0" + "funding": { + "url": "https://paulmillr.com/funding/" } }, - "node_modules/sass-embedded-android-arm": { - "version": "1.96.0", - "resolved": "https://registry.npmjs.org/sass-embedded-android-arm/-/sass-embedded-android-arm-1.96.0.tgz", - "integrity": "sha512-0mwVRBFig9hH8vFcRExBuBoR+CfUOcWdwarZwbxIFGI1IyH4BLBGiX85vVn6ssSCVNydpE6lFGm45CN8O0tQig==", - "cpu": [ - "arm" - ], + "node_modules/sass/node_modules/immutable": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-5.1.4.tgz", + "integrity": "sha512-p6u1bG3YSnINT5RQmx/yRZBpenIl30kVxkTLDyHLIMk0gict704Q9n+thfDI7lTRm9vXdDYutVzXhzcThxTnXA==", "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=14.0.0" - } + "license": "MIT" }, - "node_modules/sass-embedded-android-arm64": { - "version": "1.96.0", - "resolved": "https://registry.npmjs.org/sass-embedded-android-arm64/-/sass-embedded-android-arm64-1.96.0.tgz", - "integrity": "sha512-TJiebTo4TBF5Wrn+lFkUfSN3wazvl8kkFm9a1nA9ZtRdaE0nsJLGnMM6KLQLP2Vl+IOf6ovetZseISkClRoGXw==", - "cpu": [ - "arm64" - ], + "node_modules/sass/node_modules/readdirp": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz", + "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==", "dev": true, "license": "MIT", - "optional": true, - "os": [ - "android" - ], "engines": { - "node": ">=14.0.0" + "node": ">= 14.18.0" + }, + "funding": { + "type": "individual", + "url": "https://paulmillr.com/funding/" } }, - "node_modules/sass-embedded-android-riscv64": { - "version": "1.96.0", - "resolved": "https://registry.npmjs.org/sass-embedded-android-riscv64/-/sass-embedded-android-riscv64-1.96.0.tgz", - "integrity": "sha512-7AVu/EeJqKN3BGNhm+tc1XzmoqbOtCwHG2VgN6j6Lyqh1JZlx0dglRtyQuKDZ7odTKiWmotEIuYZ6OxLmr2Ejg==", - "cpu": [ - "riscv64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=14.0.0" - } + "node_modules/scheduler": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz", + "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==", + "license": "MIT" }, - "node_modules/sass-embedded-android-x64": { - "version": "1.96.0", - "resolved": "https://registry.npmjs.org/sass-embedded-android-x64/-/sass-embedded-android-x64-1.96.0.tgz", - "integrity": "sha512-ei/UsT0q8rF5JzWhn1A7B0M1y/IiWVY3l4zibQrXk5MGaOXHlCM6ffZD+2j7C613Jm9/KAQ7yX1NIIu72LPgDQ==", - "cpu": [ - "x64" - ], + "node_modules/schema-utils": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz", + "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==", "dev": true, "license": "MIT", - "optional": true, - "os": [ - "android" - ], + "dependencies": { + "@types/json-schema": "^7.0.4", + "ajv": "^6.12.2", + "ajv-keywords": "^3.4.1" + }, "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/sass-embedded-darwin-arm64": { - "version": "1.96.0", - "resolved": "https://registry.npmjs.org/sass-embedded-darwin-arm64/-/sass-embedded-darwin-arm64-1.96.0.tgz", - "integrity": "sha512-OMvN5NWcrrisC24ZR3GyaWJ1uFxw25qLnUkpEso9TSlaMWiomjU82/uQ/AkQvIMl+EMlJqeYLxZWvq/byLH5Xg==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/sass-embedded-darwin-x64": { - "version": "1.96.0", - "resolved": "https://registry.npmjs.org/sass-embedded-darwin-x64/-/sass-embedded-darwin-x64-1.96.0.tgz", - "integrity": "sha512-J/R5sv0eW+/DU98rccHPO1f3lsTFjVTpdkU9d3P1yB7BFmQjw5PYde9BVRlXeOawPwfgT3p/hvY4RELScICdww==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/sass-embedded-linux-arm": { - "version": "1.96.0", - "resolved": "https://registry.npmjs.org/sass-embedded-linux-arm/-/sass-embedded-linux-arm-1.96.0.tgz", - "integrity": "sha512-XuQvV6gNld5Bz3rX0SFLtKPGMu4UQdXNp//9A+bDmtVGZ6yu8REIqphQBxOMpgkAKsA4JZLKKk1N97woeVsIlA==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/sass-embedded-linux-arm64": { - "version": "1.96.0", - "resolved": "https://registry.npmjs.org/sass-embedded-linux-arm64/-/sass-embedded-linux-arm64-1.96.0.tgz", - "integrity": "sha512-VcbVjK0/O/mru0h0FC1WSUWIzMqRrzuJ8eZNMXTs4vApfkh28pxNaUodwU81f1L1nngJ3vpFDBniUKpW6NwJhw==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/sass-embedded-linux-musl-arm": { - "version": "1.96.0", - "resolved": "https://registry.npmjs.org/sass-embedded-linux-musl-arm/-/sass-embedded-linux-musl-arm-1.96.0.tgz", - "integrity": "sha512-qK7FrnczCVECZXtyYOoI3azFlMDZn70GI1yJPPuZLpWvwIPYoZOLv3u6JSec5o3wT6KeKyWG3ZpGIpigLUjPig==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/sass-embedded-linux-musl-arm64": { - "version": "1.96.0", - "resolved": "https://registry.npmjs.org/sass-embedded-linux-musl-arm64/-/sass-embedded-linux-musl-arm64-1.96.0.tgz", - "integrity": "sha512-lVyLObEeu8Wgw8riC6dSMlkF7jVNAjdZ1jIBhvX1yDsrQwwaI60pM21YXmnZSFyCE6KVFkKAgwRQNO/IkoCwMA==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/sass-embedded-linux-musl-riscv64": { - "version": "1.96.0", - "resolved": "https://registry.npmjs.org/sass-embedded-linux-musl-riscv64/-/sass-embedded-linux-musl-riscv64-1.96.0.tgz", - "integrity": "sha512-Y+DuGVRsM2zGl268QN5aF/Y6OFYTILb3f+6huEXKlGL6FK2MXadsmeoVbmKVrTamQHzyA2bWWMU1C0jhVFtlzg==", - "cpu": [ - "riscv64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/sass-embedded-linux-musl-x64": { - "version": "1.96.0", - "resolved": "https://registry.npmjs.org/sass-embedded-linux-musl-x64/-/sass-embedded-linux-musl-x64-1.96.0.tgz", - "integrity": "sha512-sAQtUQ8fFNxnxSf3fncOh892Hfxa4PW4e5qrnSE0Y1IGV/wsTzk7m5Z6IeT7sa3BsvXh5TFN6+JGbUoOJ5RigA==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/sass-embedded-linux-riscv64": { - "version": "1.96.0", - "resolved": "https://registry.npmjs.org/sass-embedded-linux-riscv64/-/sass-embedded-linux-riscv64-1.96.0.tgz", - "integrity": "sha512-Bf6bAjuUm6sfGHo0XoZEstjVkEWwmmtOSomGoPuAwXFS9GQnFcqDz9EXKNkZEOsQi2D+aDeDxs8HcU9/OLMT9g==", - "cpu": [ - "riscv64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/sass-embedded-linux-x64": { - "version": "1.96.0", - "resolved": "https://registry.npmjs.org/sass-embedded-linux-x64/-/sass-embedded-linux-x64-1.96.0.tgz", - "integrity": "sha512-U4GROkS0XM6ekqs/ubroWwFAGY9N35wqrt5q6Y+MJCpTK5bHPHlgFo7J75ZUSaEObL+UrDqvMDQkCdYEFiiQbg==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/sass-embedded-unknown-all": { - "version": "1.96.0", - "resolved": "https://registry.npmjs.org/sass-embedded-unknown-all/-/sass-embedded-unknown-all-1.96.0.tgz", - "integrity": "sha512-OHzGEr2VElK2SaQdkkTX0O0KwTbiv1N/EhnHgzXYaZWOTvv0gxEfR7q7x/oScCBIZc2x8dSfvThfBnohIClo/w==", - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "!android", - "!darwin", - "!linux", - "!win32" - ], - "dependencies": { - "sass": "1.96.0" - } - }, - "node_modules/sass-embedded-win32-arm64": { - "version": "1.96.0", - "resolved": "https://registry.npmjs.org/sass-embedded-win32-arm64/-/sass-embedded-win32-arm64-1.96.0.tgz", - "integrity": "sha512-KKz1h5pr45fwrKcxrxHsujo3f/HgVkX64YNJ9PRPuOuX7lU8g18IEgDxoTGQ64PPBQ5RXOt6jxpT+x2OLPVnCw==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/sass-embedded-win32-x64": { - "version": "1.96.0", - "resolved": "https://registry.npmjs.org/sass-embedded-win32-x64/-/sass-embedded-win32-x64-1.96.0.tgz", - "integrity": "sha512-MDreKaWcgiyKD5YPShaRvUBoe5dC2y8IPJK49G7iQjoMfw9INDCBkDdLcz00Mn0eJq4nJJp5UEE98M6ljIrBRg==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/sass-embedded/node_modules/immutable": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/immutable/-/immutable-5.1.4.tgz", - "integrity": "sha512-p6u1bG3YSnINT5RQmx/yRZBpenIl30kVxkTLDyHLIMk0gict704Q9n+thfDI7lTRm9vXdDYutVzXhzcThxTnXA==", - "dev": true, - "license": "MIT" - }, - "node_modules/sass-embedded/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "node_modules/sass/node_modules/chokidar": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz", - "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==", - "dev": true, - "license": "MIT", - "optional": true, - "dependencies": { - "readdirp": "^4.0.1" - }, - "engines": { - "node": ">= 14.16.0" - }, - "funding": { - "url": "https://paulmillr.com/funding/" - } - }, - "node_modules/sass/node_modules/immutable": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/immutable/-/immutable-5.1.4.tgz", - "integrity": "sha512-p6u1bG3YSnINT5RQmx/yRZBpenIl30kVxkTLDyHLIMk0gict704Q9n+thfDI7lTRm9vXdDYutVzXhzcThxTnXA==", - "dev": true, - "license": "MIT", - "optional": true - }, - "node_modules/sass/node_modules/readdirp": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz", - "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==", - "dev": true, - "license": "MIT", - "optional": true, - "engines": { - "node": ">= 14.18.0" - }, - "funding": { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - }, - "node_modules/scheduler": { - "version": "0.27.0", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz", - "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==" - }, - "node_modules/schema-utils": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz", - "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==", - "dev": true, - "dependencies": { - "@types/json-schema": "^7.0.4", - "ajv": "^6.12.2", - "ajv-keywords": "^3.4.1" - }, - "engines": { - "node": ">= 8.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, "node_modules/semver": { @@ -14023,6 +14551,7 @@ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver.js" } @@ -14032,6 +14561,7 @@ "resolved": "https://registry.npmjs.org/semver-greatest-satisfied-range/-/semver-greatest-satisfied-range-1.1.0.tgz", "integrity": "sha512-Ny/iyOzSSa8M5ML46IAx3iXc6tfOsYU2R4AXi2UpHk60Zrgyq6eqPj/xiOfS0rRl/iiQ/rdJkVjw/5cdUyCntQ==", "dev": true, + "license": "MIT", "dependencies": { "sver-compat": "^1.5.0" }, @@ -14040,10 +14570,11 @@ } }, "node_modules/send": { - "version": "0.19.1", - "resolved": "https://registry.npmjs.org/send/-/send-0.19.1.tgz", - "integrity": "sha512-p4rRk4f23ynFEfcD9LA0xRYngj+IyGiEYyqqOak8kaN0TvNmuxC2dcVeBn62GpCeR2CpWqyHCNScTP91QbAVFg==", + "version": "0.19.2", + "resolved": "https://registry.npmjs.org/send/-/send-0.19.2.tgz", + "integrity": "sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg==", "dev": true, + "license": "MIT", "dependencies": { "debug": "2.6.9", "depd": "2.0.0", @@ -14051,13 +14582,13 @@ "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", + "fresh": "~0.5.2", + "http-errors": "~2.0.1", "mime": "1.6.0", "ms": "2.1.3", - "on-finished": "2.4.1", + "on-finished": "~2.4.1", "range-parser": "~1.2.1", - "statuses": "2.0.1" + "statuses": "~2.0.2" }, "engines": { "node": ">= 0.8.0" @@ -14068,6 +14599,7 @@ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, + "license": "MIT", "dependencies": { "ms": "2.0.0" } @@ -14076,13 +14608,15 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/send/node_modules/encodeurl": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.8" } @@ -14092,6 +14626,7 @@ "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", "dev": true, + "license": "MIT", "dependencies": { "ee-first": "1.1.1" }, @@ -14100,10 +14635,11 @@ } }, "node_modules/send/node_modules/statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz", + "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.8" } @@ -14113,26 +14649,32 @@ "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "randombytes": "^2.1.0" } }, "node_modules/serve-index": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", - "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", + "version": "1.9.2", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.2.tgz", + "integrity": "sha512-KDj11HScOaLmrPxl70KYNW1PksP4Nb/CLL2yvC+Qd2kHMPEEpfc4Re2e4FOay+bC/+XQl/7zAcWON3JVo5v3KQ==", "dev": true, + "license": "MIT", "dependencies": { - "accepts": "~1.3.4", + "accepts": "~1.3.8", "batch": "0.6.1", "debug": "2.6.9", "escape-html": "~1.0.3", - "http-errors": "~1.6.2", - "mime-types": "~2.1.17", - "parseurl": "~1.3.2" + "http-errors": "~1.8.0", + "mime-types": "~2.1.35", + "parseurl": "~1.3.3" }, "engines": { "node": ">= 0.8.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" } }, "node_modules/serve-index/node_modules/debug": { @@ -14140,6 +14682,7 @@ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, + "license": "MIT", "dependencies": { "ms": "2.0.0" } @@ -14149,141 +14692,67 @@ "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/serve-index/node_modules/http-errors": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", - "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz", + "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", "dev": true, + "license": "MIT", "dependencies": { "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.0", - "statuses": ">= 1.4.0 < 2" + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.1" }, "engines": { "node": ">= 0.6" } }, - "node_modules/serve-index/node_modules/inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", - "dev": true - }, "node_modules/serve-index/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/serve-index/node_modules/setprototypeof": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/serve-index/node_modules/statuses": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/serve-static": { - "version": "1.16.2", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", - "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", - "dev": true, - "dependencies": { - "encodeurl": "~2.0.0", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.19.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/serve-static/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/serve-static/node_modules/debug/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/serve-static/node_modules/encodeurl": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", - "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/serve-static/node_modules/on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "dev": true, - "dependencies": { - "ee-first": "1.1.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/serve-static/node_modules/send": { - "version": "0.19.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", - "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", - "dev": true, - "dependencies": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" - }, + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "dev": true, + "license": "MIT", "engines": { - "node": ">= 0.8.0" + "node": ">= 0.6" } }, - "node_modules/serve-static/node_modules/send/node_modules/encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "node_modules/serve-static": { + "version": "1.16.3", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.3.tgz", + "integrity": "sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA==", "dev": true, + "license": "MIT", + "dependencies": { + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "~0.19.1" + }, "engines": { - "node": ">= 0.8" + "node": ">= 0.8.0" } }, - "node_modules/serve-static/node_modules/statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "node_modules/serve-static/node_modules/encodeurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.8" } @@ -14292,19 +14761,22 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/server-destroy/-/server-destroy-1.0.1.tgz", "integrity": "sha512-rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/set-blocking": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/set-function-length": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", "dev": true, + "license": "MIT", "dependencies": { "define-data-property": "^1.1.4", "es-errors": "^1.3.0", @@ -14322,6 +14794,7 @@ "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", "dev": true, + "license": "MIT", "dependencies": { "define-data-property": "^1.1.4", "es-errors": "^1.3.0", @@ -14337,6 +14810,7 @@ "resolved": "https://registry.npmjs.org/set-proto/-/set-proto-1.0.0.tgz", "integrity": "sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==", "dev": true, + "license": "MIT", "dependencies": { "dunder-proto": "^1.0.1", "es-errors": "^1.3.0", @@ -14351,6 +14825,7 @@ "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", "dev": true, + "license": "MIT", "dependencies": { "extend-shallow": "^2.0.1", "is-extendable": "^0.1.1", @@ -14366,6 +14841,7 @@ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "dev": true, + "license": "MIT", "dependencies": { "is-extendable": "^0.1.0" }, @@ -14378,6 +14854,7 @@ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -14387,6 +14864,7 @@ "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "dev": true, + "license": "MIT", "dependencies": { "isobject": "^3.0.1" }, @@ -14397,19 +14875,22 @@ "node_modules/setimmediate": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==" + "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", + "license": "MIT" }, "node_modules/setprototypeof": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/shebang-command": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, + "license": "MIT", "dependencies": { "shebang-regex": "^3.0.0" }, @@ -14422,6 +14903,7 @@ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -14431,6 +14913,7 @@ "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.3.tgz", "integrity": "sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -14459,6 +14942,7 @@ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", "dev": true, + "license": "MIT", "dependencies": { "es-errors": "^1.3.0", "object-inspect": "^1.13.3", @@ -14478,6 +14962,7 @@ "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", "dev": true, + "license": "MIT", "dependencies": { "es-errors": "^1.3.0", "object-inspect": "^1.13.3" @@ -14494,6 +14979,7 @@ "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", "dev": true, + "license": "MIT", "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", @@ -14512,6 +14998,7 @@ "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", "dev": true, + "license": "MIT", "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", @@ -14530,13 +15017,15 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/siginfo/-/siginfo-2.0.0.tgz", "integrity": "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/sirv": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/sirv/-/sirv-3.0.2.tgz", "integrity": "sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g==", "dev": true, + "license": "MIT", "dependencies": { "@polka/url": "^1.0.0-next.24", "mrmime": "^2.0.0", @@ -14550,13 +15039,15 @@ "version": "1.0.5", "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/slash": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -14566,6 +15057,7 @@ "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", "dev": true, + "license": "MIT", "dependencies": { "base": "^0.11.1", "debug": "^2.2.0", @@ -14585,6 +15077,7 @@ "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", "dev": true, + "license": "MIT", "dependencies": { "define-property": "^1.0.0", "isobject": "^3.0.0", @@ -14599,6 +15092,7 @@ "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", "dev": true, + "license": "MIT", "dependencies": { "is-descriptor": "^1.0.0" }, @@ -14611,6 +15105,7 @@ "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", "dev": true, + "license": "MIT", "dependencies": { "kind-of": "^3.2.0" }, @@ -14622,13 +15117,15 @@ "version": "1.1.6", "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/snapdragon-util/node_modules/kind-of": { "version": "3.2.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", "dev": true, + "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -14641,6 +15138,7 @@ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, + "license": "MIT", "dependencies": { "ms": "2.0.0" } @@ -14650,6 +15148,7 @@ "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", "dev": true, + "license": "MIT", "dependencies": { "is-descriptor": "^0.1.0" }, @@ -14662,6 +15161,7 @@ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "dev": true, + "license": "MIT", "dependencies": { "is-extendable": "^0.1.0" }, @@ -14674,6 +15174,7 @@ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", "dev": true, + "license": "MIT", "dependencies": { "is-accessor-descriptor": "^1.0.1", "is-data-descriptor": "^1.0.1" @@ -14687,6 +15188,7 @@ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -14695,27 +15197,30 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/snapdragon/node_modules/source-map": { "version": "0.5.7", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", "dev": true, + "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/socket.io": { - "version": "4.8.1", - "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.8.1.tgz", - "integrity": "sha512-oZ7iUCxph8WYRHHcjBEc9unw3adt5CmSNlppj/5Q4k2RIrhl8Z5yY2Xr4j9zj0+wzVZ0bxmYoGSzKJnRl6A4yg==", + "version": "4.8.3", + "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.8.3.tgz", + "integrity": "sha512-2Dd78bqzzjE6KPkD5fHZmDAKRNe3J15q+YHDrIsy9WEkqttc7GY+kT9OBLSMaPbQaEd0x1BjcmtMtXkfpc+T5A==", "dev": true, + "license": "MIT", "dependencies": { "accepts": "~1.3.4", "base64id": "~2.0.0", "cors": "~2.8.5", - "debug": "~4.3.2", + "debug": "~4.4.1", "engine.io": "~6.6.0", "socket.io-adapter": "~2.5.2", "socket.io-parser": "~4.2.4" @@ -14725,37 +15230,22 @@ } }, "node_modules/socket.io-adapter": { - "version": "2.5.5", - "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.5.5.tgz", - "integrity": "sha512-eLDQas5dzPgOWCk9GuuJC2lBqItuhKI4uxGgo9aIV7MYbk2h9Q6uULEh8WBzThoI7l+qU9Ast9fVUmkqPP9wYg==", - "dev": true, - "dependencies": { - "debug": "~4.3.4", - "ws": "~8.17.1" - } - }, - "node_modules/socket.io-adapter/node_modules/debug": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", - "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.5.6.tgz", + "integrity": "sha512-DkkO/dz7MGln0dHn5bmN3pPy+JmywNICWrJqVWiVOyvXjWQFIv9c2h24JrQLLFJ2aQVQf/Cvl1vblnd4r2apLQ==", "dev": true, + "license": "MIT", "dependencies": { - "ms": "^2.1.3" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } + "debug": "~4.4.1", + "ws": "~8.18.3" } }, "node_modules/socket.io-adapter/node_modules/ws": { - "version": "8.17.1", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz", - "integrity": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==", + "version": "8.18.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz", + "integrity": "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==", "dev": true, + "license": "MIT", "engines": { "node": ">=10.0.0" }, @@ -14773,13 +15263,14 @@ } }, "node_modules/socket.io-client": { - "version": "4.8.1", - "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.8.1.tgz", - "integrity": "sha512-hJVXfu3E28NmzGk8o1sHhN3om52tRvwYeidbj7xKy2eIIse5IoKX3USlS6Tqt3BHAtflLIkCQBkzVrEEfWUyYQ==", + "version": "4.8.3", + "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.8.3.tgz", + "integrity": "sha512-uP0bpjWrjQmUt5DTHq9RuoCBdFJF10cdX9X+a368j/Ft0wmaVgxlrjvK3kjvgCODOMMOz9lcaRzxmso0bTWZ/g==", "dev": true, + "license": "MIT", "dependencies": { "@socket.io/component-emitter": "~3.1.0", - "debug": "~4.3.2", + "debug": "~4.4.1", "engine.io-client": "~6.6.1", "socket.io-parser": "~4.2.4" }, @@ -14787,74 +15278,25 @@ "node": ">=10.0.0" } }, - "node_modules/socket.io-client/node_modules/debug": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", - "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.3" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, "node_modules/socket.io-parser": { - "version": "4.2.4", - "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.2.4.tgz", - "integrity": "sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew==", + "version": "4.2.5", + "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.2.5.tgz", + "integrity": "sha512-bPMmpy/5WWKHea5Y/jYAP6k74A+hvmRCQaJuJB6I/ML5JZq/KfNieUVo/3Mh7SAqn7TyFdIo6wqYHInG1MU1bQ==", "dev": true, + "license": "MIT", "dependencies": { "@socket.io/component-emitter": "~3.1.0", - "debug": "~4.3.1" + "debug": "~4.4.1" }, "engines": { "node": ">=10.0.0" } }, - "node_modules/socket.io-parser/node_modules/debug": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", - "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.3" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/socket.io/node_modules/debug": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", - "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.3" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, "node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } @@ -14864,6 +15306,7 @@ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", "dev": true, + "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } @@ -14874,6 +15317,7 @@ "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", "deprecated": "See https://github.com/lydell/source-map-resolve#deprecated", "dev": true, + "license": "MIT", "dependencies": { "atob": "^2.1.2", "decode-uri-component": "^0.2.0", @@ -14887,6 +15331,7 @@ "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", "dev": true, + "license": "MIT", "dependencies": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" @@ -14897,7 +15342,8 @@ "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", "deprecated": "See https://github.com/lydell/source-map-url#deprecated", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/space-separated-tokens": { "version": "2.0.2", @@ -14914,6 +15360,7 @@ "resolved": "https://registry.npmjs.org/sparkles/-/sparkles-1.0.1.tgz", "integrity": "sha512-dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.10" } @@ -14923,6 +15370,7 @@ "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", "dev": true, + "license": "Apache-2.0", "dependencies": { "spdx-expression-parse": "^3.0.0", "spdx-license-ids": "^3.0.0" @@ -14932,29 +15380,33 @@ "version": "2.5.0", "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==", - "dev": true + "dev": true, + "license": "CC-BY-3.0" }, "node_modules/spdx-expression-parse": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", "dev": true, + "license": "MIT", "dependencies": { "spdx-exceptions": "^2.1.0", "spdx-license-ids": "^3.0.0" } }, "node_modules/spdx-license-ids": { - "version": "3.0.22", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.22.tgz", - "integrity": "sha512-4PRT4nh1EImPbt2jASOKHX7PB7I+e4IWNLvkKFDxNhJlfjbYlleYQh285Z/3mPTHSAK/AvdMmw5BNNuYH8ShgQ==", - "dev": true + "version": "3.0.23", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.23.tgz", + "integrity": "sha512-CWLcCCH7VLu13TgOH+r8p1O/Znwhqv/dbb6lqWy67G+pT1kHmeD/+V36AVb/vq8QMIQwVShJ6Ssl5FPh0fuSdw==", + "dev": true, + "license": "CC0-1.0" }, "node_modules/split": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/split/-/split-1.0.1.tgz", "integrity": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==", "dev": true, + "license": "MIT", "dependencies": { "through": "2" }, @@ -14967,6 +15419,7 @@ "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", "dev": true, + "license": "MIT", "dependencies": { "extend-shallow": "^3.0.0" }, @@ -14979,6 +15432,7 @@ "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", "integrity": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==", "dev": true, + "license": "MIT", "engines": { "node": "*" } @@ -14988,6 +15442,7 @@ "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", "dev": true, + "license": "MIT", "dependencies": { "escape-string-regexp": "^2.0.0" }, @@ -15000,6 +15455,7 @@ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -15008,13 +15464,15 @@ "version": "0.0.2", "resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz", "integrity": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/static-extend": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", "integrity": "sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==", "dev": true, + "license": "MIT", "dependencies": { "define-property": "^0.2.5", "object-copy": "^0.1.0" @@ -15028,6 +15486,7 @@ "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", "dev": true, + "license": "MIT", "dependencies": { "is-descriptor": "^0.1.0" }, @@ -15040,6 +15499,7 @@ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", "dev": true, + "license": "MIT", "dependencies": { "is-accessor-descriptor": "^1.0.1", "is-data-descriptor": "^1.0.1" @@ -15053,6 +15513,7 @@ "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz", "integrity": "sha512-wuTCPGlJONk/a1kqZ4fQM2+908lC7fa7nPYpTC1EhnvqLX/IICbeP1OZGDtA374trpSq68YubKUMo8oRhN46yg==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.6" } @@ -15061,13 +15522,15 @@ "version": "3.10.0", "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.10.0.tgz", "integrity": "sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/stop-iteration-iterator": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz", "integrity": "sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==", "dev": true, + "license": "MIT", "dependencies": { "es-errors": "^1.3.0", "internal-slot": "^1.1.0" @@ -15081,6 +15544,7 @@ "resolved": "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.2.2.tgz", "integrity": "sha512-6yHMqgLYDzQDcAkL+tjJDC5nSNuNIx0vZtRZeiPh7Saef7VHX9H5Ijn9l2VIol2zaNYlYEX6KyuT/237A58qEQ==", "dev": true, + "license": "MIT", "dependencies": { "duplexer": "~0.1.1", "through": "~2.3.4" @@ -15090,19 +15554,22 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/stream-exhaust/-/stream-exhaust-1.0.2.tgz", "integrity": "sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/stream-shift": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.3.tgz", "integrity": "sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/stream-throttle": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/stream-throttle/-/stream-throttle-0.1.3.tgz", "integrity": "sha512-889+B9vN9dq7/vLbGyuHeZ6/ctf5sNuGWsDy89uNxkFTAgzy0eK7+w5fL3KLNRTkLle7EgZGvHUphZW0Q26MnQ==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "commander": "^2.2.0", "limiter": "^1.0.5" @@ -15118,6 +15585,7 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "license": "MIT", "dependencies": { "safe-buffer": "~5.1.0" } @@ -15125,13 +15593,15 @@ "node_modules/string_decoder/node_modules/safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "license": "MIT" }, "node_modules/string-width": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, + "license": "MIT", "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", @@ -15146,6 +15616,7 @@ "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.12.tgz", "integrity": "sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", @@ -15173,6 +15644,7 @@ "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz", "integrity": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==", "dev": true, + "license": "MIT", "dependencies": { "define-properties": "^1.1.3", "es-abstract": "^1.17.5" @@ -15183,6 +15655,7 @@ "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz", "integrity": "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.2", @@ -15204,6 +15677,7 @@ "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz", "integrity": "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.2", @@ -15222,6 +15696,7 @@ "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", @@ -15253,6 +15728,7 @@ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, + "license": "MIT", "dependencies": { "ansi-regex": "^5.0.1" }, @@ -15265,6 +15741,7 @@ "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", "integrity": "sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==", "dev": true, + "license": "MIT", "dependencies": { "is-utf8": "^0.2.0" }, @@ -15277,6 +15754,7 @@ "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" }, @@ -15289,6 +15767,7 @@ "resolved": "https://registry.npmjs.org/strip-literal/-/strip-literal-3.1.0.tgz", "integrity": "sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg==", "dev": true, + "license": "MIT", "dependencies": { "js-tokens": "^9.0.1" }, @@ -15300,13 +15779,15 @@ "version": "9.0.1", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-9.0.1.tgz", "integrity": "sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -15319,6 +15800,7 @@ "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -15331,48 +15813,28 @@ "resolved": "https://registry.npmjs.org/sver-compat/-/sver-compat-1.5.0.tgz", "integrity": "sha512-aFTHfmjwizMNlNE6dsGmoAM4lHjL0CyiobWaFiXWSlD7cIxshW422Nb8KbXCmR6z+0ZEPY+daXJrDyh/vuwTyg==", "dev": true, + "license": "MIT", "dependencies": { "es6-iterator": "^2.0.1", "es6-symbol": "^3.1.1" } }, - "node_modules/sync-child-process": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/sync-child-process/-/sync-child-process-1.0.2.tgz", - "integrity": "sha512-8lD+t2KrrScJ/7KXCSyfhT3/hRq78rC0wBFqNJXv3mZyn6hW2ypM05JmlSvtqRbeq6jqA94oHbxAr2vYsJ8vDA==", - "dev": true, - "license": "MIT", - "dependencies": { - "sync-message-port": "^1.0.0" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/sync-message-port": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/sync-message-port/-/sync-message-port-1.1.3.tgz", - "integrity": "sha512-GTt8rSKje5FilG+wEdfCkOcLL7LWqpMlr2c3LRuKt/YXxcJ52aGSbGBAdI4L3aaqfrBt6y711El53ItyH1NWzg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=16.0.0" - } - }, "node_modules/tapable": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/terser": { - "version": "5.44.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.44.1.tgz", - "integrity": "sha512-t/R3R/n0MSwnnazuPpPNVO60LX0SKL45pyl9YlvxIdkH0Of7D5qM2EVe+yASRIlY5pZ73nclYJfNANGWPwFDZw==", + "version": "5.46.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.46.0.tgz", + "integrity": "sha512-jTwoImyr/QbOWFFso3YoU3ik0jBBDJ6JTOQiy/J2YxVJdZCc+5u7skhNwiOR3FQIygFqVUPHl7qbbxtjW2K3Qg==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "@jridgewell/source-map": "^0.3.3", "acorn": "^8.15.0", @@ -15387,10 +15849,11 @@ } }, "node_modules/terser-webpack-plugin": { - "version": "5.3.14", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.14.tgz", - "integrity": "sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==", + "version": "5.3.16", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.16.tgz", + "integrity": "sha512-h9oBFCWrq78NyWWVcSwZarJkZ01c2AyGrzs1crmHZO3QUg9D61Wu4NPjBy69n7JqylFF5y+CsUZYmYEIZ3mR+Q==", "dev": true, + "license": "MIT", "dependencies": { "@jridgewell/trace-mapping": "^0.3.25", "jest-worker": "^27.4.5", @@ -15421,10 +15884,11 @@ } }, "node_modules/terser-webpack-plugin/node_modules/ajv": { - "version": "8.17.1", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", - "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.18.0.tgz", + "integrity": "sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==", "dev": true, + "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.3", "fast-uri": "^3.0.1", @@ -15441,6 +15905,7 @@ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", "dev": true, + "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.3" }, @@ -15452,13 +15917,15 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/terser-webpack-plugin/node_modules/schema-utils": { "version": "4.3.3", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.3.tgz", "integrity": "sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA==", "dev": true, + "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.9", "ajv": "^8.9.0", @@ -15477,13 +15944,15 @@ "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/textextensions": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/textextensions/-/textextensions-3.3.0.tgz", "integrity": "sha512-mk82dS8eRABNbeVJrEiN5/UMSCliINAuz8mkUwH4SwslkNP//gbEzlWNS5au0z5Dpx40SQxzqZevZkn+WYJ9Dw==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" }, @@ -15495,13 +15964,15 @@ "version": "2.3.8", "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/through2": { "version": "0.6.5", "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", "integrity": "sha512-RkK/CCESdTKQZHdmKICijdKKsCRVHs5KsLZ6pACAmF/1GPUQhonHSXWNERctxEp7RmvjdNbZTL5z9V7nSCXKcg==", "dev": true, + "license": "MIT", "dependencies": { "readable-stream": ">=1.0.33-1 <1.1.0-0", "xtend": ">=4.0.0 <4.1.0-0" @@ -15512,6 +15983,7 @@ "resolved": "https://registry.npmjs.org/through2-filter/-/through2-filter-3.0.0.tgz", "integrity": "sha512-jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA==", "dev": true, + "license": "MIT", "dependencies": { "through2": "~2.0.0", "xtend": "~4.0.0" @@ -15522,6 +15994,7 @@ "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", "dev": true, + "license": "MIT", "dependencies": { "readable-stream": "~2.3.6", "xtend": "~4.0.1" @@ -15532,6 +16005,7 @@ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", "integrity": "sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg==", "dev": true, + "license": "MIT", "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.1", @@ -15543,13 +16017,15 @@ "version": "0.10.31", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/time-stamp": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz", "integrity": "sha512-gLCeArryy2yNTRzTGKbZbloctj64jkZ57hj5zdraXue6aFgd6PmvVtEyiUU+hvU0v7q08oVv8r8ev0tRo6bvgw==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -15557,30 +16033,35 @@ "node_modules/tiny-invariant": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz", - "integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==" + "integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==", + "license": "MIT" }, "node_modules/tiny-warning": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz", - "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" + "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==", + "license": "MIT" }, "node_modules/tinybench": { "version": "2.9.0", "resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.9.0.tgz", "integrity": "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/tinyexec": { "version": "0.3.2", "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.2.tgz", "integrity": "sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/tinyglobby": { "version": "0.2.15", "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz", "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", "dev": true, + "license": "MIT", "dependencies": { "fdir": "^6.5.0", "picomatch": "^4.0.3" @@ -15592,11 +16073,43 @@ "url": "https://github.com/sponsors/SuperchupuDev" } }, + "node_modules/tinyglobby/node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/tinyglobby/node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, "node_modules/tinypool": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/tinypool/-/tinypool-1.1.1.tgz", "integrity": "sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==", "dev": true, + "license": "MIT", "engines": { "node": "^18.0.0 || >=20.0.0" } @@ -15606,6 +16119,7 @@ "resolved": "https://registry.npmjs.org/tinyrainbow/-/tinyrainbow-2.0.0.tgz", "integrity": "sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==", "dev": true, + "license": "MIT", "engines": { "node": ">=14.0.0" } @@ -15615,6 +16129,7 @@ "resolved": "https://registry.npmjs.org/tinyspy/-/tinyspy-4.0.4.tgz", "integrity": "sha512-azl+t0z7pw/z958Gy9svOTuzqIk6xq+NSheJzn5MMWtWTFywIacg2wUlzKFGtt3cthx0r2SxMK0yzJOR0IES7Q==", "dev": true, + "license": "MIT", "engines": { "node": ">=14.0.0" } @@ -15624,6 +16139,7 @@ "resolved": "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz", "integrity": "sha512-rtwLUQEwT8ZeKQbyFJyomBRYXyE16U5VKuy0ftxLMK/PZb2fkOsg5r9kHdauuVDbsNdIBoC/HCthpidamQFXYA==", "dev": true, + "license": "MIT", "dependencies": { "is-absolute": "^1.0.0", "is-negated-glob": "^1.0.0" @@ -15637,6 +16153,7 @@ "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", "dev": true, + "license": "MIT", "dependencies": { "kind-of": "^3.0.2" }, @@ -15648,13 +16165,15 @@ "version": "1.1.6", "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/to-object-path/node_modules/kind-of": { "version": "3.2.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", "dev": true, + "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -15667,6 +16186,7 @@ "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", "dev": true, + "license": "MIT", "dependencies": { "define-property": "^2.0.2", "extend-shallow": "^3.0.2", @@ -15682,6 +16202,7 @@ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dev": true, + "license": "MIT", "dependencies": { "is-number": "^7.0.0" }, @@ -15694,6 +16215,7 @@ "resolved": "https://registry.npmjs.org/to-through/-/to-through-2.0.0.tgz", "integrity": "sha512-+QIz37Ly7acM4EMdw2PRN389OneM5+d844tirkGp4dPKzI5OE72V9OsbFp+CIYJDahZ41ZV05hNtcPAQUAm9/Q==", "dev": true, + "license": "MIT", "dependencies": { "through2": "^2.0.3" }, @@ -15706,6 +16228,7 @@ "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", "dev": true, + "license": "MIT", "dependencies": { "readable-stream": "~2.3.6", "xtend": "~4.0.1" @@ -15716,6 +16239,7 @@ "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.6" } @@ -15725,6 +16249,7 @@ "resolved": "https://registry.npmjs.org/totalist/-/totalist-3.0.1.tgz", "integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } @@ -15744,6 +16269,7 @@ "resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz", "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==", "dev": true, + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -15754,6 +16280,7 @@ "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-9.5.4.tgz", "integrity": "sha512-nCz0rEwunlTZiy6rXFByQU1kVVpCIgUpc/psFiKVrUwrizdnIbRFu8w7bxhUF0X613DYwT4XzrZHpVyMe758hQ==", "dev": true, + "license": "MIT", "dependencies": { "chalk": "^4.1.0", "enhanced-resolve": "^5.0.0", @@ -15770,10 +16297,11 @@ } }, "node_modules/ts-loader/node_modules/semver": { - "version": "7.7.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", - "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "version": "7.7.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz", + "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver.js" }, @@ -15786,6 +16314,7 @@ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.6.tgz", "integrity": "sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==", "dev": true, + "license": "BSD-3-Clause", "engines": { "node": ">= 12" } @@ -15795,6 +16324,7 @@ "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz", "integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==", "dev": true, + "license": "MIT", "dependencies": { "@cspotcode/source-map-support": "^0.8.0", "@tsconfig/node10": "^1.0.7", @@ -15833,36 +16363,18 @@ } } }, - "node_modules/tsconfck": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/tsconfck/-/tsconfck-3.1.6.tgz", - "integrity": "sha512-ks6Vjr/jEw0P1gmOVwutM3B7fWxoWBL2KRDb1JfqGVawBmO5UsvmWOQFGHBPl5yxYz4eERr19E6L7NMv+Fej4w==", - "dev": true, - "bin": { - "tsconfck": "bin/tsconfck.js" - }, - "engines": { - "node": "^18 || >=20" - }, - "peerDependencies": { - "typescript": "^5.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, "node_modules/tslib": { "version": "2.8.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", - "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==" + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" }, "node_modules/tsutils": { "version": "3.21.0", "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", "dev": true, + "license": "MIT", "dependencies": { "tslib": "^1.8.1" }, @@ -15877,19 +16389,22 @@ "version": "1.14.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true + "dev": true, + "license": "0BSD" }, "node_modules/type": { "version": "2.7.3", "resolved": "https://registry.npmjs.org/type/-/type-2.7.3.tgz", "integrity": "sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/type-check": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", "dev": true, + "license": "MIT", "dependencies": { "prelude-ls": "^1.2.1" }, @@ -15902,6 +16417,7 @@ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true, + "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" }, @@ -15914,6 +16430,7 @@ "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz", "integrity": "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==", "dev": true, + "license": "MIT", "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", @@ -15928,6 +16445,7 @@ "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz", "integrity": "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.8", "for-each": "^0.3.3", @@ -15947,6 +16465,7 @@ "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz", "integrity": "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==", "dev": true, + "license": "MIT", "dependencies": { "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.8", @@ -15968,6 +16487,7 @@ "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz", "integrity": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "for-each": "^0.3.3", @@ -15987,13 +16507,15 @@ "version": "0.0.6", "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/typescript": { "version": "4.9.5", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", "dev": true, + "license": "Apache-2.0", "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -16021,6 +16543,7 @@ "url": "https://github.com/sponsors/faisalman" } ], + "license": "MIT", "bin": { "ua-parser-js": "script/cli.js" }, @@ -16033,6 +16556,7 @@ "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.19.3.tgz", "integrity": "sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==", "dev": true, + "license": "BSD-2-Clause", "bin": { "uglifyjs": "bin/uglifyjs" }, @@ -16045,6 +16569,7 @@ "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.1.0.tgz", "integrity": "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==", "dev": true, + "license": "MIT", "dependencies": { "call-bound": "^1.0.3", "has-bigints": "^1.0.2", @@ -16063,6 +16588,7 @@ "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", "integrity": "sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -16072,6 +16598,7 @@ "resolved": "https://registry.npmjs.org/undertaker/-/undertaker-1.3.0.tgz", "integrity": "sha512-/RXwi5m/Mu3H6IHQGww3GNt1PNXlbeCuclF2QYR14L/2CHPz3DFZkvB5hZ0N/QUkiXWCACML2jXViIQEQc2MLg==", "dev": true, + "license": "MIT", "dependencies": { "arr-flatten": "^1.0.1", "arr-map": "^2.0.0", @@ -16093,6 +16620,7 @@ "resolved": "https://registry.npmjs.org/undertaker-registry/-/undertaker-registry-1.0.1.tgz", "integrity": "sha512-UR1khWeAjugW3548EfQmL9Z7pGMlBgXteQpr1IZeZBtnkCJQJIJ1Scj0mb9wQaPvUZ9Q17XqW6TIaPchJkyfqw==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.10" } @@ -16101,18 +16629,21 @@ "version": "1.1.4", "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-1.1.4.tgz", "integrity": "sha512-Ia0sQNrMPXXkqVFt6w6M1n1oKo3NfKs+mvaV811Jwir7vAk9a6PVV9VPYf6X3BU97QiLEmuW3uXH9u87zDFfdw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/undici-types": { "version": "7.16.0", "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", - "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==" + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "license": "MIT" }, "node_modules/unified": { "version": "10.1.2", "resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz", "integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==", "dev": true, + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "bail": "^2.0.0", @@ -16132,6 +16663,7 @@ "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz", "integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==", "dev": true, + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "is-buffer": "^2.0.0", @@ -16148,6 +16680,7 @@ "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.4.tgz", "integrity": "sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==", "dev": true, + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "unist-util-stringify-position": "^3.0.0" @@ -16162,6 +16695,7 @@ "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", "dev": true, + "license": "MIT", "dependencies": { "arr-union": "^3.1.0", "get-value": "^2.0.6", @@ -16177,6 +16711,7 @@ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -16186,6 +16721,7 @@ "resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-2.4.0.tgz", "integrity": "sha512-V6QarSfeSgDipGA9EZdoIzu03ZDlOFkk+FbEP5cwgrZXN3iIkYR91IjU2EnM6rB835kGQsqHX8qncObTXV+6KA==", "dev": true, + "license": "MIT", "dependencies": { "json-stable-stringify-without-jsonify": "^1.0.1", "through2-filter": "3.0.0" @@ -16196,6 +16732,7 @@ "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", "dev": true, + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0" }, @@ -16228,6 +16765,7 @@ "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==", "dev": true, + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0" }, @@ -16241,6 +16779,7 @@ "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", "dev": true, + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^5.0.0", @@ -16256,6 +16795,7 @@ "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", "dev": true, + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^5.0.0" @@ -16270,6 +16810,7 @@ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", "dev": true, + "license": "MIT", "engines": { "node": ">= 10.0.0" } @@ -16279,6 +16820,7 @@ "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.8" } @@ -16288,6 +16830,7 @@ "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", "integrity": "sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==", "dev": true, + "license": "MIT", "dependencies": { "has-value": "^0.3.1", "isobject": "^3.0.0" @@ -16301,6 +16844,7 @@ "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", "integrity": "sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==", "dev": true, + "license": "MIT", "dependencies": { "get-value": "^2.0.3", "has-values": "^0.1.4", @@ -16315,6 +16859,7 @@ "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", "dev": true, + "license": "MIT", "dependencies": { "isarray": "1.0.0" }, @@ -16327,6 +16872,7 @@ "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", "integrity": "sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -16335,22 +16881,24 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/upath": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", "dev": true, + "license": "MIT", "engines": { "node": ">=4", "yarn": "*" } }, "node_modules/update-browserslist-db": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.4.tgz", - "integrity": "sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==", + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz", + "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==", "dev": true, "funding": [ { @@ -16366,6 +16914,7 @@ "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "dependencies": { "escalade": "^3.2.0", "picocolors": "^1.1.1" @@ -16382,6 +16931,7 @@ "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "punycode": "^2.1.0" } @@ -16391,13 +16941,15 @@ "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==", "deprecated": "Please see https://github.com/lydell/urix#deprecated", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/use": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -16407,6 +16959,7 @@ "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz", "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==", "dev": true, + "license": "MIT", "dependencies": { "inherits": "2.0.3" } @@ -16414,19 +16967,22 @@ "node_modules/util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "license": "MIT" }, "node_modules/util/node_modules/inherits": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/utils-merge": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4.0" } @@ -16436,6 +16992,7 @@ "resolved": "https://registry.npmjs.org/uvu/-/uvu-0.5.6.tgz", "integrity": "sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==", "dev": true, + "license": "MIT", "dependencies": { "dequal": "^2.0.0", "diff": "^5.0.0", @@ -16450,10 +17007,11 @@ } }, "node_modules/uvu/node_modules/diff": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz", - "integrity": "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==", + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.2.tgz", + "integrity": "sha512-vtcDfH3TOjP8UekytvnHH1o1P4FcUdt4eQ1Y+Abap1tk/OB2MWQvcwS2ClCd1zuIhc3JKOx6p3kod8Vfys3E+A==", "dev": true, + "license": "BSD-3-Clause", "engines": { "node": ">=0.3.1" } @@ -16463,6 +17021,7 @@ "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } @@ -16471,13 +17030,15 @@ "version": "3.0.1", "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/v8flags": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-3.2.0.tgz", "integrity": "sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg==", "dev": true, + "license": "MIT", "dependencies": { "homedir-polyfill": "^1.0.1" }, @@ -16490,6 +17051,7 @@ "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", "dev": true, + "license": "Apache-2.0", "dependencies": { "spdx-correct": "^3.0.0", "spdx-expression-parse": "^3.0.0" @@ -16498,29 +17060,25 @@ "node_modules/value-equal": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/value-equal/-/value-equal-1.0.1.tgz", - "integrity": "sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==" + "integrity": "sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==", + "license": "MIT" }, "node_modules/value-or-function": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/value-or-function/-/value-or-function-3.0.0.tgz", "integrity": "sha512-jdBB2FrWvQC/pnPtIqcLsMaQgjhdb6B7tk1MMyTKapox+tQZbdRP4uLxu/JY0t7fbfDCUMnuelzEYv5GsxHhdg==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.10" } }, - "node_modules/varint": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/varint/-/varint-6.0.0.tgz", - "integrity": "sha512-cXEIW6cfr15lFv563k4GuVuW/fiwjknytD37jIOLSdSWuOI6WnO/oKwmP2FQTU2l01LP8/M5TSAJpzUaGe3uWg==", - "dev": true, - "license": "MIT" - }, "node_modules/vary": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.8" } @@ -16583,6 +17141,7 @@ "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.0.tgz", "integrity": "sha512-MBH+yP0kC/GQ5GwBqrTPTzEfiiLjta7hTtvQtbxBgTeSXsmKQRQecjibMbxIXzVT3Y9KJK+drOz1/k+vsu8Nkg==", "dev": true, + "license": "MIT", "dependencies": { "clone": "^2.1.1", "clone-buffer": "^1.0.0", @@ -16600,6 +17159,7 @@ "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-3.0.3.tgz", "integrity": "sha512-vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng==", "dev": true, + "license": "MIT", "dependencies": { "fs-mkdirp-stream": "^1.0.0", "glob-stream": "^6.1.0", @@ -16628,6 +17188,7 @@ "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", "dev": true, + "license": "MIT", "dependencies": { "readable-stream": "~2.3.6", "xtend": "~4.0.1" @@ -16638,6 +17199,7 @@ "resolved": "https://registry.npmjs.org/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz", "integrity": "sha512-NiibMgt6VJGJmyw7vtzhctDcfKch4e4n9TBeoWlirb7FMg9/1Ov9k+A5ZRAtywBpRPiyECvQRQllYM8dECegVA==", "dev": true, + "license": "MIT", "dependencies": { "append-buffer": "^1.0.2", "convert-source-map": "^1.5.0", @@ -16655,13 +17217,15 @@ "version": "1.9.0", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/vinyl-sourcemap/node_modules/normalize-path": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", "dev": true, + "license": "MIT", "dependencies": { "remove-trailing-separator": "^1.0.1" }, @@ -16674,6 +17238,7 @@ "resolved": "https://registry.npmjs.org/vinyl-sourcemaps-apply/-/vinyl-sourcemaps-apply-0.2.1.tgz", "integrity": "sha512-+oDh3KYZBoZC8hfocrbrxbLUeaYtQK7J5WU5Br9VqWqmCll3tFJqKp97GC9GmMsVIL0qnx2DgEDVxdo5EZ5sSw==", "dev": true, + "license": "ISC", "dependencies": { "source-map": "^0.5.1" } @@ -16683,17 +17248,19 @@ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", "dev": true, + "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/vite": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/vite/-/vite-7.2.2.tgz", - "integrity": "sha512-BxAKBWmIbrDgrokdGZH1IgkIk/5mMHDreLDmCJ0qpyJaAteP8NvMhkwr/ZCQNqNH97bw/dANTE9PDzqwJghfMQ==", + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/vite/-/vite-7.3.1.tgz", + "integrity": "sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==", "dev": true, + "license": "MIT", "dependencies": { - "esbuild": "^0.25.0", + "esbuild": "^0.27.0", "fdir": "^6.5.0", "picomatch": "^4.0.3", "postcss": "^8.5.6", @@ -16766,6 +17333,7 @@ "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-3.2.4.tgz", "integrity": "sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg==", "dev": true, + "license": "MIT", "dependencies": { "cac": "^6.7.14", "debug": "^4.4.1", @@ -16788,6 +17356,7 @@ "resolved": "https://registry.npmjs.org/vite-tsconfig-paths/-/vite-tsconfig-paths-5.1.4.tgz", "integrity": "sha512-cYj0LRuLV2c2sMqhqhGpaO3LretdtMn/BVX4cPLanIZuwwrkVl+lK84E/miEXkCHWXuq65rhNN4rXsBcOB3S4w==", "dev": true, + "license": "MIT", "dependencies": { "debug": "^4.1.1", "globrex": "^0.1.2", @@ -16802,11 +17371,80 @@ } } }, + "node_modules/vite-tsconfig-paths/node_modules/tsconfck": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/tsconfck/-/tsconfck-3.1.6.tgz", + "integrity": "sha512-ks6Vjr/jEw0P1gmOVwutM3B7fWxoWBL2KRDb1JfqGVawBmO5UsvmWOQFGHBPl5yxYz4eERr19E6L7NMv+Fej4w==", + "dev": true, + "license": "MIT", + "bin": { + "tsconfck": "bin/tsconfck.js" + }, + "engines": { + "node": "^18 || >=20" + }, + "peerDependencies": { + "typescript": "^5.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/vite-tsconfig-paths/node_modules/typescript": { + "version": "5.9.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "dev": true, + "license": "Apache-2.0", + "optional": true, + "peer": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/vite/node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/vite/node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, "node_modules/vitest": { "version": "3.2.4", "resolved": "https://registry.npmjs.org/vitest/-/vitest-3.2.4.tgz", "integrity": "sha512-LUCP5ev3GURDysTWiP47wRRUpLKMOfPh+yKTx3kVIEiu5KOMeqzpnYNsKyOoVrULivR8tLcks4+lga33Whn90A==", "dev": true, + "license": "MIT", "dependencies": { "@types/chai": "^5.2.2", "@vitest/expect": "3.2.4", @@ -16879,6 +17517,7 @@ "resolved": "https://registry.npmjs.org/vitest-canvas-mock/-/vitest-canvas-mock-0.3.3.tgz", "integrity": "sha512-3P968tYBpqYyzzOaVtqnmYjqbe13576/fkjbDEJSfQAkHtC5/UjuRHOhFEN/ZV5HVZIkaROBUWgazDKJ+Ibw+Q==", "dev": true, + "license": "MIT", "dependencies": { "jest-canvas-mock": "~2.5.2" }, @@ -16886,11 +17525,25 @@ "vitest": "*" } }, + "node_modules/vitest/node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, "node_modules/walk": { "version": "2.3.15", "resolved": "https://registry.npmjs.org/walk/-/walk-2.3.15.tgz", "integrity": "sha512-4eRTBZljBfIISK1Vnt69Gvr2w/wc3U6Vtrw7qiN5iqYJPH7LElcYh/iU4XWhdCy2dZqv1ToMyYlybDylfG/5Vg==", "dev": true, + "license": "(MIT OR Apache-2.0)", "dependencies": { "foreachasync": "^3.0.0" } @@ -16899,15 +17552,17 @@ "version": "4.0.3", "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", + "license": "MIT", "dependencies": { "loose-envify": "^1.0.0" } }, "node_modules/watchpack": { - "version": "2.4.4", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.4.tgz", - "integrity": "sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA==", + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.5.1.tgz", + "integrity": "sha512-Zn5uXdcFNIA1+1Ei5McRd+iRzfhENPCe7LeABkJtNulSxjma+l7ltNx55BWZkRlwRnpOgHqxnjyaDgJnNXnqzg==", "dev": true, + "license": "MIT", "dependencies": { "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.1.2" @@ -16920,13 +17575,15 @@ "version": "0.2.4", "resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-0.2.4.tgz", "integrity": "sha512-6BjspCO9VriYy12z356nL6JBS0GYeEcA457YyRzD+dD6XYCQ75NKhcOHUMHentOE7OcVCIXXDvOm0jKFfQG2Gg==", - "dev": true + "dev": true, + "license": "Apache-2.0" }, "node_modules/webpack": { - "version": "5.102.1", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.102.1.tgz", - "integrity": "sha512-7h/weGm9d/ywQ6qzJ+Xy+r9n/3qgp/thalBbpOi5i223dPXKi04IBtqPN9nTd+jBc7QKfvDbaBnFipYp4sJAUQ==", + "version": "5.105.2", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.105.2.tgz", + "integrity": "sha512-dRXm0a2qcHPUBEzVk8uph0xWSjV/xZxenQQbLwnwP7caQCYpqG1qddwlyEkIDkYn0K8tvmcrZ+bOrzoQ3HxCDw==", "dev": true, + "license": "MIT", "dependencies": { "@types/eslint-scope": "^3.7.7", "@types/estree": "^1.0.8", @@ -16936,22 +17593,22 @@ "@webassemblyjs/wasm-parser": "^1.14.1", "acorn": "^8.15.0", "acorn-import-phases": "^1.0.3", - "browserslist": "^4.26.3", + "browserslist": "^4.28.1", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.17.3", - "es-module-lexer": "^1.2.1", + "enhanced-resolve": "^5.19.0", + "es-module-lexer": "^2.0.0", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.2.11", "json-parse-even-better-errors": "^2.3.1", - "loader-runner": "^4.2.0", + "loader-runner": "^4.3.1", "mime-types": "^2.1.27", "neo-async": "^2.6.2", "schema-utils": "^4.3.3", "tapable": "^2.3.0", - "terser-webpack-plugin": "^5.3.11", - "watchpack": "^2.4.4", + "terser-webpack-plugin": "^5.3.16", + "watchpack": "^2.5.1", "webpack-sources": "^3.3.3" }, "bin": { @@ -16971,19 +17628,21 @@ } }, "node_modules/webpack-sources": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.3.3.tgz", - "integrity": "sha512-yd1RBzSGanHkitROoPFd6qsrxt+oFhg/129YzheDGqeustzX0vTZJZsSsQjVQC4yzBQ56K55XU8gaNCtIzOnTg==", + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.3.4.tgz", + "integrity": "sha512-7tP1PdV4vF+lYPnkMR0jMY5/la2ub5Fc/8VQrrU+lXkiM6C4TjVfGw7iKfyhnTQOsD+6Q/iKw0eFciziRgD58Q==", "dev": true, + "license": "MIT", "engines": { "node": ">=10.13.0" } }, "node_modules/webpack/node_modules/ajv": { - "version": "8.17.1", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", - "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.18.0.tgz", + "integrity": "sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==", "dev": true, + "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.3", "fast-uri": "^3.0.1", @@ -17000,6 +17659,7 @@ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", "dev": true, + "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.3" }, @@ -17007,17 +17667,26 @@ "ajv": "^8.8.2" } }, + "node_modules/webpack/node_modules/es-module-lexer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-2.0.0.tgz", + "integrity": "sha512-5POEcUuZybH7IdmGsD8wlf0AI55wMecM9rVBTI/qEAy2c1kTOm3DjFYjrBdI2K3BaJjJYfYFeRtM0t9ssnRuxw==", + "dev": true, + "license": "MIT" + }, "node_modules/webpack/node_modules/json-schema-traverse": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/webpack/node_modules/schema-utils": { "version": "4.3.3", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.3.tgz", "integrity": "sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA==", "dev": true, + "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.9", "ajv": "^8.9.0", @@ -17037,6 +17706,7 @@ "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.0.tgz", "integrity": "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" }, @@ -17050,6 +17720,7 @@ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, + "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, @@ -17065,6 +17736,7 @@ "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz", "integrity": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==", "dev": true, + "license": "MIT", "dependencies": { "is-bigint": "^1.1.0", "is-boolean-object": "^1.2.1", @@ -17084,6 +17756,7 @@ "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz", "integrity": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==", "dev": true, + "license": "MIT", "dependencies": { "call-bound": "^1.0.2", "function.prototype.name": "^1.1.6", @@ -17110,13 +17783,15 @@ "version": "2.0.5", "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/which-collection": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", "dev": true, + "license": "MIT", "dependencies": { "is-map": "^2.0.3", "is-set": "^2.0.3", @@ -17134,13 +17809,15 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", "integrity": "sha512-F6+WgncZi/mJDrammbTuHe1q0R5hOXv/mBaiNA2TCNT/LTHusX0V+CJnj9XT8ki5ln2UZyyddDgHfCzyrOH7MQ==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/which-typed-array": { - "version": "1.1.19", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.19.tgz", - "integrity": "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==", + "version": "1.1.20", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.20.tgz", + "integrity": "sha512-LYfpUkmqwl0h9A2HL09Mms427Q1RZWuOHsukfVcKRq9q95iQxdw0ix1JQrqbcDR9PH1QDwf5Qo8OZb5lksZ8Xg==", "dev": true, + "license": "MIT", "dependencies": { "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.8", @@ -17162,6 +17839,7 @@ "resolved": "https://registry.npmjs.org/why-is-node-running/-/why-is-node-running-2.3.0.tgz", "integrity": "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==", "dev": true, + "license": "MIT", "dependencies": { "siginfo": "^2.0.0", "stackback": "0.0.2" @@ -17178,6 +17856,7 @@ "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -17187,6 +17866,7 @@ "resolved": "https://registry.npmjs.org/worker-loader/-/worker-loader-3.0.8.tgz", "integrity": "sha512-XQyQkIFeRVC7f7uRhFdNMe/iJOdO6zxAaR3EWbDp45v3mDhrTi+++oswKNxShUNjPC/1xUp5DB29YKLhFo129g==", "dev": true, + "license": "MIT", "dependencies": { "loader-utils": "^2.0.0", "schema-utils": "^3.0.0" @@ -17207,6 +17887,7 @@ "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dev": true, + "license": "MIT", "dependencies": { "big.js": "^5.2.2", "emojis-list": "^3.0.0", @@ -17221,6 +17902,7 @@ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", "dev": true, + "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", @@ -17239,6 +17921,7 @@ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", @@ -17255,13 +17938,15 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/ws": { - "version": "8.18.3", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz", - "integrity": "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==", + "version": "8.19.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.19.0.tgz", + "integrity": "sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==", "dev": true, + "license": "MIT", "engines": { "node": ">=10.0.0" }, @@ -17292,6 +17977,7 @@ "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.4" } @@ -17301,6 +17987,7 @@ "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", "dev": true, + "license": "ISC", "engines": { "node": ">=10" } @@ -17309,13 +17996,33 @@ "version": "3.1.1", "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "dev": true + "dev": true, + "license": "ISC" + }, + "node_modules/yaml": { + "version": "2.8.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.2.tgz", + "integrity": "sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==", + "dev": true, + "license": "ISC", + "optional": true, + "peer": true, + "bin": { + "yaml": "bin.mjs" + }, + "engines": { + "node": ">= 14.6" + }, + "funding": { + "url": "https://github.com/sponsors/eemeli" + } }, "node_modules/yargs": { "version": "17.7.2", "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", "dev": true, + "license": "MIT", "dependencies": { "cliui": "^8.0.1", "escalade": "^3.1.1", @@ -17334,6 +18041,7 @@ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-22.0.0.tgz", "integrity": "sha512-rwu/ClNdSMpkSrUb+d6BRsSkLUq1fmfsY6TOpYzTwvwkg1/NRG85KBy3kq++A8LKQwX6lsu+aWad+2khvuXrqw==", "dev": true, + "license": "ISC", "engines": { "node": "^20.19.0 || ^22.12.0 || >=23" } @@ -17343,6 +18051,7 @@ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", "dev": true, + "license": "ISC", "engines": { "node": ">=12" } @@ -17352,6 +18061,7 @@ "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } @@ -17361,6 +18071,7 @@ "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", "dev": true, + "license": "MIT", "engines": { "node": ">=10" }, @@ -17372,6 +18083,7 @@ "version": "2.0.4", "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" diff --git a/browser/package.json b/browser/package.json index 47f450f101..b6797c8f1d 100644 --- a/browser/package.json +++ b/browser/package.json @@ -97,7 +97,7 @@ "remark": "^14.0.2", "remark-frontmatter": "^2.0.0", "run-sequence": "^2.2.1", - "sass-embedded": "^1.84.0", + "sass": "^1.84.0", "ts-loader": "^9.5.4", "ts-node": "^10.9.2", "typescript": "^4.8.4", From 65d219b78dc26d3521f912b120f80c42482966fe Mon Sep 17 00:00:00 2001 From: Maya Kirova Date: Tue, 24 Feb 2026 16:52:17 +0200 Subject: [PATCH 39/43] fix(sample): Remove div with no size, since it shrinks the pivot. --- samples/grids/pivot-grid/data-selector/src/index.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/samples/grids/pivot-grid/data-selector/src/index.tsx b/samples/grids/pivot-grid/data-selector/src/index.tsx index 3e7ce5e3db..4239b43e77 100644 --- a/samples/grids/pivot-grid/data-selector/src/index.tsx +++ b/samples/grids/pivot-grid/data-selector/src/index.tsx @@ -58,10 +58,8 @@ export default function App() {
-
- - -
+ +
From 836f37e2dba2463ce15b21d2855089678cb87caa Mon Sep 17 00:00:00 2001 From: Maria Tsvyatkova Date: Thu, 26 Feb 2026 15:04:34 +0200 Subject: [PATCH 40/43] Modify toolbar export options for the grids (#1004) --- samples/grids/grid/excel-exporting/src/index.tsx | 10 +++------- .../grid/multi-column-headers-export/src/index.tsx | 13 +++++-------- .../hierarchical-grid/excel-exporting/src/index.tsx | 10 +++------- .../multi-column-headers-export/src/index.tsx | 1 + .../grids/tree-grid/excel-exporting/src/index.tsx | 10 +++------- .../multi-column-headers-export/src/index.tsx | 13 +++++-------- 6 files changed, 20 insertions(+), 37 deletions(-) diff --git a/samples/grids/grid/excel-exporting/src/index.tsx b/samples/grids/grid/excel-exporting/src/index.tsx index 36e9fb4c0b..98492509f5 100644 --- a/samples/grids/grid/excel-exporting/src/index.tsx +++ b/samples/grids/grid/excel-exporting/src/index.tsx @@ -60,13 +60,9 @@ export default class Sample extends React.Component { id="grid" groupingExpressions={this.groupingExpression1} hideGroupedColumns={true}> - - - + + + diff --git a/samples/grids/grid/multi-column-headers-export/src/index.tsx b/samples/grids/grid/multi-column-headers-export/src/index.tsx index 2f5d8fd4c3..6466659d20 100644 --- a/samples/grids/grid/multi-column-headers-export/src/index.tsx +++ b/samples/grids/grid/multi-column-headers-export/src/index.tsx @@ -47,19 +47,16 @@ export default class Sample extends React.Component { data={this.customersData} moving={true} allowFiltering={true}> - - - + + + - + diff --git a/samples/grids/hierarchical-grid/excel-exporting/src/index.tsx b/samples/grids/hierarchical-grid/excel-exporting/src/index.tsx index 89c01581d4..74e50cbe38 100644 --- a/samples/grids/hierarchical-grid/excel-exporting/src/index.tsx +++ b/samples/grids/hierarchical-grid/excel-exporting/src/index.tsx @@ -43,13 +43,9 @@ export default class Sample extends React.Component { primaryKey="ID" allowFiltering={true} filterMode="excelStyleFilter"> - - - + + + diff --git a/samples/grids/hierarchical-grid/multi-column-headers-export/src/index.tsx b/samples/grids/hierarchical-grid/multi-column-headers-export/src/index.tsx index a9eb33c1c5..a655a6157d 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-export/src/index.tsx +++ b/samples/grids/hierarchical-grid/multi-column-headers-export/src/index.tsx @@ -54,6 +54,7 @@ export default class Sample extends React.Component { diff --git a/samples/grids/tree-grid/excel-exporting/src/index.tsx b/samples/grids/tree-grid/excel-exporting/src/index.tsx index 4af4f374ae..282eb22abe 100644 --- a/samples/grids/tree-grid/excel-exporting/src/index.tsx +++ b/samples/grids/tree-grid/excel-exporting/src/index.tsx @@ -38,13 +38,9 @@ export default class Sample extends React.Component { id="treeGrid" data={this.employeesNestedData} childDataKey="Employees"> - - - + + + diff --git a/samples/grids/tree-grid/multi-column-headers-export/src/index.tsx b/samples/grids/tree-grid/multi-column-headers-export/src/index.tsx index 4a9fae4ebe..193a15f476 100644 --- a/samples/grids/tree-grid/multi-column-headers-export/src/index.tsx +++ b/samples/grids/tree-grid/multi-column-headers-export/src/index.tsx @@ -42,19 +42,16 @@ export default class Sample extends React.Component { data={this.employeesFlatDetails} foreignKey="ParentID" primaryKey="ID"> - - - + + + - + From 8d0e02daeda16e362fd23fff7e1c7e9b8cc38f4b Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Fri, 27 Feb 2026 08:59:04 +0200 Subject: [PATCH 41/43] Add Query Builder React samples (Overview and Template) (#1023) --- .../overview/.devcontainer/devcontainer.json | 4 + .../query-builder/overview/.eslintrc.js | 78 ++++ .../query-builder/overview/README.md | 56 +++ .../query-builder/overview/index.html | 12 + .../query-builder/overview/package.json | 47 ++ .../overview/sandbox.config.json | 5 + .../query-builder/overview/src/index.css | 11 + .../query-builder/overview/src/index.tsx | 210 +++++++++ .../query-builder/overview/tsconfig.json | 44 ++ .../query-builder/overview/vite.config.js | 12 + .../template/.devcontainer/devcontainer.json | 4 + .../query-builder/template/.eslintrc.js | 78 ++++ .../query-builder/template/README.md | 56 +++ .../query-builder/template/index.html | 12 + .../query-builder/template/package.json | 47 ++ .../template/sandbox.config.json | 5 + .../query-builder/template/src/index.css | 13 + .../query-builder/template/src/index.tsx | 430 ++++++++++++++++++ .../query-builder/template/tsconfig.json | 44 ++ .../query-builder/template/vite.config.js | 12 + 20 files changed, 1180 insertions(+) create mode 100644 samples/interactions/query-builder/overview/.devcontainer/devcontainer.json create mode 100644 samples/interactions/query-builder/overview/.eslintrc.js create mode 100644 samples/interactions/query-builder/overview/README.md create mode 100644 samples/interactions/query-builder/overview/index.html create mode 100644 samples/interactions/query-builder/overview/package.json create mode 100644 samples/interactions/query-builder/overview/sandbox.config.json create mode 100644 samples/interactions/query-builder/overview/src/index.css create mode 100644 samples/interactions/query-builder/overview/src/index.tsx create mode 100644 samples/interactions/query-builder/overview/tsconfig.json create mode 100644 samples/interactions/query-builder/overview/vite.config.js create mode 100644 samples/interactions/query-builder/template/.devcontainer/devcontainer.json create mode 100644 samples/interactions/query-builder/template/.eslintrc.js create mode 100644 samples/interactions/query-builder/template/README.md create mode 100644 samples/interactions/query-builder/template/index.html create mode 100644 samples/interactions/query-builder/template/package.json create mode 100644 samples/interactions/query-builder/template/sandbox.config.json create mode 100644 samples/interactions/query-builder/template/src/index.css create mode 100644 samples/interactions/query-builder/template/src/index.tsx create mode 100644 samples/interactions/query-builder/template/tsconfig.json create mode 100644 samples/interactions/query-builder/template/vite.config.js diff --git a/samples/interactions/query-builder/overview/.devcontainer/devcontainer.json b/samples/interactions/query-builder/overview/.devcontainer/devcontainer.json new file mode 100644 index 0000000000..e0b8e9c925 --- /dev/null +++ b/samples/interactions/query-builder/overview/.devcontainer/devcontainer.json @@ -0,0 +1,4 @@ +{ + "name": "Node.js", + "image": "mcr.microsoft.com/devcontainers/javascript-node:22" +} \ No newline at end of file diff --git a/samples/interactions/query-builder/overview/.eslintrc.js b/samples/interactions/query-builder/overview/.eslintrc.js new file mode 100644 index 0000000000..0c41c2db83 --- /dev/null +++ b/samples/interactions/query-builder/overview/.eslintrc.js @@ -0,0 +1,78 @@ +// https://www.robertcooper.me/using-eslint-and-prettier-in-a-typescript-project +module.exports = { + parser: "@typescript-eslint/parser", // Specifies the ESLint parser + parserOptions: { + ecmaVersion: 2020, // Allows for the parsing of modern ECMAScript features + sourceType: "module", // Allows for the use of imports + ecmaFeatures: { + jsx: true // Allows for the parsing of JSX + } + }, + settings: { + react: { + version: "999.999.999" // Tells eslint-plugin-react to automatically detect the version of React to use + } + }, + extends: [ + "eslint:recommended", + "plugin:react/recommended", // Uses the recommended rules from @eslint-plugin-react + "plugin:@typescript-eslint/recommended" // Uses the recommended rules from @typescript-eslint/eslint-plugin + ], + rules: { + // Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs + "default-case": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "no-mixed-spaces-and-tabs": 0, + "prefer-const": "off", + "prefer-rest-params": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + }, + "overrides": [ + { + "files": ["*.ts", "*.tsx"], + "rules": { + "default-case": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "no-var": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-mixed-spaces-and-tabs": 0, + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + } + } + ] + }; diff --git a/samples/interactions/query-builder/overview/README.md b/samples/interactions/query-builder/overview/README.md new file mode 100644 index 0000000000..d61a218431 --- /dev/null +++ b/samples/interactions/query-builder/overview/README.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of React application with example of Overview feature using [Query Builder](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-react-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-react-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +``` +git clone https://github.com/IgniteUI/igniteui-react-examples.git +git checkout master +cd ./igniteui-react-examples +cd ./samples/interactions/query-builder/overview +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for React** components, check out the [React documentation](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html). diff --git a/samples/interactions/query-builder/overview/index.html b/samples/interactions/query-builder/overview/index.html new file mode 100644 index 0000000000..272184ef96 --- /dev/null +++ b/samples/interactions/query-builder/overview/index.html @@ -0,0 +1,12 @@ + + + + Sample | Ignite UI | React | infragistics + + + + +
+ + + diff --git a/samples/interactions/query-builder/overview/package.json b/samples/interactions/query-builder/overview/package.json new file mode 100644 index 0000000000..bd516b4cb2 --- /dev/null +++ b/samples/interactions/query-builder/overview/package.json @@ -0,0 +1,47 @@ +{ + "name": "react-query-builder-overview", + "description": "This project provides example of Query Builder Overview using Ignite UI for React components", + "author": "Infragistics", + "version": "1.4.0", + "license": "", + "homepage": ".", + "private": true, + "scripts": { + "start": "vite --port 4200", + "build": "tsc && node --max-old-space-size=4096 node_modules/vite/bin/vite build", + "preview": "vite preview", + "test": "vitest", + "lint": "eslint ./src/**/*.{ts,tsx}" + }, + "dependencies": { + "igniteui-react": "19.5.0-beta.2", + "igniteui-react-core": "19.3.1", + "igniteui-react-grids": "19.5.0-beta.2", + "lit-html": "^3.2.0", + "react": "^19.2.0", + "react-dom": "^19.2.0", + "tslib": "^2.4.0" + }, + "devDependencies": { + "@types/jest": "^29.2.0", + "@types/node": "^24.7.1", + "@types/react": "^18.0.24", + "@types/react-dom": "^18.0.8", + "@vitejs/plugin-react": "^5.0.4", + "@vitest/browser": "^3.2.4", + "eslint": "^8.33.0", + "eslint-config-react": "^1.1.7", + "eslint-plugin-react": "^7.20.0", + "typescript": "5.0.2", + "vite": "^7.1.9", + "vitest": "^3.2.4", + "vitest-canvas-mock": "^0.3.3", + "worker-loader": "^3.0.8" + }, + "browserslist": [ + ">0.2%", + "not dead", + "not ie <= 11", + "not op_mini all" + ] +} diff --git a/samples/interactions/query-builder/overview/sandbox.config.json b/samples/interactions/query-builder/overview/sandbox.config.json new file mode 100644 index 0000000000..49a80d1d8b --- /dev/null +++ b/samples/interactions/query-builder/overview/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} diff --git a/samples/interactions/query-builder/overview/src/index.css b/samples/interactions/query-builder/overview/src/index.css new file mode 100644 index 0000000000..ec8d2776dd --- /dev/null +++ b/samples/interactions/query-builder/overview/src/index.css @@ -0,0 +1,11 @@ +.wrapper { + margin: 10px; + height: 100%; + overflow-y: auto; +} + +.output-area { + box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.75); + border-radius: 4px; + margin: 0 20px 20px 20px; +} diff --git a/samples/interactions/query-builder/overview/src/index.tsx b/samples/interactions/query-builder/overview/src/index.tsx new file mode 100644 index 0000000000..d1aed10fbb --- /dev/null +++ b/samples/interactions/query-builder/overview/src/index.tsx @@ -0,0 +1,210 @@ +import React from 'react'; +import ReactDOM from 'react-dom/client'; +import './index.css'; +import { + IgrQueryBuilder, + IgrGrid, + IgrFilteringExpressionsTree, + IgrExpressionTree, + FilteringLogic +} from 'igniteui-react-grids'; + +import 'igniteui-react-grids/grids/themes/light/material.css'; + +const API_ENDPOINT = 'https://data-northwind.indigo.design'; + +// Field type definitions +interface Field { + field: string; + dataType: string; +} + +interface Entity { + name: string; + fields: Field[]; +} + +interface SampleState { + expressionTree: IgrExpressionTree | null; +} + +export default class Sample extends React.Component { + private queryBuilderRef: React.RefObject; + private gridRef: React.RefObject; + + constructor(props: any) { + super(props); + + this.queryBuilderRef = React.createRef(); + this.gridRef = React.createRef(); + + this.state = { + expressionTree: null + }; + } + + componentDidMount() { + // Initialize expression tree + const tree = new IgrFilteringExpressionsTree(); + tree.operator = FilteringLogic.And; + tree.entity = 'Orders'; + tree.returnFields = [ + 'orderId', + 'customerId', + 'employeeId', + 'shipperId', + 'orderDate', + 'requiredDate', + 'shipVia', + 'freight', + 'shipName', + 'completed' + ]; + + this.setState({ expressionTree: tree }); + + // Set up query builder + if (this.queryBuilderRef.current && tree) { + const queryBuilder = this.queryBuilderRef.current; + queryBuilder.entities = this.entities as any; + queryBuilder.expressionTree = tree; + + queryBuilder.addEventListener('expressionTreeChange', this.handleExpressionTreeChange); + } + + // Set up grid + if (this.gridRef.current) { + const grid = this.gridRef.current; + grid.height = '420px'; + grid.autoGenerate = true; + } + } + + componentDidUpdate(prevProps: any, prevState: any) { + // Fetch data when expression tree changes + if (prevState.expressionTree !== this.state.expressionTree && this.state.expressionTree) { + this.fetchData(); + } + + // Update query builder if expression tree changed + if (this.queryBuilderRef.current && this.state.expressionTree && + prevState.expressionTree !== this.state.expressionTree) { + const queryBuilder = this.queryBuilderRef.current; + queryBuilder.expressionTree = this.state.expressionTree; + } + } + + componentWillUnmount() { + if (this.queryBuilderRef.current) { + this.queryBuilderRef.current.removeEventListener('expressionTreeChange', this.handleExpressionTreeChange); + } + } + + private handleExpressionTreeChange = (event: any) => { + this.setState({ expressionTree: event.detail }); + }; + + private get customersFields(): Field[] { + return [ + { field: 'customerId', dataType: 'string' }, + { field: 'companyName', dataType: 'string' }, + { field: 'contactName', dataType: 'string' }, + { field: 'contactTitle', dataType: 'string' } + ]; + } + + private get ordersFields(): Field[] { + return [ + { field: 'orderId', dataType: 'number' }, + { field: 'customerId', dataType: 'string' }, + { field: 'employeeId', dataType: 'number' }, + { field: 'shipperId', dataType: 'number' }, + { field: 'orderDate', dataType: 'date' }, + { field: 'requiredDate', dataType: 'date' }, + { field: 'shipVia', dataType: 'string' }, + { field: 'freight', dataType: 'number' }, + { field: 'shipName', dataType: 'string' }, + { field: 'completed', dataType: 'boolean' } + ]; + } + + private get entities(): Entity[] { + return [ + { name: 'Customers', fields: this.customersFields }, + { name: 'Orders', fields: this.ordersFields } + ]; + } + + private calculateColumnsInView = () => { + if (!this.gridRef.current || !this.state.expressionTree) return; + + const grid = this.gridRef.current; + const expressionTree = this.state.expressionTree; + const returnFields = expressionTree.returnFields ?? []; + + if (returnFields.length === 0 || returnFields[0] === '*') { + const selectedEntity = this.entities.find(e => e.name === expressionTree.entity); + const selectedEntityFields = (selectedEntity?.fields ?? []).map(f => f.field); + + grid.columns.forEach(column => { + column.hidden = !selectedEntityFields.includes(column.field); + }); + } else { + grid.columns.forEach(column => { + column.hidden = !returnFields.includes(column.field); + }); + } + }; + + private async fetchData() { + const grid = this.gridRef.current; + const expressionTree = this.state.expressionTree; + + if (!grid || !expressionTree) return; + + grid.isLoading = true; + + try { + const response = await fetch(`${API_ENDPOINT}/QueryBuilder/ExecuteQuery`, { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify(expressionTree) + }); + + if (!response.ok) { + throw new Error(`ExecuteQuery failed: ${response.status} ${response.statusText}`); + } + + const json = await response.json(); + const data = (Object.values(json)[0] as any[]) ?? []; + grid.data = data; + + // Calculate column visibility after data loads + await new Promise(resolve => requestAnimationFrame(() => resolve(null))); + this.calculateColumnsInView(); + } catch (err) { + console.error(err); + grid.data = []; + } finally { + grid.isLoading = false; + } + } + + public render(): JSX.Element { + return ( +
+
+ + +
+ +
+
+
+ ); + } +} + +// rendering above component in the React DOM +const root = ReactDOM.createRoot(document.getElementById('root')); +root.render(); diff --git a/samples/interactions/query-builder/overview/tsconfig.json b/samples/interactions/query-builder/overview/tsconfig.json new file mode 100644 index 0000000000..8c0d146f95 --- /dev/null +++ b/samples/interactions/query-builder/overview/tsconfig.json @@ -0,0 +1,44 @@ +{ + "compilerOptions": { + "resolveJsonModule": true, + "esModuleInterop": true, + "baseUrl": ".", + "outDir": "build/dist", + "module": "esnext", + "target": "es5", + "lib": [ + "es6", + "dom" + ], + "sourceMap": true, + "allowJs": true, + "jsx": "react-jsx", + "moduleResolution": "node", + "rootDir": "src", + "forceConsistentCasingInFileNames": true, + "noImplicitReturns": true, + "noImplicitThis": true, + "noImplicitAny": true, + "noUnusedLocals": false, + "importHelpers": true, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "strict": false, + "isolatedModules": true, + "noEmit": true + }, + "exclude": [ + "node_modules", + "build", + "scripts", + "acceptance-tests", + "webpack", + "jest", + "src/setupTests.ts", + "**/odatajs-4.0.0.js", + "config-overrides.js" + ], + "include": [ + "src" + ] +} diff --git a/samples/interactions/query-builder/overview/vite.config.js b/samples/interactions/query-builder/overview/vite.config.js new file mode 100644 index 0000000000..4fc593892f --- /dev/null +++ b/samples/interactions/query-builder/overview/vite.config.js @@ -0,0 +1,12 @@ +import { defineConfig } from 'vite'; +import react from '@vitejs/plugin-react'; + +export default defineConfig({ + plugins: [react()], + build: { + outDir: 'build' + }, + server: { + open: false + }, +}); diff --git a/samples/interactions/query-builder/template/.devcontainer/devcontainer.json b/samples/interactions/query-builder/template/.devcontainer/devcontainer.json new file mode 100644 index 0000000000..e0b8e9c925 --- /dev/null +++ b/samples/interactions/query-builder/template/.devcontainer/devcontainer.json @@ -0,0 +1,4 @@ +{ + "name": "Node.js", + "image": "mcr.microsoft.com/devcontainers/javascript-node:22" +} \ No newline at end of file diff --git a/samples/interactions/query-builder/template/.eslintrc.js b/samples/interactions/query-builder/template/.eslintrc.js new file mode 100644 index 0000000000..0c41c2db83 --- /dev/null +++ b/samples/interactions/query-builder/template/.eslintrc.js @@ -0,0 +1,78 @@ +// https://www.robertcooper.me/using-eslint-and-prettier-in-a-typescript-project +module.exports = { + parser: "@typescript-eslint/parser", // Specifies the ESLint parser + parserOptions: { + ecmaVersion: 2020, // Allows for the parsing of modern ECMAScript features + sourceType: "module", // Allows for the use of imports + ecmaFeatures: { + jsx: true // Allows for the parsing of JSX + } + }, + settings: { + react: { + version: "999.999.999" // Tells eslint-plugin-react to automatically detect the version of React to use + } + }, + extends: [ + "eslint:recommended", + "plugin:react/recommended", // Uses the recommended rules from @eslint-plugin-react + "plugin:@typescript-eslint/recommended" // Uses the recommended rules from @typescript-eslint/eslint-plugin + ], + rules: { + // Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs + "default-case": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "no-mixed-spaces-and-tabs": 0, + "prefer-const": "off", + "prefer-rest-params": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + }, + "overrides": [ + { + "files": ["*.ts", "*.tsx"], + "rules": { + "default-case": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "no-var": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-mixed-spaces-and-tabs": 0, + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + } + } + ] + }; diff --git a/samples/interactions/query-builder/template/README.md b/samples/interactions/query-builder/template/README.md new file mode 100644 index 0000000000..b61472b1b1 --- /dev/null +++ b/samples/interactions/query-builder/template/README.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of React application with example of Custom Search Template feature using [Query Builder](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-react-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-react-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +``` +git clone https://github.com/IgniteUI/igniteui-react-examples.git +git checkout master +cd ./igniteui-react-examples +cd ./samples/interactions/query-builder/template +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for React** components, check out the [React documentation](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html). diff --git a/samples/interactions/query-builder/template/index.html b/samples/interactions/query-builder/template/index.html new file mode 100644 index 0000000000..272184ef96 --- /dev/null +++ b/samples/interactions/query-builder/template/index.html @@ -0,0 +1,12 @@ + + + + Sample | Ignite UI | React | infragistics + + + + +
+ + + diff --git a/samples/interactions/query-builder/template/package.json b/samples/interactions/query-builder/template/package.json new file mode 100644 index 0000000000..43f9546945 --- /dev/null +++ b/samples/interactions/query-builder/template/package.json @@ -0,0 +1,47 @@ +{ + "name": "react-query-builder-template", + "description": "This project provides example of Query Builder Template using Ignite UI for React components", + "author": "Infragistics", + "version": "1.4.0", + "license": "", + "homepage": ".", + "private": true, + "scripts": { + "start": "vite --port 4200", + "build": "tsc && node --max-old-space-size=4096 node_modules/vite/bin/vite build", + "preview": "vite preview", + "test": "vitest", + "lint": "eslint ./src/**/*.{ts,tsx}" + }, + "dependencies": { + "igniteui-react": "19.5.0-beta.2", + "igniteui-react-core": "19.3.1", + "igniteui-react-grids": "19.5.0-beta.2", + "lit-html": "^3.2.0", + "react": "^19.2.0", + "react-dom": "^19.2.0", + "tslib": "^2.4.0" + }, + "devDependencies": { + "@types/jest": "^29.2.0", + "@types/node": "^24.7.1", + "@types/react": "^18.0.24", + "@types/react-dom": "^18.0.8", + "@vitejs/plugin-react": "^5.0.4", + "@vitest/browser": "^3.2.4", + "eslint": "^8.33.0", + "eslint-config-react": "^1.1.7", + "eslint-plugin-react": "^7.20.0", + "typescript": "5.0.2", + "vite": "^7.1.9", + "vitest": "^3.2.4", + "vitest-canvas-mock": "^0.3.3", + "worker-loader": "^3.0.8" + }, + "browserslist": [ + ">0.2%", + "not dead", + "not ie <= 11", + "not op_mini all" + ] +} diff --git a/samples/interactions/query-builder/template/sandbox.config.json b/samples/interactions/query-builder/template/sandbox.config.json new file mode 100644 index 0000000000..49a80d1d8b --- /dev/null +++ b/samples/interactions/query-builder/template/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} diff --git a/samples/interactions/query-builder/template/src/index.css b/samples/interactions/query-builder/template/src/index.css new file mode 100644 index 0000000000..a4b5766918 --- /dev/null +++ b/samples/interactions/query-builder/template/src/index.css @@ -0,0 +1,13 @@ +.wrapper { + margin: 10px; + height: 100%; + overflow-y: auto; +} + +.output-area { + box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.75); + border-radius: 4px; + margin: 0 20px 20px 20px; + padding: 16px; + background: #fff; +} diff --git a/samples/interactions/query-builder/template/src/index.tsx b/samples/interactions/query-builder/template/src/index.tsx new file mode 100644 index 0000000000..9b5ad469b9 --- /dev/null +++ b/samples/interactions/query-builder/template/src/index.tsx @@ -0,0 +1,430 @@ +import React from 'react'; +import ReactDOM from 'react-dom/client'; +import './index.css'; + +import { + IgrQueryBuilder, + IgrQueryBuilderModule, + IgrQueryBuilderHeader, + IgrFilteringExpressionsTree, + IgrExpressionTree, + FilteringLogic, + IgrStringFilteringOperand +} from 'igniteui-react-grids'; + +import { + IgrDatePicker, + IgrDatePickerModule, + IgrDateTimeInput, + IgrDateTimeInputModule, + IgrSelect, + IgrSelectModule, + IgrSelectItem, + IgrRadioGroup, + IgrRadioGroupModule, + IgrRadio, + IgrInput, + IgrInputModule, + IgrIcon, + IgrIconModule +} from 'igniteui-react'; + +import 'igniteui-react-grids/grids/themes/light/material.css'; + +// Register components +const mods: any[] = [ + IgrQueryBuilderModule, + IgrDatePickerModule, + IgrDateTimeInputModule, + IgrSelectModule, + IgrRadioGroupModule, + IgrInputModule, + IgrIconModule +]; +mods.forEach((m) => m.register()); + +// Types +interface Field { + field: string; + dataType: string; + formatter?: (value: any) => string; +} + +interface Entity { + name: string; + fields: Field[]; +} + +interface RegionOption { + text: string; + value: string; +} + +interface StatusOption { + text: string; + value: number; +} + +interface QueryBuilderSearchValueContext { + implicit: { value: any }; + selectedField?: Field; + selectedCondition?: string; + defaultSearchValueTemplate?: any; +} + +interface SampleState { + expressionTree: IgrExpressionTree | null; +} + +export default class Sample extends React.Component { + private queryBuilderRef: React.RefObject; + private expressionOutputRef: React.RefObject; + + private regionOptions: RegionOption[] = [ + { text: 'Central North America', value: 'CNA' }, + { text: 'Central Europe', value: 'CEU' }, + { text: 'Mediterranean region', value: 'MED' }, + { text: 'Central Asia', value: 'CAS' }, + { text: 'South Asia', value: 'SAS' }, + { text: 'Western Africa', value: 'WAF' }, + { text: 'Amazonia', value: 'AMZ' }, + { text: 'Southern Africa', value: 'SAF' }, + { text: 'Northern Australia', value: 'NAU' } + ]; + + private statusOptions: StatusOption[] = [ + { text: 'New', value: 1 }, + { text: 'Shipped', value: 2 }, + { text: 'Done', value: 3 } + ]; + + constructor(props: any) { + super(props); + + this.queryBuilderRef = React.createRef(); + this.expressionOutputRef = React.createRef(); + + this.state = { + expressionTree: null + }; + } + + componentDidMount() { + // Initialize expression tree + const tree = new IgrFilteringExpressionsTree(); + tree.operator = FilteringLogic.And; + tree.entity = 'Orders'; + tree.returnFields = ['*']; + tree.filteringOperands.push({ + fieldName: 'Region', + condition: IgrStringFilteringOperand.instance().condition('equals'), + conditionName: 'equals', + searchVal: this.regionOptions[0] + } as any); + tree.filteringOperands.push({ + fieldName: 'OrderStatus', + condition: IgrStringFilteringOperand.instance().condition('equals'), + conditionName: 'equals', + searchVal: this.statusOptions[0].value + } as any); + + this.setState({ expressionTree: tree }); + + // Set up query builder + if (this.queryBuilderRef.current && tree) { + const queryBuilder = this.queryBuilderRef.current; + queryBuilder.entities = this.entities as any; + queryBuilder.expressionTree = tree; + + queryBuilder.addEventListener('expressionTreeChange', this.handleExpressionTreeChange); + } + } + + componentDidUpdate(prevProps: any, prevState: any) { + // Update query builder if expression tree changed + if (this.queryBuilderRef.current && this.state.expressionTree && + prevState.expressionTree !== this.state.expressionTree) { + const queryBuilder = this.queryBuilderRef.current; + queryBuilder.expressionTree = this.state.expressionTree; + } + + // Render expression tree output + if (this.expressionOutputRef.current && this.state.expressionTree && + prevState.expressionTree !== this.state.expressionTree) { + this.expressionOutputRef.current.textContent = JSON.stringify(this.state.expressionTree, null, 2); + } + } + + componentWillUnmount() { + if (this.queryBuilderRef.current) { + this.queryBuilderRef.current.removeEventListener('expressionTreeChange', this.handleExpressionTreeChange); + } + } + + private handleExpressionTreeChange = (event: any) => { + this.setState({ expressionTree: event.detail }); + }; + + private get ordersFields(): Field[] { + return [ + { field: 'CompanyID', dataType: 'string' }, + { field: 'OrderID', dataType: 'number' }, + { field: 'Freight', dataType: 'number' }, + { field: 'ShipCountry', dataType: 'string' }, + { field: 'IsRushOrder', dataType: 'boolean' }, + { + field: 'RequiredTime', + dataType: 'time', + formatter: (value: any) => { + if (!value || !(value instanceof Date)) return ''; + return value.toLocaleTimeString('en-US', { + hour: '2-digit', + minute: '2-digit' + }); + } + }, + { + field: 'OrderDate', + dataType: 'date', + formatter: (value: any) => { + if (!value || !(value instanceof Date)) return ''; + return value.toLocaleDateString('en-US', { + month: 'short', + day: 'numeric', + year: 'numeric' + }); + } + }, + { + field: 'Region', + dataType: 'string', + formatter: (value: any) => value?.text ?? value?.value ?? value + }, + { + field: 'OrderStatus', + dataType: 'number', + formatter: (value: number) => this.statusOptions.find(option => option.value === value)?.text ?? value + } + ]; + } + + private get entities(): Entity[] { + return [ + { + name: 'Orders', + fields: this.ordersFields + } + ]; + } + + private setImplicitValue(ctx: QueryBuilderSearchValueContext, value: any) { + queueMicrotask(() => { + ctx.implicit.value = value; + }); + } + + private normalizeTimeValue = (value: unknown): Date | null => { + if (!value) return null; + if (value instanceof Date) return value; + + if (typeof value === 'string') { + const isoCandidate = value.includes('T') ? value : `1970-01-01T${value}`; + const parsed = new Date(isoCandidate); + return isNaN(parsed.getTime()) ? null : parsed; + } + + if (typeof value === 'number') { + const parsed = new Date(value); + return isNaN(parsed.getTime()) ? null : parsed; + } + + return null; + }; + + private buildSearchValueTemplate = (ctx: QueryBuilderSearchValueContext) => { + const field = ctx.selectedField?.field; + const condition = ctx.selectedCondition; + const matchesEqualityCondition = condition === 'equals' || condition === 'doesNotEqual'; + + if (!ctx.implicit) { + ctx.implicit = { value: null }; + } + + if (field === 'Region' && matchesEqualityCondition) { + return this.buildRegionSelect(ctx); + } + + if (field === 'OrderStatus' && matchesEqualityCondition) { + return this.buildStatusRadios(ctx); + } + + if (ctx.selectedField?.dataType === 'date') { + return this.buildDatePicker(ctx); + } + + if (ctx.selectedField?.dataType === 'time') { + return this.buildTimeInput(ctx); + } + + return this.buildDefaultInput(ctx, matchesEqualityCondition); + }; + + private buildRegionSelect = (ctx: QueryBuilderSearchValueContext) => { + const currentValue = ctx?.implicit?.value?.value ?? ''; + const key = `region-select-${currentValue}`; + + return ( + { + const value = sender.value; + const currentKey = ctx?.implicit?.value?.value ?? ''; + + if (!value || value === currentKey) return; + + this.setImplicitValue(ctx, this.regionOptions.find(option => option.value === value) ?? null); + }}> + {this.regionOptions.map(option => ( + + {option.text} + + ))} + + ); + }; + + private buildStatusRadios = (ctx: QueryBuilderSearchValueContext) => { + const implicitValue = ctx.implicit?.value; + const currentValue = implicitValue == null ? '' : implicitValue.toString(); + + return ( + + {this.statusOptions.map(option => ( + { + if (!e.detail.checked) return; + const numericValue = Number(e.detail.value); + if (ctx.implicit.value === numericValue) return; + this.setImplicitValue(ctx, numericValue); + }}> + {option.text} + + ))} + + ); + }; + + private buildDatePicker = (ctx: QueryBuilderSearchValueContext) => { + const implicitValue = ctx.implicit?.value; + const currentValue = implicitValue instanceof Date + ? implicitValue + : implicitValue + ? new Date(implicitValue) + : null; + + const allowedConditions = ['equals', 'doesNotEqual', 'before', 'after']; + const isEnabled = allowedConditions.indexOf(ctx.selectedCondition ?? '') !== -1; + const key = `date-picker-${currentValue}`; + + return ( + sender.show()} + change={(sender: any) => { + this.setImplicitValue(ctx, sender.value); + }}> + + ); + }; + + private buildTimeInput = (ctx: QueryBuilderSearchValueContext) => { + const currentValue = this.normalizeTimeValue(ctx.implicit?.value); + const allowedConditions = ['at', 'not_at', 'at_before', 'at_after', 'before', 'after']; + const isDisabled = ctx.selectedField == null || allowedConditions.indexOf(ctx.selectedCondition ?? '') === -1; + const key = `time-input-${currentValue}`; + + return ( + { + this.setImplicitValue(ctx, sender.value); + }}> +
+ +
+
+ ); + }; + + private buildDefaultInput = (ctx: QueryBuilderSearchValueContext, matchesEqualityCondition: boolean) => { + const selectedField = ctx.selectedField; + const dataType = selectedField?.dataType; + const isNumber = dataType === 'number'; + const isBoolean = dataType === 'boolean'; + + const placeholder = ctx.selectedCondition === 'inQuery' || ctx.selectedCondition === 'notInQuery' + ? 'Sub-query results' + : 'Value'; + + const currentValue = typeof ctx.implicit?.value === 'object' && (ctx.implicit.value && 'text' in ctx.implicit.value) + ? matchesEqualityCondition ? ctx.implicit.value.text : '' + : ctx.implicit?.value; + + const inputValue = currentValue == null ? '' : currentValue; + const disabledConditions = ['empty', 'notEmpty', 'null', 'notNull', 'inQuery', 'notInQuery']; + const isDisabled = isBoolean || selectedField == null || disabledConditions.indexOf(ctx.selectedCondition ?? '') !== -1; + const key = `default-input-${inputValue}`; + + return ( + { + const value = sender.value; + this.setImplicitValue(ctx, isNumber + ? value === '' ? null : Number(value) + : value); + }}> + + ); + }; + + public render(): JSX.Element { + return ( +
+
+ + + + +
+

+          
+
+
+ ); + } +} + +// rendering above component in the React DOM +const root = ReactDOM.createRoot(document.getElementById('root')); +root.render(); diff --git a/samples/interactions/query-builder/template/tsconfig.json b/samples/interactions/query-builder/template/tsconfig.json new file mode 100644 index 0000000000..8c0d146f95 --- /dev/null +++ b/samples/interactions/query-builder/template/tsconfig.json @@ -0,0 +1,44 @@ +{ + "compilerOptions": { + "resolveJsonModule": true, + "esModuleInterop": true, + "baseUrl": ".", + "outDir": "build/dist", + "module": "esnext", + "target": "es5", + "lib": [ + "es6", + "dom" + ], + "sourceMap": true, + "allowJs": true, + "jsx": "react-jsx", + "moduleResolution": "node", + "rootDir": "src", + "forceConsistentCasingInFileNames": true, + "noImplicitReturns": true, + "noImplicitThis": true, + "noImplicitAny": true, + "noUnusedLocals": false, + "importHelpers": true, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "strict": false, + "isolatedModules": true, + "noEmit": true + }, + "exclude": [ + "node_modules", + "build", + "scripts", + "acceptance-tests", + "webpack", + "jest", + "src/setupTests.ts", + "**/odatajs-4.0.0.js", + "config-overrides.js" + ], + "include": [ + "src" + ] +} diff --git a/samples/interactions/query-builder/template/vite.config.js b/samples/interactions/query-builder/template/vite.config.js new file mode 100644 index 0000000000..4fc593892f --- /dev/null +++ b/samples/interactions/query-builder/template/vite.config.js @@ -0,0 +1,12 @@ +import { defineConfig } from 'vite'; +import react from '@vitejs/plugin-react'; + +export default defineConfig({ + plugins: [react()], + build: { + outDir: 'build' + }, + server: { + open: false + }, +}); From e0149c120253f10edb510a67e2e9758f9082a097 Mon Sep 17 00:00:00 2001 From: Galina Edinakova Date: Fri, 27 Feb 2026 14:17:48 +0200 Subject: [PATCH 42/43] Merge pull request #1048 from IgniteUI/gedinakova/update-to-19.5.0 chore(*): Update react & WC packages to 19.5/7.0 --- browser/package-lock.json | 104 ++++-------------- browser/package.json | 8 +- browser/tasks/gulp-samples.js | 8 +- .../annotations-all/package.json | 4 +- .../annotations-callouts/package.json | 4 +- .../annotations-crosshairs/package.json | 4 +- .../annotations-custom/package.json | 4 +- .../annotations-final-value/package.json | 4 +- .../annotations-highlighting/package.json | 4 +- .../area-chart-multiple-sources/package.json | 4 +- .../area-chart-single-source/package.json | 4 +- .../area-chart-styling/package.json | 4 +- .../category-chart/axis-gap/package.json | 4 +- .../axis-gridlines/package.json | 4 +- .../category-chart/axis-inverted/package.json | 4 +- .../category-chart/axis-labels/package.json | 4 +- .../axis-locations/package.json | 4 +- .../category-chart/axis-options/package.json | 4 +- .../category-chart/axis-overlap/package.json | 4 +- .../category-chart/axis-range/package.json | 4 +- .../axis-tickmarks/package.json | 4 +- .../category-chart/axis-titles/package.json | 4 +- .../chart-highlight-filter/package.json | 4 +- .../package.json | 4 +- .../column-chart-single-source/package.json | 4 +- .../column-chart-styling/package.json | 4 +- .../column-chart-with-tooltips/package.json | 4 +- .../custom-selection/package.json | 4 +- .../data-aggregations/package.json | 4 +- .../category-chart/data-filter/package.json | 4 +- .../package.json | 4 +- .../category-chart/data-legend/package.json | 4 +- .../package.json | 4 +- .../data-tooltip-positioning/package.json | 4 +- .../category-chart/data-tooltip/package.json | 4 +- .../format-specifiers/package.json | 4 +- .../highlighting-behavior/package.json | 4 +- .../highlighting-mode/package.json | 4 +- .../legend-highlighting/package.json | 4 +- .../line-chart-multiple-sources/package.json | 4 +- .../line-chart-single-source/package.json | 4 +- .../line-chart-styling/package.json | 4 +- .../marker-options/package.json | 4 +- .../category-chart/overview/package.json | 4 +- .../point-chart-multiple-sources/package.json | 4 +- .../point-chart-single-source/package.json | 4 +- .../point-chart-styling/package.json | 4 +- .../selection-matcher/package.json | 4 +- .../selection-modes/package.json | 4 +- .../selection-multiple-modes/package.json | 4 +- .../spline-area-multiple-sources/package.json | 4 +- .../spline-area-single-source/package.json | 4 +- .../spline-area-styling/package.json | 4 +- .../spline-multiple-sources/package.json | 4 +- .../spline-single-source/package.json | 4 +- .../spline-styling/package.json | 4 +- .../step-area-multiple-sources/package.json | 4 +- .../step-area-single-source/package.json | 4 +- .../step-area-styling/package.json | 4 +- .../step-line-multiple-sources/package.json | 4 +- .../step-line-single-source/package.json | 4 +- .../step-line-styling/package.json | 4 +- .../category-chart/value-lines/package.json | 4 +- .../chart-dashboard/package.json | 6 +- .../financial-dashboard/package.json | 4 +- .../gauge-dashboard/package.json | 4 +- .../local-data-source-dashboard/package.json | 4 +- .../dashboard-tile/map-dashboard/package.json | 4 +- .../dashboard-tile/pie-dashboard/package.json | 4 +- .../annotations-custom/package.json | 4 +- .../package.json | 4 +- .../axis-label-rotation/package.json | 4 +- .../data-chart/axis-min-max-gap/package.json | 4 +- .../bar-chart-multiple-sources/package.json | 4 +- .../bar-chart-overlapping/package.json | 4 +- .../bar-chart-single-source/package.json | 4 +- .../data-chart/bar-chart-styling/package.json | 4 +- .../callout-layer-styling/package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../chart-highlight-filter/package.json | 4 +- .../custom-drawing-annotations/package.json | 2 +- .../custom-editing-data/package.json | 2 +- .../data-chart/dash-array-axes/package.json | 4 +- .../data-chart/dash-array-series/package.json | 4 +- .../dash-array-tickmarks/package.json | 4 +- .../dash-array-trendline/package.json | 4 +- .../data-annotation-band-layer/package.json | 4 +- .../data-annotation-line-layer/package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../data-annotation-rect-layer/package.json | 4 +- .../data-annotation-slice-layer/package.json | 4 +- .../data-annotation-strip-layer/package.json | 4 +- .../package.json | 4 +- .../data-legend-grouping/package.json | 4 +- .../data-legend-styling/package.json | 4 +- .../data-chart/data-legend/package.json | 4 +- .../package.json | 4 +- .../data-tooltip-grouping/package.json | 4 +- .../data-tooltip-styling/package.json | 4 +- .../data-chart/data-tooltip/package.json | 4 +- .../financial-price-series/package.json | 4 +- .../data-chart/format-specifiers/package.json | 4 +- .../itemized-bar-chart/package.json | 2 +- .../itemized-column-chart/package.json | 2 +- .../itemized-stacked-bar-chart/package.json | 2 +- .../package.json | 2 +- .../polar-area-chart-styling/package.json | 4 +- .../data-chart/polar-area-chart/package.json | 4 +- .../data-chart/polar-line-chart/package.json | 4 +- .../polar-scatter-chart/package.json | 4 +- .../polar-spline-area-chart/package.json | 4 +- .../polar-spline-chart/package.json | 4 +- .../radial-area-chart-styling/package.json | 4 +- .../data-chart/radial-area-chart/package.json | 4 +- .../package.json | 4 +- .../radial-column-chart/package.json | 4 +- .../data-chart/radial-label-mode/package.json | 4 +- .../data-chart/radial-line-chart/package.json | 4 +- .../data-chart/radial-pie-chart/package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../data-chart/range-area-chart/package.json | 4 +- .../range-column-chart/package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../scatter-bubble-chart-styling/package.json | 4 +- .../scatter-line-chart/package.json | 4 +- .../scatter-line-threshold/package.json | 2 +- .../scatter-point-chart/package.json | 4 +- .../scatter-spline-chart/package.json | 4 +- .../data-chart/selection-matcher/package.json | 4 +- .../stacked-100-area-chart/package.json | 4 +- .../stacked-100-bar-chart/package.json | 4 +- .../stacked-100-column-chart/package.json | 4 +- .../stacked-100-line-chart/package.json | 4 +- .../package.json | 4 +- .../stacked-100-spline-chart/package.json | 4 +- .../stacked-area-chart/package.json | 4 +- .../data-chart/stacked-bar-chart/package.json | 4 +- .../stacked-column-chart/package.json | 4 +- .../stacked-line-chart/package.json | 4 +- .../stacked-spline-area-chart/package.json | 4 +- .../stacked-spline-chart/package.json | 4 +- .../data-chart/transition-event/package.json | 4 +- .../data-chart/trendline-layer/package.json | 4 +- .../user-annotation-layer/package.json | 4 +- .../data-chart/waterfall-chart/package.json | 4 +- .../animation-replay/package.json | 4 +- .../data-pie-chart/animation/package.json | 4 +- .../highlight-filter/package.json | 4 +- .../data-pie-chart/highlighting/package.json | 4 +- .../charts/data-pie-chart/legend/package.json | 4 +- .../charts/data-pie-chart/others/package.json | 4 +- .../data-pie-chart/overview/package.json | 4 +- .../data-pie-chart/selection/package.json | 4 +- .../charts/doughnut-chart/legend/package.json | 4 +- .../doughnut-chart/overview/package.json | 4 +- .../charts/doughnut-chart/rings/package.json | 4 +- .../package.json | 4 +- .../data-legend-styling-props/package.json | 4 +- .../financial-chart/data-legend/package.json | 4 +- .../package.json | 4 +- .../data-tooltip-styling-props/package.json | 4 +- .../financial-chart/data-tooltip/package.json | 4 +- .../format-specifiers/package.json | 4 +- .../financial-chart/scrollbars/package.json | 4 +- samples/charts/pie-chart/legend/package.json | 4 +- samples/charts/pie-chart/others/package.json | 4 +- .../charts/pie-chart/overview/package.json | 4 +- samples/charts/pie-chart/styling/package.json | 4 +- .../sparkline/display-area/package.json | 4 +- .../sparkline/display-column/package.json | 4 +- .../sparkline/display-lines/package.json | 4 +- .../sparkline/display-winloss/package.json | 4 +- samples/charts/sparkline/grid/package.json | 2 +- samples/charts/sparkline/markers/package.json | 4 +- .../sparkline/normal-range/package.json | 4 +- .../charts/sparkline/trendlines/package.json | 4 +- .../sparkline/unknown-values/package.json | 4 +- .../package.json | 4 +- .../actions-built-in-data-chart/package.json | 4 +- .../toolbar/color-editor-support/package.json | 4 +- .../charts/toolbar/custom-tool/package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- samples/charts/toolbar/theming/package.json | 4 +- .../highlighting-percent-based/package.json | 4 +- .../charts/tree-map/highlighting/package.json | 4 +- samples/charts/tree-map/layout/package.json | 4 +- samples/charts/tree-map/overview/package.json | 4 +- samples/charts/tree-map/styling/package.json | 4 +- .../operations-on-workbooks/package.json | 2 +- .../working-with-charts/package.json | 2 +- .../working-with-sparklines/package.json | 2 +- .../data-grid/accessibility/package.json | 2 +- .../binding-data-service/package.json | 2 +- .../data-grid/binding-live-data/package.json | 4 +- .../data-grid/binding-local-data/package.json | 2 +- .../binding-remote-data/package.json | 2 +- .../data-grid/cell-activation/package.json | 2 +- .../grids/data-grid/cell-editing/package.json | 2 +- .../grids/data-grid/cell-merging/package.json | 2 +- .../data-grid/cell-selection/package.json | 2 +- .../data-grid/column-animation/package.json | 2 +- .../column-chooser-picker/package.json | 2 +- .../column-chooser-toolbar/package.json | 2 +- .../column-filter-expressions/package.json | 2 +- .../column-filter-operands/package.json | 2 +- .../data-grid/column-filtering/package.json | 2 +- .../data-grid/column-moving/package.json | 2 +- .../data-grid/column-options/package.json | 2 +- .../column-pinning-picker/package.json | 2 +- .../column-pinning-toolbar/package.json | 2 +- .../data-grid/column-resizing/package.json | 2 +- .../data-grid/column-scrolling/package.json | 2 +- .../data-grid/column-sorting/package.json | 2 +- .../data-grid/column-summaries/package.json | 2 +- .../grids/data-grid/column-types/package.json | 2 +- .../data-grid/load-save-layout/package.json | 4 +- .../grids/data-grid/localization/package.json | 2 +- samples/grids/data-grid/overview/package.json | 2 +- samples/grids/data-grid/pager/package.json | 2 +- .../grids/data-grid/performance/package.json | 2 +- .../row-group-descriptions/package.json | 2 +- .../grids/data-grid/row-grouping/package.json | 2 +- .../data-grid/row-highlighting/package.json | 2 +- .../grids/data-grid/row-paging/package.json | 2 +- .../grids/data-grid/row-pinning/package.json | 2 +- .../data-grid/row-selection/package.json | 2 +- .../type-comparison-table/package.json | 2 +- .../data-grid/type-heatmap-table/package.json | 2 +- .../type-marketing-table/package.json | 2 +- .../data-grid/type-matrix-table/package.json | 2 +- .../type-periodic-table/package.json | 2 +- .../column-config-basic/package.json | 6 +- .../column-config-dynamic/package.json | 6 +- .../column-config-headers/package.json | 6 +- .../grids/grid-lite/data-binding/package.json | 6 +- .../filtering-config-events/package.json | 6 +- .../filtering-config-remote/package.json | 6 +- .../grid-lite/filtering-config/package.json | 6 +- samples/grids/grid-lite/overview/package.json | 6 +- .../grid-lite/sort-config-events/package.json | 6 +- .../grid-lite/sort-config-grid/package.json | 6 +- .../sort-config-pipeline/package.json | 6 +- .../grid-lite/sort-config-sample/package.json | 6 +- .../styling-custom-theme/package.json | 6 +- samples/grids/grid/action-strip/package.json | 6 +- .../advanced-filtering-options/package.json | 6 +- .../advanced-filtering-style/package.json | 6 +- .../grid/binding-composite-data/package.json | 6 +- .../grids/grid/binding-crud-data/package.json | 6 +- .../grid/binding-nested-data-1/package.json | 6 +- .../grids/grid/cascading-combo/package.json | 6 +- .../grid/cell-editing-sample/package.json | 6 +- .../grid/cell-editing-styling/package.json | 6 +- .../cell-merge-custom-sample/package.json | 6 +- samples/grids/grid/cell-merge/package.json | 6 +- .../grid/cell-selection-mode/package.json | 6 +- .../grid/cell-selection-style/package.json | 6 +- .../grid/change-icons-custom/package.json | 6 +- .../grid/clipboard-operations/package.json | 6 +- .../grid/column-auto-sizing/package.json | 6 +- .../column-collapsible-groups/package.json | 6 +- .../grids/grid/column-data-types/package.json | 6 +- .../grid/column-hiding-options/package.json | 6 +- .../column-hiding-toolbar-style/package.json | 6 +- .../grid/column-hiding-toolbar/package.json | 6 +- .../grid/column-moving-options/package.json | 6 +- .../grid/column-moving-styles/package.json | 6 +- .../column-pinning-both-sides/package.json | 6 +- .../grid/column-pinning-options/package.json | 6 +- .../column-pinning-right-side/package.json | 6 +- .../grid/column-pinning-styles/package.json | 6 +- .../grids/grid/column-pinning/package.json | 6 +- .../grid/column-resize-styling/package.json | 6 +- .../grids/grid/column-resizing/package.json | 6 +- .../grid/column-selection-group/package.json | 6 +- .../grid/column-selection-mode/package.json | 6 +- .../grid/column-selection-styles/package.json | 6 +- .../column-sorting-indicators/package.json | 6 +- .../grid/column-sorting-options/package.json | 6 +- .../grid/column-sorting-style/package.json | 6 +- .../conditional-cell-style-1/package.json | 6 +- .../conditional-cell-style-2/package.json | 6 +- .../conditional-row-selectors/package.json | 6 +- .../grid/custom-context-menu/package.json | 6 +- .../data-batch-editing-actions/package.json | 6 +- .../data-exporting-indicator/package.json | 14 +-- .../package.json | 6 +- .../grids/grid/data-searching/package.json | 6 +- .../grid/data-summary-formatter/package.json | 6 +- .../grid/data-summary-options/package.json | 6 +- .../grid/data-summary-template/package.json | 6 +- .../grid/data-validation-style/package.json | 6 +- .../package.json | 6 +- .../package.json | 6 +- .../grid/data-validator-service/package.json | 6 +- .../grid/disabled-summaries/package.json | 4 +- .../grids/grid/editing-columns/package.json | 6 +- .../grids/grid/editing-events/package.json | 6 +- .../grid/editing-excel-style/package.json | 6 +- .../grids/grid/editing-lifecycle/package.json | 6 +- .../grids/grid/excel-exporting/package.json | 6 +- .../package.json | 6 +- .../package.json | 6 +- .../package.json | 6 +- .../excel-style-filtering-style/package.json | 6 +- .../external-advanced-filtering/package.json | 6 +- .../grids/grid/filtering-options/package.json | 6 +- .../grid/filtering-strategy/package.json | 6 +- .../grids/grid/filtering-style/package.json | 6 +- samples/grids/grid/finjs/package.json | 6 +- .../grids/grid/groupby-custom/package.json | 6 +- .../grid/groupby-expressions/package.json | 6 +- .../grids/grid/groupby-paging/package.json | 6 +- .../grids/grid/groupby-styling/package.json | 6 +- .../grid/groupby-summary-options/package.json | 6 +- .../grid/groupby-summary-styling/package.json | 6 +- .../grids/grid/infinite-scroll/package.json | 6 +- .../keyboard-custom-navigation/package.json | 6 +- .../grid/keyboard-mrl-navigation/package.json | 6 +- .../grid/layout-display-density/package.json | 6 +- samples/grids/grid/master-detail/package.json | 6 +- .../multi-cell-selection-mode/package.json | 6 +- .../multi-column-headers-export/package.json | 6 +- .../package.json | 6 +- .../multi-column-headers-styling/package.json | 6 +- .../package.json | 6 +- .../multi-row-layout-options/package.json | 6 +- .../grid/multi-row-layout-style/package.json | 6 +- samples/grids/grid/overview/package.json | 6 +- samples/grids/grid/paste/package.json | 6 +- .../grid/remote-paging-data/package.json | 6 +- .../grid/remote-paging-grid/package.json | 6 +- samples/grids/grid/row-adding/package.json | 6 +- samples/grids/grid/row-classes/package.json | 6 +- samples/grids/grid/row-drag-base/package.json | 6 +- .../grid/row-editing-options/package.json | 6 +- .../grids/grid/row-editing-style/package.json | 6 +- .../grids/grid/row-paging-basic/package.json | 6 +- .../grid/row-paging-options/package.json | 6 +- .../grids/grid/row-pinning-drag/package.json | 6 +- .../row-pinning-extra-column/package.json | 6 +- .../grid/row-pinning-options/package.json | 6 +- .../grids/grid/row-pinning-style/package.json | 6 +- samples/grids/grid/row-reorder/package.json | 6 +- .../grid/row-selection-mode/package.json | 6 +- .../row-selection-template-excel/package.json | 6 +- .../package.json | 6 +- samples/grids/grid/row-styles/package.json | 6 +- .../grid/state-persistence-about/package.json | 6 +- .../grid/state-persistence-main/package.json | 6 +- .../grid/styling-custom-CSS/package.json | 6 +- .../grids/grid/toolbar-sample-1/package.json | 6 +- .../grids/grid/toolbar-sample-2/package.json | 6 +- .../grids/grid/toolbar-sample-3/package.json | 6 +- samples/grids/grid/toolbar-style/package.json | 6 +- .../action-strip/package.json | 6 +- .../advanced-filtering-options/package.json | 6 +- .../advanced-filtering-style/package.json | 6 +- .../cell-editing-sample/package.json | 6 +- .../cell-editing-styling/package.json | 6 +- .../cell-merge-custom-sample/package.json | 6 +- .../hierarchical-grid/cell-merge/package.json | 6 +- .../cell-selection-mode/package.json | 6 +- .../cell-selection-overview/package.json | 6 +- .../cell-selection-style/package.json | 6 +- .../column-auto-sizing/package.json | 6 +- .../column-collapsible-groups/package.json | 6 +- .../column-hiding-toolbar-style/package.json | 6 +- .../column-hiding-toolbar/package.json | 6 +- .../column-moving-options/package.json | 6 +- .../column-moving-styles/package.json | 6 +- .../column-pinning-both-sides/package.json | 6 +- .../column-pinning-options/package.json | 6 +- .../column-pinning-right-side/package.json | 6 +- .../column-pinning-styles/package.json | 6 +- .../column-pinning/package.json | 6 +- .../column-resize-styling/package.json | 6 +- .../column-resizing/package.json | 6 +- .../column-selection-group/package.json | 6 +- .../column-selection-mode/package.json | 6 +- .../column-selection-styles/package.json | 6 +- .../column-sorting-indicators/package.json | 6 +- .../column-sorting-options/package.json | 6 +- .../column-sorting-style/package.json | 6 +- .../conditional-cell-style-1/package.json | 6 +- .../conditional-cell-style-2/package.json | 6 +- .../conditional-row-selectors/package.json | 6 +- .../custom-filtering/package.json | 6 +- .../data-exporting-indicator/package.json | 6 +- .../package.json | 6 +- .../data-summary-formatter/package.json | 6 +- .../data-summary-options-styling/package.json | 6 +- .../data-summary-options/package.json | 6 +- .../data-summary-template/package.json | 6 +- .../disabled-summaries/package.json | 4 +- .../editing-columns/package.json | 6 +- .../editing-events/package.json | 6 +- .../editing-lifecycle/package.json | 6 +- .../excel-exporting/package.json | 6 +- .../package.json | 6 +- .../package.json | 6 +- .../package.json | 6 +- .../excel-style-filtering-style/package.json | 6 +- .../filtering-options/package.json | 6 +- .../filtering-style/package.json | 6 +- .../hierarchical-grid-options/package.json | 6 +- .../package.json | 6 +- .../hierarchical-grid-styling/package.json | 6 +- .../layout-display-density/package.json | 6 +- .../multi-column-headers-export/package.json | 6 +- .../package.json | 6 +- .../multi-column-headers-styling/package.json | 6 +- .../package.json | 6 +- .../hierarchical-grid/overview/package.json | 6 +- .../remote-paging-hgrid/package.json | 6 +- .../hierarchical-grid/row-adding/package.json | 6 +- .../row-classes/package.json | 6 +- .../row-drag-base/package.json | 6 +- .../row-editing-options/package.json | 6 +- .../row-editing-style/package.json | 6 +- .../row-pinning-extra-column/package.json | 6 +- .../row-pinning-options/package.json | 6 +- .../row-pinning-style/package.json | 6 +- .../row-reorder/package.json | 6 +- .../row-selection-mode/package.json | 6 +- .../package.json | 6 +- .../hierarchical-grid/row-styles/package.json | 6 +- .../state-persistence-about/package.json | 6 +- .../state-persistence-main/package.json | 6 +- .../toolbar-sample-3/package.json | 6 +- .../toolbar-sample-4/package.json | 6 +- .../toolbar-style/package.json | 6 +- .../grids/list/add-list-items/package.json | 2 +- .../grids/list/list-item-content/package.json | 2 +- samples/grids/list/overview/package.json | 2 +- samples/grids/list/styling/package.json | 2 +- .../aggregate-max-sales/package.json | 6 +- .../aggregate-units-sold/package.json | 6 +- .../pivot-grid/data-selector/package.json | 6 +- .../grids/pivot-grid/features/package.json | 6 +- .../state-persistence-about/package.json | 6 +- .../state-persistence-main/package.json | 6 +- .../grids/tree-grid/action-strip/package.json | 6 +- .../advanced-filtering-options/package.json | 6 +- .../advanced-filtering-style/package.json | 6 +- .../cell-editing-sample/package.json | 6 +- .../cell-editing-styling/package.json | 6 +- .../cell-merge-custom-sample/package.json | 6 +- .../grids/tree-grid/cell-merge/package.json | 6 +- .../cell-selection-mode/package.json | 6 +- .../cell-selection-style/package.json | 6 +- .../clipboard-operations/package.json | 6 +- .../tree-grid/column-auto-sizing/package.json | 6 +- .../column-collapsible-groups/package.json | 6 +- .../tree-grid/column-data-types/package.json | 6 +- .../column-hiding-toolbar-style/package.json | 6 +- .../column-hiding-toolbar/package.json | 6 +- .../column-moving-options/package.json | 6 +- .../column-moving-styles/package.json | 6 +- .../column-pinning-both-sides/package.json | 6 +- .../column-pinning-options/package.json | 6 +- .../column-pinning-right-side/package.json | 6 +- .../column-pinning-styles/package.json | 6 +- .../column-pinning-toolbar/package.json | 6 +- .../tree-grid/column-pinning/package.json | 6 +- .../column-resize-styling/package.json | 6 +- .../tree-grid/column-resizing/package.json | 6 +- .../column-selection-group/package.json | 6 +- .../column-selection-mode/package.json | 6 +- .../column-selection-style/package.json | 6 +- .../column-selection-styles/package.json | 6 +- .../column-sorting-indicators/package.json | 6 +- .../column-sorting-options/package.json | 6 +- .../column-sorting-style/package.json | 6 +- .../conditional-cell-style-1/package.json | 6 +- .../conditional-cell-style-2/package.json | 6 +- .../conditional-row-selectors/package.json | 6 +- .../data-exporting-indicator/package.json | 6 +- .../tree-grid/data-searching/package.json | 4 +- .../data-summary-children/package.json | 6 +- .../data-summary-formatter/package.json | 6 +- .../data-summary-options-styling/package.json | 6 +- .../data-summary-options/package.json | 6 +- .../data-summary-template/package.json | 6 +- .../tree-grid/disabled-summaries/package.json | 4 +- .../tree-grid/editing-columns/package.json | 6 +- .../tree-grid/editing-events/package.json | 6 +- .../tree-grid/editing-lifecycle/package.json | 6 +- .../tree-grid/excel-exporting/package.json | 6 +- .../package.json | 6 +- .../package.json | 6 +- .../package.json | 6 +- .../excel-style-filtering-style/package.json | 6 +- .../tree-grid/filtering-options/package.json | 6 +- .../tree-grid/filtering-style/package.json | 6 +- .../keyboard-custom-navigation/package.json | 6 +- .../layout-display-density/package.json | 6 +- .../multi-cell-selection-mode/package.json | 6 +- .../multi-column-headers-export/package.json | 6 +- .../package.json | 6 +- .../multi-column-headers-styling/package.json | 6 +- .../package.json | 6 +- .../tree-grid/overview-styling/package.json | 6 +- samples/grids/tree-grid/overview/package.json | 6 +- .../grids/tree-grid/row-adding/package.json | 6 +- .../grids/tree-grid/row-classes/package.json | 6 +- .../tree-grid/row-drag-base/package.json | 6 +- .../row-editing-options/package.json | 6 +- .../tree-grid/row-editing-style/package.json | 6 +- .../tree-grid/row-paging-basic/package.json | 6 +- .../tree-grid/row-paging-options/package.json | 6 +- .../tree-grid/row-paging-style/package.json | 6 +- .../row-pinning-extra-column/package.json | 6 +- .../row-pinning-options/package.json | 6 +- .../tree-grid/row-pinning-style/package.json | 6 +- .../grids/tree-grid/row-reorder/package.json | 6 +- .../tree-grid/row-selection-mode/package.json | 6 +- .../row-selection-template-excel/package.json | 6 +- .../package.json | 6 +- .../grids/tree-grid/row-styles/package.json | 6 +- .../state-persistence-about/package.json | 6 +- .../state-persistence-main/package.json | 6 +- .../tree-grid/toolbar-sample-1/package.json | 6 +- .../tree-grid/toolbar-sample-2/package.json | 6 +- .../tree-grid/toolbar-sample-3/package.json | 6 +- .../tree-grid/toolbar-sample-4/package.json | 6 +- .../tree-grid/toolbar-style/package.json | 6 +- .../using-primary-foreign-keys/package.json | 6 +- samples/grids/tree/basic-example/package.json | 2 +- samples/grids/tree/styling/package.json | 2 +- samples/inputs/badge/outlined/package.json | 4 +- samples/inputs/badge/shape/package.json | 4 +- samples/inputs/badge/styling/package.json | 4 +- samples/inputs/badge/variants/package.json | 4 +- .../button-group/alignment/package.json | 4 +- .../inputs/button-group/overview/package.json | 4 +- .../button-group/selection/package.json | 4 +- samples/inputs/button-group/size/package.json | 4 +- .../inputs/button-group/styling/package.json | 4 +- samples/inputs/button/contained/package.json | 4 +- samples/inputs/button/download/package.json | 4 +- samples/inputs/button/fab/package.json | 4 +- samples/inputs/button/flat/package.json | 4 +- samples/inputs/button/outlined/package.json | 4 +- samples/inputs/button/overview/package.json | 4 +- samples/inputs/button/size/package.json | 4 +- samples/inputs/button/styling/package.json | 4 +- samples/inputs/checkbox/checking/package.json | 4 +- samples/inputs/checkbox/disabled/package.json | 4 +- .../checkbox/indeterminate/package.json | 4 +- samples/inputs/checkbox/label/package.json | 4 +- samples/inputs/checkbox/overview/package.json | 4 +- samples/inputs/checkbox/styling/package.json | 4 +- samples/inputs/chip/multiple/package.json | 4 +- samples/inputs/chip/overview/package.json | 4 +- samples/inputs/chip/size/package.json | 4 +- samples/inputs/chip/styling/package.json | 4 +- samples/inputs/chip/variants/package.json | 4 +- .../dynamic/package.json | 4 +- .../indeterminate/package.json | 4 +- .../simple/package.json | 4 +- .../styling/package.json | 4 +- .../inputs/color-editor/overview/package.json | 4 +- samples/inputs/combo/features/package.json | 4 +- samples/inputs/combo/overview/package.json | 4 +- samples/inputs/combo/selection/package.json | 4 +- samples/inputs/combo/simplified/package.json | 4 +- samples/inputs/combo/styling/package.json | 4 +- samples/inputs/combo/templates/package.json | 6 +- .../input-format-display-format/package.json | 4 +- .../min-max-value/package.json | 4 +- .../date-time-input/overview/package.json | 4 +- .../date-time-input/step-up-down/package.json | 4 +- .../date-time-input/styling/package.json | 4 +- samples/inputs/dropdown/group/package.json | 4 +- samples/inputs/dropdown/header/package.json | 4 +- samples/inputs/dropdown/item/package.json | 4 +- samples/inputs/dropdown/overview/package.json | 4 +- samples/inputs/dropdown/position/package.json | 4 +- samples/inputs/dropdown/styling/package.json | 4 +- samples/inputs/dropdown/target/package.json | 4 +- samples/inputs/icon-button/size/package.json | 4 +- .../inputs/icon-button/styling/package.json | 4 +- .../inputs/icon-button/variant/package.json | 4 +- samples/inputs/input/helper-text/package.json | 4 +- samples/inputs/input/overview/package.json | 4 +- .../inputs/input/prefix-suffix/package.json | 4 +- samples/inputs/input/size/package.json | 4 +- samples/inputs/input/styling/package.json | 4 +- .../dynamic/package.json | 4 +- .../simple/package.json | 4 +- .../striped/package.json | 4 +- .../styling/package.json | 4 +- .../types/package.json | 4 +- .../mask-input/applying-mask/package.json | 4 +- .../inputs/mask-input/overview/package.json | 4 +- .../mask-input/value-modes/package.json | 4 +- samples/inputs/radio/alignment/package.json | 4 +- samples/inputs/radio/disabled/package.json | 4 +- samples/inputs/radio/group/package.json | 4 +- samples/inputs/radio/invalid/package.json | 4 +- samples/inputs/radio/label/package.json | 4 +- samples/inputs/radio/styling/package.json | 4 +- samples/inputs/rating/basic/package.json | 4 +- samples/inputs/rating/custom/package.json | 4 +- samples/inputs/rating/empty/package.json | 4 +- .../rating/single-selection/package.json | 4 +- samples/inputs/rating/styling/package.json | 4 +- samples/inputs/ripple/button/package.json | 4 +- samples/inputs/ripple/color/package.json | 4 +- samples/inputs/select/group/package.json | 4 +- samples/inputs/select/header/package.json | 4 +- samples/inputs/select/item/package.json | 4 +- samples/inputs/select/overview/package.json | 4 +- samples/inputs/select/styling/package.json | 4 +- .../inputs/slider/constraints/package.json | 4 +- samples/inputs/slider/disabled/package.json | 4 +- samples/inputs/slider/discrete/package.json | 4 +- samples/inputs/slider/labels/package.json | 4 +- samples/inputs/slider/overview/package.json | 4 +- samples/inputs/slider/styling/package.json | 4 +- .../inputs/slider/tick-labels/package.json | 4 +- samples/inputs/slider/ticks/package.json | 4 +- .../inputs/slider/value-format/package.json | 4 +- samples/inputs/slider/value/package.json | 4 +- samples/inputs/switches/checking/package.json | 4 +- samples/inputs/switches/disabled/package.json | 4 +- samples/inputs/switches/label/package.json | 4 +- samples/inputs/switches/overview/package.json | 4 +- samples/inputs/switches/styling/package.json | 4 +- .../textarea/form-integration/package.json | 4 +- samples/inputs/textarea/overview/package.json | 4 +- samples/inputs/textarea/resize/package.json | 4 +- samples/inputs/textarea/slots/package.json | 4 +- samples/inputs/textarea/styling/package.json | 4 +- samples/inputs/tooltip/advanced/package.json | 4 +- samples/inputs/tooltip/overview/package.json | 4 +- samples/inputs/tooltip/placement/package.json | 4 +- samples/inputs/tooltip/rich/package.json | 4 +- samples/inputs/tooltip/styling/package.json | 4 +- samples/inputs/tooltip/triggers/package.json | 4 +- .../interactions/chat/features/package.json | 4 +- .../interactions/chat/overview/package.json | 4 +- .../interactions/chat/styling/package.json | 4 +- .../query-builder/overview/package.json | 8 +- .../query-builder/template/package.json | 8 +- .../accordion/customization/package.json | 4 +- .../accordion/nested-scenario/package.json | 4 +- .../layouts/accordion/overview/package.json | 4 +- samples/layouts/avatar/icon/package.json | 4 +- samples/layouts/avatar/image/package.json | 4 +- samples/layouts/avatar/initials/package.json | 4 +- samples/layouts/avatar/shape/package.json | 4 +- samples/layouts/avatar/size/package.json | 4 +- samples/layouts/avatar/styling/package.json | 4 +- samples/layouts/card/horizontal/package.json | 4 +- samples/layouts/card/overview/package.json | 4 +- .../layouts/card/semi-horizontal/package.json | 4 +- samples/layouts/card/styling/package.json | 4 +- .../layouts/carousel/animations/package.json | 4 +- .../layouts/carousel/components/package.json | 4 +- .../layouts/carousel/overview/package.json | 4 +- .../layouts/carousel/thumbnail/package.json | 4 +- samples/layouts/divider/dashed/package.json | 4 +- samples/layouts/divider/middle/package.json | 4 +- samples/layouts/divider/overview/package.json | 4 +- samples/layouts/divider/select/package.json | 4 +- samples/layouts/divider/vertical/package.json | 4 +- .../layouts/dock-manager/styling/package.json | 2 +- .../component-customization/package.json | 4 +- .../properties-and-events/package.json | 4 +- .../expansion-panel/styling/package.json | 4 +- .../expansion-panel/usage/package.json | 4 +- samples/layouts/icon/sizing/package.json | 4 +- samples/layouts/icon/styling/package.json | 4 +- .../layouts/stepper/animations/package.json | 4 +- samples/layouts/stepper/linear/package.json | 4 +- .../layouts/stepper/orientation/package.json | 4 +- .../layouts/stepper/steptypes/package.json | 4 +- samples/layouts/stepper/styling/package.json | 4 +- samples/layouts/tabs/alignment/package.json | 4 +- samples/layouts/tabs/overview/package.json | 4 +- .../layouts/tabs/prefix-suffix/package.json | 4 +- samples/layouts/tabs/scrolling/package.json | 4 +- samples/layouts/tabs/styling/package.json | 4 +- .../layouts/tile-manager/actions/package.json | 4 +- .../tile-manager/columngap/package.json | 4 +- .../tile-manager/dragndrop/package.json | 4 +- .../layouts/tile-manager/layout/package.json | 4 +- .../tile-manager/overview/package.json | 4 +- .../layouts/tile-manager/resize/package.json | 4 +- .../layouts/tile-manager/styling/package.json | 4 +- .../geo-map/display-all-imagery/package.json | 2 +- .../display-azure-imagery/package.json | 2 +- .../geo-map/display-bing-imagery/package.json | 2 +- samples/menus/nav-bar/overview/package.json | 4 +- samples/menus/nav-bar/styling/package.json | 4 +- .../nav-drawer/add-drawer-items/package.json | 4 +- .../menus/nav-drawer/add-mini/package.json | 4 +- .../add-positions-navbar/package.json | 4 +- samples/menus/nav-drawer/styling/package.json | 4 +- .../banner-advanced-sample/package.json | 4 +- .../banner/banner-sample-1/package.json | 4 +- .../banner/banner-sample-2/package.json | 4 +- .../banner/banner-styling/package.json | 4 +- .../dialog/closing-variations/package.json | 4 +- .../notifications/dialog/form/package.json | 4 +- .../dialog/overview/package.json | 4 +- .../notifications/dialog/styling/package.json | 4 +- .../snackbar/action-text/package.json | 4 +- .../snackbar/display-time/package.json | 4 +- .../snackbar/overview/package.json | 4 +- .../snackbar/styling/package.json | 4 +- .../notifications/toast/overview/package.json | 4 +- .../toast/properties/package.json | 4 +- .../notifications/toast/styling/package.json | 4 +- .../calendar/disabled-dates/package.json | 4 +- .../calendar/formatting/package.json | 4 +- .../scheduling/calendar/header/package.json | 4 +- .../calendar/multiple-months/package.json | 4 +- .../calendar/multiple-selection/package.json | 4 +- .../scheduling/calendar/overview/package.json | 4 +- .../calendar/range-selection/package.json | 4 +- samples/scheduling/calendar/size/package.json | 4 +- .../calendar/special-dates/package.json | 4 +- .../scheduling/calendar/styling/package.json | 4 +- .../calendar/week-numbers/package.json | 4 +- .../date-picker/dialog-mode/package.json | 4 +- .../scheduling/date-picker/form/package.json | 4 +- .../date-picker/format/package.json | 4 +- .../date-picker/overview/package.json | 4 +- .../date-picker/styling/package.json | 4 +- .../custom-ranges/package.json | 4 +- .../date-range-picker/form/package.json | 4 +- .../date-range-picker/overview/package.json | 4 +- .../date-range-picker/slots/package.json | 4 +- .../date-range-picker/styling/package.json | 4 +- 743 files changed, 1751 insertions(+), 1809 deletions(-) diff --git a/browser/package-lock.json b/browser/package-lock.json index c0fbfbf81d..2b35a48853 100644 --- a/browser/package-lock.json +++ b/browser/package-lock.json @@ -16,8 +16,8 @@ "dompurify": "^3.3.0", "file-saver": "1.3.8", "igniteui-dockmanager": "^1.17.0", - "igniteui-grid-lite": "~0.5.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-grid-lite": "~0.6.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-dashboards": "19.3.2", @@ -26,14 +26,14 @@ "igniteui-react-dockmanager": "^19.4.0", "igniteui-react-excel": "19.3.2", "igniteui-react-gauges": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-react-maps": "19.3.2", "igniteui-react-spreadsheet": "19.3.2", "igniteui-react-spreadsheet-chart-adapter": "19.3.2", "igniteui-theming": "^24.0.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "marked": "^17.0.0", "marked-shiki": "^1.2.1", @@ -8922,60 +8922,20 @@ } }, "node_modules/igniteui-grid-lite": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/igniteui-grid-lite/-/igniteui-grid-lite-0.5.1.tgz", - "integrity": "sha512-4Y1PRvpeSk+iAoLu1KQmbOz1LNbZiWa+36tie47yFVmE454fxP24Ct6Q6ucwQh7DLurSPJrgYDUXMC0+CEIw7g==", + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/igniteui-grid-lite/-/igniteui-grid-lite-0.6.0.tgz", + "integrity": "sha512-hxgxzazBEAGaScazPg0OXQCvKuxdIxS96JVNa0C9Bwg0CZ/fYdoc6xjLHnD033NCdZjzJ+QtaxBprpfeOcuanw==", "license": "MIT", "dependencies": { "@lit-labs/virtualizer": "~2.1.0", "@lit/context": "~1.1.5", - "igniteui-webcomponents": "~6.5.0", + "igniteui-webcomponents": "~7.0.0", "lit": "^3.3.0" }, "engines": { "node": ">=20" } }, - "node_modules/igniteui-grid-lite/node_modules/igniteui-webcomponents": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents/-/igniteui-webcomponents-6.5.1.tgz", - "integrity": "sha512-cs/oqxuF7QowgwZ2LMTDqcpmcRqB4VWKNqshhA1dUTinxq20YjQKS/q+ix8K8sHgfg+QFXxPaOZruMLeubnIzw==", - "license": "MIT", - "dependencies": { - "@floating-ui/dom": "^1.7.0", - "@lit-labs/virtualizer": "^2.1.0", - "@lit/context": "^1.1.0", - "igniteui-i18n-core": "^1.0.1", - "lit": "^3.3.0" - }, - "engines": { - "node": ">=20" - }, - "peerDependencies": { - "dompurify": "^3.3.0", - "igniteui-i18n-resources": "^1.0.1", - "marked": "^17.0.0", - "marked-shiki": "^1.2.0", - "shiki": "^3.20.0" - }, - "peerDependenciesMeta": { - "dompurify": { - "optional": true - }, - "igniteui-i18n-resources": { - "optional": true - }, - "marked": { - "optional": true - }, - "marked-shiki": { - "optional": true - }, - "shiki": { - "optional": true - } - } - }, "node_modules/igniteui-i18n-core": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/igniteui-i18n-core/-/igniteui-i18n-core-1.0.4.tgz", @@ -8991,17 +8951,17 @@ } }, "node_modules/igniteui-react": { - "version": "19.5.0-rc.0", - "resolved": "https://registry.npmjs.org/igniteui-react/-/igniteui-react-19.5.0-rc.0.tgz", - "integrity": "sha512-CsNq/AStk+4D3jwOAVR6wPN/IbYoNWRuuQzTunmCOCmfGlSljAID7lUIKoBni6vivwcspIcMlXbCZhSnfIHrpg==", + "version": "19.5.1", + "resolved": "https://registry.npmjs.org/igniteui-react/-/igniteui-react-19.5.1.tgz", + "integrity": "sha512-ov15+Z3PK6Qk+0WlSqOGZ3w5pgrU+bYpimxi4IJRuPazywmS2fAuqquTQWJ8g1GeD5/RWMJYIuHnM9+NSRfvzg==", "license": "MIT", "dependencies": { "@lit/react": "^1.0.7", - "igniteui-webcomponents": "~7.0.0-rc.0", + "igniteui-webcomponents": "~7.0.0", "lit": "^3.3.0" }, "peerDependencies": { - "igniteui-grid-lite": "~0.5.1" + "igniteui-grid-lite": "~0.6.0" }, "peerDependenciesMeta": { "igniteui-grid-lite": { @@ -9112,13 +9072,13 @@ } }, "node_modules/igniteui-react-grids": { - "version": "19.5.0-rc.0", - "resolved": "https://registry.npmjs.org/igniteui-react-grids/-/igniteui-react-grids-19.5.0-rc.0.tgz", - "integrity": "sha512-2XSSW7epGybFJT8KMTqpmfuoUwVOi3FUuuYcE1OaVfJefaf7wb7Yjyo/tQ8YkKUcpbG7Xp1Dv5LObqQMxL53yg==", + "version": "19.5.1", + "resolved": "https://registry.npmjs.org/igniteui-react-grids/-/igniteui-react-grids-19.5.1.tgz", + "integrity": "sha512-YeL7dDcZWxfe8TnVLSkLiTwbKWZoqyfOMqhG57hcQgENoEEp5FFQ2NctLkwsB8TNCWblFwCQECnT+gSAEP78gQ==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "@lit/react": "^1.0.7", - "igniteui-webcomponents-grids": "~6.3.0-rc.2", + "igniteui-webcomponents-grids": "~7.0.0", "lit": "^3.3.0" } }, @@ -9201,9 +9161,9 @@ "license": "Apache-2.0" }, "node_modules/igniteui-webcomponents": { - "version": "7.0.0-rc.0", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents/-/igniteui-webcomponents-7.0.0-rc.0.tgz", - "integrity": "sha512-U8u6NgfTypL5Nz7KW/NHcXm7QWdqJ6ge4e2YcsTowXWAuA1DmO+l+dve3I4G8UPUT6pl7JmPV1daIRC3AuMD+g==", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents/-/igniteui-webcomponents-7.0.0.tgz", + "integrity": "sha512-FJXzExIaHhXr3jhjF5z4aXTzmTquoD9+ltUyEIm80xg0cePkmiRxaFbTzSEbOR0kbFf4AAVSEiAuqirbnRdnlw==", "license": "MIT", "dependencies": { "@floating-ui/dom": "^1.7.0", @@ -9241,9 +9201,9 @@ } }, "node_modules/igniteui-webcomponents-grids": { - "version": "6.3.0-rc.2", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-grids/-/igniteui-webcomponents-grids-6.3.0-rc.2.tgz", - "integrity": "sha512-TQT9MU1bEbq5NNm8dQlXujnaPfc//4kuji2bqTeXKEnaRZ/PfDLxGyTvqW9kPAIjDVLpyo1gJh/+IfDqAduXlg==", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-grids/-/igniteui-webcomponents-grids-7.0.0.tgz", + "integrity": "sha512-fFynguc14t1El6p7yHuBLHKN6cQMKUTf2jXYWhLLG3aJHX30a3WcbUyCK5nSRwP1ie5X+3TdNzgZ0gwVrrQk9g==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "igniteui-i18n-core": "^1.0.3", @@ -17999,24 +17959,6 @@ "dev": true, "license": "ISC" }, - "node_modules/yaml": { - "version": "2.8.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.2.tgz", - "integrity": "sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==", - "dev": true, - "license": "ISC", - "optional": true, - "peer": true, - "bin": { - "yaml": "bin.mjs" - }, - "engines": { - "node": ">= 14.6" - }, - "funding": { - "url": "https://github.com/sponsors/eemeli" - } - }, "node_modules/yargs": { "version": "17.7.2", "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", diff --git a/browser/package.json b/browser/package.json index b6797c8f1d..df19e1c9c1 100644 --- a/browser/package.json +++ b/browser/package.json @@ -24,8 +24,8 @@ "dompurify": "^3.3.0", "file-saver": "1.3.8", "igniteui-dockmanager": "^1.17.0", - "igniteui-grid-lite": "~0.5.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-grid-lite": "~0.6.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-dashboards": "19.3.2", @@ -34,14 +34,14 @@ "igniteui-react-dockmanager": "^19.4.0", "igniteui-react-excel": "19.3.2", "igniteui-react-gauges": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-react-maps": "19.3.2", "igniteui-react-spreadsheet": "19.3.2", "igniteui-react-spreadsheet-chart-adapter": "19.3.2", "igniteui-theming": "^24.0.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "marked": "^17.0.0", "marked-shiki": "^1.2.1", diff --git a/browser/tasks/gulp-samples.js b/browser/tasks/gulp-samples.js index e1a2c2b1c1..798628393d 100644 --- a/browser/tasks/gulp-samples.js +++ b/browser/tasks/gulp-samples.js @@ -849,7 +849,7 @@ function updateIG(cb) { { version: "19.3.2", name: "igniteui-react-excel" }, { version: "19.3.2", name: "igniteui-react-gauges" }, { version: "19.3.2", name: "igniteui-react-data-grids" }, - { version: "^19.5.0-rc.0", name: "igniteui-react-grids" }, + { version: "^19.5.0", name: "igniteui-react-grids" }, { version: "19.3.2", name: "igniteui-react-inputs" }, { version: "19.3.2", name: "igniteui-react-layouts" }, { version: "19.3.2", name: "igniteui-react-maps" }, @@ -857,11 +857,11 @@ function updateIG(cb) { { version: "19.3.2", name: "igniteui-react-spreadsheet" }, { version: "19.3.2", name: "igniteui-react-datasources" }, { version: "19.3.2", name: "igniteui-react-dashboards" }, - { version: "^19.5.0-rc.0", name: "igniteui-react" }, + { version: "^19.5.0", name: "igniteui-react" }, // these IG packages are sometimes updated: - { version: "^7.0.0-rc.0", name: "igniteui-webcomponents" }, + { version: "^7.0.0", name: "igniteui-webcomponents" }, { version: "^19.4.0", name: "igniteui-react-dockmanager" }, - { version: "~0.5.0", name: "igniteui-grid-lite" }, + { version: "~0.6.0", name: "igniteui-grid-lite" }, // main react packages { version: "^19.2.0", name: "react" }, { version: "^19.2.0", name: "react-dom" }, diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/area-chart-multiple-sources/package.json b/samples/charts/category-chart/area-chart-multiple-sources/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/area-chart-single-source/package.json b/samples/charts/category-chart/area-chart-single-source/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/column-chart-multiple-sources/package.json b/samples/charts/category-chart/column-chart-multiple-sources/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/column-chart-single-source/package.json b/samples/charts/category-chart/column-chart-single-source/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/custom-selection/package.json b/samples/charts/category-chart/custom-selection/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/category-chart/custom-selection/package.json +++ b/samples/charts/category-chart/custom-selection/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/data-filter/package.json b/samples/charts/category-chart/data-filter/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/category-chart/data-filter/package.json +++ b/samples/charts/category-chart/data-filter/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/package.json b/samples/charts/category-chart/data-legend-formatting-decimals/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/format-specifiers/package.json b/samples/charts/category-chart/format-specifiers/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/category-chart/format-specifiers/package.json +++ b/samples/charts/category-chart/format-specifiers/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/category-chart/highlighting-behavior/package.json +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/category-chart/highlighting-mode/package.json +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/legend-highlighting/package.json b/samples/charts/category-chart/legend-highlighting/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/category-chart/legend-highlighting/package.json +++ b/samples/charts/category-chart/legend-highlighting/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/line-chart-multiple-sources/package.json b/samples/charts/category-chart/line-chart-multiple-sources/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/line-chart-single-source/package.json b/samples/charts/category-chart/line-chart-single-source/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/point-chart-multiple-sources/package.json b/samples/charts/category-chart/point-chart-multiple-sources/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/point-chart-single-source/package.json b/samples/charts/category-chart/point-chart-single-source/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/selection-matcher/package.json b/samples/charts/category-chart/selection-matcher/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/category-chart/selection-matcher/package.json +++ b/samples/charts/category-chart/selection-matcher/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/selection-modes/package.json b/samples/charts/category-chart/selection-modes/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/category-chart/selection-modes/package.json +++ b/samples/charts/category-chart/selection-modes/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/selection-multiple-modes/package.json b/samples/charts/category-chart/selection-multiple-modes/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/category-chart/selection-multiple-modes/package.json +++ b/samples/charts/category-chart/selection-multiple-modes/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/spline-area-multiple-sources/package.json b/samples/charts/category-chart/spline-area-multiple-sources/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/spline-area-single-source/package.json b/samples/charts/category-chart/spline-area-single-source/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/step-area-multiple-sources/package.json b/samples/charts/category-chart/step-area-multiple-sources/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/step-area-single-source/package.json b/samples/charts/category-chart/step-area-single-source/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/step-line-multiple-sources/package.json b/samples/charts/category-chart/step-line-multiple-sources/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/step-line-single-source/package.json b/samples/charts/category-chart/step-line-single-source/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/dashboard-tile/chart-dashboard/package.json b/samples/charts/dashboard-tile/chart-dashboard/package.json index 1811f7e4d5..82d690261d 100644 --- a/samples/charts/dashboard-tile/chart-dashboard/package.json +++ b/samples/charts/dashboard-tile/chart-dashboard/package.json @@ -14,17 +14,17 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-dashboards": "19.3.2", "igniteui-react-datasources": "19.3.2", "igniteui-react-gauges": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-react-maps": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/dashboard-tile/financial-dashboard/package.json b/samples/charts/dashboard-tile/financial-dashboard/package.json index 5478abf5fc..f7c52cbf68 100644 --- a/samples/charts/dashboard-tile/financial-dashboard/package.json +++ b/samples/charts/dashboard-tile/financial-dashboard/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-dashboards": "19.3.2", @@ -24,7 +24,7 @@ "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-react-maps": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/dashboard-tile/gauge-dashboard/package.json b/samples/charts/dashboard-tile/gauge-dashboard/package.json index 5478abf5fc..f7c52cbf68 100644 --- a/samples/charts/dashboard-tile/gauge-dashboard/package.json +++ b/samples/charts/dashboard-tile/gauge-dashboard/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-dashboards": "19.3.2", @@ -24,7 +24,7 @@ "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-react-maps": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/dashboard-tile/local-data-source-dashboard/package.json b/samples/charts/dashboard-tile/local-data-source-dashboard/package.json index 5478abf5fc..f7c52cbf68 100644 --- a/samples/charts/dashboard-tile/local-data-source-dashboard/package.json +++ b/samples/charts/dashboard-tile/local-data-source-dashboard/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-dashboards": "19.3.2", @@ -24,7 +24,7 @@ "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-react-maps": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/dashboard-tile/map-dashboard/package.json b/samples/charts/dashboard-tile/map-dashboard/package.json index 5478abf5fc..f7c52cbf68 100644 --- a/samples/charts/dashboard-tile/map-dashboard/package.json +++ b/samples/charts/dashboard-tile/map-dashboard/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-dashboards": "19.3.2", @@ -24,7 +24,7 @@ "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-react-maps": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/dashboard-tile/pie-dashboard/package.json b/samples/charts/dashboard-tile/pie-dashboard/package.json index 5478abf5fc..f7c52cbf68 100644 --- a/samples/charts/dashboard-tile/pie-dashboard/package.json +++ b/samples/charts/dashboard-tile/pie-dashboard/package.json @@ -14,7 +14,7 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-dashboards": "19.3.2", @@ -24,7 +24,7 @@ "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "igniteui-react-maps": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/package.json b/samples/charts/data-chart/axis-annotations-corner-radius/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/axis-min-max-gap/package.json b/samples/charts/data-chart/axis-min-max-gap/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/package.json b/samples/charts/data-chart/bar-chart-multiple-sources/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/bar-chart-single-source/package.json b/samples/charts/data-chart/bar-chart-single-source/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/custom-drawing-annotations/package.json b/samples/charts/data-chart/custom-drawing-annotations/package.json index 97a1d95706..76eac242b3 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/package.json +++ b/samples/charts/data-chart/custom-drawing-annotations/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", diff --git a/samples/charts/data-chart/custom-editing-data/package.json b/samples/charts/data-chart/custom-editing-data/package.json index d1b55773f2..692cf6c80a 100644 --- a/samples/charts/data-chart/custom-editing-data/package.json +++ b/samples/charts/data-chart/custom-editing-data/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "react": "^19.2.0", diff --git a/samples/charts/data-chart/dash-array-axes/package.json b/samples/charts/data-chart/dash-array-axes/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/dash-array-axes/package.json +++ b/samples/charts/data-chart/dash-array-axes/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/dash-array-series/package.json b/samples/charts/data-chart/dash-array-series/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/dash-array-series/package.json +++ b/samples/charts/data-chart/dash-array-series/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/dash-array-tickmarks/package.json b/samples/charts/data-chart/dash-array-tickmarks/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/package.json +++ b/samples/charts/data-chart/dash-array-tickmarks/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/dash-array-trendline/package.json b/samples/charts/data-chart/dash-array-trendline/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/dash-array-trendline/package.json +++ b/samples/charts/data-chart/dash-array-trendline/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/data-annotation-band-layer/package.json b/samples/charts/data-chart/data-annotation-band-layer/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/data-annotation-band-layer/package.json +++ b/samples/charts/data-chart/data-annotation-band-layer/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/data-annotation-line-layer/package.json b/samples/charts/data-chart/data-annotation-line-layer/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/data-annotation-line-layer/package.json +++ b/samples/charts/data-chart/data-annotation-line-layer/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json b/samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/data-annotation-rect-layer/package.json b/samples/charts/data-chart/data-annotation-rect-layer/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/data-annotation-rect-layer/package.json +++ b/samples/charts/data-chart/data-annotation-rect-layer/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/data-annotation-slice-layer/package.json b/samples/charts/data-chart/data-annotation-slice-layer/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/data-annotation-slice-layer/package.json +++ b/samples/charts/data-chart/data-annotation-slice-layer/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/data-annotation-strip-layer/package.json b/samples/charts/data-chart/data-annotation-strip-layer/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/data-annotation-strip-layer/package.json +++ b/samples/charts/data-chart/data-annotation-strip-layer/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/data-legend-grouping/package.json b/samples/charts/data-chart/data-legend-grouping/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/data-legend-grouping/package.json +++ b/samples/charts/data-chart/data-legend-grouping/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/data-legend-styling/package.json b/samples/charts/data-chart/data-legend-styling/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/data-legend-styling/package.json +++ b/samples/charts/data-chart/data-legend-styling/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/data-tooltip-grouping/package.json b/samples/charts/data-chart/data-tooltip-grouping/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/data-tooltip-styling/package.json b/samples/charts/data-chart/data-tooltip-styling/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/data-chart/data-tooltip-styling/package.json +++ b/samples/charts/data-chart/data-tooltip-styling/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/format-specifiers/package.json b/samples/charts/data-chart/format-specifiers/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/format-specifiers/package.json +++ b/samples/charts/data-chart/format-specifiers/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/itemized-bar-chart/package.json b/samples/charts/data-chart/itemized-bar-chart/package.json index e6c3a539d7..2b37e66b67 100644 --- a/samples/charts/data-chart/itemized-bar-chart/package.json +++ b/samples/charts/data-chart/itemized-bar-chart/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/itemized-column-chart/package.json b/samples/charts/data-chart/itemized-column-chart/package.json index e6c3a539d7..2b37e66b67 100644 --- a/samples/charts/data-chart/itemized-column-chart/package.json +++ b/samples/charts/data-chart/itemized-column-chart/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/itemized-stacked-bar-chart/package.json b/samples/charts/data-chart/itemized-stacked-bar-chart/package.json index e6c3a539d7..2b37e66b67 100644 --- a/samples/charts/data-chart/itemized-stacked-bar-chart/package.json +++ b/samples/charts/data-chart/itemized-stacked-bar-chart/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/itemized-stacked-column-chart/package.json b/samples/charts/data-chart/itemized-stacked-column-chart/package.json index e6c3a539d7..2b37e66b67 100644 --- a/samples/charts/data-chart/itemized-stacked-column-chart/package.json +++ b/samples/charts/data-chart/itemized-stacked-column-chart/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/polar-area-chart-styling/package.json b/samples/charts/data-chart/polar-area-chart-styling/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/package.json +++ b/samples/charts/data-chart/polar-area-chart-styling/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/polar-area-chart/package.json b/samples/charts/data-chart/polar-area-chart/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/polar-area-chart/package.json +++ b/samples/charts/data-chart/polar-area-chart/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/polar-line-chart/package.json b/samples/charts/data-chart/polar-line-chart/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/polar-line-chart/package.json +++ b/samples/charts/data-chart/polar-line-chart/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/polar-scatter-chart/package.json b/samples/charts/data-chart/polar-scatter-chart/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/polar-scatter-chart/package.json +++ b/samples/charts/data-chart/polar-scatter-chart/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/polar-spline-area-chart/package.json b/samples/charts/data-chart/polar-spline-area-chart/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/package.json +++ b/samples/charts/data-chart/polar-spline-area-chart/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/polar-spline-chart/package.json b/samples/charts/data-chart/polar-spline-chart/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/polar-spline-chart/package.json +++ b/samples/charts/data-chart/polar-spline-chart/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/radial-area-chart-styling/package.json b/samples/charts/data-chart/radial-area-chart-styling/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/package.json +++ b/samples/charts/data-chart/radial-area-chart-styling/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/radial-area-chart/package.json b/samples/charts/data-chart/radial-area-chart/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/radial-area-chart/package.json +++ b/samples/charts/data-chart/radial-area-chart/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/radial-column-chart-selection/package.json b/samples/charts/data-chart/radial-column-chart-selection/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/radial-column-chart-selection/package.json +++ b/samples/charts/data-chart/radial-column-chart-selection/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/radial-column-chart/package.json b/samples/charts/data-chart/radial-column-chart/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/radial-column-chart/package.json +++ b/samples/charts/data-chart/radial-column-chart/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/radial-label-mode/package.json b/samples/charts/data-chart/radial-label-mode/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/data-chart/radial-label-mode/package.json +++ b/samples/charts/data-chart/radial-label-mode/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/radial-line-chart/package.json b/samples/charts/data-chart/radial-line-chart/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/radial-line-chart/package.json +++ b/samples/charts/data-chart/radial-line-chart/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/radial-pie-chart/package.json b/samples/charts/data-chart/radial-pie-chart/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/radial-pie-chart/package.json +++ b/samples/charts/data-chart/radial-pie-chart/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/range-area-chart/package.json b/samples/charts/data-chart/range-area-chart/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/range-area-chart/package.json +++ b/samples/charts/data-chart/range-area-chart/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/range-column-chart/package.json b/samples/charts/data-chart/range-column-chart/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/range-column-chart/package.json +++ b/samples/charts/data-chart/range-column-chart/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/scatter-line-chart/package.json b/samples/charts/data-chart/scatter-line-chart/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/scatter-line-chart/package.json +++ b/samples/charts/data-chart/scatter-line-chart/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/scatter-line-threshold/package.json b/samples/charts/data-chart/scatter-line-threshold/package.json index e6c3a539d7..2b37e66b67 100644 --- a/samples/charts/data-chart/scatter-line-threshold/package.json +++ b/samples/charts/data-chart/scatter-line-threshold/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/scatter-point-chart/package.json b/samples/charts/data-chart/scatter-point-chart/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/scatter-point-chart/package.json +++ b/samples/charts/data-chart/scatter-point-chart/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/scatter-spline-chart/package.json b/samples/charts/data-chart/scatter-spline-chart/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/scatter-spline-chart/package.json +++ b/samples/charts/data-chart/scatter-spline-chart/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/selection-matcher/package.json b/samples/charts/data-chart/selection-matcher/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/selection-matcher/package.json +++ b/samples/charts/data-chart/selection-matcher/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-100-area-chart/package.json b/samples/charts/data-chart/stacked-100-area-chart/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-area-chart/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-100-bar-chart/package.json b/samples/charts/data-chart/stacked-100-bar-chart/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-100-column-chart/package.json b/samples/charts/data-chart/stacked-100-column-chart/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/package.json +++ b/samples/charts/data-chart/stacked-100-column-chart/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-100-line-chart/package.json b/samples/charts/data-chart/stacked-100-line-chart/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/package.json +++ b/samples/charts/data-chart/stacked-100-line-chart/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-100-spline-chart/package.json b/samples/charts/data-chart/stacked-100-spline-chart/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-area-chart/package.json b/samples/charts/data-chart/stacked-area-chart/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/stacked-area-chart/package.json +++ b/samples/charts/data-chart/stacked-area-chart/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-bar-chart/package.json b/samples/charts/data-chart/stacked-bar-chart/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/stacked-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-bar-chart/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-column-chart/package.json b/samples/charts/data-chart/stacked-column-chart/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/stacked-column-chart/package.json +++ b/samples/charts/data-chart/stacked-column-chart/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-line-chart/package.json b/samples/charts/data-chart/stacked-line-chart/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/stacked-line-chart/package.json +++ b/samples/charts/data-chart/stacked-line-chart/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-spline-area-chart/package.json b/samples/charts/data-chart/stacked-spline-area-chart/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-spline-chart/package.json b/samples/charts/data-chart/stacked-spline-chart/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/stacked-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-chart/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/trendline-layer/package.json b/samples/charts/data-chart/trendline-layer/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/trendline-layer/package.json +++ b/samples/charts/data-chart/trendline-layer/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/user-annotation-layer/package.json b/samples/charts/data-chart/user-annotation-layer/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/data-chart/user-annotation-layer/package.json +++ b/samples/charts/data-chart/user-annotation-layer/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-chart/waterfall-chart/package.json b/samples/charts/data-chart/waterfall-chart/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-chart/waterfall-chart/package.json +++ b/samples/charts/data-chart/waterfall-chart/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-pie-chart/animation-replay/package.json b/samples/charts/data-pie-chart/animation-replay/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/data-pie-chart/animation-replay/package.json +++ b/samples/charts/data-pie-chart/animation-replay/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-pie-chart/animation/package.json b/samples/charts/data-pie-chart/animation/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/data-pie-chart/animation/package.json +++ b/samples/charts/data-pie-chart/animation/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-pie-chart/highlight-filter/package.json b/samples/charts/data-pie-chart/highlight-filter/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-pie-chart/highlight-filter/package.json +++ b/samples/charts/data-pie-chart/highlight-filter/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-pie-chart/highlighting/package.json b/samples/charts/data-pie-chart/highlighting/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/data-pie-chart/highlighting/package.json +++ b/samples/charts/data-pie-chart/highlighting/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-pie-chart/legend/package.json b/samples/charts/data-pie-chart/legend/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/data-pie-chart/legend/package.json +++ b/samples/charts/data-pie-chart/legend/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-pie-chart/others/package.json b/samples/charts/data-pie-chart/others/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/data-pie-chart/others/package.json +++ b/samples/charts/data-pie-chart/others/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-pie-chart/overview/package.json b/samples/charts/data-pie-chart/overview/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/data-pie-chart/overview/package.json +++ b/samples/charts/data-pie-chart/overview/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/data-pie-chart/selection/package.json b/samples/charts/data-pie-chart/selection/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/data-pie-chart/selection/package.json +++ b/samples/charts/data-pie-chart/selection/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/doughnut-chart/legend/package.json b/samples/charts/doughnut-chart/legend/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/doughnut-chart/legend/package.json +++ b/samples/charts/doughnut-chart/legend/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/doughnut-chart/overview/package.json b/samples/charts/doughnut-chart/overview/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/doughnut-chart/overview/package.json +++ b/samples/charts/doughnut-chart/overview/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/doughnut-chart/rings/package.json b/samples/charts/doughnut-chart/rings/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/doughnut-chart/rings/package.json +++ b/samples/charts/doughnut-chart/rings/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/package.json b/samples/charts/financial-chart/data-legend-formatting-currency/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/financial-chart/data-legend-styling-props/package.json b/samples/charts/financial-chart/data-legend-styling-props/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/package.json +++ b/samples/charts/financial-chart/data-legend-styling-props/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/financial-chart/data-legend/package.json b/samples/charts/financial-chart/data-legend/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/financial-chart/data-legend/package.json +++ b/samples/charts/financial-chart/data-legend/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/package.json b/samples/charts/financial-chart/data-tooltip-styling-props/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/package.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/financial-chart/data-tooltip/package.json b/samples/charts/financial-chart/data-tooltip/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/financial-chart/data-tooltip/package.json +++ b/samples/charts/financial-chart/data-tooltip/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/financial-chart/format-specifiers/package.json b/samples/charts/financial-chart/format-specifiers/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/financial-chart/format-specifiers/package.json +++ b/samples/charts/financial-chart/format-specifiers/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/financial-chart/scrollbars/package.json b/samples/charts/financial-chart/scrollbars/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/pie-chart/legend/package.json b/samples/charts/pie-chart/legend/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/pie-chart/styling/package.json b/samples/charts/pie-chart/styling/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/sparkline/display-winloss/package.json b/samples/charts/sparkline/display-winloss/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/sparkline/grid/package.json b/samples/charts/sparkline/grid/package.json index 90231eb53e..0a1be882ce 100644 --- a/samples/charts/sparkline/grid/package.json +++ b/samples/charts/sparkline/grid/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "react": "^19.2.0", diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/toolbar/actions-built-in-category-chart/package.json b/samples/charts/toolbar/actions-built-in-category-chart/package.json index d169e4dd6d..1a7fdc5cdb 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -14,13 +14,13 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/toolbar/actions-built-in-data-chart/package.json b/samples/charts/toolbar/actions-built-in-data-chart/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/toolbar/color-editor-support/package.json b/samples/charts/toolbar/color-editor-support/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/toolbar/color-editor-support/package.json +++ b/samples/charts/toolbar/color-editor-support/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/toolbar/custom-tool/package.json b/samples/charts/toolbar/custom-tool/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/toolbar/custom-tool/package.json +++ b/samples/charts/toolbar/custom-tool/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/package.json b/samples/charts/toolbar/layout-actions-for-data-chart/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/package.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/package.json b/samples/charts/toolbar/layout-in-vertical-orientation/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/package.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/tree-map/highlighting-percent-based/package.json b/samples/charts/tree-map/highlighting-percent-based/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/tree-map/highlighting-percent-based/package.json +++ b/samples/charts/tree-map/highlighting-percent-based/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/tree-map/highlighting/package.json b/samples/charts/tree-map/highlighting/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/tree-map/highlighting/package.json +++ b/samples/charts/tree-map/highlighting/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index 0279be0c15..d120084daa 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -14,12 +14,12 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/tree-map/overview/package.json b/samples/charts/tree-map/overview/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/tree-map/overview/package.json +++ b/samples/charts/tree-map/overview/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/charts/tree-map/styling/package.json b/samples/charts/tree-map/styling/package.json index 01534b4881..be75d4b9fe 100644 --- a/samples/charts/tree-map/styling/package.json +++ b/samples/charts/tree-map/styling/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/excel/excel-library/operations-on-workbooks/package.json b/samples/excel/excel-library/operations-on-workbooks/package.json index bbc2796f68..6b39168320 100644 --- a/samples/excel/excel-library/operations-on-workbooks/package.json +++ b/samples/excel/excel-library/operations-on-workbooks/package.json @@ -16,7 +16,7 @@ "file-saver": "^1.3.8", "igniteui-react-core": "19.3.2", "igniteui-react-excel": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "react": "^19.2.0", diff --git a/samples/excel/excel-library/working-with-charts/package.json b/samples/excel/excel-library/working-with-charts/package.json index 7acda9b6cb..86d4e4dbab 100644 --- a/samples/excel/excel-library/working-with-charts/package.json +++ b/samples/excel/excel-library/working-with-charts/package.json @@ -17,7 +17,7 @@ "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-excel": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "react": "^19.2.0", diff --git a/samples/excel/excel-library/working-with-sparklines/package.json b/samples/excel/excel-library/working-with-sparklines/package.json index 7cdf5d8630..72b3b3b414 100644 --- a/samples/excel/excel-library/working-with-sparklines/package.json +++ b/samples/excel/excel-library/working-with-sparklines/package.json @@ -17,7 +17,7 @@ "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-excel": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "react": "^19.2.0", diff --git a/samples/grids/data-grid/accessibility/package.json b/samples/grids/data-grid/accessibility/package.json index 75d53fdc34..85156f83a9 100644 --- a/samples/grids/data-grid/accessibility/package.json +++ b/samples/grids/data-grid/accessibility/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/binding-data-service/package.json b/samples/grids/data-grid/binding-data-service/package.json index 1ed573ab5b..f576771135 100644 --- a/samples/grids/data-grid/binding-data-service/package.json +++ b/samples/grids/data-grid/binding-data-service/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/binding-live-data/package.json b/samples/grids/data-grid/binding-live-data/package.json index 6d291dfda8..fcc8baec57 100644 --- a/samples/grids/data-grid/binding-live-data/package.json +++ b/samples/grids/data-grid/binding-live-data/package.json @@ -13,13 +13,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/binding-local-data/package.json b/samples/grids/data-grid/binding-local-data/package.json index c583eee9c3..518813fcd3 100644 --- a/samples/grids/data-grid/binding-local-data/package.json +++ b/samples/grids/data-grid/binding-local-data/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/binding-remote-data/package.json b/samples/grids/data-grid/binding-remote-data/package.json index aff815fad2..c345a7b980 100644 --- a/samples/grids/data-grid/binding-remote-data/package.json +++ b/samples/grids/data-grid/binding-remote-data/package.json @@ -17,7 +17,7 @@ "igniteui-react-datasources": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/cell-activation/package.json b/samples/grids/data-grid/cell-activation/package.json index d74e8f650f..d48479d164 100644 --- a/samples/grids/data-grid/cell-activation/package.json +++ b/samples/grids/data-grid/cell-activation/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/cell-editing/package.json b/samples/grids/data-grid/cell-editing/package.json index cc5e42b190..792ec51806 100644 --- a/samples/grids/data-grid/cell-editing/package.json +++ b/samples/grids/data-grid/cell-editing/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/cell-merging/package.json b/samples/grids/data-grid/cell-merging/package.json index 4363a47971..c7f9d392b1 100644 --- a/samples/grids/data-grid/cell-merging/package.json +++ b/samples/grids/data-grid/cell-merging/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/cell-selection/package.json b/samples/grids/data-grid/cell-selection/package.json index a576499a06..98e5d414e8 100644 --- a/samples/grids/data-grid/cell-selection/package.json +++ b/samples/grids/data-grid/cell-selection/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/column-animation/package.json b/samples/grids/data-grid/column-animation/package.json index 076c2738d4..1a7383f0c5 100644 --- a/samples/grids/data-grid/column-animation/package.json +++ b/samples/grids/data-grid/column-animation/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/column-chooser-picker/package.json b/samples/grids/data-grid/column-chooser-picker/package.json index 119a3468c9..e296d69283 100644 --- a/samples/grids/data-grid/column-chooser-picker/package.json +++ b/samples/grids/data-grid/column-chooser-picker/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/column-chooser-toolbar/package.json b/samples/grids/data-grid/column-chooser-toolbar/package.json index 545084c792..3ba5364e14 100644 --- a/samples/grids/data-grid/column-chooser-toolbar/package.json +++ b/samples/grids/data-grid/column-chooser-toolbar/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/column-filter-expressions/package.json b/samples/grids/data-grid/column-filter-expressions/package.json index 38c9279791..174aaec0c1 100644 --- a/samples/grids/data-grid/column-filter-expressions/package.json +++ b/samples/grids/data-grid/column-filter-expressions/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/column-filter-operands/package.json b/samples/grids/data-grid/column-filter-operands/package.json index 60e614e3d1..707cd3e71c 100644 --- a/samples/grids/data-grid/column-filter-operands/package.json +++ b/samples/grids/data-grid/column-filter-operands/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/column-filtering/package.json b/samples/grids/data-grid/column-filtering/package.json index 8cc48f95d4..12b537005f 100644 --- a/samples/grids/data-grid/column-filtering/package.json +++ b/samples/grids/data-grid/column-filtering/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/column-moving/package.json b/samples/grids/data-grid/column-moving/package.json index 9676eaf52c..87a6c15415 100644 --- a/samples/grids/data-grid/column-moving/package.json +++ b/samples/grids/data-grid/column-moving/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/column-options/package.json b/samples/grids/data-grid/column-options/package.json index 3b24f8bf24..d30eb14d74 100644 --- a/samples/grids/data-grid/column-options/package.json +++ b/samples/grids/data-grid/column-options/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/column-pinning-picker/package.json b/samples/grids/data-grid/column-pinning-picker/package.json index d1be8e6a41..e32bcda2ae 100644 --- a/samples/grids/data-grid/column-pinning-picker/package.json +++ b/samples/grids/data-grid/column-pinning-picker/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/column-pinning-toolbar/package.json b/samples/grids/data-grid/column-pinning-toolbar/package.json index 686bf5f0e9..ab91b122aa 100644 --- a/samples/grids/data-grid/column-pinning-toolbar/package.json +++ b/samples/grids/data-grid/column-pinning-toolbar/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/column-resizing/package.json b/samples/grids/data-grid/column-resizing/package.json index d416393684..753a2f6303 100644 --- a/samples/grids/data-grid/column-resizing/package.json +++ b/samples/grids/data-grid/column-resizing/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/column-scrolling/package.json b/samples/grids/data-grid/column-scrolling/package.json index 1678bff29b..15f823d0db 100644 --- a/samples/grids/data-grid/column-scrolling/package.json +++ b/samples/grids/data-grid/column-scrolling/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/column-sorting/package.json b/samples/grids/data-grid/column-sorting/package.json index fce3262479..862554cc44 100644 --- a/samples/grids/data-grid/column-sorting/package.json +++ b/samples/grids/data-grid/column-sorting/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/column-summaries/package.json b/samples/grids/data-grid/column-summaries/package.json index 92422fc62a..df4696bc4e 100644 --- a/samples/grids/data-grid/column-summaries/package.json +++ b/samples/grids/data-grid/column-summaries/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/column-types/package.json b/samples/grids/data-grid/column-types/package.json index 235865e66e..68eb5d6f71 100644 --- a/samples/grids/data-grid/column-types/package.json +++ b/samples/grids/data-grid/column-types/package.json @@ -17,7 +17,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/load-save-layout/package.json b/samples/grids/data-grid/load-save-layout/package.json index 668f937d17..51130f3ea7 100644 --- a/samples/grids/data-grid/load-save-layout/package.json +++ b/samples/grids/data-grid/load-save-layout/package.json @@ -13,13 +13,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/localization/package.json b/samples/grids/data-grid/localization/package.json index 2c2eaec7f7..abe5a15641 100644 --- a/samples/grids/data-grid/localization/package.json +++ b/samples/grids/data-grid/localization/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/overview/package.json b/samples/grids/data-grid/overview/package.json index 97f748efd6..816a5f4684 100644 --- a/samples/grids/data-grid/overview/package.json +++ b/samples/grids/data-grid/overview/package.json @@ -17,7 +17,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/pager/package.json b/samples/grids/data-grid/pager/package.json index 8698b962b9..1cba469638 100644 --- a/samples/grids/data-grid/pager/package.json +++ b/samples/grids/data-grid/pager/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/performance/package.json b/samples/grids/data-grid/performance/package.json index 0912bee499..fcf2456f36 100644 --- a/samples/grids/data-grid/performance/package.json +++ b/samples/grids/data-grid/performance/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/row-group-descriptions/package.json b/samples/grids/data-grid/row-group-descriptions/package.json index 1de3076b45..8eb1b39952 100644 --- a/samples/grids/data-grid/row-group-descriptions/package.json +++ b/samples/grids/data-grid/row-group-descriptions/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/row-grouping/package.json b/samples/grids/data-grid/row-grouping/package.json index 1de3076b45..8eb1b39952 100644 --- a/samples/grids/data-grid/row-grouping/package.json +++ b/samples/grids/data-grid/row-grouping/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/row-highlighting/package.json b/samples/grids/data-grid/row-highlighting/package.json index cfbbf07c22..f86ce8fcd4 100644 --- a/samples/grids/data-grid/row-highlighting/package.json +++ b/samples/grids/data-grid/row-highlighting/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/row-paging/package.json b/samples/grids/data-grid/row-paging/package.json index 57001822e1..2d864e059d 100644 --- a/samples/grids/data-grid/row-paging/package.json +++ b/samples/grids/data-grid/row-paging/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/row-pinning/package.json b/samples/grids/data-grid/row-pinning/package.json index 1b140e2b4a..60263efe7d 100644 --- a/samples/grids/data-grid/row-pinning/package.json +++ b/samples/grids/data-grid/row-pinning/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/row-selection/package.json b/samples/grids/data-grid/row-selection/package.json index cf46063852..e93b0646f6 100644 --- a/samples/grids/data-grid/row-selection/package.json +++ b/samples/grids/data-grid/row-selection/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/type-comparison-table/package.json b/samples/grids/data-grid/type-comparison-table/package.json index 4df4e3a3c1..df79f5a075 100644 --- a/samples/grids/data-grid/type-comparison-table/package.json +++ b/samples/grids/data-grid/type-comparison-table/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/type-heatmap-table/package.json b/samples/grids/data-grid/type-heatmap-table/package.json index e0498913ab..b39b6637e4 100644 --- a/samples/grids/data-grid/type-heatmap-table/package.json +++ b/samples/grids/data-grid/type-heatmap-table/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/type-marketing-table/package.json b/samples/grids/data-grid/type-marketing-table/package.json index ab427de81e..ec1597156d 100644 --- a/samples/grids/data-grid/type-marketing-table/package.json +++ b/samples/grids/data-grid/type-marketing-table/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/type-matrix-table/package.json b/samples/grids/data-grid/type-matrix-table/package.json index edba159bf5..9bcca5977c 100644 --- a/samples/grids/data-grid/type-matrix-table/package.json +++ b/samples/grids/data-grid/type-matrix-table/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/type-periodic-table/package.json b/samples/grids/data-grid/type-periodic-table/package.json index 89f5ad06d9..e83e879c33 100644 --- a/samples/grids/data-grid/type-periodic-table/package.json +++ b/samples/grids/data-grid/type-periodic-table/package.json @@ -16,7 +16,7 @@ "igniteui-react-data-grids": "19.3.2", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/grid-lite/column-config-basic/package.json b/samples/grids/grid-lite/column-config-basic/package.json index aee4586d48..0303e1bbf3 100644 --- a/samples/grids/grid-lite/column-config-basic/package.json +++ b/samples/grids/grid-lite/column-config-basic/package.json @@ -14,9 +14,9 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-grid-lite": "~0.5.0", - "igniteui-react": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-grid-lite": "~0.6.0", + "igniteui-react": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid-lite/column-config-dynamic/package.json b/samples/grids/grid-lite/column-config-dynamic/package.json index aee4586d48..0303e1bbf3 100644 --- a/samples/grids/grid-lite/column-config-dynamic/package.json +++ b/samples/grids/grid-lite/column-config-dynamic/package.json @@ -14,9 +14,9 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-grid-lite": "~0.5.0", - "igniteui-react": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-grid-lite": "~0.6.0", + "igniteui-react": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid-lite/column-config-headers/package.json b/samples/grids/grid-lite/column-config-headers/package.json index aee4586d48..0303e1bbf3 100644 --- a/samples/grids/grid-lite/column-config-headers/package.json +++ b/samples/grids/grid-lite/column-config-headers/package.json @@ -14,9 +14,9 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-grid-lite": "~0.5.0", - "igniteui-react": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-grid-lite": "~0.6.0", + "igniteui-react": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid-lite/data-binding/package.json b/samples/grids/grid-lite/data-binding/package.json index aee4586d48..0303e1bbf3 100644 --- a/samples/grids/grid-lite/data-binding/package.json +++ b/samples/grids/grid-lite/data-binding/package.json @@ -14,9 +14,9 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-grid-lite": "~0.5.0", - "igniteui-react": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-grid-lite": "~0.6.0", + "igniteui-react": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid-lite/filtering-config-events/package.json b/samples/grids/grid-lite/filtering-config-events/package.json index aee4586d48..0303e1bbf3 100644 --- a/samples/grids/grid-lite/filtering-config-events/package.json +++ b/samples/grids/grid-lite/filtering-config-events/package.json @@ -14,9 +14,9 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-grid-lite": "~0.5.0", - "igniteui-react": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-grid-lite": "~0.6.0", + "igniteui-react": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid-lite/filtering-config-remote/package.json b/samples/grids/grid-lite/filtering-config-remote/package.json index aee4586d48..0303e1bbf3 100644 --- a/samples/grids/grid-lite/filtering-config-remote/package.json +++ b/samples/grids/grid-lite/filtering-config-remote/package.json @@ -14,9 +14,9 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-grid-lite": "~0.5.0", - "igniteui-react": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-grid-lite": "~0.6.0", + "igniteui-react": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid-lite/filtering-config/package.json b/samples/grids/grid-lite/filtering-config/package.json index aee4586d48..0303e1bbf3 100644 --- a/samples/grids/grid-lite/filtering-config/package.json +++ b/samples/grids/grid-lite/filtering-config/package.json @@ -14,9 +14,9 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-grid-lite": "~0.5.0", - "igniteui-react": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-grid-lite": "~0.6.0", + "igniteui-react": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid-lite/overview/package.json b/samples/grids/grid-lite/overview/package.json index aee4586d48..0303e1bbf3 100644 --- a/samples/grids/grid-lite/overview/package.json +++ b/samples/grids/grid-lite/overview/package.json @@ -14,9 +14,9 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-grid-lite": "~0.5.0", - "igniteui-react": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-grid-lite": "~0.6.0", + "igniteui-react": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid-lite/sort-config-events/package.json b/samples/grids/grid-lite/sort-config-events/package.json index aee4586d48..0303e1bbf3 100644 --- a/samples/grids/grid-lite/sort-config-events/package.json +++ b/samples/grids/grid-lite/sort-config-events/package.json @@ -14,9 +14,9 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-grid-lite": "~0.5.0", - "igniteui-react": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-grid-lite": "~0.6.0", + "igniteui-react": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid-lite/sort-config-grid/package.json b/samples/grids/grid-lite/sort-config-grid/package.json index aee4586d48..0303e1bbf3 100644 --- a/samples/grids/grid-lite/sort-config-grid/package.json +++ b/samples/grids/grid-lite/sort-config-grid/package.json @@ -14,9 +14,9 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-grid-lite": "~0.5.0", - "igniteui-react": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-grid-lite": "~0.6.0", + "igniteui-react": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid-lite/sort-config-pipeline/package.json b/samples/grids/grid-lite/sort-config-pipeline/package.json index aee4586d48..0303e1bbf3 100644 --- a/samples/grids/grid-lite/sort-config-pipeline/package.json +++ b/samples/grids/grid-lite/sort-config-pipeline/package.json @@ -14,9 +14,9 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-grid-lite": "~0.5.0", - "igniteui-react": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-grid-lite": "~0.6.0", + "igniteui-react": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid-lite/sort-config-sample/package.json b/samples/grids/grid-lite/sort-config-sample/package.json index aee4586d48..0303e1bbf3 100644 --- a/samples/grids/grid-lite/sort-config-sample/package.json +++ b/samples/grids/grid-lite/sort-config-sample/package.json @@ -14,9 +14,9 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-grid-lite": "~0.5.0", - "igniteui-react": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-grid-lite": "~0.6.0", + "igniteui-react": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid-lite/styling-custom-theme/package.json b/samples/grids/grid-lite/styling-custom-theme/package.json index a6e59554fe..51769f16bf 100644 --- a/samples/grids/grid-lite/styling-custom-theme/package.json +++ b/samples/grids/grid-lite/styling-custom-theme/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-grid-lite": "~0.5.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-grid-lite": "~0.6.0", + "igniteui-react": "^19.5.0", "igniteui-theming": "^24.0.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/action-strip/package.json b/samples/grids/grid/action-strip/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/grid/action-strip/package.json +++ b/samples/grids/grid/action-strip/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/advanced-filtering-options/package.json b/samples/grids/grid/advanced-filtering-options/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/advanced-filtering-options/package.json +++ b/samples/grids/grid/advanced-filtering-options/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/advanced-filtering-style/package.json b/samples/grids/grid/advanced-filtering-style/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/advanced-filtering-style/package.json +++ b/samples/grids/grid/advanced-filtering-style/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/binding-composite-data/package.json b/samples/grids/grid/binding-composite-data/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/binding-composite-data/package.json +++ b/samples/grids/grid/binding-composite-data/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/binding-crud-data/package.json b/samples/grids/grid/binding-crud-data/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/grid/binding-crud-data/package.json +++ b/samples/grids/grid/binding-crud-data/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/binding-nested-data-1/package.json b/samples/grids/grid/binding-nested-data-1/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/binding-nested-data-1/package.json +++ b/samples/grids/grid/binding-nested-data-1/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/cascading-combo/package.json b/samples/grids/grid/cascading-combo/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/cascading-combo/package.json +++ b/samples/grids/grid/cascading-combo/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/cell-editing-sample/package.json b/samples/grids/grid/cell-editing-sample/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/cell-editing-sample/package.json +++ b/samples/grids/grid/cell-editing-sample/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/cell-editing-styling/package.json b/samples/grids/grid/cell-editing-styling/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/cell-editing-styling/package.json +++ b/samples/grids/grid/cell-editing-styling/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/cell-merge-custom-sample/package.json b/samples/grids/grid/cell-merge-custom-sample/package.json index c06c48b1c3..3a9c5a071d 100644 --- a/samples/grids/grid/cell-merge-custom-sample/package.json +++ b/samples/grids/grid/cell-merge-custom-sample/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/cell-merge/package.json b/samples/grids/grid/cell-merge/package.json index c06c48b1c3..3a9c5a071d 100644 --- a/samples/grids/grid/cell-merge/package.json +++ b/samples/grids/grid/cell-merge/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/cell-selection-mode/package.json b/samples/grids/grid/cell-selection-mode/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/grid/cell-selection-mode/package.json +++ b/samples/grids/grid/cell-selection-mode/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/cell-selection-style/package.json b/samples/grids/grid/cell-selection-style/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/cell-selection-style/package.json +++ b/samples/grids/grid/cell-selection-style/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/change-icons-custom/package.json b/samples/grids/grid/change-icons-custom/package.json index 7612824c28..27102d1307 100644 --- a/samples/grids/grid/change-icons-custom/package.json +++ b/samples/grids/grid/change-icons-custom/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/clipboard-operations/package.json b/samples/grids/grid/clipboard-operations/package.json index 7612824c28..27102d1307 100644 --- a/samples/grids/grid/clipboard-operations/package.json +++ b/samples/grids/grid/clipboard-operations/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-auto-sizing/package.json b/samples/grids/grid/column-auto-sizing/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/column-auto-sizing/package.json +++ b/samples/grids/grid/column-auto-sizing/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-collapsible-groups/package.json b/samples/grids/grid/column-collapsible-groups/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/column-collapsible-groups/package.json +++ b/samples/grids/grid/column-collapsible-groups/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-data-types/package.json b/samples/grids/grid/column-data-types/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/column-data-types/package.json +++ b/samples/grids/grid/column-data-types/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-hiding-options/package.json b/samples/grids/grid/column-hiding-options/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/column-hiding-options/package.json +++ b/samples/grids/grid/column-hiding-options/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-hiding-toolbar-style/package.json b/samples/grids/grid/column-hiding-toolbar-style/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/column-hiding-toolbar-style/package.json +++ b/samples/grids/grid/column-hiding-toolbar-style/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-hiding-toolbar/package.json b/samples/grids/grid/column-hiding-toolbar/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/column-hiding-toolbar/package.json +++ b/samples/grids/grid/column-hiding-toolbar/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-moving-options/package.json b/samples/grids/grid/column-moving-options/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/column-moving-options/package.json +++ b/samples/grids/grid/column-moving-options/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-moving-styles/package.json b/samples/grids/grid/column-moving-styles/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/column-moving-styles/package.json +++ b/samples/grids/grid/column-moving-styles/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-pinning-both-sides/package.json b/samples/grids/grid/column-pinning-both-sides/package.json index c06c48b1c3..3a9c5a071d 100644 --- a/samples/grids/grid/column-pinning-both-sides/package.json +++ b/samples/grids/grid/column-pinning-both-sides/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-pinning-options/package.json b/samples/grids/grid/column-pinning-options/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/column-pinning-options/package.json +++ b/samples/grids/grid/column-pinning-options/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-pinning-right-side/package.json b/samples/grids/grid/column-pinning-right-side/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/column-pinning-right-side/package.json +++ b/samples/grids/grid/column-pinning-right-side/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-pinning-styles/package.json b/samples/grids/grid/column-pinning-styles/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/column-pinning-styles/package.json +++ b/samples/grids/grid/column-pinning-styles/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-pinning/package.json b/samples/grids/grid/column-pinning/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/column-pinning/package.json +++ b/samples/grids/grid/column-pinning/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-resize-styling/package.json b/samples/grids/grid/column-resize-styling/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/column-resize-styling/package.json +++ b/samples/grids/grid/column-resize-styling/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-resizing/package.json b/samples/grids/grid/column-resizing/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/column-resizing/package.json +++ b/samples/grids/grid/column-resizing/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-selection-group/package.json b/samples/grids/grid/column-selection-group/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/column-selection-group/package.json +++ b/samples/grids/grid/column-selection-group/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-selection-mode/package.json b/samples/grids/grid/column-selection-mode/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/grid/column-selection-mode/package.json +++ b/samples/grids/grid/column-selection-mode/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-selection-styles/package.json b/samples/grids/grid/column-selection-styles/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/column-selection-styles/package.json +++ b/samples/grids/grid/column-selection-styles/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-sorting-indicators/package.json b/samples/grids/grid/column-sorting-indicators/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/column-sorting-indicators/package.json +++ b/samples/grids/grid/column-sorting-indicators/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-sorting-options/package.json b/samples/grids/grid/column-sorting-options/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/grid/column-sorting-options/package.json +++ b/samples/grids/grid/column-sorting-options/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/column-sorting-style/package.json b/samples/grids/grid/column-sorting-style/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/column-sorting-style/package.json +++ b/samples/grids/grid/column-sorting-style/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/conditional-cell-style-1/package.json b/samples/grids/grid/conditional-cell-style-1/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/grid/conditional-cell-style-1/package.json +++ b/samples/grids/grid/conditional-cell-style-1/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/conditional-cell-style-2/package.json b/samples/grids/grid/conditional-cell-style-2/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/conditional-cell-style-2/package.json +++ b/samples/grids/grid/conditional-cell-style-2/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/conditional-row-selectors/package.json b/samples/grids/grid/conditional-row-selectors/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/conditional-row-selectors/package.json +++ b/samples/grids/grid/conditional-row-selectors/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/custom-context-menu/package.json b/samples/grids/grid/custom-context-menu/package.json index 7612824c28..27102d1307 100644 --- a/samples/grids/grid/custom-context-menu/package.json +++ b/samples/grids/grid/custom-context-menu/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/data-batch-editing-actions/package.json b/samples/grids/grid/data-batch-editing-actions/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/grid/data-batch-editing-actions/package.json +++ b/samples/grids/grid/data-batch-editing-actions/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/data-exporting-indicator/package.json b/samples/grids/grid/data-exporting-indicator/package.json index 01bc9f166d..27102d1307 100644 --- a/samples/grids/grid/data-exporting-indicator/package.json +++ b/samples/grids/grid/data-exporting-indicator/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", - "igniteui-react-grids": "^19.4.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", - "igniteui-webcomponents": "^6.3.0", + "igniteui-react": "^19.5.0", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", + "igniteui-react-grids": "^19.5.0", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/data-performance-virtualization/package.json b/samples/grids/grid/data-performance-virtualization/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/data-performance-virtualization/package.json +++ b/samples/grids/grid/data-performance-virtualization/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/data-searching/package.json b/samples/grids/grid/data-searching/package.json index 7612824c28..27102d1307 100644 --- a/samples/grids/grid/data-searching/package.json +++ b/samples/grids/grid/data-searching/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/data-summary-formatter/package.json b/samples/grids/grid/data-summary-formatter/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/data-summary-formatter/package.json +++ b/samples/grids/grid/data-summary-formatter/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/data-summary-options/package.json b/samples/grids/grid/data-summary-options/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/data-summary-options/package.json +++ b/samples/grids/grid/data-summary-options/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/data-summary-template/package.json b/samples/grids/grid/data-summary-template/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/grid/data-summary-template/package.json +++ b/samples/grids/grid/data-summary-template/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/data-validation-style/package.json b/samples/grids/grid/data-validation-style/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/data-validation-style/package.json +++ b/samples/grids/grid/data-validation-style/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/data-validator-service-cross-field/package.json b/samples/grids/grid/data-validator-service-cross-field/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/grid/data-validator-service-cross-field/package.json +++ b/samples/grids/grid/data-validator-service-cross-field/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/data-validator-service-extended/package.json b/samples/grids/grid/data-validator-service-extended/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/grid/data-validator-service-extended/package.json +++ b/samples/grids/grid/data-validator-service-extended/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/data-validator-service/package.json b/samples/grids/grid/data-validator-service/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/grid/data-validator-service/package.json +++ b/samples/grids/grid/data-validator-service/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/disabled-summaries/package.json b/samples/grids/grid/disabled-summaries/package.json index 35429bc269..ff7767bd29 100644 --- a/samples/grids/grid/disabled-summaries/package.json +++ b/samples/grids/grid/disabled-summaries/package.json @@ -9,10 +9,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/editing-columns/package.json b/samples/grids/grid/editing-columns/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/editing-columns/package.json +++ b/samples/grids/grid/editing-columns/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/editing-events/package.json b/samples/grids/grid/editing-events/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/editing-events/package.json +++ b/samples/grids/grid/editing-events/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/editing-excel-style/package.json b/samples/grids/grid/editing-excel-style/package.json index 7612824c28..27102d1307 100644 --- a/samples/grids/grid/editing-excel-style/package.json +++ b/samples/grids/grid/editing-excel-style/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/editing-lifecycle/package.json b/samples/grids/grid/editing-lifecycle/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/editing-lifecycle/package.json +++ b/samples/grids/grid/editing-lifecycle/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/excel-exporting/package.json b/samples/grids/grid/excel-exporting/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/excel-exporting/package.json +++ b/samples/grids/grid/excel-exporting/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/excel-style-filtering-sample-1/package.json b/samples/grids/grid/excel-style-filtering-sample-1/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/grid/excel-style-filtering-sample-1/package.json +++ b/samples/grids/grid/excel-style-filtering-sample-1/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/excel-style-filtering-sample-2/package.json b/samples/grids/grid/excel-style-filtering-sample-2/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/grid/excel-style-filtering-sample-2/package.json +++ b/samples/grids/grid/excel-style-filtering-sample-2/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/excel-style-filtering-sample-3/package.json b/samples/grids/grid/excel-style-filtering-sample-3/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/grid/excel-style-filtering-sample-3/package.json +++ b/samples/grids/grid/excel-style-filtering-sample-3/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/excel-style-filtering-style/package.json b/samples/grids/grid/excel-style-filtering-style/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/grid/excel-style-filtering-style/package.json +++ b/samples/grids/grid/excel-style-filtering-style/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/external-advanced-filtering/package.json b/samples/grids/grid/external-advanced-filtering/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/grid/external-advanced-filtering/package.json +++ b/samples/grids/grid/external-advanced-filtering/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/filtering-options/package.json b/samples/grids/grid/filtering-options/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/grid/filtering-options/package.json +++ b/samples/grids/grid/filtering-options/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/filtering-strategy/package.json b/samples/grids/grid/filtering-strategy/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/filtering-strategy/package.json +++ b/samples/grids/grid/filtering-strategy/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/filtering-style/package.json b/samples/grids/grid/filtering-style/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/grid/filtering-style/package.json +++ b/samples/grids/grid/filtering-style/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/finjs/package.json b/samples/grids/grid/finjs/package.json index f8dda802a9..a05e211972 100644 --- a/samples/grids/grid/finjs/package.json +++ b/samples/grids/grid/finjs/package.json @@ -15,14 +15,14 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/groupby-custom/package.json b/samples/grids/grid/groupby-custom/package.json index 7612824c28..27102d1307 100644 --- a/samples/grids/grid/groupby-custom/package.json +++ b/samples/grids/grid/groupby-custom/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/groupby-expressions/package.json b/samples/grids/grid/groupby-expressions/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/groupby-expressions/package.json +++ b/samples/grids/grid/groupby-expressions/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/groupby-paging/package.json b/samples/grids/grid/groupby-paging/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/groupby-paging/package.json +++ b/samples/grids/grid/groupby-paging/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/groupby-styling/package.json b/samples/grids/grid/groupby-styling/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/groupby-styling/package.json +++ b/samples/grids/grid/groupby-styling/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/groupby-summary-options/package.json b/samples/grids/grid/groupby-summary-options/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/grid/groupby-summary-options/package.json +++ b/samples/grids/grid/groupby-summary-options/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/groupby-summary-styling/package.json b/samples/grids/grid/groupby-summary-styling/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/grid/groupby-summary-styling/package.json +++ b/samples/grids/grid/groupby-summary-styling/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/infinite-scroll/package.json b/samples/grids/grid/infinite-scroll/package.json index 7612824c28..27102d1307 100644 --- a/samples/grids/grid/infinite-scroll/package.json +++ b/samples/grids/grid/infinite-scroll/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/keyboard-custom-navigation/package.json b/samples/grids/grid/keyboard-custom-navigation/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/grid/keyboard-custom-navigation/package.json +++ b/samples/grids/grid/keyboard-custom-navigation/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/keyboard-mrl-navigation/package.json b/samples/grids/grid/keyboard-mrl-navigation/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/keyboard-mrl-navigation/package.json +++ b/samples/grids/grid/keyboard-mrl-navigation/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/layout-display-density/package.json b/samples/grids/grid/layout-display-density/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/grid/layout-display-density/package.json +++ b/samples/grids/grid/layout-display-density/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/master-detail/package.json b/samples/grids/grid/master-detail/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/master-detail/package.json +++ b/samples/grids/grid/master-detail/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/multi-cell-selection-mode/package.json b/samples/grids/grid/multi-cell-selection-mode/package.json index 7612824c28..27102d1307 100644 --- a/samples/grids/grid/multi-cell-selection-mode/package.json +++ b/samples/grids/grid/multi-cell-selection-mode/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/multi-column-headers-export/package.json b/samples/grids/grid/multi-column-headers-export/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/multi-column-headers-export/package.json +++ b/samples/grids/grid/multi-column-headers-export/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/multi-column-headers-overview/package.json b/samples/grids/grid/multi-column-headers-overview/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/grid/multi-column-headers-overview/package.json +++ b/samples/grids/grid/multi-column-headers-overview/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/multi-column-headers-styling/package.json b/samples/grids/grid/multi-column-headers-styling/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/multi-column-headers-styling/package.json +++ b/samples/grids/grid/multi-column-headers-styling/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/multi-column-headers-template/package.json b/samples/grids/grid/multi-column-headers-template/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/multi-column-headers-template/package.json +++ b/samples/grids/grid/multi-column-headers-template/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/multi-row-layout-options/package.json b/samples/grids/grid/multi-row-layout-options/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/multi-row-layout-options/package.json +++ b/samples/grids/grid/multi-row-layout-options/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/multi-row-layout-style/package.json b/samples/grids/grid/multi-row-layout-style/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/multi-row-layout-style/package.json +++ b/samples/grids/grid/multi-row-layout-style/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/overview/package.json b/samples/grids/grid/overview/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/overview/package.json +++ b/samples/grids/grid/overview/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/paste/package.json b/samples/grids/grid/paste/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/grid/paste/package.json +++ b/samples/grids/grid/paste/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/remote-paging-data/package.json b/samples/grids/grid/remote-paging-data/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/grid/remote-paging-data/package.json +++ b/samples/grids/grid/remote-paging-data/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/remote-paging-grid/package.json b/samples/grids/grid/remote-paging-grid/package.json index 3ee098bff2..07a27a428c 100644 --- a/samples/grids/grid/remote-paging-grid/package.json +++ b/samples/grids/grid/remote-paging-grid/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/row-adding/package.json b/samples/grids/grid/row-adding/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/row-adding/package.json +++ b/samples/grids/grid/row-adding/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/row-classes/package.json b/samples/grids/grid/row-classes/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/row-classes/package.json +++ b/samples/grids/grid/row-classes/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/row-drag-base/package.json b/samples/grids/grid/row-drag-base/package.json index 7612824c28..27102d1307 100644 --- a/samples/grids/grid/row-drag-base/package.json +++ b/samples/grids/grid/row-drag-base/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/row-editing-options/package.json b/samples/grids/grid/row-editing-options/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/row-editing-options/package.json +++ b/samples/grids/grid/row-editing-options/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/row-editing-style/package.json b/samples/grids/grid/row-editing-style/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/row-editing-style/package.json +++ b/samples/grids/grid/row-editing-style/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/row-paging-basic/package.json b/samples/grids/grid/row-paging-basic/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/row-paging-basic/package.json +++ b/samples/grids/grid/row-paging-basic/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/row-paging-options/package.json b/samples/grids/grid/row-paging-options/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/grid/row-paging-options/package.json +++ b/samples/grids/grid/row-paging-options/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/row-pinning-drag/package.json b/samples/grids/grid/row-pinning-drag/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/grid/row-pinning-drag/package.json +++ b/samples/grids/grid/row-pinning-drag/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/row-pinning-extra-column/package.json b/samples/grids/grid/row-pinning-extra-column/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/grid/row-pinning-extra-column/package.json +++ b/samples/grids/grid/row-pinning-extra-column/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/row-pinning-options/package.json b/samples/grids/grid/row-pinning-options/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/grid/row-pinning-options/package.json +++ b/samples/grids/grid/row-pinning-options/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/row-pinning-style/package.json b/samples/grids/grid/row-pinning-style/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/row-pinning-style/package.json +++ b/samples/grids/grid/row-pinning-style/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/row-reorder/package.json b/samples/grids/grid/row-reorder/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/grid/row-reorder/package.json +++ b/samples/grids/grid/row-reorder/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/row-selection-mode/package.json b/samples/grids/grid/row-selection-mode/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/grid/row-selection-mode/package.json +++ b/samples/grids/grid/row-selection-mode/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/row-selection-template-excel/package.json b/samples/grids/grid/row-selection-template-excel/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/grid/row-selection-template-excel/package.json +++ b/samples/grids/grid/row-selection-template-excel/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/row-selection-template-numbers/package.json b/samples/grids/grid/row-selection-template-numbers/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/row-selection-template-numbers/package.json +++ b/samples/grids/grid/row-selection-template-numbers/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/row-styles/package.json b/samples/grids/grid/row-styles/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/row-styles/package.json +++ b/samples/grids/grid/row-styles/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/state-persistence-about/package.json b/samples/grids/grid/state-persistence-about/package.json index 7612824c28..27102d1307 100644 --- a/samples/grids/grid/state-persistence-about/package.json +++ b/samples/grids/grid/state-persistence-about/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/state-persistence-main/package.json b/samples/grids/grid/state-persistence-main/package.json index 7612824c28..27102d1307 100644 --- a/samples/grids/grid/state-persistence-main/package.json +++ b/samples/grids/grid/state-persistence-main/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/styling-custom-CSS/package.json b/samples/grids/grid/styling-custom-CSS/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/styling-custom-CSS/package.json +++ b/samples/grids/grid/styling-custom-CSS/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/toolbar-sample-1/package.json b/samples/grids/grid/toolbar-sample-1/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/toolbar-sample-1/package.json +++ b/samples/grids/grid/toolbar-sample-1/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/toolbar-sample-2/package.json b/samples/grids/grid/toolbar-sample-2/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/toolbar-sample-2/package.json +++ b/samples/grids/grid/toolbar-sample-2/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/toolbar-sample-3/package.json b/samples/grids/grid/toolbar-sample-3/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/toolbar-sample-3/package.json +++ b/samples/grids/grid/toolbar-sample-3/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/toolbar-style/package.json b/samples/grids/grid/toolbar-style/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/grid/toolbar-style/package.json +++ b/samples/grids/grid/toolbar-style/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/action-strip/package.json b/samples/grids/hierarchical-grid/action-strip/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/action-strip/package.json +++ b/samples/grids/hierarchical-grid/action-strip/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/advanced-filtering-options/package.json b/samples/grids/hierarchical-grid/advanced-filtering-options/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-options/package.json +++ b/samples/grids/hierarchical-grid/advanced-filtering-options/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/advanced-filtering-style/package.json b/samples/grids/hierarchical-grid/advanced-filtering-style/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-style/package.json +++ b/samples/grids/hierarchical-grid/advanced-filtering-style/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/cell-editing-sample/package.json b/samples/grids/hierarchical-grid/cell-editing-sample/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/cell-editing-sample/package.json +++ b/samples/grids/hierarchical-grid/cell-editing-sample/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/cell-editing-styling/package.json b/samples/grids/hierarchical-grid/cell-editing-styling/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/cell-editing-styling/package.json +++ b/samples/grids/hierarchical-grid/cell-editing-styling/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/cell-merge-custom-sample/package.json b/samples/grids/hierarchical-grid/cell-merge-custom-sample/package.json index c06c48b1c3..3a9c5a071d 100644 --- a/samples/grids/hierarchical-grid/cell-merge-custom-sample/package.json +++ b/samples/grids/hierarchical-grid/cell-merge-custom-sample/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/cell-merge/package.json b/samples/grids/hierarchical-grid/cell-merge/package.json index c06c48b1c3..3a9c5a071d 100644 --- a/samples/grids/hierarchical-grid/cell-merge/package.json +++ b/samples/grids/hierarchical-grid/cell-merge/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/cell-selection-mode/package.json b/samples/grids/hierarchical-grid/cell-selection-mode/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/hierarchical-grid/cell-selection-mode/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-mode/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/cell-selection-overview/package.json b/samples/grids/hierarchical-grid/cell-selection-overview/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/hierarchical-grid/cell-selection-overview/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-overview/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/cell-selection-style/package.json b/samples/grids/hierarchical-grid/cell-selection-style/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/hierarchical-grid/cell-selection-style/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-style/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-auto-sizing/package.json b/samples/grids/hierarchical-grid/column-auto-sizing/package.json index 7612824c28..27102d1307 100644 --- a/samples/grids/hierarchical-grid/column-auto-sizing/package.json +++ b/samples/grids/hierarchical-grid/column-auto-sizing/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-collapsible-groups/package.json b/samples/grids/hierarchical-grid/column-collapsible-groups/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/column-collapsible-groups/package.json +++ b/samples/grids/hierarchical-grid/column-collapsible-groups/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json b/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json +++ b/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json b/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json +++ b/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-moving-options/package.json b/samples/grids/hierarchical-grid/column-moving-options/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/column-moving-options/package.json +++ b/samples/grids/hierarchical-grid/column-moving-options/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-moving-styles/package.json b/samples/grids/hierarchical-grid/column-moving-styles/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/column-moving-styles/package.json +++ b/samples/grids/hierarchical-grid/column-moving-styles/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-pinning-both-sides/package.json b/samples/grids/hierarchical-grid/column-pinning-both-sides/package.json index c06c48b1c3..3a9c5a071d 100644 --- a/samples/grids/hierarchical-grid/column-pinning-both-sides/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-both-sides/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-pinning-options/package.json b/samples/grids/hierarchical-grid/column-pinning-options/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/column-pinning-options/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-options/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-pinning-right-side/package.json b/samples/grids/hierarchical-grid/column-pinning-right-side/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/column-pinning-right-side/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-right-side/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-pinning-styles/package.json b/samples/grids/hierarchical-grid/column-pinning-styles/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/column-pinning-styles/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-styles/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-pinning/package.json b/samples/grids/hierarchical-grid/column-pinning/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/column-pinning/package.json +++ b/samples/grids/hierarchical-grid/column-pinning/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-resize-styling/package.json b/samples/grids/hierarchical-grid/column-resize-styling/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/column-resize-styling/package.json +++ b/samples/grids/hierarchical-grid/column-resize-styling/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-resizing/package.json b/samples/grids/hierarchical-grid/column-resizing/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/column-resizing/package.json +++ b/samples/grids/hierarchical-grid/column-resizing/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-selection-group/package.json b/samples/grids/hierarchical-grid/column-selection-group/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/column-selection-group/package.json +++ b/samples/grids/hierarchical-grid/column-selection-group/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-selection-mode/package.json b/samples/grids/hierarchical-grid/column-selection-mode/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/hierarchical-grid/column-selection-mode/package.json +++ b/samples/grids/hierarchical-grid/column-selection-mode/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-selection-styles/package.json b/samples/grids/hierarchical-grid/column-selection-styles/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/column-selection-styles/package.json +++ b/samples/grids/hierarchical-grid/column-selection-styles/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-sorting-indicators/package.json b/samples/grids/hierarchical-grid/column-sorting-indicators/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/column-sorting-indicators/package.json +++ b/samples/grids/hierarchical-grid/column-sorting-indicators/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-sorting-options/package.json b/samples/grids/hierarchical-grid/column-sorting-options/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/column-sorting-options/package.json +++ b/samples/grids/hierarchical-grid/column-sorting-options/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-sorting-style/package.json b/samples/grids/hierarchical-grid/column-sorting-style/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/column-sorting-style/package.json +++ b/samples/grids/hierarchical-grid/column-sorting-style/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json b/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json +++ b/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json b/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json +++ b/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/conditional-row-selectors/package.json b/samples/grids/hierarchical-grid/conditional-row-selectors/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/conditional-row-selectors/package.json +++ b/samples/grids/hierarchical-grid/conditional-row-selectors/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/custom-filtering/package.json b/samples/grids/hierarchical-grid/custom-filtering/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/custom-filtering/package.json +++ b/samples/grids/hierarchical-grid/custom-filtering/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/data-exporting-indicator/package.json b/samples/grids/hierarchical-grid/data-exporting-indicator/package.json index 7612824c28..27102d1307 100644 --- a/samples/grids/hierarchical-grid/data-exporting-indicator/package.json +++ b/samples/grids/hierarchical-grid/data-exporting-indicator/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/data-performance-virtualization/package.json b/samples/grids/hierarchical-grid/data-performance-virtualization/package.json index 7612824c28..27102d1307 100644 --- a/samples/grids/hierarchical-grid/data-performance-virtualization/package.json +++ b/samples/grids/hierarchical-grid/data-performance-virtualization/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/data-summary-formatter/package.json b/samples/grids/hierarchical-grid/data-summary-formatter/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/data-summary-formatter/package.json +++ b/samples/grids/hierarchical-grid/data-summary-formatter/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/data-summary-options-styling/package.json b/samples/grids/hierarchical-grid/data-summary-options-styling/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/data-summary-options-styling/package.json +++ b/samples/grids/hierarchical-grid/data-summary-options-styling/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/data-summary-options/package.json b/samples/grids/hierarchical-grid/data-summary-options/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/data-summary-options/package.json +++ b/samples/grids/hierarchical-grid/data-summary-options/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/data-summary-template/package.json b/samples/grids/hierarchical-grid/data-summary-template/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/hierarchical-grid/data-summary-template/package.json +++ b/samples/grids/hierarchical-grid/data-summary-template/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/disabled-summaries/package.json b/samples/grids/hierarchical-grid/disabled-summaries/package.json index 35429bc269..ff7767bd29 100644 --- a/samples/grids/hierarchical-grid/disabled-summaries/package.json +++ b/samples/grids/hierarchical-grid/disabled-summaries/package.json @@ -9,10 +9,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/editing-columns/package.json b/samples/grids/hierarchical-grid/editing-columns/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/editing-columns/package.json +++ b/samples/grids/hierarchical-grid/editing-columns/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/editing-events/package.json b/samples/grids/hierarchical-grid/editing-events/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/editing-events/package.json +++ b/samples/grids/hierarchical-grid/editing-events/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/editing-lifecycle/package.json b/samples/grids/hierarchical-grid/editing-lifecycle/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/editing-lifecycle/package.json +++ b/samples/grids/hierarchical-grid/editing-lifecycle/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/excel-exporting/package.json b/samples/grids/hierarchical-grid/excel-exporting/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/excel-exporting/package.json +++ b/samples/grids/hierarchical-grid/excel-exporting/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/filtering-options/package.json b/samples/grids/hierarchical-grid/filtering-options/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/filtering-options/package.json +++ b/samples/grids/hierarchical-grid/filtering-options/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/filtering-style/package.json b/samples/grids/hierarchical-grid/filtering-style/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/filtering-style/package.json +++ b/samples/grids/hierarchical-grid/filtering-style/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json b/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json b/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json b/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/layout-display-density/package.json b/samples/grids/hierarchical-grid/layout-display-density/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/hierarchical-grid/layout-display-density/package.json +++ b/samples/grids/hierarchical-grid/layout-display-density/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/multi-column-headers-export/package.json b/samples/grids/hierarchical-grid/multi-column-headers-export/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-export/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-export/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json b/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json b/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/multi-column-headers-template/package.json b/samples/grids/hierarchical-grid/multi-column-headers-template/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-template/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-template/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/overview/package.json b/samples/grids/hierarchical-grid/overview/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/overview/package.json +++ b/samples/grids/hierarchical-grid/overview/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/remote-paging-hgrid/package.json b/samples/grids/hierarchical-grid/remote-paging-hgrid/package.json index 7612824c28..27102d1307 100644 --- a/samples/grids/hierarchical-grid/remote-paging-hgrid/package.json +++ b/samples/grids/hierarchical-grid/remote-paging-hgrid/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-adding/package.json b/samples/grids/hierarchical-grid/row-adding/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/row-adding/package.json +++ b/samples/grids/hierarchical-grid/row-adding/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-classes/package.json b/samples/grids/hierarchical-grid/row-classes/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/row-classes/package.json +++ b/samples/grids/hierarchical-grid/row-classes/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-drag-base/package.json b/samples/grids/hierarchical-grid/row-drag-base/package.json index 7612824c28..27102d1307 100644 --- a/samples/grids/hierarchical-grid/row-drag-base/package.json +++ b/samples/grids/hierarchical-grid/row-drag-base/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-editing-options/package.json b/samples/grids/hierarchical-grid/row-editing-options/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/row-editing-options/package.json +++ b/samples/grids/hierarchical-grid/row-editing-options/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-editing-style/package.json b/samples/grids/hierarchical-grid/row-editing-style/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/row-editing-style/package.json +++ b/samples/grids/hierarchical-grid/row-editing-style/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json b/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json +++ b/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-pinning-options/package.json b/samples/grids/hierarchical-grid/row-pinning-options/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/hierarchical-grid/row-pinning-options/package.json +++ b/samples/grids/hierarchical-grid/row-pinning-options/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-pinning-style/package.json b/samples/grids/hierarchical-grid/row-pinning-style/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/row-pinning-style/package.json +++ b/samples/grids/hierarchical-grid/row-pinning-style/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-reorder/package.json b/samples/grids/hierarchical-grid/row-reorder/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/row-reorder/package.json +++ b/samples/grids/hierarchical-grid/row-reorder/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-selection-mode/package.json b/samples/grids/hierarchical-grid/row-selection-mode/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/hierarchical-grid/row-selection-mode/package.json +++ b/samples/grids/hierarchical-grid/row-selection-mode/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json b/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json +++ b/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-styles/package.json b/samples/grids/hierarchical-grid/row-styles/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/row-styles/package.json +++ b/samples/grids/hierarchical-grid/row-styles/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/state-persistence-about/package.json b/samples/grids/hierarchical-grid/state-persistence-about/package.json index 7612824c28..27102d1307 100644 --- a/samples/grids/hierarchical-grid/state-persistence-about/package.json +++ b/samples/grids/hierarchical-grid/state-persistence-about/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/state-persistence-main/package.json b/samples/grids/hierarchical-grid/state-persistence-main/package.json index 7612824c28..27102d1307 100644 --- a/samples/grids/hierarchical-grid/state-persistence-main/package.json +++ b/samples/grids/hierarchical-grid/state-persistence-main/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/toolbar-sample-3/package.json b/samples/grids/hierarchical-grid/toolbar-sample-3/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-3/package.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-3/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/toolbar-sample-4/package.json b/samples/grids/hierarchical-grid/toolbar-sample-4/package.json index 7612824c28..27102d1307 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-4/package.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-4/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/toolbar-style/package.json b/samples/grids/hierarchical-grid/toolbar-style/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/hierarchical-grid/toolbar-style/package.json +++ b/samples/grids/hierarchical-grid/toolbar-style/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/list/add-list-items/package.json b/samples/grids/list/add-list-items/package.json index 07fd8fde44..98050e47e4 100644 --- a/samples/grids/list/add-list-items/package.json +++ b/samples/grids/list/add-list-items/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/list/list-item-content/package.json b/samples/grids/list/list-item-content/package.json index d302ebcfe5..be1b23c8c6 100644 --- a/samples/grids/list/list-item-content/package.json +++ b/samples/grids/list/list-item-content/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/list/overview/package.json b/samples/grids/list/overview/package.json index 553b126a14..3eb952e24c 100644 --- a/samples/grids/list/overview/package.json +++ b/samples/grids/list/overview/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/list/styling/package.json b/samples/grids/list/styling/package.json index b6292c4cb5..92cda39a9d 100644 --- a/samples/grids/list/styling/package.json +++ b/samples/grids/list/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/pivot-grid/aggregate-max-sales/package.json b/samples/grids/pivot-grid/aggregate-max-sales/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/pivot-grid/aggregate-max-sales/package.json +++ b/samples/grids/pivot-grid/aggregate-max-sales/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/pivot-grid/aggregate-units-sold/package.json b/samples/grids/pivot-grid/aggregate-units-sold/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/pivot-grid/aggregate-units-sold/package.json +++ b/samples/grids/pivot-grid/aggregate-units-sold/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/pivot-grid/data-selector/package.json b/samples/grids/pivot-grid/data-selector/package.json index 7612824c28..27102d1307 100644 --- a/samples/grids/pivot-grid/data-selector/package.json +++ b/samples/grids/pivot-grid/data-selector/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/pivot-grid/features/package.json b/samples/grids/pivot-grid/features/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/pivot-grid/features/package.json +++ b/samples/grids/pivot-grid/features/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/pivot-grid/state-persistence-about/package.json b/samples/grids/pivot-grid/state-persistence-about/package.json index 7612824c28..27102d1307 100644 --- a/samples/grids/pivot-grid/state-persistence-about/package.json +++ b/samples/grids/pivot-grid/state-persistence-about/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/pivot-grid/state-persistence-main/package.json b/samples/grids/pivot-grid/state-persistence-main/package.json index 7612824c28..27102d1307 100644 --- a/samples/grids/pivot-grid/state-persistence-main/package.json +++ b/samples/grids/pivot-grid/state-persistence-main/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/action-strip/package.json b/samples/grids/tree-grid/action-strip/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/action-strip/package.json +++ b/samples/grids/tree-grid/action-strip/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/advanced-filtering-options/package.json b/samples/grids/tree-grid/advanced-filtering-options/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/advanced-filtering-options/package.json +++ b/samples/grids/tree-grid/advanced-filtering-options/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/advanced-filtering-style/package.json b/samples/grids/tree-grid/advanced-filtering-style/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/advanced-filtering-style/package.json +++ b/samples/grids/tree-grid/advanced-filtering-style/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/cell-editing-sample/package.json b/samples/grids/tree-grid/cell-editing-sample/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/cell-editing-sample/package.json +++ b/samples/grids/tree-grid/cell-editing-sample/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/cell-editing-styling/package.json b/samples/grids/tree-grid/cell-editing-styling/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/cell-editing-styling/package.json +++ b/samples/grids/tree-grid/cell-editing-styling/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/cell-merge-custom-sample/package.json b/samples/grids/tree-grid/cell-merge-custom-sample/package.json index c06c48b1c3..3a9c5a071d 100644 --- a/samples/grids/tree-grid/cell-merge-custom-sample/package.json +++ b/samples/grids/tree-grid/cell-merge-custom-sample/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/cell-merge/package.json b/samples/grids/tree-grid/cell-merge/package.json index c06c48b1c3..3a9c5a071d 100644 --- a/samples/grids/tree-grid/cell-merge/package.json +++ b/samples/grids/tree-grid/cell-merge/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/cell-selection-mode/package.json b/samples/grids/tree-grid/cell-selection-mode/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/tree-grid/cell-selection-mode/package.json +++ b/samples/grids/tree-grid/cell-selection-mode/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/cell-selection-style/package.json b/samples/grids/tree-grid/cell-selection-style/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/cell-selection-style/package.json +++ b/samples/grids/tree-grid/cell-selection-style/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/clipboard-operations/package.json b/samples/grids/tree-grid/clipboard-operations/package.json index 7612824c28..27102d1307 100644 --- a/samples/grids/tree-grid/clipboard-operations/package.json +++ b/samples/grids/tree-grid/clipboard-operations/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-auto-sizing/package.json b/samples/grids/tree-grid/column-auto-sizing/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/column-auto-sizing/package.json +++ b/samples/grids/tree-grid/column-auto-sizing/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-collapsible-groups/package.json b/samples/grids/tree-grid/column-collapsible-groups/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/column-collapsible-groups/package.json +++ b/samples/grids/tree-grid/column-collapsible-groups/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-data-types/package.json b/samples/grids/tree-grid/column-data-types/package.json index 7612824c28..27102d1307 100644 --- a/samples/grids/tree-grid/column-data-types/package.json +++ b/samples/grids/tree-grid/column-data-types/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-hiding-toolbar-style/package.json b/samples/grids/tree-grid/column-hiding-toolbar-style/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar-style/package.json +++ b/samples/grids/tree-grid/column-hiding-toolbar-style/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-hiding-toolbar/package.json b/samples/grids/tree-grid/column-hiding-toolbar/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar/package.json +++ b/samples/grids/tree-grid/column-hiding-toolbar/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-moving-options/package.json b/samples/grids/tree-grid/column-moving-options/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/column-moving-options/package.json +++ b/samples/grids/tree-grid/column-moving-options/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-moving-styles/package.json b/samples/grids/tree-grid/column-moving-styles/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/column-moving-styles/package.json +++ b/samples/grids/tree-grid/column-moving-styles/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-pinning-both-sides/package.json b/samples/grids/tree-grid/column-pinning-both-sides/package.json index c06c48b1c3..3a9c5a071d 100644 --- a/samples/grids/tree-grid/column-pinning-both-sides/package.json +++ b/samples/grids/tree-grid/column-pinning-both-sides/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-pinning-options/package.json b/samples/grids/tree-grid/column-pinning-options/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/column-pinning-options/package.json +++ b/samples/grids/tree-grid/column-pinning-options/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-pinning-right-side/package.json b/samples/grids/tree-grid/column-pinning-right-side/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/column-pinning-right-side/package.json +++ b/samples/grids/tree-grid/column-pinning-right-side/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-pinning-styles/package.json b/samples/grids/tree-grid/column-pinning-styles/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/column-pinning-styles/package.json +++ b/samples/grids/tree-grid/column-pinning-styles/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-pinning-toolbar/package.json b/samples/grids/tree-grid/column-pinning-toolbar/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/column-pinning-toolbar/package.json +++ b/samples/grids/tree-grid/column-pinning-toolbar/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-pinning/package.json b/samples/grids/tree-grid/column-pinning/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/column-pinning/package.json +++ b/samples/grids/tree-grid/column-pinning/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-resize-styling/package.json b/samples/grids/tree-grid/column-resize-styling/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/column-resize-styling/package.json +++ b/samples/grids/tree-grid/column-resize-styling/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-resizing/package.json b/samples/grids/tree-grid/column-resizing/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/column-resizing/package.json +++ b/samples/grids/tree-grid/column-resizing/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-selection-group/package.json b/samples/grids/tree-grid/column-selection-group/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/column-selection-group/package.json +++ b/samples/grids/tree-grid/column-selection-group/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-selection-mode/package.json b/samples/grids/tree-grid/column-selection-mode/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/tree-grid/column-selection-mode/package.json +++ b/samples/grids/tree-grid/column-selection-mode/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-selection-style/package.json b/samples/grids/tree-grid/column-selection-style/package.json index 7612824c28..27102d1307 100644 --- a/samples/grids/tree-grid/column-selection-style/package.json +++ b/samples/grids/tree-grid/column-selection-style/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-selection-styles/package.json b/samples/grids/tree-grid/column-selection-styles/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/column-selection-styles/package.json +++ b/samples/grids/tree-grid/column-selection-styles/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-sorting-indicators/package.json b/samples/grids/tree-grid/column-sorting-indicators/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/column-sorting-indicators/package.json +++ b/samples/grids/tree-grid/column-sorting-indicators/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-sorting-options/package.json b/samples/grids/tree-grid/column-sorting-options/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/tree-grid/column-sorting-options/package.json +++ b/samples/grids/tree-grid/column-sorting-options/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/column-sorting-style/package.json b/samples/grids/tree-grid/column-sorting-style/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/tree-grid/column-sorting-style/package.json +++ b/samples/grids/tree-grid/column-sorting-style/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/conditional-cell-style-1/package.json b/samples/grids/tree-grid/conditional-cell-style-1/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/conditional-cell-style-1/package.json +++ b/samples/grids/tree-grid/conditional-cell-style-1/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/conditional-cell-style-2/package.json b/samples/grids/tree-grid/conditional-cell-style-2/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/conditional-cell-style-2/package.json +++ b/samples/grids/tree-grid/conditional-cell-style-2/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/conditional-row-selectors/package.json b/samples/grids/tree-grid/conditional-row-selectors/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/conditional-row-selectors/package.json +++ b/samples/grids/tree-grid/conditional-row-selectors/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/data-exporting-indicator/package.json b/samples/grids/tree-grid/data-exporting-indicator/package.json index 7612824c28..27102d1307 100644 --- a/samples/grids/tree-grid/data-exporting-indicator/package.json +++ b/samples/grids/tree-grid/data-exporting-indicator/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/data-searching/package.json b/samples/grids/tree-grid/data-searching/package.json index 2a8939cd1f..165a1f1b08 100644 --- a/samples/grids/tree-grid/data-searching/package.json +++ b/samples/grids/tree-grid/data-searching/package.json @@ -14,8 +14,8 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", + "igniteui-react-grids": "^19.5.0", "lit-html": "^2.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/data-summary-children/package.json b/samples/grids/tree-grid/data-summary-children/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/tree-grid/data-summary-children/package.json +++ b/samples/grids/tree-grid/data-summary-children/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/data-summary-formatter/package.json b/samples/grids/tree-grid/data-summary-formatter/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/data-summary-formatter/package.json +++ b/samples/grids/tree-grid/data-summary-formatter/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/data-summary-options-styling/package.json b/samples/grids/tree-grid/data-summary-options-styling/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/data-summary-options-styling/package.json +++ b/samples/grids/tree-grid/data-summary-options-styling/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/data-summary-options/package.json b/samples/grids/tree-grid/data-summary-options/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/data-summary-options/package.json +++ b/samples/grids/tree-grid/data-summary-options/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/data-summary-template/package.json b/samples/grids/tree-grid/data-summary-template/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/tree-grid/data-summary-template/package.json +++ b/samples/grids/tree-grid/data-summary-template/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/disabled-summaries/package.json b/samples/grids/tree-grid/disabled-summaries/package.json index 35429bc269..ff7767bd29 100644 --- a/samples/grids/tree-grid/disabled-summaries/package.json +++ b/samples/grids/tree-grid/disabled-summaries/package.json @@ -9,10 +9,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/editing-columns/package.json b/samples/grids/tree-grid/editing-columns/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/editing-columns/package.json +++ b/samples/grids/tree-grid/editing-columns/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/editing-events/package.json b/samples/grids/tree-grid/editing-events/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/editing-events/package.json +++ b/samples/grids/tree-grid/editing-events/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/editing-lifecycle/package.json b/samples/grids/tree-grid/editing-lifecycle/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/editing-lifecycle/package.json +++ b/samples/grids/tree-grid/editing-lifecycle/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/excel-exporting/package.json b/samples/grids/tree-grid/excel-exporting/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/excel-exporting/package.json +++ b/samples/grids/tree-grid/excel-exporting/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json b/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json b/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json b/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/excel-style-filtering-style/package.json b/samples/grids/tree-grid/excel-style-filtering-style/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/excel-style-filtering-style/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-style/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/filtering-options/package.json b/samples/grids/tree-grid/filtering-options/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/filtering-options/package.json +++ b/samples/grids/tree-grid/filtering-options/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/filtering-style/package.json b/samples/grids/tree-grid/filtering-style/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/filtering-style/package.json +++ b/samples/grids/tree-grid/filtering-style/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/keyboard-custom-navigation/package.json b/samples/grids/tree-grid/keyboard-custom-navigation/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/tree-grid/keyboard-custom-navigation/package.json +++ b/samples/grids/tree-grid/keyboard-custom-navigation/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/layout-display-density/package.json b/samples/grids/tree-grid/layout-display-density/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/tree-grid/layout-display-density/package.json +++ b/samples/grids/tree-grid/layout-display-density/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/multi-cell-selection-mode/package.json b/samples/grids/tree-grid/multi-cell-selection-mode/package.json index 7612824c28..27102d1307 100644 --- a/samples/grids/tree-grid/multi-cell-selection-mode/package.json +++ b/samples/grids/tree-grid/multi-cell-selection-mode/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/multi-column-headers-export/package.json b/samples/grids/tree-grid/multi-column-headers-export/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/multi-column-headers-export/package.json +++ b/samples/grids/tree-grid/multi-column-headers-export/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/multi-column-headers-overview/package.json b/samples/grids/tree-grid/multi-column-headers-overview/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/tree-grid/multi-column-headers-overview/package.json +++ b/samples/grids/tree-grid/multi-column-headers-overview/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/multi-column-headers-styling/package.json b/samples/grids/tree-grid/multi-column-headers-styling/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/multi-column-headers-styling/package.json +++ b/samples/grids/tree-grid/multi-column-headers-styling/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/multi-column-headers-template/package.json b/samples/grids/tree-grid/multi-column-headers-template/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/multi-column-headers-template/package.json +++ b/samples/grids/tree-grid/multi-column-headers-template/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/overview-styling/package.json b/samples/grids/tree-grid/overview-styling/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/overview-styling/package.json +++ b/samples/grids/tree-grid/overview-styling/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/overview/package.json b/samples/grids/tree-grid/overview/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/tree-grid/overview/package.json +++ b/samples/grids/tree-grid/overview/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/row-adding/package.json b/samples/grids/tree-grid/row-adding/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/row-adding/package.json +++ b/samples/grids/tree-grid/row-adding/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/row-classes/package.json b/samples/grids/tree-grid/row-classes/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/row-classes/package.json +++ b/samples/grids/tree-grid/row-classes/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/row-drag-base/package.json b/samples/grids/tree-grid/row-drag-base/package.json index 7612824c28..27102d1307 100644 --- a/samples/grids/tree-grid/row-drag-base/package.json +++ b/samples/grids/tree-grid/row-drag-base/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/row-editing-options/package.json b/samples/grids/tree-grid/row-editing-options/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/row-editing-options/package.json +++ b/samples/grids/tree-grid/row-editing-options/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/row-editing-style/package.json b/samples/grids/tree-grid/row-editing-style/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/row-editing-style/package.json +++ b/samples/grids/tree-grid/row-editing-style/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/row-paging-basic/package.json b/samples/grids/tree-grid/row-paging-basic/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/row-paging-basic/package.json +++ b/samples/grids/tree-grid/row-paging-basic/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/row-paging-options/package.json b/samples/grids/tree-grid/row-paging-options/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/tree-grid/row-paging-options/package.json +++ b/samples/grids/tree-grid/row-paging-options/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/row-paging-style/package.json b/samples/grids/tree-grid/row-paging-style/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/row-paging-style/package.json +++ b/samples/grids/tree-grid/row-paging-style/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/row-pinning-extra-column/package.json b/samples/grids/tree-grid/row-pinning-extra-column/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/row-pinning-extra-column/package.json +++ b/samples/grids/tree-grid/row-pinning-extra-column/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/row-pinning-options/package.json b/samples/grids/tree-grid/row-pinning-options/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/tree-grid/row-pinning-options/package.json +++ b/samples/grids/tree-grid/row-pinning-options/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/row-pinning-style/package.json b/samples/grids/tree-grid/row-pinning-style/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/row-pinning-style/package.json +++ b/samples/grids/tree-grid/row-pinning-style/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/row-reorder/package.json b/samples/grids/tree-grid/row-reorder/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/row-reorder/package.json +++ b/samples/grids/tree-grid/row-reorder/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/row-selection-mode/package.json b/samples/grids/tree-grid/row-selection-mode/package.json index 4627ecf3f8..f458cd4401 100644 --- a/samples/grids/tree-grid/row-selection-mode/package.json +++ b/samples/grids/tree-grid/row-selection-mode/package.json @@ -15,12 +15,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/row-selection-template-excel/package.json b/samples/grids/tree-grid/row-selection-template-excel/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/row-selection-template-excel/package.json +++ b/samples/grids/tree-grid/row-selection-template-excel/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/row-selection-template-numbers/package.json b/samples/grids/tree-grid/row-selection-template-numbers/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/row-selection-template-numbers/package.json +++ b/samples/grids/tree-grid/row-selection-template-numbers/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/row-styles/package.json b/samples/grids/tree-grid/row-styles/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/row-styles/package.json +++ b/samples/grids/tree-grid/row-styles/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/state-persistence-about/package.json b/samples/grids/tree-grid/state-persistence-about/package.json index 7612824c28..27102d1307 100644 --- a/samples/grids/tree-grid/state-persistence-about/package.json +++ b/samples/grids/tree-grid/state-persistence-about/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/state-persistence-main/package.json b/samples/grids/tree-grid/state-persistence-main/package.json index 7612824c28..27102d1307 100644 --- a/samples/grids/tree-grid/state-persistence-main/package.json +++ b/samples/grids/tree-grid/state-persistence-main/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/toolbar-sample-1/package.json b/samples/grids/tree-grid/toolbar-sample-1/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/toolbar-sample-1/package.json +++ b/samples/grids/tree-grid/toolbar-sample-1/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/toolbar-sample-2/package.json b/samples/grids/tree-grid/toolbar-sample-2/package.json index 7612824c28..27102d1307 100644 --- a/samples/grids/tree-grid/toolbar-sample-2/package.json +++ b/samples/grids/tree-grid/toolbar-sample-2/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/toolbar-sample-3/package.json b/samples/grids/tree-grid/toolbar-sample-3/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/toolbar-sample-3/package.json +++ b/samples/grids/tree-grid/toolbar-sample-3/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/toolbar-sample-4/package.json b/samples/grids/tree-grid/toolbar-sample-4/package.json index 7612824c28..27102d1307 100644 --- a/samples/grids/tree-grid/toolbar-sample-4/package.json +++ b/samples/grids/tree-grid/toolbar-sample-4/package.json @@ -15,13 +15,13 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-datasources": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/toolbar-style/package.json b/samples/grids/tree-grid/toolbar-style/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/toolbar-style/package.json +++ b/samples/grids/tree-grid/toolbar-style/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/using-primary-foreign-keys/package.json b/samples/grids/tree-grid/using-primary-foreign-keys/package.json index 5221cd49b1..b2695fcf5b 100644 --- a/samples/grids/tree-grid/using-primary-foreign-keys/package.json +++ b/samples/grids/tree-grid/using-primary-foreign-keys/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-react-grids": "^19.5.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree/basic-example/package.json b/samples/grids/tree/basic-example/package.json index 347852c968..0585d658f8 100644 --- a/samples/grids/tree/basic-example/package.json +++ b/samples/grids/tree/basic-example/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree/styling/package.json b/samples/grids/tree/styling/package.json index 347852c968..0585d658f8 100644 --- a/samples/grids/tree/styling/package.json +++ b/samples/grids/tree/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/badge/outlined/package.json b/samples/inputs/badge/outlined/package.json index bc749fff5b..63ec2b65ff 100644 --- a/samples/inputs/badge/outlined/package.json +++ b/samples/inputs/badge/outlined/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/badge/shape/package.json b/samples/inputs/badge/shape/package.json index 4d7200c9b1..d2f67fc579 100644 --- a/samples/inputs/badge/shape/package.json +++ b/samples/inputs/badge/shape/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/badge/styling/package.json b/samples/inputs/badge/styling/package.json index 4d7200c9b1..d2f67fc579 100644 --- a/samples/inputs/badge/styling/package.json +++ b/samples/inputs/badge/styling/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/badge/variants/package.json b/samples/inputs/badge/variants/package.json index dacb0820fc..48b2c78840 100644 --- a/samples/inputs/badge/variants/package.json +++ b/samples/inputs/badge/variants/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/button-group/alignment/package.json b/samples/inputs/button-group/alignment/package.json index 9407bb252f..cb9fd5afa0 100644 --- a/samples/inputs/button-group/alignment/package.json +++ b/samples/inputs/button-group/alignment/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/button-group/overview/package.json b/samples/inputs/button-group/overview/package.json index 7e2f7a8b83..d9474bdacc 100644 --- a/samples/inputs/button-group/overview/package.json +++ b/samples/inputs/button-group/overview/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/button-group/selection/package.json b/samples/inputs/button-group/selection/package.json index 5b96362279..c06d67c1dd 100644 --- a/samples/inputs/button-group/selection/package.json +++ b/samples/inputs/button-group/selection/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/button-group/size/package.json b/samples/inputs/button-group/size/package.json index ed7fbe6e28..68fea7f8d5 100644 --- a/samples/inputs/button-group/size/package.json +++ b/samples/inputs/button-group/size/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/button-group/styling/package.json b/samples/inputs/button-group/styling/package.json index a386a90c5d..175dc50dcf 100644 --- a/samples/inputs/button-group/styling/package.json +++ b/samples/inputs/button-group/styling/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/button/contained/package.json b/samples/inputs/button/contained/package.json index 60f8b7c900..c759f022f1 100644 --- a/samples/inputs/button/contained/package.json +++ b/samples/inputs/button/contained/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/button/download/package.json b/samples/inputs/button/download/package.json index f22b2e9a27..2d6ce6f15b 100644 --- a/samples/inputs/button/download/package.json +++ b/samples/inputs/button/download/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/button/fab/package.json b/samples/inputs/button/fab/package.json index 6393215fc2..2076264639 100644 --- a/samples/inputs/button/fab/package.json +++ b/samples/inputs/button/fab/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/button/flat/package.json b/samples/inputs/button/flat/package.json index 63563ef19f..e0241047ae 100644 --- a/samples/inputs/button/flat/package.json +++ b/samples/inputs/button/flat/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/button/outlined/package.json b/samples/inputs/button/outlined/package.json index 0030297957..d7a405af21 100644 --- a/samples/inputs/button/outlined/package.json +++ b/samples/inputs/button/outlined/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/button/overview/package.json b/samples/inputs/button/overview/package.json index effd270122..5444434256 100644 --- a/samples/inputs/button/overview/package.json +++ b/samples/inputs/button/overview/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/button/size/package.json b/samples/inputs/button/size/package.json index f615918c6b..a8b66f862d 100644 --- a/samples/inputs/button/size/package.json +++ b/samples/inputs/button/size/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/button/styling/package.json b/samples/inputs/button/styling/package.json index 8698687af3..c1361c6b20 100644 --- a/samples/inputs/button/styling/package.json +++ b/samples/inputs/button/styling/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/checkbox/checking/package.json b/samples/inputs/checkbox/checking/package.json index 093ab74cdd..81e3975527 100644 --- a/samples/inputs/checkbox/checking/package.json +++ b/samples/inputs/checkbox/checking/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/checkbox/disabled/package.json b/samples/inputs/checkbox/disabled/package.json index 1127a47365..80c67ee3ed 100644 --- a/samples/inputs/checkbox/disabled/package.json +++ b/samples/inputs/checkbox/disabled/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/checkbox/indeterminate/package.json b/samples/inputs/checkbox/indeterminate/package.json index 1ee8049f38..81b5a7ba52 100644 --- a/samples/inputs/checkbox/indeterminate/package.json +++ b/samples/inputs/checkbox/indeterminate/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/checkbox/label/package.json b/samples/inputs/checkbox/label/package.json index 58d3398864..4a0e769534 100644 --- a/samples/inputs/checkbox/label/package.json +++ b/samples/inputs/checkbox/label/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/checkbox/overview/package.json b/samples/inputs/checkbox/overview/package.json index 7f2b33a892..cf6fb1b3d8 100644 --- a/samples/inputs/checkbox/overview/package.json +++ b/samples/inputs/checkbox/overview/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/checkbox/styling/package.json b/samples/inputs/checkbox/styling/package.json index 7f2b33a892..cf6fb1b3d8 100644 --- a/samples/inputs/checkbox/styling/package.json +++ b/samples/inputs/checkbox/styling/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/chip/multiple/package.json b/samples/inputs/chip/multiple/package.json index e07c3b4956..ccbf2c9b5b 100644 --- a/samples/inputs/chip/multiple/package.json +++ b/samples/inputs/chip/multiple/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/chip/overview/package.json b/samples/inputs/chip/overview/package.json index e4fc0b5933..b440147e07 100644 --- a/samples/inputs/chip/overview/package.json +++ b/samples/inputs/chip/overview/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/chip/size/package.json b/samples/inputs/chip/size/package.json index 6521fa2fbc..ba179a6998 100644 --- a/samples/inputs/chip/size/package.json +++ b/samples/inputs/chip/size/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/chip/styling/package.json b/samples/inputs/chip/styling/package.json index 6de6401fde..0c1d6f692b 100644 --- a/samples/inputs/chip/styling/package.json +++ b/samples/inputs/chip/styling/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/chip/variants/package.json b/samples/inputs/chip/variants/package.json index 5cf36a182d..82ab25fa05 100644 --- a/samples/inputs/chip/variants/package.json +++ b/samples/inputs/chip/variants/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/circular-progress-indicator/dynamic/package.json b/samples/inputs/circular-progress-indicator/dynamic/package.json index aea1c52e9f..5fa35b4381 100644 --- a/samples/inputs/circular-progress-indicator/dynamic/package.json +++ b/samples/inputs/circular-progress-indicator/dynamic/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/circular-progress-indicator/indeterminate/package.json b/samples/inputs/circular-progress-indicator/indeterminate/package.json index 0b86da9ea0..36848eddf6 100644 --- a/samples/inputs/circular-progress-indicator/indeterminate/package.json +++ b/samples/inputs/circular-progress-indicator/indeterminate/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/circular-progress-indicator/simple/package.json b/samples/inputs/circular-progress-indicator/simple/package.json index 1f4ed42d18..de8d5b742f 100644 --- a/samples/inputs/circular-progress-indicator/simple/package.json +++ b/samples/inputs/circular-progress-indicator/simple/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/circular-progress-indicator/styling/package.json b/samples/inputs/circular-progress-indicator/styling/package.json index 7643698c21..590f2bc41d 100644 --- a/samples/inputs/circular-progress-indicator/styling/package.json +++ b/samples/inputs/circular-progress-indicator/styling/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/color-editor/overview/package.json b/samples/inputs/color-editor/overview/package.json index ccd70a75a5..9dc9b27441 100644 --- a/samples/inputs/color-editor/overview/package.json +++ b/samples/inputs/color-editor/overview/package.json @@ -14,10 +14,10 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-inputs": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/combo/features/package.json b/samples/inputs/combo/features/package.json index cffaf1d293..814ef3f8b3 100644 --- a/samples/inputs/combo/features/package.json +++ b/samples/inputs/combo/features/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/combo/overview/package.json b/samples/inputs/combo/overview/package.json index 8efe0e5b3e..f32767452a 100644 --- a/samples/inputs/combo/overview/package.json +++ b/samples/inputs/combo/overview/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/combo/selection/package.json b/samples/inputs/combo/selection/package.json index 83a6f9e8ff..fa7f6830cc 100644 --- a/samples/inputs/combo/selection/package.json +++ b/samples/inputs/combo/selection/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/combo/simplified/package.json b/samples/inputs/combo/simplified/package.json index c9ef2040ba..cbcdba493f 100644 --- a/samples/inputs/combo/simplified/package.json +++ b/samples/inputs/combo/simplified/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/combo/styling/package.json b/samples/inputs/combo/styling/package.json index c0ced05626..db60e45a77 100644 --- a/samples/inputs/combo/styling/package.json +++ b/samples/inputs/combo/styling/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/combo/templates/package.json b/samples/inputs/combo/templates/package.json index 8edce1d360..e7dd2bd77d 100644 --- a/samples/inputs/combo/templates/package.json +++ b/samples/inputs/combo/templates/package.json @@ -13,12 +13,12 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-react-grids": "^19.5.0-rc.0", + "igniteui-react-grids": "^19.5.0", "igniteui-react-inputs": "19.3.2", "igniteui-react-layouts": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/date-time-input/input-format-display-format/package.json b/samples/inputs/date-time-input/input-format-display-format/package.json index 076876bd18..f9d9550ce1 100644 --- a/samples/inputs/date-time-input/input-format-display-format/package.json +++ b/samples/inputs/date-time-input/input-format-display-format/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/date-time-input/min-max-value/package.json b/samples/inputs/date-time-input/min-max-value/package.json index 7b0d59c0b4..2b44a085dd 100644 --- a/samples/inputs/date-time-input/min-max-value/package.json +++ b/samples/inputs/date-time-input/min-max-value/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/date-time-input/overview/package.json b/samples/inputs/date-time-input/overview/package.json index 56066e1e40..af0d250054 100644 --- a/samples/inputs/date-time-input/overview/package.json +++ b/samples/inputs/date-time-input/overview/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/date-time-input/step-up-down/package.json b/samples/inputs/date-time-input/step-up-down/package.json index afa0f9d2c2..ffda215ccf 100644 --- a/samples/inputs/date-time-input/step-up-down/package.json +++ b/samples/inputs/date-time-input/step-up-down/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/date-time-input/styling/package.json b/samples/inputs/date-time-input/styling/package.json index 56066e1e40..af0d250054 100644 --- a/samples/inputs/date-time-input/styling/package.json +++ b/samples/inputs/date-time-input/styling/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/dropdown/group/package.json b/samples/inputs/dropdown/group/package.json index b59c5e3eb2..d4b66dc24a 100644 --- a/samples/inputs/dropdown/group/package.json +++ b/samples/inputs/dropdown/group/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/dropdown/header/package.json b/samples/inputs/dropdown/header/package.json index c2c732e920..479e2663cc 100644 --- a/samples/inputs/dropdown/header/package.json +++ b/samples/inputs/dropdown/header/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/dropdown/item/package.json b/samples/inputs/dropdown/item/package.json index e747d0ec64..f423da56dd 100644 --- a/samples/inputs/dropdown/item/package.json +++ b/samples/inputs/dropdown/item/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/dropdown/overview/package.json b/samples/inputs/dropdown/overview/package.json index 0c39ac943c..0988747afd 100644 --- a/samples/inputs/dropdown/overview/package.json +++ b/samples/inputs/dropdown/overview/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/dropdown/position/package.json b/samples/inputs/dropdown/position/package.json index b840e2545d..e02e6ba21b 100644 --- a/samples/inputs/dropdown/position/package.json +++ b/samples/inputs/dropdown/position/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/dropdown/styling/package.json b/samples/inputs/dropdown/styling/package.json index e12b944fcf..dd55d05cc8 100644 --- a/samples/inputs/dropdown/styling/package.json +++ b/samples/inputs/dropdown/styling/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/dropdown/target/package.json b/samples/inputs/dropdown/target/package.json index b3365fb8fc..ddb495807f 100644 --- a/samples/inputs/dropdown/target/package.json +++ b/samples/inputs/dropdown/target/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/icon-button/size/package.json b/samples/inputs/icon-button/size/package.json index f650ab0b44..d36358bf76 100644 --- a/samples/inputs/icon-button/size/package.json +++ b/samples/inputs/icon-button/size/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/icon-button/styling/package.json b/samples/inputs/icon-button/styling/package.json index 8d9b22c96c..e8be811174 100644 --- a/samples/inputs/icon-button/styling/package.json +++ b/samples/inputs/icon-button/styling/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/icon-button/variant/package.json b/samples/inputs/icon-button/variant/package.json index 0854a454cb..1c4d05f659 100644 --- a/samples/inputs/icon-button/variant/package.json +++ b/samples/inputs/icon-button/variant/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/input/helper-text/package.json b/samples/inputs/input/helper-text/package.json index ebffc4f49e..af0d6aee13 100644 --- a/samples/inputs/input/helper-text/package.json +++ b/samples/inputs/input/helper-text/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/input/overview/package.json b/samples/inputs/input/overview/package.json index 23897da212..ec51f01fe4 100644 --- a/samples/inputs/input/overview/package.json +++ b/samples/inputs/input/overview/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/input/prefix-suffix/package.json b/samples/inputs/input/prefix-suffix/package.json index 7dac4c5639..9b231a3af7 100644 --- a/samples/inputs/input/prefix-suffix/package.json +++ b/samples/inputs/input/prefix-suffix/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/input/size/package.json b/samples/inputs/input/size/package.json index 1a31941072..1374cb4915 100644 --- a/samples/inputs/input/size/package.json +++ b/samples/inputs/input/size/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/input/styling/package.json b/samples/inputs/input/styling/package.json index d2675b63f4..d6356dac2c 100644 --- a/samples/inputs/input/styling/package.json +++ b/samples/inputs/input/styling/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/linear-progress-indicator/dynamic/package.json b/samples/inputs/linear-progress-indicator/dynamic/package.json index 07ba420dd1..810a2b12ea 100644 --- a/samples/inputs/linear-progress-indicator/dynamic/package.json +++ b/samples/inputs/linear-progress-indicator/dynamic/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/linear-progress-indicator/simple/package.json b/samples/inputs/linear-progress-indicator/simple/package.json index d4d71b0cb1..6cb522b42f 100644 --- a/samples/inputs/linear-progress-indicator/simple/package.json +++ b/samples/inputs/linear-progress-indicator/simple/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/linear-progress-indicator/striped/package.json b/samples/inputs/linear-progress-indicator/striped/package.json index c9525b49b1..1e2de21880 100644 --- a/samples/inputs/linear-progress-indicator/striped/package.json +++ b/samples/inputs/linear-progress-indicator/striped/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/linear-progress-indicator/styling/package.json b/samples/inputs/linear-progress-indicator/styling/package.json index f4c38d0f3b..823f4a8ff2 100644 --- a/samples/inputs/linear-progress-indicator/styling/package.json +++ b/samples/inputs/linear-progress-indicator/styling/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/linear-progress-indicator/types/package.json b/samples/inputs/linear-progress-indicator/types/package.json index 02a04bbd10..6798eaaffe 100644 --- a/samples/inputs/linear-progress-indicator/types/package.json +++ b/samples/inputs/linear-progress-indicator/types/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/mask-input/applying-mask/package.json b/samples/inputs/mask-input/applying-mask/package.json index ab036fc159..5ea3f3b1e4 100644 --- a/samples/inputs/mask-input/applying-mask/package.json +++ b/samples/inputs/mask-input/applying-mask/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/mask-input/overview/package.json b/samples/inputs/mask-input/overview/package.json index 67de23f349..fac8c9c258 100644 --- a/samples/inputs/mask-input/overview/package.json +++ b/samples/inputs/mask-input/overview/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/mask-input/value-modes/package.json b/samples/inputs/mask-input/value-modes/package.json index 032dfc9bf9..39c0f52a42 100644 --- a/samples/inputs/mask-input/value-modes/package.json +++ b/samples/inputs/mask-input/value-modes/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/radio/alignment/package.json b/samples/inputs/radio/alignment/package.json index 65176e4a71..e461975a73 100644 --- a/samples/inputs/radio/alignment/package.json +++ b/samples/inputs/radio/alignment/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/radio/disabled/package.json b/samples/inputs/radio/disabled/package.json index e4a8cd43d5..4dd4646b7c 100644 --- a/samples/inputs/radio/disabled/package.json +++ b/samples/inputs/radio/disabled/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/radio/group/package.json b/samples/inputs/radio/group/package.json index 29d7ad2dea..31a83718b5 100644 --- a/samples/inputs/radio/group/package.json +++ b/samples/inputs/radio/group/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/radio/invalid/package.json b/samples/inputs/radio/invalid/package.json index c155adc26b..b10ea13a88 100644 --- a/samples/inputs/radio/invalid/package.json +++ b/samples/inputs/radio/invalid/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/radio/label/package.json b/samples/inputs/radio/label/package.json index 39750807e1..38049cc14f 100644 --- a/samples/inputs/radio/label/package.json +++ b/samples/inputs/radio/label/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/radio/styling/package.json b/samples/inputs/radio/styling/package.json index 174a40be93..aa84ca5253 100644 --- a/samples/inputs/radio/styling/package.json +++ b/samples/inputs/radio/styling/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/rating/basic/package.json b/samples/inputs/rating/basic/package.json index effd270122..5444434256 100644 --- a/samples/inputs/rating/basic/package.json +++ b/samples/inputs/rating/basic/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/rating/custom/package.json b/samples/inputs/rating/custom/package.json index effd270122..5444434256 100644 --- a/samples/inputs/rating/custom/package.json +++ b/samples/inputs/rating/custom/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/rating/empty/package.json b/samples/inputs/rating/empty/package.json index effd270122..5444434256 100644 --- a/samples/inputs/rating/empty/package.json +++ b/samples/inputs/rating/empty/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/rating/single-selection/package.json b/samples/inputs/rating/single-selection/package.json index effd270122..5444434256 100644 --- a/samples/inputs/rating/single-selection/package.json +++ b/samples/inputs/rating/single-selection/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/rating/styling/package.json b/samples/inputs/rating/styling/package.json index effd270122..5444434256 100644 --- a/samples/inputs/rating/styling/package.json +++ b/samples/inputs/rating/styling/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/ripple/button/package.json b/samples/inputs/ripple/button/package.json index 168d284d7a..1b1d993b37 100644 --- a/samples/inputs/ripple/button/package.json +++ b/samples/inputs/ripple/button/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/ripple/color/package.json b/samples/inputs/ripple/color/package.json index 73227979e3..565dc8da70 100644 --- a/samples/inputs/ripple/color/package.json +++ b/samples/inputs/ripple/color/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/select/group/package.json b/samples/inputs/select/group/package.json index f6a82d5960..a84840bfb5 100644 --- a/samples/inputs/select/group/package.json +++ b/samples/inputs/select/group/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/select/header/package.json b/samples/inputs/select/header/package.json index 57577c96a2..bbf2df11b7 100644 --- a/samples/inputs/select/header/package.json +++ b/samples/inputs/select/header/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/select/item/package.json b/samples/inputs/select/item/package.json index d15f871e52..b11bffc916 100644 --- a/samples/inputs/select/item/package.json +++ b/samples/inputs/select/item/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/select/overview/package.json b/samples/inputs/select/overview/package.json index 702a639179..1c0cdbccb0 100644 --- a/samples/inputs/select/overview/package.json +++ b/samples/inputs/select/overview/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/select/styling/package.json b/samples/inputs/select/styling/package.json index 0d07531ab1..3787f52678 100644 --- a/samples/inputs/select/styling/package.json +++ b/samples/inputs/select/styling/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/slider/constraints/package.json b/samples/inputs/slider/constraints/package.json index befc394e53..e0c060ece7 100644 --- a/samples/inputs/slider/constraints/package.json +++ b/samples/inputs/slider/constraints/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/slider/disabled/package.json b/samples/inputs/slider/disabled/package.json index e1cd0358c2..8eaed3b24b 100644 --- a/samples/inputs/slider/disabled/package.json +++ b/samples/inputs/slider/disabled/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/slider/discrete/package.json b/samples/inputs/slider/discrete/package.json index 0876b8b8b2..e554aaf488 100644 --- a/samples/inputs/slider/discrete/package.json +++ b/samples/inputs/slider/discrete/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/slider/labels/package.json b/samples/inputs/slider/labels/package.json index a60a53326c..023f65a132 100644 --- a/samples/inputs/slider/labels/package.json +++ b/samples/inputs/slider/labels/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/slider/overview/package.json b/samples/inputs/slider/overview/package.json index ec2301e185..f182d97938 100644 --- a/samples/inputs/slider/overview/package.json +++ b/samples/inputs/slider/overview/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/slider/styling/package.json b/samples/inputs/slider/styling/package.json index 441c40208f..0fbcf93150 100644 --- a/samples/inputs/slider/styling/package.json +++ b/samples/inputs/slider/styling/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/slider/tick-labels/package.json b/samples/inputs/slider/tick-labels/package.json index d29d319b1d..b775cd4cb6 100644 --- a/samples/inputs/slider/tick-labels/package.json +++ b/samples/inputs/slider/tick-labels/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/slider/ticks/package.json b/samples/inputs/slider/ticks/package.json index 6a019023aa..da25d77416 100644 --- a/samples/inputs/slider/ticks/package.json +++ b/samples/inputs/slider/ticks/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/slider/value-format/package.json b/samples/inputs/slider/value-format/package.json index 00a42b9e73..7414c25d7c 100644 --- a/samples/inputs/slider/value-format/package.json +++ b/samples/inputs/slider/value-format/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/slider/value/package.json b/samples/inputs/slider/value/package.json index c722b33ad7..03f4b5c7cf 100644 --- a/samples/inputs/slider/value/package.json +++ b/samples/inputs/slider/value/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/switches/checking/package.json b/samples/inputs/switches/checking/package.json index 83177dd5b0..88e5d31012 100644 --- a/samples/inputs/switches/checking/package.json +++ b/samples/inputs/switches/checking/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/switches/disabled/package.json b/samples/inputs/switches/disabled/package.json index 68116bce5c..7a1423cc7c 100644 --- a/samples/inputs/switches/disabled/package.json +++ b/samples/inputs/switches/disabled/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/switches/label/package.json b/samples/inputs/switches/label/package.json index c84d64ae33..c09afd521a 100644 --- a/samples/inputs/switches/label/package.json +++ b/samples/inputs/switches/label/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/switches/overview/package.json b/samples/inputs/switches/overview/package.json index 0648d8576d..13f2769c44 100644 --- a/samples/inputs/switches/overview/package.json +++ b/samples/inputs/switches/overview/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/switches/styling/package.json b/samples/inputs/switches/styling/package.json index 83177dd5b0..88e5d31012 100644 --- a/samples/inputs/switches/styling/package.json +++ b/samples/inputs/switches/styling/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/textarea/form-integration/package.json b/samples/inputs/textarea/form-integration/package.json index c91ef2b923..ea972197b1 100644 --- a/samples/inputs/textarea/form-integration/package.json +++ b/samples/inputs/textarea/form-integration/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/textarea/overview/package.json b/samples/inputs/textarea/overview/package.json index 1b7220960c..be61ba25c7 100644 --- a/samples/inputs/textarea/overview/package.json +++ b/samples/inputs/textarea/overview/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/textarea/resize/package.json b/samples/inputs/textarea/resize/package.json index 1241f54d59..2047126bda 100644 --- a/samples/inputs/textarea/resize/package.json +++ b/samples/inputs/textarea/resize/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/textarea/slots/package.json b/samples/inputs/textarea/slots/package.json index 210a64a447..d78a6fbd5e 100644 --- a/samples/inputs/textarea/slots/package.json +++ b/samples/inputs/textarea/slots/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/textarea/styling/package.json b/samples/inputs/textarea/styling/package.json index e1f56648ac..029d8ecd2c 100644 --- a/samples/inputs/textarea/styling/package.json +++ b/samples/inputs/textarea/styling/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/tooltip/advanced/package.json b/samples/inputs/tooltip/advanced/package.json index 90fd14e6c4..2c0dafb207 100644 --- a/samples/inputs/tooltip/advanced/package.json +++ b/samples/inputs/tooltip/advanced/package.json @@ -13,10 +13,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/tooltip/overview/package.json b/samples/inputs/tooltip/overview/package.json index effd270122..5444434256 100644 --- a/samples/inputs/tooltip/overview/package.json +++ b/samples/inputs/tooltip/overview/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/tooltip/placement/package.json b/samples/inputs/tooltip/placement/package.json index effd270122..5444434256 100644 --- a/samples/inputs/tooltip/placement/package.json +++ b/samples/inputs/tooltip/placement/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/tooltip/rich/package.json b/samples/inputs/tooltip/rich/package.json index effd270122..5444434256 100644 --- a/samples/inputs/tooltip/rich/package.json +++ b/samples/inputs/tooltip/rich/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/tooltip/styling/package.json b/samples/inputs/tooltip/styling/package.json index effd270122..5444434256 100644 --- a/samples/inputs/tooltip/styling/package.json +++ b/samples/inputs/tooltip/styling/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/tooltip/triggers/package.json b/samples/inputs/tooltip/triggers/package.json index effd270122..5444434256 100644 --- a/samples/inputs/tooltip/triggers/package.json +++ b/samples/inputs/tooltip/triggers/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/interactions/chat/features/package.json b/samples/interactions/chat/features/package.json index 7e4af7b2ca..d105bbd69e 100644 --- a/samples/interactions/chat/features/package.json +++ b/samples/interactions/chat/features/package.json @@ -14,9 +14,9 @@ "dependencies": { "dompurify": "^3.3.0", "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "marked": "^16.4.1", "marked-shiki": "^1.2.1", "react": "^19.2.0", diff --git a/samples/interactions/chat/overview/package.json b/samples/interactions/chat/overview/package.json index 46997d0138..2cdce7a52d 100644 --- a/samples/interactions/chat/overview/package.json +++ b/samples/interactions/chat/overview/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/interactions/chat/styling/package.json b/samples/interactions/chat/styling/package.json index 38a91a6843..9936522fe0 100644 --- a/samples/interactions/chat/styling/package.json +++ b/samples/interactions/chat/styling/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/interactions/query-builder/overview/package.json b/samples/interactions/query-builder/overview/package.json index bd516b4cb2..5603c5ccee 100644 --- a/samples/interactions/query-builder/overview/package.json +++ b/samples/interactions/query-builder/overview/package.json @@ -14,9 +14,9 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "19.5.0-beta.2", - "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "19.5.0-beta.2", + "igniteui-react": "^19.5.0", + "igniteui-react-core": "19.3.2", + "igniteui-react-grids": "^19.5.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", @@ -32,7 +32,7 @@ "eslint": "^8.33.0", "eslint-config-react": "^1.1.7", "eslint-plugin-react": "^7.20.0", - "typescript": "5.0.2", + "typescript": "^4.8.4", "vite": "^7.1.9", "vitest": "^3.2.4", "vitest-canvas-mock": "^0.3.3", diff --git a/samples/interactions/query-builder/template/package.json b/samples/interactions/query-builder/template/package.json index 43f9546945..cca0408d02 100644 --- a/samples/interactions/query-builder/template/package.json +++ b/samples/interactions/query-builder/template/package.json @@ -14,9 +14,9 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react": "19.5.0-beta.2", - "igniteui-react-core": "19.3.1", - "igniteui-react-grids": "19.5.0-beta.2", + "igniteui-react": "^19.5.0", + "igniteui-react-core": "19.3.2", + "igniteui-react-grids": "^19.5.0", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", @@ -32,7 +32,7 @@ "eslint": "^8.33.0", "eslint-config-react": "^1.1.7", "eslint-plugin-react": "^7.20.0", - "typescript": "5.0.2", + "typescript": "^4.8.4", "vite": "^7.1.9", "vitest": "^3.2.4", "vitest-canvas-mock": "^0.3.3", diff --git a/samples/layouts/accordion/customization/package.json b/samples/layouts/accordion/customization/package.json index 6794d97e3e..0ec882a488 100644 --- a/samples/layouts/accordion/customization/package.json +++ b/samples/layouts/accordion/customization/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/accordion/nested-scenario/package.json b/samples/layouts/accordion/nested-scenario/package.json index a544a8f017..74868a89b9 100644 --- a/samples/layouts/accordion/nested-scenario/package.json +++ b/samples/layouts/accordion/nested-scenario/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/accordion/overview/package.json b/samples/layouts/accordion/overview/package.json index 05cddc34db..793b1d80b0 100644 --- a/samples/layouts/accordion/overview/package.json +++ b/samples/layouts/accordion/overview/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/avatar/icon/package.json b/samples/layouts/avatar/icon/package.json index d1a7ddae3f..2fdf4821bf 100644 --- a/samples/layouts/avatar/icon/package.json +++ b/samples/layouts/avatar/icon/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/avatar/image/package.json b/samples/layouts/avatar/image/package.json index ea27d90ca3..b40786c32f 100644 --- a/samples/layouts/avatar/image/package.json +++ b/samples/layouts/avatar/image/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/avatar/initials/package.json b/samples/layouts/avatar/initials/package.json index c974e5b612..e744a54e19 100644 --- a/samples/layouts/avatar/initials/package.json +++ b/samples/layouts/avatar/initials/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/avatar/shape/package.json b/samples/layouts/avatar/shape/package.json index e453d2f424..ea540446c8 100644 --- a/samples/layouts/avatar/shape/package.json +++ b/samples/layouts/avatar/shape/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/avatar/size/package.json b/samples/layouts/avatar/size/package.json index 6e6c769325..3438857ba3 100644 --- a/samples/layouts/avatar/size/package.json +++ b/samples/layouts/avatar/size/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/avatar/styling/package.json b/samples/layouts/avatar/styling/package.json index 268f09ca87..9526a18ed9 100644 --- a/samples/layouts/avatar/styling/package.json +++ b/samples/layouts/avatar/styling/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/card/horizontal/package.json b/samples/layouts/card/horizontal/package.json index 14573a0ecc..f175826249 100644 --- a/samples/layouts/card/horizontal/package.json +++ b/samples/layouts/card/horizontal/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/card/overview/package.json b/samples/layouts/card/overview/package.json index 048c6a2011..17b51ab9cf 100644 --- a/samples/layouts/card/overview/package.json +++ b/samples/layouts/card/overview/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/card/semi-horizontal/package.json b/samples/layouts/card/semi-horizontal/package.json index 983947dff2..be408a8054 100644 --- a/samples/layouts/card/semi-horizontal/package.json +++ b/samples/layouts/card/semi-horizontal/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/card/styling/package.json b/samples/layouts/card/styling/package.json index c50a6e227f..1e3acb93f6 100644 --- a/samples/layouts/card/styling/package.json +++ b/samples/layouts/card/styling/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/carousel/animations/package.json b/samples/layouts/carousel/animations/package.json index 3cc1705853..750b6fe0b7 100644 --- a/samples/layouts/carousel/animations/package.json +++ b/samples/layouts/carousel/animations/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/carousel/components/package.json b/samples/layouts/carousel/components/package.json index b10b274d63..e1485158aa 100644 --- a/samples/layouts/carousel/components/package.json +++ b/samples/layouts/carousel/components/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/carousel/overview/package.json b/samples/layouts/carousel/overview/package.json index 44c1fc4ec5..22006fdafd 100644 --- a/samples/layouts/carousel/overview/package.json +++ b/samples/layouts/carousel/overview/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/carousel/thumbnail/package.json b/samples/layouts/carousel/thumbnail/package.json index a8fb2b7356..76da0c8fce 100644 --- a/samples/layouts/carousel/thumbnail/package.json +++ b/samples/layouts/carousel/thumbnail/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/divider/dashed/package.json b/samples/layouts/divider/dashed/package.json index d1a7ddae3f..2fdf4821bf 100644 --- a/samples/layouts/divider/dashed/package.json +++ b/samples/layouts/divider/dashed/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/divider/middle/package.json b/samples/layouts/divider/middle/package.json index d1a7ddae3f..2fdf4821bf 100644 --- a/samples/layouts/divider/middle/package.json +++ b/samples/layouts/divider/middle/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/divider/overview/package.json b/samples/layouts/divider/overview/package.json index d1a7ddae3f..2fdf4821bf 100644 --- a/samples/layouts/divider/overview/package.json +++ b/samples/layouts/divider/overview/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/divider/select/package.json b/samples/layouts/divider/select/package.json index d1a7ddae3f..2fdf4821bf 100644 --- a/samples/layouts/divider/select/package.json +++ b/samples/layouts/divider/select/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/divider/vertical/package.json b/samples/layouts/divider/vertical/package.json index d1a7ddae3f..2fdf4821bf 100644 --- a/samples/layouts/divider/vertical/package.json +++ b/samples/layouts/divider/vertical/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/dock-manager/styling/package.json b/samples/layouts/dock-manager/styling/package.json index 5bcdf37803..9a050d8d42 100644 --- a/samples/layouts/dock-manager/styling/package.json +++ b/samples/layouts/dock-manager/styling/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", "igniteui-react-dockmanager": "^19.4.0", "react": "^19.2.0", diff --git a/samples/layouts/expansion-panel/component-customization/package.json b/samples/layouts/expansion-panel/component-customization/package.json index 2c085de99b..1e9b2e50b2 100644 --- a/samples/layouts/expansion-panel/component-customization/package.json +++ b/samples/layouts/expansion-panel/component-customization/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/expansion-panel/properties-and-events/package.json b/samples/layouts/expansion-panel/properties-and-events/package.json index 00c40fc488..0c8b56764d 100644 --- a/samples/layouts/expansion-panel/properties-and-events/package.json +++ b/samples/layouts/expansion-panel/properties-and-events/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/expansion-panel/styling/package.json b/samples/layouts/expansion-panel/styling/package.json index d0722e11d4..bd9faad421 100644 --- a/samples/layouts/expansion-panel/styling/package.json +++ b/samples/layouts/expansion-panel/styling/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/expansion-panel/usage/package.json b/samples/layouts/expansion-panel/usage/package.json index a3f153dee9..0a1dc8d087 100644 --- a/samples/layouts/expansion-panel/usage/package.json +++ b/samples/layouts/expansion-panel/usage/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/icon/sizing/package.json b/samples/layouts/icon/sizing/package.json index baaa62fcf2..25f7673851 100644 --- a/samples/layouts/icon/sizing/package.json +++ b/samples/layouts/icon/sizing/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/icon/styling/package.json b/samples/layouts/icon/styling/package.json index 30a17b4915..ba726ec605 100644 --- a/samples/layouts/icon/styling/package.json +++ b/samples/layouts/icon/styling/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/stepper/animations/package.json b/samples/layouts/stepper/animations/package.json index 29d7ad2dea..31a83718b5 100644 --- a/samples/layouts/stepper/animations/package.json +++ b/samples/layouts/stepper/animations/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/stepper/linear/package.json b/samples/layouts/stepper/linear/package.json index 29d7ad2dea..31a83718b5 100644 --- a/samples/layouts/stepper/linear/package.json +++ b/samples/layouts/stepper/linear/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/stepper/orientation/package.json b/samples/layouts/stepper/orientation/package.json index 29d7ad2dea..31a83718b5 100644 --- a/samples/layouts/stepper/orientation/package.json +++ b/samples/layouts/stepper/orientation/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/stepper/steptypes/package.json b/samples/layouts/stepper/steptypes/package.json index 29d7ad2dea..31a83718b5 100644 --- a/samples/layouts/stepper/steptypes/package.json +++ b/samples/layouts/stepper/steptypes/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/stepper/styling/package.json b/samples/layouts/stepper/styling/package.json index cf54719c73..f84c5c9618 100644 --- a/samples/layouts/stepper/styling/package.json +++ b/samples/layouts/stepper/styling/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/tabs/alignment/package.json b/samples/layouts/tabs/alignment/package.json index 29d7ad2dea..31a83718b5 100644 --- a/samples/layouts/tabs/alignment/package.json +++ b/samples/layouts/tabs/alignment/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/tabs/overview/package.json b/samples/layouts/tabs/overview/package.json index 29d7ad2dea..31a83718b5 100644 --- a/samples/layouts/tabs/overview/package.json +++ b/samples/layouts/tabs/overview/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/tabs/prefix-suffix/package.json b/samples/layouts/tabs/prefix-suffix/package.json index 29d7ad2dea..31a83718b5 100644 --- a/samples/layouts/tabs/prefix-suffix/package.json +++ b/samples/layouts/tabs/prefix-suffix/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/tabs/scrolling/package.json b/samples/layouts/tabs/scrolling/package.json index 29d7ad2dea..31a83718b5 100644 --- a/samples/layouts/tabs/scrolling/package.json +++ b/samples/layouts/tabs/scrolling/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/tabs/styling/package.json b/samples/layouts/tabs/styling/package.json index 29d7ad2dea..31a83718b5 100644 --- a/samples/layouts/tabs/styling/package.json +++ b/samples/layouts/tabs/styling/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/tile-manager/actions/package.json b/samples/layouts/tile-manager/actions/package.json index 29d7ad2dea..31a83718b5 100644 --- a/samples/layouts/tile-manager/actions/package.json +++ b/samples/layouts/tile-manager/actions/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/tile-manager/columngap/package.json b/samples/layouts/tile-manager/columngap/package.json index 29d7ad2dea..31a83718b5 100644 --- a/samples/layouts/tile-manager/columngap/package.json +++ b/samples/layouts/tile-manager/columngap/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/tile-manager/dragndrop/package.json b/samples/layouts/tile-manager/dragndrop/package.json index 29d7ad2dea..31a83718b5 100644 --- a/samples/layouts/tile-manager/dragndrop/package.json +++ b/samples/layouts/tile-manager/dragndrop/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/tile-manager/layout/package.json b/samples/layouts/tile-manager/layout/package.json index 29d7ad2dea..31a83718b5 100644 --- a/samples/layouts/tile-manager/layout/package.json +++ b/samples/layouts/tile-manager/layout/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/tile-manager/overview/package.json b/samples/layouts/tile-manager/overview/package.json index 29d7ad2dea..31a83718b5 100644 --- a/samples/layouts/tile-manager/overview/package.json +++ b/samples/layouts/tile-manager/overview/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/tile-manager/resize/package.json b/samples/layouts/tile-manager/resize/package.json index 29d7ad2dea..31a83718b5 100644 --- a/samples/layouts/tile-manager/resize/package.json +++ b/samples/layouts/tile-manager/resize/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/tile-manager/styling/package.json b/samples/layouts/tile-manager/styling/package.json index 29d7ad2dea..31a83718b5 100644 --- a/samples/layouts/tile-manager/styling/package.json +++ b/samples/layouts/tile-manager/styling/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/display-all-imagery/package.json b/samples/maps/geo-map/display-all-imagery/package.json index c3db5812c1..c644c78aeb 100644 --- a/samples/maps/geo-map/display-all-imagery/package.json +++ b/samples/maps/geo-map/display-all-imagery/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-maps": "19.3.2", diff --git a/samples/maps/geo-map/display-azure-imagery/package.json b/samples/maps/geo-map/display-azure-imagery/package.json index d6c37f0b63..60fc25820e 100644 --- a/samples/maps/geo-map/display-azure-imagery/package.json +++ b/samples/maps/geo-map/display-azure-imagery/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-maps": "19.3.2", diff --git a/samples/maps/geo-map/display-bing-imagery/package.json b/samples/maps/geo-map/display-bing-imagery/package.json index df8209d258..0f32ed1ef4 100644 --- a/samples/maps/geo-map/display-bing-imagery/package.json +++ b/samples/maps/geo-map/display-bing-imagery/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-charts": "19.3.2", "igniteui-react-core": "19.3.2", "igniteui-react-maps": "19.3.2", diff --git a/samples/menus/nav-bar/overview/package.json b/samples/menus/nav-bar/overview/package.json index ea43c38d2c..04950a4da7 100644 --- a/samples/menus/nav-bar/overview/package.json +++ b/samples/menus/nav-bar/overview/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/menus/nav-bar/styling/package.json b/samples/menus/nav-bar/styling/package.json index 60003bc4ab..85a42e3943 100644 --- a/samples/menus/nav-bar/styling/package.json +++ b/samples/menus/nav-bar/styling/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/menus/nav-drawer/add-drawer-items/package.json b/samples/menus/nav-drawer/add-drawer-items/package.json index 0b22aa0b93..0d649be00b 100644 --- a/samples/menus/nav-drawer/add-drawer-items/package.json +++ b/samples/menus/nav-drawer/add-drawer-items/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/menus/nav-drawer/add-mini/package.json b/samples/menus/nav-drawer/add-mini/package.json index 63034acca1..d3e8eba6af 100644 --- a/samples/menus/nav-drawer/add-mini/package.json +++ b/samples/menus/nav-drawer/add-mini/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/menus/nav-drawer/add-positions-navbar/package.json b/samples/menus/nav-drawer/add-positions-navbar/package.json index 55a01794a3..4feaeb54b5 100644 --- a/samples/menus/nav-drawer/add-positions-navbar/package.json +++ b/samples/menus/nav-drawer/add-positions-navbar/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/menus/nav-drawer/styling/package.json b/samples/menus/nav-drawer/styling/package.json index 89536abc63..55df20419c 100644 --- a/samples/menus/nav-drawer/styling/package.json +++ b/samples/menus/nav-drawer/styling/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/notifications/banner/banner-advanced-sample/package.json b/samples/notifications/banner/banner-advanced-sample/package.json index 6b2adbeecb..2b94a4680a 100644 --- a/samples/notifications/banner/banner-advanced-sample/package.json +++ b/samples/notifications/banner/banner-advanced-sample/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/notifications/banner/banner-sample-1/package.json b/samples/notifications/banner/banner-sample-1/package.json index 784b0d7440..f7bd8844ff 100644 --- a/samples/notifications/banner/banner-sample-1/package.json +++ b/samples/notifications/banner/banner-sample-1/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/notifications/banner/banner-sample-2/package.json b/samples/notifications/banner/banner-sample-2/package.json index 3ac680c239..d4efe3f16a 100644 --- a/samples/notifications/banner/banner-sample-2/package.json +++ b/samples/notifications/banner/banner-sample-2/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/notifications/banner/banner-styling/package.json b/samples/notifications/banner/banner-styling/package.json index 8fbaaf6335..99b3f503b1 100644 --- a/samples/notifications/banner/banner-styling/package.json +++ b/samples/notifications/banner/banner-styling/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/notifications/dialog/closing-variations/package.json b/samples/notifications/dialog/closing-variations/package.json index 40e397b6de..1310911e29 100644 --- a/samples/notifications/dialog/closing-variations/package.json +++ b/samples/notifications/dialog/closing-variations/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/notifications/dialog/form/package.json b/samples/notifications/dialog/form/package.json index 30198e4905..01d4255c16 100644 --- a/samples/notifications/dialog/form/package.json +++ b/samples/notifications/dialog/form/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/notifications/dialog/overview/package.json b/samples/notifications/dialog/overview/package.json index 0e8c38e30c..9fd351c6cb 100644 --- a/samples/notifications/dialog/overview/package.json +++ b/samples/notifications/dialog/overview/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/notifications/dialog/styling/package.json b/samples/notifications/dialog/styling/package.json index ea24862cf4..84298f72ee 100644 --- a/samples/notifications/dialog/styling/package.json +++ b/samples/notifications/dialog/styling/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/notifications/snackbar/action-text/package.json b/samples/notifications/snackbar/action-text/package.json index eadaec253d..71a092585b 100644 --- a/samples/notifications/snackbar/action-text/package.json +++ b/samples/notifications/snackbar/action-text/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/notifications/snackbar/display-time/package.json b/samples/notifications/snackbar/display-time/package.json index e140962210..a9fa882ff8 100644 --- a/samples/notifications/snackbar/display-time/package.json +++ b/samples/notifications/snackbar/display-time/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/notifications/snackbar/overview/package.json b/samples/notifications/snackbar/overview/package.json index efdbecad08..e3eff4a701 100644 --- a/samples/notifications/snackbar/overview/package.json +++ b/samples/notifications/snackbar/overview/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/notifications/snackbar/styling/package.json b/samples/notifications/snackbar/styling/package.json index 7e8418b7f4..08a47b8488 100644 --- a/samples/notifications/snackbar/styling/package.json +++ b/samples/notifications/snackbar/styling/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/notifications/toast/overview/package.json b/samples/notifications/toast/overview/package.json index 0d363361c9..d75bee2490 100644 --- a/samples/notifications/toast/overview/package.json +++ b/samples/notifications/toast/overview/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/notifications/toast/properties/package.json b/samples/notifications/toast/properties/package.json index 026f38feb1..b47357276b 100644 --- a/samples/notifications/toast/properties/package.json +++ b/samples/notifications/toast/properties/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/notifications/toast/styling/package.json b/samples/notifications/toast/styling/package.json index c1efbc87f1..183a547284 100644 --- a/samples/notifications/toast/styling/package.json +++ b/samples/notifications/toast/styling/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/calendar/disabled-dates/package.json b/samples/scheduling/calendar/disabled-dates/package.json index b77b760e69..68ecdd7423 100644 --- a/samples/scheduling/calendar/disabled-dates/package.json +++ b/samples/scheduling/calendar/disabled-dates/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/calendar/formatting/package.json b/samples/scheduling/calendar/formatting/package.json index 747f544997..38c4c961e6 100644 --- a/samples/scheduling/calendar/formatting/package.json +++ b/samples/scheduling/calendar/formatting/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/calendar/header/package.json b/samples/scheduling/calendar/header/package.json index c031b7e212..a20237ed63 100644 --- a/samples/scheduling/calendar/header/package.json +++ b/samples/scheduling/calendar/header/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/calendar/multiple-months/package.json b/samples/scheduling/calendar/multiple-months/package.json index d702103421..270cb2e4db 100644 --- a/samples/scheduling/calendar/multiple-months/package.json +++ b/samples/scheduling/calendar/multiple-months/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/calendar/multiple-selection/package.json b/samples/scheduling/calendar/multiple-selection/package.json index 2166af584d..deb1366eb5 100644 --- a/samples/scheduling/calendar/multiple-selection/package.json +++ b/samples/scheduling/calendar/multiple-selection/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/calendar/overview/package.json b/samples/scheduling/calendar/overview/package.json index 887d22767f..f313ba4f0a 100644 --- a/samples/scheduling/calendar/overview/package.json +++ b/samples/scheduling/calendar/overview/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/calendar/range-selection/package.json b/samples/scheduling/calendar/range-selection/package.json index 65ed37dece..89e3f94ca3 100644 --- a/samples/scheduling/calendar/range-selection/package.json +++ b/samples/scheduling/calendar/range-selection/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/calendar/size/package.json b/samples/scheduling/calendar/size/package.json index 816c4a9036..1590731749 100644 --- a/samples/scheduling/calendar/size/package.json +++ b/samples/scheduling/calendar/size/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/calendar/special-dates/package.json b/samples/scheduling/calendar/special-dates/package.json index 4bb9104f13..407069ee98 100644 --- a/samples/scheduling/calendar/special-dates/package.json +++ b/samples/scheduling/calendar/special-dates/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/calendar/styling/package.json b/samples/scheduling/calendar/styling/package.json index 574e34c437..ad090539ba 100644 --- a/samples/scheduling/calendar/styling/package.json +++ b/samples/scheduling/calendar/styling/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/calendar/week-numbers/package.json b/samples/scheduling/calendar/week-numbers/package.json index 4712b4fbbe..37e0d82168 100644 --- a/samples/scheduling/calendar/week-numbers/package.json +++ b/samples/scheduling/calendar/week-numbers/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/date-picker/dialog-mode/package.json b/samples/scheduling/date-picker/dialog-mode/package.json index fed6e2d4ae..edbdda047a 100644 --- a/samples/scheduling/date-picker/dialog-mode/package.json +++ b/samples/scheduling/date-picker/dialog-mode/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/date-picker/form/package.json b/samples/scheduling/date-picker/form/package.json index fed6e2d4ae..edbdda047a 100644 --- a/samples/scheduling/date-picker/form/package.json +++ b/samples/scheduling/date-picker/form/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/date-picker/format/package.json b/samples/scheduling/date-picker/format/package.json index fed6e2d4ae..edbdda047a 100644 --- a/samples/scheduling/date-picker/format/package.json +++ b/samples/scheduling/date-picker/format/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/date-picker/overview/package.json b/samples/scheduling/date-picker/overview/package.json index fed6e2d4ae..edbdda047a 100644 --- a/samples/scheduling/date-picker/overview/package.json +++ b/samples/scheduling/date-picker/overview/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/date-picker/styling/package.json b/samples/scheduling/date-picker/styling/package.json index fed6e2d4ae..edbdda047a 100644 --- a/samples/scheduling/date-picker/styling/package.json +++ b/samples/scheduling/date-picker/styling/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/date-range-picker/custom-ranges/package.json b/samples/scheduling/date-range-picker/custom-ranges/package.json index d7c164e692..1117274f2d 100644 --- a/samples/scheduling/date-range-picker/custom-ranges/package.json +++ b/samples/scheduling/date-range-picker/custom-ranges/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/date-range-picker/form/package.json b/samples/scheduling/date-range-picker/form/package.json index 2c86ad45ed..253dfea0bf 100644 --- a/samples/scheduling/date-range-picker/form/package.json +++ b/samples/scheduling/date-range-picker/form/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/date-range-picker/overview/package.json b/samples/scheduling/date-range-picker/overview/package.json index bc5eb4e672..c6bc95c8e3 100644 --- a/samples/scheduling/date-range-picker/overview/package.json +++ b/samples/scheduling/date-range-picker/overview/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/date-range-picker/slots/package.json b/samples/scheduling/date-range-picker/slots/package.json index 3df9f69f32..3c6bda2403 100644 --- a/samples/scheduling/date-range-picker/slots/package.json +++ b/samples/scheduling/date-range-picker/slots/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/scheduling/date-range-picker/styling/package.json b/samples/scheduling/date-range-picker/styling/package.json index e0dcea568b..a09642fa0d 100644 --- a/samples/scheduling/date-range-picker/styling/package.json +++ b/samples/scheduling/date-range-picker/styling/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react": "^19.5.0-rc.0", + "igniteui-react": "^19.5.0", "igniteui-react-core": "19.3.2", - "igniteui-webcomponents": "^7.0.0-rc.0", + "igniteui-webcomponents": "^7.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" From 74061802a7389468bd0947dee010527c4a0c73f7 Mon Sep 17 00:00:00 2001 From: Tihomir Tonev Date: Fri, 27 Feb 2026 16:57:39 +0200 Subject: [PATCH 43/43] Added styling to people's images causing grid rows to be larger (#1046) --- browser/src/index.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/browser/src/index.css b/browser/src/index.css index e69de29bb2..56c74b25ed 100644 --- a/browser/src/index.css +++ b/browser/src/index.css @@ -0,0 +1,7 @@ +img[src*="dl.infragistics.com/x/img/people"] { + width: 62px; + height: 62px; + object-fit: cover; + display: block; + margin: auto; +}